Viewing profile — graue
graue
HN member- Joined
- Sun, May 13, 2012, 2:50 AM UTC
- HN karma
- 2,897
- Public activity
- 774 items
- HN profile
- View on Hacker News ↗
About graue
https://scott.mn
email: scott@
https://twitter.com/graue
https://github.com/graue
Recent public activity
- story
-
comment
Comment #8100591
I do it. I always thought, "What's the harm? Everything important is over SSL these days". Apparently not!
- story
-
comment
Comment #7008894
Pebble has a timer app that meets all your requirements. I use it for pomodoros, laundry, steeping tea, cooking rice, etc. Unbelievably handy.
-
comment
Comment #6953443
Think of strings in JavaScript. Those are already immutable: var fooString = "foo"; var secondFooString = fooString; secondFooString; // => "foo" fooString = "bar"; secondFooString…
-
comment
Comment #6953381
Looks like Sablono, which provides a Hiccup-style syntax you can use with Om, is your best bet there: https://github.com/r0man/sablono
-
comment
Comment #6932195
Interesting perspective, thanks. I suspect it depends on whether you're more used to langs like Ruby, Python, JavaScript (which are more like Clojure) or Java (which is more like S…
-
comment
Comment #6923717
Did you ever look at Clojure? If not, why not? If so, what didn't you like? While Clojure surely has a bigger learning curve than Go, it's much simpler and more approachable than S…
- story
-
comment
Comment #6922817
Congrats on your company's success! However, I'm surprised that you single out a 40-hour work week as though it's something exceptional. Isn't that the standard? I would never cons…
-
comment
Comment #6913644
As a fellow Clojurist, I agree with the substance of what you're saying here but wish you could express it in a more friendly manner. Both your comments essentially say "you're wro…
-
comment
Comment #6912983
> Immutable arrays, where the entire array must be copied with the change of one element, are an example of that. Only in a naive implementation. Clojure, for example, has a persis…
-
comment
Comment #6899045
Music. You can have hundreds of thousands of fans and still not be able to quit your day job.
-
comment
Comment #6872822
It suddenly occurs to me that "startup" is the new "indie", or "viral". It's become a genre rather than a descriptor of the source of the content.
-
comment
Comment #6826263
It's true that historically "he" has often been used a generic pronoun, but singular "they" also has a long history. I'd start with this Wikipedia article: https://en.wikipedia.org…
-
comment
Comment #6787403
Cryptocat was and is open source too: https://github.com/cryptocat/cryptocat That doesn't solve the problem. No one is going to manually view source and compare it every time they …
-
comment
Comment #6786473
> we are creating a client-side, in-browser encryption system where a user can upload their already encrypted content to our storage system and be 100% confident that their data ca…
-
comment
Comment #6783470
Same here. After checking in a local ClojureScript REPL, I just changed the URL to sequence-comprehensions/6 and went on.
-
comment
Comment #6782927
Awesome site! Having done a few Clojure projects lately, I got most of these right immediately, but there were a few I messed up. It would be cool if you could go through these fla…
-
comment
Comment #6773261
Hmm... did this site get served a secret warrant last week? Or did they just forget to update their warrant canary? https://mediacru.sh/transparency/warrant-canary.txt (Note: the d…
-
comment
Comment #6771684
Isn't that Y Combinator, or any startup accelerator?
-
comment
Comment #6770012
" every undoable action first needs to be represented by an object in your code. This is called the Command Pattern " This is too OO for my taste. Having just seen a talk about Min…
-
comment
Comment #6764419
Shoot, no patch for the 1.2.x series? That's disappointing. It's not that old, is it? I feel like I upgraded to 1.2.x, which was then the newest stable branch, just over a year ago…
-
comment
Comment #6764033
Three times, so: 1. Old version compiles new version 2. New version, compiled by old version, compiles new version 3. New compiled by new-compiled-by-old compiles new version I had…
-
comment
Comment #6757117
If you're going to comment mentioning it, you should probably tell people what it is :) For those who haven't seen it, Nightcode is a new, open-source Clojure and Java IDE written …