Live data from Hacker News

Viewing profile — iokanuon

iokanuon

HN member
Joined
Sat, Jan 31, 2015, 2:10 PM UTC
HN karma
633
Public activity
122 items

About iokanuon

No profile information was provided.

Recent public activity

  1. comment
    Comment #44105330

    Actually thinking about it - why not have everything encased in sand all the time, you'd just have to be a kid playing in a sandbox when doing maintenance

  2. comment
    Comment #44105320

    If you don't have a bottom layer the sand will immediately fall

  3. story
  4. comment
    Comment #40263266

    You could do that, and it'd still be POSIX-shell comptible: loadenv() { case "$-" in *a*) source ./.env ;; *) set -a; source ./.env; set +a ;; esac } Although I have yet to see a l…

  5. comment
    Comment #40199420

    That will break if there's comments in the file, or if any one of the variables' values contain spaces. You can use `set -a` to load .env into an existing shell instance instead: l…

  6. comment
    Comment #40192375

    You'd need to `set -a` or pass the `-a` as a flag to have them auto-exported though, so: sh -ac '. ./.env; ./prog' Also if you use the `.` builtin it's a good idea to specify the p…

  7. comment
  8. story
  9. comment
    Comment #38164940

    This video is about motorcycles, not cars. Also, the data on this is in the linked video - the author demonstrates you can do a controlled stoppie to decelerate faster without ABS,…

  10. story
  11. story
  12. story
  13. comment
    Comment #34418749

    It's an option you can use when invoking `make` - so no need to specify extra cmake options, just during `make` invocation after `cmake` is already done

  14. comment
    Comment #34382814

    That's crazy. Where do you live? In Poland I just skipped the insurance system to get ADHD meds and went to a psychiatrist specialising in ADHD privately - $70 for a 20 minute visi…

  15. comment
    Comment #33091843

    >"ip addr show" lists interfaces and their stats. It's harder to read than ifconfig -a but gives you the same information in a similar format. It's worth noting that `-br` gives yo…

  16. comment
    Comment #32593399

    Just to be clear, I'm not trying to argue with you - just trying to share an observation from my own life. The experience of the inner monologue in my brain not being able to contr…

  17. comment
    Comment #32581577

    >Humans can delay gratification for larger payouts later on, which if we could not consciously do then I personally would probably do nothing with my life besides the basic biologi…

  18. comment
  19. comment
    Comment #23248494

    From what I remember about SSE, no Microsoft browser supported them. It seems like they've finally added support to Edge this year though.

  20. comment
    Comment #22891430

    It also might be illegal in some places right now

  21. comment
    Comment #22860321

    That's exactly why that works, the shell expands it, so mv foo-bar-{baz,quux}.txt becomes mv foo-bar-baz.txt foo-bar-quux.txt

  22. comment
    Comment #22795313

    That's exactly what the article is about.

  23. comment
    Comment #22627354

    All POSIX-compliant shells should support this.

  24. comment
    Comment #22548233

    There's a third option, postpone it a couple months.

  25. comment
    Comment #22541139

    >Moreover, in our dorms, we have effectively no way to eat if the dining halls close down. That sounds crazy to me, in Poland there's a multitude of cheap restaurants full of stude…