Viewing profile — he_the_great
he_the_great
HN member- Joined
- Wed, Jun 17, 2009, 3:57 AM UTC
- HN karma
- 39
- Public activity
- 61 items
- HN profile
- View on Hacker News ↗
About he_the_great
No profile information was provided.
Recent public activity
-
comment
Comment #33215937
auto alist = [1, 3, 2]; alist .sort .map!(x => x * x) .map!(x => x - x/2) .map!(x => x + 1); This seems like what you're asking. Each of those is a template. And while this is all …
-
comment
Comment #29998068
Those don't matter, because while you can't build your own in Go, the built in types provide the same functionality.
-
comment
Comment #29922119
Yeah I do much in C# and almost never use generics. And when I do it is almost always not what I want. D has me fooled and I can't imagine Go choosing to go further in D's directio…
-
comment
Comment #23511618
Well learning D or Rust likely will not help you get a job writing Javascript. My C# style is heavily influenced by D, for the better IMO. I have some potential coming up to do som…
-
comment
Comment #23510415
D implementation of algebraic type is in the library. https://dlang.org/phobos/std_variant.html#.Algebraic I have not utilized tagged unions outside this type so I'm not one to com…
-
comment
Comment #21371130
I tried to make libre contribution, but I prefer the concept of granted power and that was not their direction. https://github.com/liberland/constitution
-
comment
Comment #21371091
At this point yes. But that is for historical in accuracy, like the 12 amendment being added twice. Restructuring and formatting can come in as post edits. There is currently a rew…
-
comment
Comment #21371003
It is also important to note that the firearm, while not as powerful, could be just as deadly with the limited medical knowledge, speed of transportation. It would be a little hard…
-
comment
Comment #21370964
The repo does edit the original document. The original amendment text is included in a separate file, but is not the purpose of the commit.
-
comment
Comment #21370898
Nope, a rewrite branch is in the works (to many glaring issues to start with.)
-
comment
Comment #21370882
It is fine, this isn't a legal platform, the issues are being labeled and later closed.
-
comment
Comment #21370857
No tools, just manual lookup. There is now a history rewrite based on the feedback happening.
-
comment
Comment #21370693
That is why you have merge request approvers and the merger. The work can be authored by many because each makes small contributions. You can even have multiple protected branches …
-
comment
Comment #21370638
The Bill of Rights is more additional than modification. The president is the commander an chief of the military, it seems reasonable he would not be allowed to quarter his troops …
-
comment
Comment #21370363
No the dates are wrong, and the conversation used is stupid.
-
comment
Comment #21368149
Git does not store commit dates pre 1971. The commit message has the correct date because it is just text.
-
comment
Comment #21280327
Not only has that been happening for years, Google will match D when you search for dlang, wouldn't be surprised if the reverse is true. Google has figured this out for you.
-
comment
Comment #21279214
While not a targeted answer to why not go/rust, this is my case https://dev.to/jessekphillips/my-case-for-d-444p
-
comment
Comment #21279186
I think D is still working through lack of support for dynamic libs (lots of headway was made so I may be wrong) It is funny how Go sold it as a feature, but it was always a defici…
-
comment
Comment #21279158
Because Walter wrote a native compiler. I could see the same fate for nim, Walter writing a native compiler for fun that is.
-
comment
Comment #21278856
It is less about how it feels and more about how it looks. And appearance really only changes when you hit templates. And with D you can't tell (as an outsider) so it just looks li…
-
comment
Comment #21278816
It is the first thing I added to my articles when I introduced range based operations : https://dev.to/jessekphillips/count-of-a-list-in-d-49k4
-
comment
Comment #20877560
SQL gets rather mistifying when you move towards some complex joins and data mapping. PSQL can also feel Sadly out of place. But their is real nice clarit in what you want at its f…
-
comment
Comment #16242926
Seriously though, not being thrown into a program editor at boot is not what prevents getting started with programming. It probably is the fact that you can do non-programming on t…
-
comment
Comment #14597270
It still does, but that doesn't mean you aren't able to create garbage. There is effort to both improve the GC and to make it easier to avoid allocating GC managed memory.