Skip Navigation

Posts
5
Comments
799
Joined
2 yr. ago

  • Yeah, doordash can gdiaf. Local burger joint only does delivery through doordash, but adds 20% on top of the base price to cover the fees doordash change them (fair enough), then doordash adds the delivery fee they charge me on top of that as well. They double dip on fees by changing both the restaurant and the customer, what should be a fairly affordable lunch when I don't have time to make something or go out and get it myself would end up being stupid expensive

  • I've seen people with "I brought this before I knew Elon was an asshole" bumper stickers, I'd imagine there are updated ones kicking around

  • Many years ago, the university I studied at did some construction work in the chemistry department, which included rerouting the supply lines from the big oxygen and LPG tanks so they could reach the new lab they were building.

    Turns out the contractor was either an idiot or misread the plans, and ended up running the pipes straight through one of the fire-resistant walls designed to compartmentalize the building so fires can't spread as easily - a hole in one is a Big Deal on its own, but then running pipes full of accelerant through it essentially voided the buildings safety certificate and insurance, and ment that if there was a fire, the main evacuation path would have been a deathtrap.

    I don't know what happened to the contractor, but labs were closed for a few weeks while they purged the lines of gas, removed the badly installed lines and repaired the wall

  • It won't help, but not having it sure will hurt

  • No worries - I'm a native, but still had to think about it a bit. English is weird

  • Sort of, there is a parallel derivation where tool can be an innuendo for penis ("used his tool"), so describing someone as a tool is a slightly less vulgar way of calling someone a dick; unrefined, rude, obnoxious.

  • In colloquial English, you can say that someone is an idiot with the construction "you absolute [noun]" or "you complete [noun]" or similar.

    It doesn't actually matter what the noun is, but it works better the more obscure or specific the thing is. For example "you absolute saucepan", "you complete hose pipe", or my personal favourite "you absolute strawberry plant".

  • At a guess, to call attention to something by trying to hide it

  • They didn't prosecute anyone because there was essentially no evidence beyond the accusation of one man, and even then no-one was accused of doing anything beyond talking about it

  • Using GPS to drive the spedo/odo on a car seems like it wouldn't be super reliable?

  • init crashed because it couldn't load a shared library, but init isn't allowed to be killed so the kernel panicked

  • It's extremely 2020s brainworms that there are two different proprietary standards for device trackers, and licensing constraints forbid a device from supporting both.

  • Permanently Deleted

    Jump
  • Nah, that's still engagement. Ignore it, and let it rot away

  • I'm cautiously excited, but probably won't be preordering anything if Eric is involved

  • An alternative suggestion - do what they did with UTC. It's an acronym of both "coordinated universal time" and "temps universel coordonné", which doesn't work in either English or French so everyone is equally unhappy

  • Take a look for yourself:

    https://www.pbtech.co.nz/ https://www.trademe.co.nz/a/

    He says, forgetting what community he is in.

    Bring your existing gear, remembering that we use 240v here. Getting used server bits is pretty difficult and expensive because we don't have anywhere near the density of data centers selling off old stuff. Enterprise switches in particular seem to be hard to get, I've previously had to buy on eBay and pay absurd shipping

    • https://github.com/prometheus/node_exporter?tab=readme-ov-file#textfile-collector - which makes node exporter watch a specific directory for files that contain metrics, then re-export them back to the central Prometheus server
    • Some systems have their own metrics endpoints - instead of getting Prometheus to scrape these directly I set up a Cron job to curl these into files for node exporter - this means I don't need extra config in Prometheus to find the endpoints, and don't need to mess with firewall rules
    • Other systems don't directly expose metrics in a format Prometheus can use - in this case I will write/find a script that can do the conversation, then either set it up to write the metrics file directly and run it on a Cron, or run it as a service and another Cron job to do the scrape
    • Base ansible role installs Prometheus node exporter, configured with the text file collector
    • VM automations push DNS records so that the Prometheus dns-sd automatically discovers them
    • Ansible roles for add Cron jobs that generate metrics for specific systems and dump them for the text file collector
    • Grafana for dashboards
    • Karma as a UI in front of Prometheus alert manager