Viewing profile — iokanuon
iokanuon
HN member- Joined
- Sat, Jan 31, 2015, 2:10 PM UTC
- HN karma
- 633
- Public activity
- 122 items
- HN profile
- View on Hacker News ↗
About iokanuon
No profile information was provided.
Recent public activity
-
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
-
comment
Comment #44105320
If you don't have a bottom layer the sand will immediately fall
- story
-
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…
-
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…
-
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…
- comment
- story
-
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,…
- story
- story
- story
-
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
-
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…
-
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…
-
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…
-
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…
- comment
-
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.
-
comment
Comment #22891430
It also might be illegal in some places right now
-
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
-
comment
Comment #22795313
That's exactly what the article is about.
-
comment
Comment #22627354
All POSIX-compliant shells should support this.
-
comment
Comment #22548233
There's a third option, postpone it a couple months.
-
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…