Live data from Hacker News

Viewing profile — chrisheller

chrisheller

HN member
Joined
Thu, Jan 22, 2015, 5:37 PM UTC
HN karma
10
Public activity
6 items

About chrisheller

No profile information was provided.

Recent public activity

  1. comment
    Comment #9719658

    I'm not sure if the transposition was intended, but your comment shows another reason why using a calculated value here is good.

  2. comment
    Comment #9612309

    Have you played around with Nimborg? That allows embedding Python in Nim fairly easily. https://github.com/micklat/NimBorg I've been able to call into the Nim side from Python by t…

  3. comment
    Comment #9094799

    I saw the original link on my phone yesterday. The screenshots in the post were unreadable since pinch and zoom was disabled, so I didn't fully understand until pulling up HN on a …

  4. comment
    Comment #8937081

    NimBorg is what you're looking for, https://github.com/micklat/NimBorg

  5. comment
    Comment #8937073

    I haven't looked closely at the Vala stuff that you mentioned, but it is very straightforward to generate shared libraries in Nim with exported functions that you can access via ct…

  6. comment
    Comment #8930452

    You'll get an IndexError exception on that if there are any blank lines in the file. Changing that to line.lstrip().startswith('#') would be an alternate approach.