Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
devbent
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
8 ms
·
181.
▲
by
devbent
3y ago
After having some React full time for over 2 years, the first time I used svelte I was at least 3x more productive than I was in react. That is what I got out of it.
182.
▲
by
devbent
3y ago
Like typescript, which is an amazingly good language with an absurdly powerful type system that is easier to learn that competing absurdly powerful type systems!
183.
▲
by
devbent
3y ago
> Yet the lives of ordinary people have hardly improved and are arguably worse since the 1980s Read up on improved crop yields for subsidence farmers who got access to weather reports through smart phones. A lot of people are not starvin
184.
▲
by
devbent
3y ago
On some tasks I've seen huge gains. I needed to setup a websocket server, chatGPT saved me tons of hours because Google results are now all useless blogspam so even finding simple resources has become hard. I needed a custom ui compone
185.
▲
by
devbent
3y ago
What is wrong with svelte stores? I've found them to be incredibly powerful and much easier than dealing with redux.
186.
▲
by
devbent
3y ago
Svelte by itself is super tiny. Sveltekit does a lot more stuff and is accordingly bigger.
187.
▲
by
devbent
3y ago
I use a space indent colorizer plugin that I use a grey scale color scheme with. It isn't a complete replacement for bracket colorization, but it helps in a lot of cases. (Not colorblind, I just prefer a grey scale theme for my indent
188.
▲
by
devbent
3y ago
For 3.5, I found it easiest to specify a simple, but parsable, format for responses and then convert that to JSON myself. I'll have to see if the new JSON schema support is easier than what I already have in place.
189.
▲
by
devbent
3y ago
I have an open source project doing exactly this at https://www.generativestorytelling.ai/ GitHub link is on the main page!
190.
▲
by
devbent
3y ago
Mental health providers are nearly impossible to find in the Seattle area, no matter the insurance, or even paying cash. For whatever bloody reason they just don't exist in anything near enough quantity.
191.
▲
by
devbent
3y ago
Contexts is amazing, being able to search window titles is how I do almost all my navigation between apps now days, especially when I have code editors open to multiple (4+) different projects. I have an equivalent installed on Windows (I f
192.
▲
by
devbent
3y ago
We either all complain about click-bait journalism and privacy invading ads, or we pay money for good content. Take your pick of what world you want to live in.
193.
▲
by
devbent
3y ago
1996, I posted on the AOL Star Trek DS9 forum that the Federation should lay mines in the worm hole. 13yr old me was shocked to see the Federation laying mines in the worm hole a year later. :D
194.
▲
by
devbent
3y ago
As an aside, I would love a brand new Palm device, with modern tech it could be obscenely tiny and have good battery life. Palm devices had physical buttons, one of which immediately (0 perceivable lag) opened a todo list When I used to be
195.
▲
by
devbent
3y ago
The Microsoft Band managed a fancier UI with only 96mhz of CPU, it did have an FPU though which speeds things up quite a bit. Getting good throughput requires DMA, and Band also paid the price and dedicated tons of local SRAM for the frame
196.
▲
by
devbent
3y ago
The problem is crash test requirements require cars be built in a way that limits visibility. Giant pillars in case of a roll over, and lots of air bags stuffed everywhere. Something had to give, and that thing was visibility.
197.
▲
by
devbent
4y ago
You should clarify, refined sugars. There is also the ongoing debate of why the hell consuming white rice, which is instantly broken down into large amounts of glucose, doesn't have the same negative health impact. Lots of investigati
198.
▲
by
devbent
4y ago
> Judging by votes You are mostly off topic. :) Likely no one will disagree with you that the standard American diet is a ultra processed chemical trash heap, just, that is not related to super cool wound healing tech. Diabetes isn'
199.
▲
by
devbent
4y ago
> Just like alcohol, Alcohol fucks with DNA. It is neurotoxic. Let's not lie to ourselves, the safe amount of booze is 0 booze. I'm not saying don't drink, just that we should be 100% honest with ourselves.
200.
▲
by
devbent
4y ago
Corn syrup has rapidly been vanishing from foods based on consumer demand. A decade ago buying bread without corn syrup in it was a challenge, now days all but the cheapest bread in stores proudly had "no corn syrup!" printed on t
201.
▲
by
devbent
4y ago
I honestly love centimeters because 1cm is roughly the width of a pinky fingernail. Makes it easy to visualize. Likewise 1 meter being roughly an arm span, or 3 feet. MI often need to guestimate something and being able to use my body parts
202.
▲
by
devbent
4y ago
Cree brand bulbs are also 100w equivalent and cheaper than hue. Bit buggy though. :(
203.
▲
by
devbent
4y ago
Cree, they have 100w equivalent bulbs available, use local wifi only. Hard to control a lot of them though, that is where a bridge is handy.
204.
▲
by
devbent
9y ago
> It frequently counts me as sleeping when I sit down to watch TV in the evening, or read a book in bed. This is why I pushed for sleep on v1 of Microsoft Band to be manually triggered. Eventually cloud detected sleep was lit up, but we
205.
▲
by
devbent
10y ago
If you go down to micro-controller levels, you often times are stuck with C++ 2003 and a vendor specific compiler, which means you will lack many of the niceties in the article. I agree with him that removing the entire standard library is
206.
▲
by
devbent
10y ago
It also depends on the quality of electricity in one's house. I've lived in places that chewed through CFLs at a rapid pace, and yet the same sourced bulbs would last for years in a different house.
207.
▲
by
devbent
10y ago
One of our guiding principles when designing experiences on Microsoft Band is to try to limit interaction time. We had an "in and out in 5" rule we designed around. I'm still not 100% happy with how long some activities take
208.
▲
by
devbent
11y ago
I've used both, integer square root is typically much faster than floating point emulation. Really almost anything is faster than FP emulation.