Viewing profile — zombinedev
zombinedev
HN member- Joined
- Thu, Jun 22, 2017, 1:05 AM UTC
- HN karma
- 25
- Public activity
- 17 items
- HN profile
- View on Hacker News ↗
About zombinedev
No profile information was provided.
Recent public activity
-
comment
Comment #29918787
Regarding GtkD, you may find this blog interesting: https://gtkdcoding.com/
-
comment
Comment #27367140
https://github.com/atilaneves/automem
-
comment
Comment #27367090
> I hate code like `1.writeln` Meh... after not more than my first month into D this syntax grew on me and now I just use `1.writeln` everywhere. More than a few years later, I can…
-
comment
Comment #23218663
It's ok now, as far as I can see.
-
comment
Comment #21279920
Initially coming from C++ background, e.g. I had good understanding of its ownership model with move vs copy semantics (unique_ptr vs shared_ptr), I read many Rust blogs, watched a…
-
comment
Comment #21279870
You're mistaken. By default D statically links all D dependencies (leaving only libc and possibly OpenSSL (if you need it)) to be dynamically linked (which has it's advantages), bu…
-
comment
Comment #21279840
To escape the shit show that C and C++ are in their unique ways. In my experience, one of the worst things was working on a proprietary 1M+ LoC codebase. Everything was so painful …
-
comment
Comment #17362558
If you have a half million codebase that you need to migrate, I would say that every heavily used Extended Pascal feature is required to be easily translatable. If it's simply poss…
-
comment
Comment #15084856
It is not described in the betterC page as these features are not new for D. The betterC page only describes the differences versus the full D feature set. Documentation for the in…
-
comment
Comment #15084424
D provides the same low-level access as C. Heck, in D you can even use inline assembly, so there are really no barriers to what you can achieve. MMaping files and casting their con…
-
comment
Comment #15084365
D has quite good multi-dimensional array support, though probably not as flexible as Python. One of the best libraries in this area is ndslice (part of mir-algorithm) - http://docs…
-
comment
Comment #15083239
If you're interested in high-performance scientific computing, then I guess you'll pleased to know that many use D for this domain, specifically for its high-performance and also h…
-
comment
Comment #15083219
Yes, in this example, but once you start looking at more interesting pieces of code it becomes close to impossible for C beat D without heavy use of macros on the code readability …
- comment
-
comment
Comment #15083089
RAII in not removed by design. It is just work in progress. It will be added to -betterC when its implementation is more mature for this mode.
-
comment
Comment #15083066
Can you compare your D vs Nim experience in more detail? What are the key points that you like better about Nim?
-
comment
Comment #14625999
I think the main factor is that the primary contributor to GDC (Iain) made a giant push for this to happen in the last 6-12 months. Just look at this graph: https://github.com/D-Pr…