Viewing profile — EvenThisAcronym
EvenThisAcronym
HN member- Joined
- Tue, Mar 04, 2014, 3:54 PM UTC
- HN karma
- 132
- Public activity
- 91 items
- HN profile
- View on Hacker News ↗
About EvenThisAcronym
No profile information was provided.
Recent public activity
-
comment
Comment #49104514
> We merged the tuple destructuring PR (that was open for years again so the author was happy to get it to land somewhere!) and upstream followed there too. FYI that had very littl…
-
comment
Comment #32771667
I think the cognitive function model is fine and useful, which is why Dr. John Beebe's model is so appealing. My main issue with Meyers-Briggs is the use of a questionnaire to type…
-
comment
Comment #32761493
Meyers-Briggs is absolute trash and should not be used by companies for anything. Big 5 is also almost completely worthless beyond vaguely describing a person's general tendencies.…
-
comment
Comment #28864586
> The problem with all-chat in League of Legends, particularly in the ranked queue, is that it can only hurt your team's chances to win. At best, you're wasting time typing; at wor…
-
comment
Comment #26592683
> As just one anecdote, the mere presence of a GC made me stop looking at D more or less immediately. That's a shame, because it is extremely easy to write GC-free code in D. One v…
-
comment
Comment #26539541
> But it also seems like D is not suitable for a lot of things that C++ is, like embedded applications Not sure where you got this idea, as being usable for embedded programming is…
-
comment
Comment #25510450
> Rust has Non-Lexical-Lifetimes (and soon Polonius). D's documentation is very sparse about how lifetimes in @live will be determined, but I think it's safe to assume that it will…
-
comment
Comment #24861752
> I couldn't sleep much (sometimes 4 hours max) Did you find some way to mitigate this or did you just have to live with it during the fast?
-
comment
Comment #24861723
> Exercising might reduce the loss of muscle mass to some extent That does indeed seem to be the case, at least for a 16:8 intermittent fasting regimen (an 8 hour eating window wit…
-
comment
Comment #23517556
Then use garbage collection; it's an easy default.
-
comment
Comment #23371697
>If you need typed functional programming, your options are OCaml, Scala, F# or even subsets of Rust and TypeScript. And don't forget D. It's surprisingly well-suited for FP as its…
-
comment
Comment #23079250
> However I MUST say this is from 4chan so BE CAREFUL about what you download and how you play with stuff. The only danger in downloading something leaked on 4chan is that you run …
-
comment
Comment #23008464
I get it; you posted before reading the docs first. Don't get mad, it's okay - we've all done it. Take this as a learning experience and move on.
-
comment
Comment #23008024
Rust does have auto; "let" and function literal parameter type inference, for a start. It just doesn't let you use it in the return type position.
-
comment
Comment #23007979
Returns A range with each fun applied to all the elements. If there is more than one fun, the element type will be Tuple containing one element for each fun.
-
comment
Comment #22988280
We already have this for food: services like Skip The Dishes, Uber Eats, etc.
-
comment
Comment #22855442
> Profit is not compensation for risk. Yes it is. The primary reason anyone takes on risk is because there is profit in it.
-
comment
Comment #22384324
Visual Studio with Visual D is a top notch D experience.
-
comment
Comment #22173405
> So what am I missing here? The Haskell program is multi-threaded (I don't know about wc's official implementation, but I assume it is as well), while the D program is single-thre…
-
comment
Comment #22001848
> Rust came to be to address the issue with security and there is not really an alternative. What does Rust have to do with security? It's not even compliant with any modern securi…
-
comment
Comment #21271941
Yes, or if you don't want to use a template function, for whatever reason, you can wrap the result of iota(1000) into an InputRangeObject (see https://dlang.org/phobos/std_range_in…
-
comment
Comment #21264590
Visual D with Visual Studio is the gold standard, with full debugging, autocomplete, and static analysis support. Code-D with VS Code is also great, and it has fairly recently gott…
-
comment
Comment #21264438
Let me give you a little guidance on this (if you happen to still be using D). Most functions in std.algorithm (and many more throughout the rest of the standard library) return "r…
-
comment
Comment #20453277
> This is different from being able to walk a directory and read random files. D doesn't allow you to do that either. You have to specify what files you are importing via a compile…
-
comment
Comment #20306544
> D's contract mechanism [...] can provide very strong guarantees to the compiler... which the LLVM D compiler definitely uses. That's awesome. I didn't know LDC uses contracts lik…