Viewing profile — cbdfghh
cbdfghh
HN member- Joined
- Sun, Nov 27, 2016, 6:13 PM UTC
- HN karma
- 68
- Public activity
- 27 items
- HN profile
- View on Hacker News ↗
About cbdfghh
No profile information was provided.
Recent public activity
-
comment
Comment #13241847
>EE is open source It is _not_. You cannot distribute it. That makes it not open source.
-
comment
Comment #13190918
So what's the advantage of using Android over straight Linux?
-
comment
Comment #13190910
Just curious, is a Go string a C string inside (rune array + nil) or a proper class array? In other words, in a:="b"+"c" IOW, does it implement the Slemiel's painting algorithm or …
-
comment
Comment #13190879
>Hasn't happened. Won't happen. I don't know about five years. But in 25 I don't know if you'll be able to differentiate your computer from your (old, dumb) TV, except you'll have …
-
comment
Comment #13190138
Not everywhere. CA, for example, doesn't permit them. But companies also have non-compete (or other exclusionary) clauses which are legal outside of anti-trust laws.
-
comment
Comment #13189381
>employees weren't allowed to quit In the US you can quit and look for another job, the same way how MS can exit the OS market. The same way MS doesn't leave the OS market (too luc…
-
comment
Comment #13189336
The issue is that US workers now compete with the whole world. Until the 70s, the US really had no competition. To compete, you need a stable (legal) system - No one would invest m…
-
comment
Comment #13189191
>It's like employers don't even attempt to think about anything from the employee's perspective -- even after they've struggled to fill their own positions. "Cheap business owners"…
-
comment
Comment #13181732
Would it be possible to take ebay to a small claims court?
-
comment
Comment #13181684
In a library, breaking releases should be far fewer than "regular" feature releases. My point is that if you break code more than a few times in the history of your library, you'll…
-
comment
Comment #13181349
The point of Semantic Versioning is to tell you something. So let's say you have Compiler 5.3.2 It means that the important thing is compiler #5. Upgrading from 4 to 5 is a _Big De…
-
comment
Comment #13181218
> If you're using a proper type-safe compiled language then most "subtle" breaking changes can't possibly be missed because your code won't compile anymore (assuming you used that …
-
comment
Comment #13180249
> I like the idea of Semantic Versioning, but it does cause problems where if I'm going to do several breaking releases one after another I have to keep bumping the major version, …
-
comment
Comment #13173409
>There's a reason why the project name doesn't change just because you bumped the major version number. The OP suggested to make an "evergreen" Angular, like an evergreen Chrome. M…
-
comment
Comment #13172885
>It's much more reasonable though: they're committed to using Semver, so even a minor breaking change (like upgrading Typescript) will bump the version number. So they're expecting…
-
comment
Comment #13155378
I'm not comparing directly, but I want to put our "moral outrage" in perspective. This was the 1700s. People were living on subsistence farming. If you weren't a landowner in Engla…
-
comment
Comment #13154804
Well, what do we have nowadays? Want a house? Be a slave to Microsoft for forty years! Want to eat? Be a slave to Google! The poor were more than welcome to stay in England or Germ…
-
comment
Comment #13154754
If you don't want to get hacked by visiting a website, use cURL (actually, I think it had a few security bugs, so...) The difference is that websites have rep, and google polices s…
-
comment
Comment #13149903
That's also true. Sometimes I suspect the main programmers for Apache2/BSD/MIT licensed works actually hope their works get used by the big guys so they can get employment there. T…
-
comment
Comment #13149800
>I've been thinking more and more about how Stallman has blocked perhaps the only effective way to make companies make more open-source software: allow DRM to work properly with op…
-
comment
Comment #13149794
Personally, I find people complaining about the GPL's lack of freedom a bit hypocritical. What does the GPL prevent you from doing? As a user, nothing. As far as I (a user) is conc…
-
comment
Comment #13149687
IMHO, Stallman made two mistakes: 1. He moved into politics (which is in my HO, one of the failure points of a lot of tech people. Everyone has a right to an opinion, but certain p…
-
comment
Comment #13135770
> You're talking about rooting the phone, I guess you want /etc/hosts or something, but you know, even on the desktop that kind of solution requires sudo rights. This one is entire…
-
comment
Comment #13124364
What I would personally like (and I'm kind of surprised all projects which tried to implement it died) is a Java -> static exe/elf compiler (sort of like Go) or at least java -> ex…
-
comment
Comment #13061084
OpenSSL uses assembly not for speed but for security. You need to make sure algorithms don't "optimize" leaking data. For example, a strcmp on a secret field is insecure because of…