Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
tmstieff
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
tmstieff
6mo ago
It does use React for rendering the terminal UI.
2.
▲
by
tmstieff
7mo ago
I have the same issue. It gives this very weird minor sense of public speaking anxiety where I almost feel the need to write down what I'm about to say, which negates the whole purpose. Only solution I've found is using push-to-ta
3.
▲
by
tmstieff
1y ago
The easiest alternative is using a where clause and filtering by an ID range. Eg: "WHERE id between 1000 and 1200". But this introduces a ton of limitations with how you can sort and filter, so the general advice of not using LIMI
4.
▲
by
tmstieff
3y ago
Firefox also started moving away from a shared memory model towards sandboxed tabs during that period, which had an effect on memory consumption.
5.
▲
by
tmstieff
3y ago
Curious if you're referring to Maya the 3d application or something else?
6.
▲
Godot 3.5
(godotengine.org)
179 points
by
tmstieff
4y ago
|
115 comments
7.
▲
by
tmstieff
4y ago
This seems like an outrageous statement on its face. They probably have React on their resume because that is where the job market has drifted. No one is getting hired these days, even at old-school Fortune 500 type companies, for listing &
8.
▲
by
tmstieff
4y ago
Good point, I immediately read it and replaced "role" with programmer since it was posted on HN.
9.
▲
by
tmstieff
4y ago
Isn't the point of having a PM to bridge the gap between leadership that knows the domain of "it" and IT who knows how to implement general business needs onto a technical solution? Of course that would require having a PM to
10.
▲
by
tmstieff
4y ago
The article actually argues the opposite. Developers should move their focus to integration / "real-world" tests. The major summary bullet point being: "Aim for the highest level of integration while maintaining reasonab
11.
▲
by
tmstieff
5y ago
I'm working on a codebase that evolved at the same pace as React, but without any thought for idiomatic principals. As a result, you have class-based components, purely functional components, hook based components, HOCs, Redux state pa
12.
▲
by
tmstieff
5y ago
I think I agree with you as well. Although it is hard for me to picture exactly how you've structured your dependency graph. In any case, extracting the business logic into some sort of static method / class has definitely been on
13.
▲
by
tmstieff
5y ago
I've tried this now on my 2019 Macbook pro, and my 2018 Thinkpad T480 running Linux. On Mac, I can't say I really noticed a difference. Also there were quite a few font rendering issues that were resolved with whatever patches Jet
14.
▲
by
tmstieff
5y ago
SHA-1 collisions have been proven as an attack vector for a few years now. https://security.googleblog.com/2017/02/announcing-first-sha...
15.
▲
Ask HN: Alternative YouTube recommendation engine?
3 points
by
tmstieff
5y ago
|
1 comments
16.
▲
by
tmstieff
6y ago
Anyone have production experience with Crystal? I know it's not 1.0 yet, but there are some fairly mature web frameworks available that make the language look pretty attractive.
17.
▲
by
tmstieff
6y ago
Germany and Sweden are the top 2 most litigious countries in the world, so I guess perception is off.[1] The USA is still in the top 5 though. [1] https://www.academia.edu/35495485/The_Most_Litigious_Countri...
18.
▲
OpenRCT2 0.3
(openrct2.org)
79 points
by
tmstieff
6y ago
|
9 comments
19.
▲
by
tmstieff
6y ago
I've been on a few projects now that attempted to implement most of these patterns wholesale. The idea is simple to grasp and implement with a small team, but it's been nearly impossible maintain any cohesion for larger organizati
20.
▲
by
tmstieff
6y ago
The article mentions they had someone else sit in on the test rather than take it themselves.
21.
▲
by
tmstieff
6y ago
Seems many commenters missed this statement. It's also troubling how common it is to hear assertions that async is king especially on projects where your future scale is unknown. Based on https://web.archive.org/web
22.
▲
Literate Devops with Emacs Org-Mode (2014)
(howardism.org)
213 points
by
tmstieff
9y ago
|
80 comments
23.
▲
by
tmstieff
9y ago
The left hand side only reserves the memory, the right hand side actually initializes the object. A bit redundant I agree, but to the compiler it is two atomic operations.