Seriously? A mouse for coding?
Seriously? A mouse for coding?
Exactly. I wouldn’t mind that at all. Instead I have open space with one desk close to one another and people around me have meetings all day long and they just talk to somebody constantly. There are not enough conference rooms for everyone, so there’s nothing one could do about it. It annoys me so much that I prefer to stay at home to work, even though I would definitely prefer office if it just wasn’t so noisy and annoying.
It’s learning from humans, that’s to be expected
Lua uses ..
Most companies are both
Well at least it’s not NaN
I set up infrastructure for web apps and what you are describing is still most likely server config issue, not Lemmy issue itself, unless Lemmy is lacking something to allow load balancing (then the bug is missing feature actually, also I don’t think so). I don’t know how Lemmy keeps/reads its sessions, but usually it doesn’t matter from the application code standpoint. Preparing multi-host setup as an admin you need to take care about each instance accessing the same session data or whatever application data needs to be shared anyeay. There are many options:
The load balancing scenario where all requests are handled by one host and the other only takes requests when the other is overloaded, is very unlikely. The most common algorithms for balancing are roundrobin - which means (more-or-less) split connections (not load!) equally across all targets, and leastconn - which means hit the host that is least busy with active connections. I mean of course they could’ve used ‘fallback’ alhorithm, but it’s rather inefficient in most scenarios.
Or maybe the issue is somewhere else, is caused by full-page/CDN cache etc.
Rel. My cat jumps on laundry machine next to the closet while I’m sitting on it and be like: Hello there, I see you poopin’, sir. I’m here to assist you!
Where are they storing the session files then, in Memcached with 512 kB limit? No such issues on sh.itjust.works, so probably not a software issue
It’s only bad when used incorrectly. Just store time in UTC and convert it to timezone of your setting to present it. Most modern languages offer a library that makes it just one more line of code. Not only it’s then clear and unambiguous, it supports all timezones.