Ms. ArmoredThirteen

  • 3 Posts
  • 189 Comments
Joined 1 year ago
cake
Cake day: June 1st, 2023

help-circle





  • 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