Viewing profile — ginko
ginko
HN member- Joined
- Wed, Jan 04, 2012, 12:09 AM UTC
- HN karma
- 7,910
- Public activity
- 2,590 items
- HN profile
- View on Hacker News ↗
About ginko
No profile information was provided.
Recent public activity
-
comment
Comment #49168687
"deliberately (created and escaped)" is very implausible yes. "(deliberately created) and escaped" not so much though.
-
comment
Comment #49121237
That one I can't be too mad about. Better FIFA gets the profits instead of ticket scalpers.
-
comment
Comment #49047601
Jesus isn’t European
-
comment
Comment #49033853
>It has the last master plate, and some photos of how it all looked on the last day. There is a photo of a technician sweeping up on presumably the last day before the plant was sh…
-
comment
Comment #49012322
Simplex noise is nice because it's more efficient to calculate, especially for larger dimensions but it has a noticeably different look to it so it's not a drop-in replacement.
-
comment
Comment #49012258
Is it so hard to explain what the term "High-NA" is supposed to mean at the start of your article?
-
comment
Comment #48996854
Transputers have nothing to do with quantum computing. They're completely classical computers.
-
comment
Comment #48923190
If I search for "Open AI" on google right now the first search results are openai.com, chatgpt.com and the OpenAI wikipedia page. None of which are open AI.
-
comment
Comment #48880195
The cosmopolitan capital of Tórshavn. Population 14k people.
-
comment
Comment #48865256
Because then you have to add that you mean UTC since the time format looks like local time. With beats it's obvious from the formatting that it's internet time.
-
comment
Comment #48862954
I almost think that one was a bit too early. Having a "universal" way to share time that's not timezone ambiguous would be pretty handy these days.
-
comment
Comment #48862826
There's for instance: https://en.wikipedia.org/wiki/Traditional_Chinese_timekeepin...
-
comment
Comment #48818742
You can't clean them without leaning dangerously outside for one.
-
comment
Comment #48818449
Sliding windows are terrible though. Why would you want those?
-
comment
Comment #48764731
The person doing the hiring would be criminally liable and probably go to prison. The corporation itself would at best pay a fine.
-
comment
Comment #48730416
I wonder if a source-based distro like Gentoo would have made OP's life slightly easier. Portage for instance should allow you to maintain a set of patches to automatically apply w…
-
comment
Comment #48692462
>Our desktop OSes are just incompatible with running untrusted software, and you're gonna want to do that. So you're saying people should only use walled garden closed source OSes?…
-
comment
Comment #48679856
>Is there any part of the world you can have a six top with individual checks when you didn't tell them up front to split the bill? Not uncommon here in Norway. I had payday beers …
-
comment
Comment #48676376
IBM regularly announces silicon breakthroughs like this but I'm not aware of those ever becoming products. Is IBM mainly in the business of licensing their technology to big silico…
-
comment
Comment #48667247
>This is literally not a problem. All Python projects use 4-space indentation. Tell that to the one team at my old workplace that used spaces for all their scripts. Like I said it’…
-
comment
Comment #48664106
Well yes. Say you check out a project that's all tabs but your editor is using spaces for indentation. You change a line and now the program is broken. Calling the auto-formatter w…
-
comment
Comment #48659474
You can't autoformat broken indentation with significant whitespace since it would make the program not parse (or parse incorrectly)
-
comment
Comment #48658573
>Because then you just hit that key binding, then press `>` or ` But that's cumbersome compared to moving the block of code and hitting Tab to have your superior editor immediately…
-
comment
Comment #48653627
It‘s a source of problems with mismatched tabs/spaces being used for indentation between team members for fairly little upside. Imo it also makes moving blocks of code more cumbers…
-
comment
Comment #48653358
Adding significant whitespace to a new language feels like a bad choice. It's not terrible but I do think it was a bad call for Python in hindsight.