Viewing profile — korm
korm
HN member- Joined
- Wed, Aug 12, 2015, 6:17 PM UTC
- HN karma
- 345
- Public activity
- 107 items
- HN profile
- View on Hacker News ↗
About korm
No profile information was provided.
Recent public activity
-
comment
Comment #48563536
It's interesting to see UK-based influencers all citing these weak studies (internet surveys) about how social media is not so bad for children, or bemoaning the huge loss for chil…
-
comment
Comment #46771302
From an engineer working on this here on HN: > ...while far off from feature parity with the most popular production browsers today... What a way to phrase it! You know, I found a …
-
comment
Comment #46159578
Yep, every SLA I've ever seen only offers credit. The idea that providers are incentivized to fudge uptime % due to SLAs makes no sense to me. Reputation and marketing maybe, but n…
-
comment
Comment #46139548
It's not a transitive dependency, it's just literally bundled into nextjs, I'm guessing to avoid issues with fragile builds.
-
comment
Comment #45885365
Gitkraken is the best, and I can't believe anyone would voluntarily use Sourcetree over it. I've used gitkraken for over 9 years and it's great for both newbies and pros. It comple…
-
comment
Comment #44249041
GitHub has both webhooks and an extensive API. What you are describing is entirely doable, nothing really requires GitHub Actions as far as I know. Most people opt for it for conve…
-
comment
Comment #44035710
They must have not asked enough Leetcode Hard questions in interviews.
-
comment
Comment #43920470
The mod_pagespeed filter "prioritize_critical_css" was released exactly 12 years ago in early May 2013. At least 3 more popular critical css tools were released the following year,…
-
comment
Comment #43228946
It's a bit like the tag. A codebase that's littered with stuff like "InlineStack" is harder to work with and parse because the resulting div soup still requires extra styling, whic…
-
comment
Comment #43058885
React was literally first created in ML out of the author's dislike of MVC, who preferred functional programming and immutability[0]. For a long time, react aspired for its future …
-
comment
Comment #42060479
> North Korea didn't fire a single missile https://en.m.wikipedia.org/wiki/List_of_North_Korean_missile... > Russia didn't invade Ukraine Russia invaded in 2014 and the conflict st…
-
comment
Comment #41377444
The crew had 13 hours of oxygen supply for two pilots.
-
comment
Comment #41091941
If seeing how common `eslint-disable-next-line react-hooks/exhaustive-deps` is any indication, people just don't bother with best practices. Not to mention the majority of people I…
-
comment
Comment #39814083
Not only did your tool help me with Aegis & Keepass, but it introduced me to Go, so thank you 2x for it!
-
comment
Comment #39810737
Here's a utility to convert exported Aegis JSON to a Keepass 2 or KeepassXC database if anyone's interested https://github.com/GeKorm/atk (binaries in the releases page)
-
comment
Comment #38399447
Search: "pizza", filters: 4.5+ star rating. Result: Zoom out, show 10 places with ratings starting from 1.5, among them a nail shop and a government building. If I'm lucky, it will…
-
comment
Comment #38394804
The client can track its own error rate to the service, but it would need information from a server to get the overall health of the service, which is what the author probably mean…
-
comment
Comment #38175981
It's confusingly presented in the video, but they already work in the near infrared, up to ~900nm. They're used with IR illuminators and lasers all the time. There are tubes that w…
-
comment
Comment #37800500
Exactly, clicking on the commits I want to cherry-pick is way faster for example.
-
comment
Comment #37800469
My comment is in agreement with yours! I'm just expanding on how absurd it is to struggle with merge because GP didn't know about a simple --abort, and how common it is even with s…
-
comment
Comment #37799989
It's so frustrating when people joining my team often scoff at the idea of using a git GUI. They're hired to write software, not fumble with ancillary tools that they've been using…
-
comment
Comment #37682482
My experience is that there were tons of cheaters in the middle, most populated ranks, and it cleared up at Global, or at least the cheats were subtle. I am certain of this because…
-
comment
Comment #37651811
> there is no good evidence that filtering blue light with spectacles... That's likely referencing this recent review[1]. The products referenced don't actually reduce blue light b…
-
comment
Comment #37132729
I'd be frustrated with React too if I worked in team where these things are not well understood. You don't need to read "multiple articles" about these things, they're explained cl…
-
comment
Comment #36454004
Nothing to do with React, it's a common optimization to improve performance with long lists. You only render the dom elements in the viewport, with some buffer. A common technique …