HackerLangs
TopNewTrendsCommentsPastAskShowJobs

tele_ski

no profile record

comments

tele_ski
·11 วันที่ผ่านมา·discuss
I came here to post this so glad I'm not the only one looking for specific time of day. Or at least give the user the estimated time they can be outside before getting burned? The timer feels great to fire and forget but I might want to plan and I couldn't figure out from the UI what the duration is "safe"
tele_ski
·เดือนที่แล้ว·discuss
It's a joke/sarcasm
tele_ski
·3 เดือนที่ผ่านมา·discuss
https://xkcd.com/1053/

Relax, not everyone sees every article everyday
tele_ski
·3 เดือนที่ผ่านมา·discuss
It is a table stakes missing feature.. for a long time. Clown seems appropriate, every project I've worked on in github we end up copying a github yml action to allow us to do this with one comment '/fast-forward', just is silly at this point that github doesn't natively support it.
tele_ski
·3 เดือนที่ผ่านมา·discuss
Very nice, the movement and snapping of the tiles is very nicely done, enjoyed today's puzzle!
tele_ski
·8 เดือนที่ผ่านมา·discuss
This sounds like running an event loop per thread instead of 1 event loop with a backing thread pool. Or am I misunderstanding you?

It works great for small tasks but larger tasks block local events and you can get weird latency issues, that was the major tradeoff I ran into when I used it. Works great if your tasks are tiny though, not having the event loop handoff to the worker thread is a good throughput boost. But then we started having latency issues and we introduced larger tasks which would hang the local event loop from getting those events.

I think Scylladb works somewhat like this but does message passing to put certain data on certain threads so any thread can handle incoming events but it still moves the request to the pinned thread the data lives on. One thread can get overwhelmed if your data isn't well distributed.
tele_ski
·8 เดือนที่ผ่านมา·discuss
Been using valkey streams recently and loving it. Took a bit to understand how to to properly use it but now that I've figured it out I'd highly recommend trying it. It's very easy to setup and get going and just works.