Ms. ArmoredThirteen

  • 0 Posts
  • 247 Comments
Joined 1 year ago
cake
Cake day: June 1st, 2023

help-circle


  • Be super anxious that your spouse is going to start belittling you for not getting anything done so that the moment movement anywhere in the house happens you bolt awake and start cleaning something, get a divorce, move to a new house so all the noises are different and everything sets off the “oh fuck I need to wake up and clean” response, then carry that anxiety over to assuming your super caring new roommate is going to secretly hate you unless you’re always awake and cleaning something. Worked for me anyway I can wake up hours earlier than I used to I don’t even need an alarm


  • What about a bash script that calls your CI/CD because the system is so old and complex anyone learning how to use it immediately builds a 1-off tool to hide what they don’t need but then everyone starts relying on that 1-off bash script so you extend the functionality then replace it with a proper tool then let that rot so you need a new bash script to call that to hide the useless parts?


  • My favorite tactic used by several of the coffee shops near me is they start slowly turning the music louder. People naturally start leaving once it’s too loud to think or talk. Place I used to work at we’d turn off half the lights and everyone would just show up at the register no confrontation needed. People were fine with it a vast majority of the time but occasionally there would be someone who asked us to turn the lights back on so they could keep shopping





  • I had a retail job years back where part of my work was processing incoming freight and putting it in the inventory system. I set up a spreadsheet that helped me format the entries for the actual system. My boss kinda hated it, like “you’re adding extra steps it’s a waste”. Never did convince them it was saving me time and wrist health, had to use it in secret

    Another boss I had actively tried to get me to stop using a spreadsheet to track my time and instead update their time tracking system on every task. I could either spend a couple seconds slapping in a spreadsheet entry and have it auto fill in the time spent since the last entry and bulk copy in the day to the time tracking system as part of me leaving for the day, or I could spend a minute fucking with the time tracking system every few minutes of work

    At my current job my boss caught wind of me setting up a way to abstract our build system for dedicated types of builds. Instead of trying to get me to stop I was asked to present it to the team and help other people build little tools like it for their own uses. Feels a lot better












  • Obsidian on my local machine, changes get pushed to GitHub, Jenkins pipeline is triggered, I like to use multibranch pipelines with Jenkinsfiles, ObsidianHTML is called and uses a config file in the repo, scp and ssh to send everything to the host server. The order it moves things is a bit specific to try and reduce downtime: New site gets sent to host server with a temp directory name, old directory is renamed, new directory is renamed to be what the old one was, and then the old one is deleted. Getting the build server to actually have the tools installed for ObsidianHTML was kinda a pita had to do a lot of figuring out which versions of Python were supported where and update a lot of stuff without breaking other parts of the build server relying on older Python versions. My build and host servers are two separate droplets with DigitalOcean. ObsidianHTML isn’t being developed anymore so I’d like to replace it with something I make myself one day but I’m not good at web dev in general let alone programmatically building pages