Viewing profile — nunull
nunull
HN member- Joined
- Sat, Sep 06, 2014, 9:24 PM UTC
- HN karma
- 50
- Public activity
- 38 items
- HN profile
- View on Hacker News ↗
About nunull
Recent public activity
-
comment
Comment #37378628
SEEKING WORK | Germany or Remote I am a web developer and designer. As a designer, I am interested in unusual web design and creative coding. On the technical side I have a strong …
-
comment
Comment #32308523
SEEKING WORK | Germany | Remote I am a web developer and designer with a strong background in software development. Before freelancing, I've worked for a larger OSS-based German so…
-
comment
Comment #30062896
I frequently found myself in need of sending clients information on how to reload websites without cache. This often involves asking for their OS and browser first, which can make …
- story
-
comment
Comment #29792544
This is really cool. One drawback is that it seems to touch the index, which I believe should be avoided, since it can disrupt the users workflow. I experimented with something sim…
-
comment
Comment #14635385
Not the first thing to look for, but I've found ShellCheck[1] to be pretty helpful when it comes to correcting typical mistakes. [1]: https://github.com/koalaman/shellcheck
-
comment
Comment #13043060
This returns the length, not the line itself. Edit: `lines.reduce((line, line_) => line_.length > line.length ? line_ : line, '')`
-
comment
Comment #13043057
Regarding 1: I think the sorting approach is actually really nice in this case. Clearly it's not as efficient as a simple loop, but it's safer and more readable. Explicit looping a…
-
comment
Comment #12437885
$ git pull origin master Your local changes to the following files would be overwritten by merge: user.abcd.suo Suggestion: git rm --cached user.abcd.suo Wooaa, no! (Now your local…
-
comment
Comment #10814168
Nice read! I'd really like to know when we can expect the next post to be published.
-
comment
Comment #10565441
> head extracts the first element of a list, which must be non-empty. Those functions operate on lists. I think it should read as follows. const head = (xs) => xs[0]; const last = …
-
comment
Comment #10230454
Messing with that faders feels weirdly good.
- story
-
comment
Comment #10159454
Q Why Python? A The only alternative would be Haskell, but I still have to learn that. That's... interesting. Would be nice if there was a reason given for that.
-
comment
Comment #10147595
May i ask why you are using this notation? I honestly can't think of any benefits. Isn't it more convenient and readable to use `p.removeAttr`?
-
comment
Comment #9975581
I'd then go with robot.keys.enter() (since enter is a function, not a constant) and make it chainable by returning `robot.keys`. robot.keys.ctrl().enter()
-
comment
Comment #9916792
I really like this! But I expected to see some code samples or something next to each description because of the title.
-
comment
Comment #9868359
Why? Could you reason about that?
-
comment
Comment #9864812
Somebody could write a CLI based client for this. That would be awesome and it looks like it would be very straight forward, too.
-
comment
Comment #9786550
That looks interesting. However, i'm not really into language-design and compilers and the first commit is from April while the project has only two contributors. Apart from the ab…
-
comment
Comment #9745004
Hmm. "just by knowing your victim's mobile number AND e-mail address AND having victim stupid enough to send YOU verification code"
-
comment
Comment #9560721
From the source: > yes, I know...wanna fight about it?
-
comment
Comment #9477408
Nice, i really like the idea of just using URLs for that but not having any specific GUI. Great!
-
comment
Comment #9476933
I generally like distraction free writing environments, but i doubt that it's really a good idea to have such without the ability to open / manage multiple "files". If you have to …
-
comment
Comment #9457312
I think what you mean by "interactive CLI" is reading from stdin, which seams to be supported.