Live data from Hacker News

Viewing profile — zombinedev

zombinedev

HN member
Joined
Thu, Jun 22, 2017, 1:05 AM UTC
HN karma
25
Public activity
17 items

About zombinedev

No profile information was provided.

Recent public activity

  1. comment
    Comment #29918787

    Regarding GtkD, you may find this blog interesting: https://gtkdcoding.com/

  2. comment
    Comment #27367140

    https://github.com/atilaneves/automem

  3. 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…

  4. comment
    Comment #23218663

    It's ok now, as far as I can see.

  5. 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…

  6. 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…

  7. 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 …

  8. 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…

  9. 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…

  10. 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…

  11. 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…

  12. 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…

  13. 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 …

  14. comment
  15. 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.

  16. 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?

  17. 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…