Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
kentor
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
9 ms
·
1.
▲
by
kentor
2y ago
The logo is not as cute, sad :(
2.
▲
by
kentor
2y ago
Just replaced Firebase with this in my personal notes app. Also removed redux along the way :) This is great!!
3.
▲
by
kentor
4y ago
chess.com's 72-page report[0] alluded to this video, and I'm glad this is what they had to say: "We have concluded that the methodology and the underlying tools used in those analyses do not meet our standard." [0] http
4.
▲
by
kentor
4y ago
He's a native speaker, just spent too much time around people with broken English recently.
5.
▲
by
kentor
4y ago
I was pleasantly surprised to find that they finally dogfood Fresh for https://deno.land/ Source can be found here https://github.com/denoland/dotland
6.
▲
by
kentor
4y ago
Video is cut off on mobile
7.
▲
by
kentor
5y ago
I've recently used Deno to implement a couple of bots for a small discord channel, namely webhook handlers for Discord Slash Commands and Twitch's EventSub. It's honestly been amazing. Next to no configuration and deployments
8.
▲
How to live better without Dependency Injection
(konmik.com)
3 points
by
kentor
5y ago
|
2 comments
9.
▲
by
kentor
5y ago
Is there a way to play at 2x speed? Edit: Oh they're on the overcast app, which allows playing faster.
10.
▲
Tsoa – OpenAPI-Compliant REST APIs Using TypeScript and Node
(github.com)
1 points
by
kentor
5y ago
|
0 comments
11.
▲
by
kentor
5y ago
The 3b1b video was mind blowing. Link: https://www.youtube.com/watch?v=spUNpyF58BY
12.
▲
by
kentor
5y ago
Why hate JSX? There are lots of benefits to it, like debuggability and variable scoping rules are exactly those of javascript. Templating languages, on the otherhand, are not debuggable and have awkward scoping rules. And, they always feel
13.
▲
by
kentor
5y ago
That is just javascript trivia that one rarely encounters in real code, and shouldn't be used to dismiss the entire language.
14.
▲
by
kentor
7y ago
My view is you define methods with parameters, you call methods with arguments. `ArgumentError` is consistent with an error during call time.
15.
▲
by
kentor
7y ago
Mutable strings was a mistake.
16.
▲
by
kentor
7y ago
"const a = {}" disallows reassignment to "a" but still allows you to mutate the object e.g. "a.b = 1". The const context does not allow you to mutate the object.
17.
▲
by
kentor
9y ago
I wrote one for node: https://github.com/kentor/tiny-ssg No "configuration". All code. You have to assemble the libraries from npm to make anything useful out of it though. Good luck.
18.
▲
by
kentor
9y ago
Maybe if it weren't plural. You're way over thinking things.
19.
▲
Babel: Planning for 7.0
(babeljs.io)
3 points
by
kentor
9y ago
|
0 comments
20.
▲
Prettier 1.6.0: Config File, JSX
(github.com)
2 points
by
kentor
9y ago
|
0 comments
21.
▲
by
kentor
9y ago
Still no support for 4 column panes :\
22.
▲
by
kentor
9y ago
Even a thin doctor who stays thin with a terrible diet?
23.
▲
by
kentor
9y ago
VSCodeVim is atrocious in handling multiple cursors amVim does it better, but is missing ; for repeating the last t or f command
24.
▲
by
kentor
9y ago
if you have yarn run yarn why crossenv to see if you have it in your dependency tree
25.
▲
by
kentor
9y ago
Why would it?
26.
▲
by
kentor
9y ago
Graceful degradation working though.
27.
▲
by
kentor
9y ago
I have a few large React apps that have been using mostly Immutable.JS from the very beginning, so I rarely run into issues where I need to think whether what I'm dealing with is an Immutable.JS object or plain JS objects. I can see an
28.
▲
by
kentor
9y ago
Indeed! It also isn't for people who have "javascript fatigue." And they can use any of the 10 in the list by the OP.
29.
▲
by
kentor
9y ago
I wrote my own because I don't like magic, reading a lot of documentation, and I hate templates. Using server side rendering with React is great! https://github.com/kentor/tiny-ssg
30.
▲
by
kentor
9y ago
It would be weird for async functions to be synchronous wouldn't it? Also the consumer is not required to use await with a called async function. They can use .then on it, or pass it around to other functions that consumes promises. Or
More ›