Viewing profile — okbake
okbake
HN member- Joined
- Mon, Aug 12, 2013, 6:38 PM UTC
- HN karma
- 96
- Public activity
- 66 items
- HN profile
- View on Hacker News ↗
About okbake
No profile information was provided.
Recent public activity
-
comment
Comment #29236730
I agree with you about the `nameof` comparison, mainly because it deceptively looks like something you'd be able to write yourself (since it's just an attribute), but under the hoo…
-
comment
Comment #26784130
I could see both, but things like integer vs float couldn't be determined from the type, since you just have the single `number` type. That being said, you could just convert to an…
-
comment
Comment #24608735
A suggestion: don't hide the entire store component when you change one of the filters. You can see it flash with unstyled text "loading" before popping back into view. It's much l…
-
comment
Comment #24592214
I wish there was a little bit more data on this last chart. How are they measuring 'math progress' here? It looks like the data comes from "online usage data from Zearn math", but …
-
comment
Comment #24511147
I am in this same boat. I recently signed up for Firefox Private Network and I'm in the process of switching over to Mozilla VPN. I think both of these services are great (even if …
-
comment
Comment #23214304
A big benefit of the `users->where(...)` approach is being able to reuse and compose. An example would be conditionally adding a WHERE clause based on some parameters. Using the ra…
-
comment
Comment #23109692
> According to SCS, the UI would be responsible for fetching that data from the other systems, and would pass all of it as part of the payload to the order fulfillment service. One…
-
comment
Comment #22894495
Unfortunately the PPP money has all been dried up as of today, and many small businesses weren't able to take advantage of it. This site was put together to track how many business…
-
comment
Comment #22212943
There are a few casts that are allowed that I would consider unsafe, particularly around unions of literals or using empty object literals: // No error here type Animal = 'dog' | '…
-
comment
Comment #21467967
Maybe we need a new license that is similar to existing open source licenses with the addition that it can't be used by FAANG.
-
comment
Comment #21077485
It could be a matter of size, but it's since the charging port isn't on the earbuds itself it might not matter. usb-c connectors are (8.4mm x 2.6mm) whereas micro-a is (6.85mm x 1.…
-
comment
Comment #20899965
I assume "couldn't even tell it had alcohol in it" was referring to taste and not intoxication.
-
comment
Comment #20202092
It looks like a element is allowed to have div ancestors: https://html.spec.whatwg.org/multipage/grouping-content.html...
-
comment
Comment #19290295
Sorry, I didn't mean to imply astroturfing. My comment is asking how many people "paid to read the article" (because it's behind a paywall), and not "were paid to comment here". St…
-
comment
Comment #19250822
I'm curious if all of these comments here are people who paid to read it or just extrapolating off a the headline.
-
comment
Comment #19250788
The visualizations here are great. I really like how it represents the different branches of a tree structure
-
comment
Comment #19204111
Title should either reflect the original article or be amended to include "at some point in the future". FTA: > Once we consider ESLint feature-complete w.r.t. TSLint, we will depr…
-
comment
Comment #18778731
`with` is an oddball. It's a macro but it's also a special form that has unique syntax that's not used anywhere else. It's basically the only variadic function in the language and …
-
comment
Comment #17849040
NGRX (the redux inspired state management library for angular) has a concept called 'effects', which lets you subscribe to the action stream (actions and the state in ngrx are both…
-
comment
Comment #17431479
The biggest thing for me when trying to switch from console vim is `alt + ` will send ESC and the key, so you can use alt to exit insert mode and send a command at the same time. D…
-
comment
Comment #16682924
I'm a fan of TypeScript's structural typing for this reason. I can define an interface that describes the shape of a "plain old object" (it's fields and their types), and then writ…
-
comment
Comment #15774400
I recently switched jobs and went through several rounds of interviews with several companies and the MOOCs I listed on my resume always came up. They served as a way for the inter…
-
comment
Comment #14686043
The recursive search is frustrating. I'm so used to doing to navigate from the root directory all the way down to what I'm looking for. It's not only the small hangs while it searc…
-
comment
Comment #14511641
I use a tiling window manager (spectrwm) and I am almost always using a single window in fullscreen. Apart from the browser most of my workspace exists inside the terminal where I'…
-
comment
Comment #14511573
I pipe a list of installed programs into dmenu and have it run whichever one I select. I have this bound to Mod+p. dmenu has fuzzy search, so if I want to open firefox I can just t…