Seems like this article conflates threads C# with asynchronous operations a little.
The way I see it, threads are for parallel & concurrent execution of CPU-bound workloads, across multiple CPU cores. And typically use Task Parallel Library. Async/await won’t help here.
Whereas async/await for IO bound workloads, and freeing up the current CPU thread until the IO operation finishes. As mentioned, syntactic sugar on top of older callback-based asynchronous APIs.
>My iOS device has never once shown me "this website requires Chrome." I get to use the mobile web without needing Google. And Apple is the only reason why.
Let's be real though, Apple didn't enforce this to save user's the small annoyance of 'use browser X' popups. Instead it gives them full control over what web APIs are available on iOS devices, so they can avoid implementing those APIs that would impact on their App Store revenue. They have a clear financial benefit in not supporting the PWA technology that would move the 'simpler' apps off their app store and into web - where they wouldn't receive their developer license fees, a cut of paid apps and a cut of paid subscription fees (outrageous). Also, I believe it was Steve Jobs who first shared the vision of web applications on iPhone “that look exactly and behave exactly like native apps” ?
> Instead it's web developers, who are just annoyed that they have to actually respect the conventions of the platform they're building for.
Developers already get around this to some extent with cross platform tools such as React Native, Xamarin, Flutter. Native apps will always have a place, PWAs are not going to replace sufficiently complex app experiences, much like on Android or Windows.
Not because it’s Apple, but rather because Apple are exploiting their position as iOS App Store gatekeepers to require developers to add Sign In With Apple. Mozilla don’t have this position / power.
I think people would have the same issue if Google required ‘Sign In With Google’ in play store apps that have Facebook login, and returned throwaway / proxies email addresses.
There by, when apple passes a [email protected] address back, it won't match the existing account's email address = Sorry, matching account not found ?
Anyone know which Android based phone manufacturers or brands are based in the EU? Does the fine match their expected loses?
What does the EU do with the money?
Doesnt make sense, if google didn’t geoblock EU IP addresses how would the EU react? Issue another fine which Google won’t pay?
A similar analogy would be like the US blocking their citizens from traveling to North Korea. But then having direct flights from LA to Pyongyang and expecting North Korea to enforce the ban of US citizens at their customs. It’s not their responsibility..
> The problem is that when you are shopping for something, you don't want advertisers to be influencing what you see in search results. You generally want the best match to your search, not the product with the biggest advertisement budget behind it.
So they should remove advertising from google search results altogether?
Like saying TV networks shouldn't put ads/product-placements in their shows because their viewers are only interested in the shows/content.
Shouldn't need a license to prove you're an engineer unless say perhaps you're running an engineering business, where people's lives can depend on your work - e.g building a bridge.
If you have formal education in engineering, then I would think you can call yourself an engineer?
We have a smallish team working on web apps and use a trunk-based-development branching strategy. Not really to do with helping CI/CD.
The advantage we see is that new developers can start developing as soon as they clone the repository, without needing to switch to the 'development' branch. This is particularly useful when on boarding new developers who are inexperienced with Git. I found that when using Git Flow that the (stable) master branch frequently ends up out-of-date when developers are required to remember to merge into it releases into it.
I find his response to this question compelling when talking about Sarah Koenig and Serial:
" Was the name ‘Serial’ ever used?
No. Not to my recollection. She kept saying ‘This American Life,’ ‘the radio,’ and ‘a documentary.’ There was no talk of ‘Serial’ or a podcast. Then I asked her outright, ‘Are you an advocate for Adnan?’ She said ‘No,’ that she wasn’t his advocate. But she said that she had talked to Adnan, and she wanted to get more information about the case. She said there was new evidence, and I said there’s no new evidence that’s gonna change what I saw: I saw Hae dead in the trunk of the car. If Adnan wants to take the stand now and explain that away, let him. But there’s no evidence that’s gonna change what I saw. I don’t know how she was murdered, I don’t know exactly how she got put in that trunk, and I told the cops that. If Koenig wants to get into how that all happened she can go there. But that doesn’t change what I saw. And that’s the only time I commented directly on the case to her. "
Hard to verify.
Perhaps if the FBI or other law enforcement continue to use the supposed vulnerability - eventually information obtained from a breached iPhone will appear in court as evidence..
Is there any reason we cannot use both TypeScript and Flow.
Besides perhaps the extra 'compile' time added to do both translation with TypeScript and then static analysis with Flow. Both tools have their advantages and disadvantages.
But he doesn't spell out the ways in which LiveNinja is better, like others here, I was waiting for the comparison? He's deliberately held off on specifics to use it as a selling point for acquisition.
"Buy us and I'll tell you what we learned"
Ok so the name and tagline of this library is wrong/confusing.
But forgetting that, visually it looks like a nice alternative to bootstrap. Still some work to be done.
Does it bother anyone else that Go supports the GOTO statement? I would've thought GOTO an obvious construct to leave out when creating a new language, to protect programmers from themselves? (See Dijkstra on 'GOTO statement considered harmful')
Ok, I'll give some suggestions, I'll be blunt. But first you should know that I'm not a web designer - so take them with salt. It might also be worth asking for suggestions as a Hacker News thread? Or perhaps a web-design specific forum.
I'm taking an interest because I think the web development world really needs a good site to serve as a list/index/catalog of open-source javascript (and css) libraries, with user ratings and comments etc.
Fundamentally, I think the intent of your design is wrong. Its cluttered and all about the bells and whistles rather than focusing on use-cases and the problems your site should be trying to solve.
(1) Home page
Editor's Choice Part
Get rid of this, I don't think users care about your editors picks. User's care more what the user base / crowd thinks. So you could perhaps put trending libraries (those receiving a lot of up-votes recently) here instead. Or otherwise just remove it all-together.
Blog Part
Also get rid of this. The foremost parts of your homepage should be the Category list and a search box. Also get rid of the tag cloud - doesn't add anything IMO.
Layout and Color Scheme
All wrong, too many different colors and shades, jagged lines and shadows everywhere. Less is more here I think.
(2) Category Page
Layout
Change to a list-view instead of a grid-view. The grid looks too squashed, and users don't mind scrolling - list view is better for responsive design / mobile devices. Also sort the list by rating.
Each Library
Increase the font size of the description <- will work better when you change to a list view instead of a grid. Show the rating larger as well, and then to a lesser extent the GitHub stars etc. Take some design pointers from the StackOverflow question list (http://stackoverflow.com/unanswered).
(3) Library Page
Comments
Shift the DISQUS comments above the 'ALSO ON JSTER' part, put that stuff at the bottom, users care more about comments. Remove the 'RECOMMENDED CONTENT' - its irrelevant and your site is too immature for advertising yet.
Rating System
Light bulbs? I honestly think you would be better off with an up/down vote rating system like StackOverflow. A library having a 5/5 rating doesn't mean anything when there is only one vote (probably from the developer who wrote it and submitted the library).
If you wanted to make it really smart, you could allow users to up/down vote a library for specific category. For example, users could up-vote the D3.js library within the 'Charting' tag/category only if they wish to - which means the user thinks D3.js is good for charts.
The way I see it, threads are for parallel & concurrent execution of CPU-bound workloads, across multiple CPU cores. And typically use Task Parallel Library. Async/await won’t help here.
Whereas async/await for IO bound workloads, and freeing up the current CPU thread until the IO operation finishes. As mentioned, syntactic sugar on top of older callback-based asynchronous APIs.