Viewing profile — myusernameisok
myusernameisok
HN member- Joined
- Tue, Jul 25, 2017, 8:33 PM UTC
- HN karma
- 64
- Public activity
- 32 items
- HN profile
- View on Hacker News ↗
About myusernameisok
Recent public activity
-
comment
Comment #15052488
> All Docker images are glorified tar layers that are compressed with gzip. By definition, all users of Docker are users of gzip and tar. I understand what your point is (it's not …
-
comment
Comment #15052307
I feel like docker is core to more businesses than compressing/decompressing files. A lot of business package things in docker containers and are probably more likely to donate bas…
- comment
-
comment
Comment #15018321
One nice thing about the movie theatre is that you're paying a large amount of money (~$5/hr) to be there, so you're more likely to pay attention. I find with netflix, people take …
- comment
-
comment
Comment #15012390
For the most part, adding complexity to anything increases the chance of failure. For average people (who don't generally give out their keys) it's not a great idea, but for airbnb…
-
comment
Comment #15011047
I wasn't even aware they existed until I saw this thread. I don't understand why companies feel they need to start selling average household products, but with cameras, microphones…
-
comment
Comment #15010579
I'm fairly certain you're incorrect. With the GIL you don't have to lock shared memory because the assumption is that only one thread will be running at a time. For example shared …
-
comment
Comment #15010517
Yes, I'm sure Google has analyzed this. I'm just saying it's fairly surprising considering that $3 billion hinges entirely on the assumption that people won't change the default. A…
-
comment
Comment #15009466
> "Court documents indicate that Google paid Apple $1B in 2014, and we estimate that total Google payments to Apple in FY 17 may approach $3B," Bernstein analyst A.M. Sacconaghi Jr…
-
comment
Comment #15008930
I tried. My company has a python API that we run on our machines, we sell the machines to businesses and don't manage them ourselves. We wanted to see if we could get some easy per…
-
comment
Comment #15008748
It's the same issue with Python. AFAIK there are a number of Python libraries that are not thread-safe, and the GIL prevents them from being an issue.
-
comment
Comment #15008647
Some APIs I've seen just use 400 for all generic client-side errors, including request syntax errors, impossible requests, duplicate requests, etc. I would argue that most of the t…
-
comment
Comment #14917521
Take this for what it is - I'm a software developeer who works in the cloud, not a cloud expert. The abstraction behind AZs is what every AZ counts for at least 1 data centre. So f…
-
comment
Comment #14917425
California is the most populous state. Most Americans treat Canada like it's some uninhabited wasteland, which is somewhat untrue. There are parts of Canada which are less populate…
-
comment
Comment #14917374
This is very disingenuous in my opinion, California is the most populous state. Most of Canada is not populated. Most Canadians live within the Quebec City-Windsor Corridor [1]. It…
-
comment
Comment #14913559
The S3 outage was across the whole US-EAST-1 region, not just one data centre. I know my company and a few others that are redundant within a region (ie if one AZ goes down), but n…
-
comment
Comment #14913099
Especially because AWS regions are broken up into multiple availability zones (data centres in the same area). So taking out a single data centre won't do much if the AWS customers…
-
comment
Comment #14912985
Only in Quebec is this allowed though, not the rest of Canada [1]. [1] https://en.wikipedia.org/wiki/Anton_Piller_order#Quebec_.28c... EDIT: turns out I'm wrong, disregard this.
- comment
-
comment
Comment #14907443
I don't understand how this is fundamentally different from just doing it in regular javascript. You could write a javascript function that recurses forever on condition x: just wr…
-
comment
Comment #14907379
Google also seemingly hasn't been trying very hard to make Youtube profitable. Spotify has a free tier, but you only get the "standard" 160 kpbs bitrate, as well as ads. To get the…
-
comment
Comment #14906004
Radio stations still exist and they survive primarily on audio advertisements. That's also without any of the internet fingerprinting which can be used to cater advertisements and …
-
comment
Comment #14904907
I don't know if that's necessarily true. Youtube is to Netflix what Soundcloud is to Spotify. Netflix and Spotify are successful because they charge a small fee to allow users to c…
-
comment
Comment #14902978
> The only legitimate complaint there is that it's tough in Rust to get two arbitrary mutable slices into the same array. Rust wants to be sure they're disjoint, to prevent aliasin…