When reflexes acquired in your job are invading your daily life.
-When i was an intern in a retail, i had to fight against the urge to store the shelves during my own shopping sessions.
Forcing myself not to stare down other people’s misbehaving children with the “teacher look” when out in public.
Former land surveyor. Was definitely counting my paces when I was not surveying.
Background: you’d often try to capture a grid of points, or cross section of a road, for example, at regular intervals. You’d roughly know your normal stride length conversion to metres, so if I were doing a 10m grid, it’d be: shoot a point, walk 11 paces, shoot a point, repeat for hundreds, sometimes thousands of points. It wasn’t long until you would be counting paces when you weren’t actively surveying.
I got really used to technical conversations at work going “full duplex” where we’d excitedly talk over each other and interrupt constantly, just to get to each conclusion faster. I had a close coworker join my team, and he was much harder than normal to get a word in, so I got better at jumping in to interrupt until we were at the same pace and the technical communication was synced and flowing well.
Around a month after I’d been working with him, my wife started telling me I was being very rude and interrupting her more than usual. I guess the habit came home with me. I’m still working on it, though it’s been over 5 years since I switched out of his team.
I have stress dreams sometimes and about old jobs. Like in my dream I’ll wake up and suddenly remember I’ll need to be at a job I haven’t been at in years. But, the time has still passed. Like I’ll be wondering why they scheduled me when I haven’t been there in years, and then get even more stressed cuz I can’t remember how to do anything.
Another one, I work from home. Off hours if I’m watching a movie or playing a game I’ll sometimes look over to check my work laptop :/
When riding trains I look at the concrete cable canal running along the tracks thinking about whether we rent any fibers in that one or not.
Biggest one would be trying to login to my pc with my work password.
I’ve been the electronic security game for about 25 years and I swear I instinctively notice and look directly at every video camera in every building I enter, and I swear if anybody noticed they’d think I’m casing the joint.
Do you look at them to know if they’re well place or for another reason?
They generally just catch my eye, then I may think about their placement. I’ve just been working in the field so long it’s like an unconscious professional interest I guess.
I’m a software developer. I get very agitated when I have to sit next to someone who operates their computer slowly.
I’m a software tester. I break everything I use whether I’m trying or not.
I’m a pilot. At a drive through, I read back the price as a matter of reflex.
I’m picturing “Affirmative. Dollar 1299 now proceeding to window, over.”
“Twelve ninety-nine, first window.” is what usually happens. I’m not the kind of dork that repeats it as “One Two Decimal Niner Niner.” The ham bands are full of geezers that’ll happily play that game with me if I want.
So, per the Pilot/Controller Glossary, “OVER” means “My transmission ended; I expect a response.” Because the communique at the speaker is finished and I don’t expect a response, “OUT” would be more appropriate, meaning “Conversation is over, I expect no response.” Though on the air you’ll often hear “Good day” which isn’t in the P/CG but I think is nicer.
I rather like the idea of having a word for “the conversation is over, I expect no response.” In daily life lol. Feels boss.
“Goodbye” used to mean that, though we’ve started to take it to mean “our relationship is permanently severed, I expect to never communicate with you again in my life.” Which, kind of amazing we felt the need to have a word for that.
“Smell ya later”
When I get in the car, I hit the blinker lever by instinct because on a forklift it puts you into forward or reverse gear.
Oh man, I’ve done the opposite and slammed the forklift into reverse when going to turn.
I’m in IT. My personal laptop is perennially broken because I. cannot. stop. tinkering.
Which OS tho?
Linux. I’m bringing it on myself, though
This is Lemmy. “Linux” doesn’t cut it here.
We want to know exactly which distro, which tweaks, what hardware and how you broke it this time.
Right, if you insist: Fedora Kinoite, Thinkpad X1 Carbon 4th Gen, some sysctl tweaks for low-latency audio.
Yesterday I realized my password database (which I sync between computers/phones via Syncthing) was broken, because I had failed to regularly manage upgrades for my Syncthing container, and Syncthing had recently released a v2.0. My monitoring was insufficient and so I hadn’t noticed the Syncthing container on my laptop hadn’t been running since ~September. When I got Syncthing running again, I had already made changes to my password database on all three synced devices, so Syncthing generated a number of
password.sync-conflict-<date>-<time>.kdbxfiles. Normally that’s not a big deal because my password manager has the ability to merge two password databases together, but this time around 400 entries showed issues when merging.So, armed with a big ol’ mug of mulled wine, I bit the bullet and started checking entries manually. After a trip to the KeePassXC bug tracker and the merger code, it turned out that the entries only differred in a few seconds in the
_LAST_MODIFIEDattribute, which can happen when my laptop is a) on battery, which causes the system clock to go a little off when the voltage drops and b) disconnected from the internet so the NTP client doesn’t have a change to sync time. Both happened a lot during the months the time my password database had failed to sync – we had gone to Paris (lovely place, can wholly recommend a visit) and my GF’s daughter is in the habit of watching shows on the computer without plugging in the power.So I shrugged, merged anyway, ignored the error messages, deleted the
sync-conflictfiles, and called it a day. Maybe the wine played a role in that decision, maybe not.Thank you for coming to my TED talk.
Gotta love the shrug "fuck it, I’m mostly sure nothing will go wrong, and if it does, maybe it won’t matter”. We’ve all done it and most of the time we’re right. But when we’re not…oof.
Can you alaborate on the sysctl tweaks for low-latency audio? I have a carbon gen4 as well.
Sure. The following are the bits that I’m pretty sure are universal. The rest – mostly configuring my audio interface – is IMO fairly specific to my system and can be found in my dotfiles.
- Limits for Pipewire:
# /etc/security/limits.d/25-pw-rlimits.conf @pipewire - rtprio 95 @pipewire - nice -19 @pipewire - memlock 4194304 - Add the
realtimegroup and grant it access to/dev/cpu_dma_latencyso Ardour can prevent the system from going into idle:# /etc/udev/rules.d/40-realtime-privileges.rules KERNEL=="cpu_dma_latency", GROUP="realtime" - Add
threadirqsandpreempt=fullto the kernel commandline - Disable VM swap readahead since Kinoite uses ZRAM anyways:
# /etc/sysctl.d/50-audio.conf vm.page-cluster = 0 - Set IO scheduler to
Nonefor SSDs and NVMe:# /etc/udev/rules.d/60-block-scheduler.rules ACTION=="add|change", SUBSYSTEM=="block", ATTR{queue/rotational}=="0", KERNEL=="nvme?n?", ATTR{queue/scheduler}="none" ACTION=="add|change", SUBSYSTEM=="block", ATTR{queue/rotational}=="0", KERNEL=="sd?", ATTR{queue/scheduler}="none"
I’m not using a preempt kernel or anything like that; I’ve only gotten into audio when Pipewire had already hit the scene and I’ve found it to be good enough with these settings.
- Limits for Pipewire:
I’ve been working in high acuity psychiatry for 10 years. I notice when doors don’t click shut behind me and if I don’t hear a solid click or an electric lock whirring sound I get the urge to check the handle, even at home / in my apartment complex. I can feel people behind me on the street if they’re closer than about 20 feet back. I don’t like sitting without a wall behind me (it was weird going back to school and explaining that my ADHD preferential seating accommodation was the back row, not the front).
Doing Uber in a very red state, I have to bite my tongue when people bring up politics. It’s turned into me not talking about it around friends who share my beliefs for the most part. And it kinda sucks, cause I really did enjoy a good debate.
There is no debate anymore, it’s just obtuse mouth hole noises
Yeah, but my income still depends on me not letting them know I’m closer to a communist than whatever they think they are.
I used to do order picking in a large warehouse. We used headphones that told you were to go. You could also give verbal commands liek “repeat”. So after a week or so I started “repeat”-ing my mom when I didn’t hear what she said.
I used to do order picking in a large warehouse. We used headphones that told you were to go.

Decades of working IT in various capacities including a lot of support roles at various levels have led me to usually suspect that anyone coming to to me saying that they can’t get something to work is doing something wrong, regardless if it’s IT or something else completely unrelated.
This is often combined with me trying to suggest possible solutions whenever someone complains or vents. This one drives my wife crazy sometimes and she’s had to teach me that sometimes she just wants emotional support and solidarity rather than possible ways to fix whatever she is venting about.









