Viewing profile — cosmicexplorer
cosmicexplorer
HN member- Joined
- Thu, Sep 25, 2014, 7:58 PM UTC
- HN karma
- 183
- Public activity
- 26 items
- HN profile
- View on Hacker News ↗
About cosmicexplorer
Recent public activity
-
comment
Comment #32873926
His name is spelled "Gerard".
-
comment
Comment #27272747
I hope everyone in this thread talking about feeling unsafe understands they can leave San Francisco. Lived in the Tenderloin for almost 4 years now and this type of discussion alw…
-
comment
Comment #23505875
"The response was private so he shared publicly because it's relevant info for the community." Made me feel very positive to see this comment in the replies, thank you! It was very…
-
comment
Comment #23176161
I agree with this comment and I think it improves the conversation to have around, even if many people disagree with it.
-
comment
Comment #23176116
I'm pretty sure the parent comment understands that they can, and also agrees that they shouldn't.
-
comment
Comment #23130500
Also, I added back/forward support to org-info-js (along with a GPL license) here: https://github.com/cosmicexplorer/org-info-js . I haven't used it in a bit, but feel free to take…
-
comment
Comment #23130490
The sandyuraz.com dependency might be a good starting point for people who don't know how to make CSS styles, though, or want an example to go off of!
-
comment
Comment #22345342
Telling hardware vendors not to modify kernel code feels grotesquely anti-competitive.
-
comment
Comment #22144159
That's definitely correct^. In addition, I expect that this feature is intentional, as most requests will use well-typed thrift structs or graphql to perform backend requests (I th…
-
comment
Comment #17371810
I work at twitter and wasn’t able to find out immediately, but have been collecting responses like these + the article and communicating with someone who knows what to do. I only f…
-
comment
Comment #17327194
I disagree, it seems to be building on a lot of discussion build tool developers have been having recently. E.g. Pants (mentioned in the article) supports exporting not just scala …
-
comment
Comment #17327125
I’m developing the build tooling for C/C++ in pants (the twitter build tool) to support this work, see [0]. Twitter open sources basically all of its infrastructure, we don’t reall…
-
comment
Comment #17111409
I was thinking of the same article, and found it, I think [1]? There was a higher-rated link also posted around the same time with the same post content [2]. I also found a follow …
-
comment
Comment #14861244
Actually not sure how to do this with magit, but I just tried `vc-region-history' while highlighting an R method signature and body and got a pretty slick view of all the relevant …
-
comment
Comment #13868989
OK, found out what a bare repository means and pretty sure that's what it refers to. Still can't find any documentation for the query string parameter and don't know how that makes…
-
comment
Comment #13865811
What is the meaning of the "?bare" query string in the url? I googled around for the meaning of query strings on the github site but only found rnandom repos on github (not sure ho…
-
comment
Comment #11891944
https://github.com/syohex/emacs-helm-ag is also super cool, although it works from within emacs; you can interactively preview the matched areas without opening files, and jump dir…
-
comment
Comment #11619719
I think this what OpenACC ( https://en.wikipedia.org/wiki/OpenACC ) was created to do; its support is pretty iffy right now, though.
-
comment
Comment #11494807
yes, but quite a lot of tutorials i've seen / intro to systems courses seem to think it looks "cleaner" to use an if statement; switch is definitely the move here but i've seen the…
-
comment
Comment #11295268
I actually made a little thing for emacs that does something similar, actually tagging on the parsed parts of speech instead of just tokens. It requires you to select the text firs…
-
comment
Comment #11295267
I actually made a little thing for emacs that does something similar, actually tagging on the parsed parts of speech instead of just tokens. It requires you to select the text firs…
-
comment
Comment #11154579
The filtering by language is super cool; do you think you could ever allow adding custom tags as well?
-
comment
Comment #9806602
Is there an option to make it print the file:line:column? Cause I use emacs and rely on the compiler printing out error messages in that standard format so I can jump to them easil…
-
comment
Comment #9753977
Is there not like a "-O3" option to try aggressive code manipulation like that? Or is moving code around just not done at all because it's difficult to do correctly?
-
comment
Comment #9753919
Why wouldn't the OCaml compiler optimize away the variable usage in the first example? It seems an easy optimization to make if they're only used once.