• 0 Posts
  • 39 Comments
Joined 1 year ago
cake
Cake day: October 13th, 2023

help-circle

  • In an more ideal world, getting less money because people tip less, would push you to reconsider the job choice and ultimately switch to something more lucrative.
    With less workers, the company would be forced to pay more to even get employes.

    Problem with this idealised scenario is, it doesnt work in the US, because workers are getting screwed so much and have so little choices at those low paying jobs, they’d be the ones loosing massively in the short-term.
    And with little support structures my the states and federal government, they would fail… and the 2 party system would fail them even harder, noone cares about them in the government… too much invested in fighting imaginary culture wars.

    But then again, using less services of the business leads to the same outcome in the end, so even that wouldnt work well.
    The business will always win in the short-term.
    So as it is ineviteable, maybe its better to think long term anyways.

    And everyone wants tips these days, no longer just a gratitude or paying low wage workers, but now also a ‘bid’… (sure not every worker might like relying on tips, but specially well paid servers prefer it as they make bank)
    I dont see you getting iut of tipping either way very well without government intervention… which i dont see happening, but you have orher big issues too…



  • Yes, you need an organization which signs your certificate, so it is trusted by default. This is our trust-anchor so we know the certificate presented was validated and it was given only to the website owner.
    There are numerous around the world for that.
    And if that is no longer offered, you can just not have your certificate signed, which means browsers will complain about it.
    But you can trust your own certificate yourself. Or create your own certificate authority which can then sign other certificates for the community as their new trust anchor.
    I think we would very quickly build the web-of-trust, but for certificates.

    You can even not have certificates, but keep an weak form of TLS (no idea if browsers support TLS_DH_anon_*), but its still encrypted and can only be broken by an active Man-in-the-Middle-attack. (which is theoretically detectable later on)
    Diffie-Hellman is an awesome key-exchange.



  • When i was with a customer who was using one of ther VPS offers, performance was unexpectedly low and upon contacting support it was clear the small fish dont get great support answers, but rather pushed to the FAQ.

    And i personally find their offerings and marketing scummy. Big promotional prices, but always some small print with a higher price after x Months.
    Or just stuff thats not included by default.
    I never had that with other (also very cheap) providers.

    As long as it works great for you, i wouldnt see a reason to leave.
    There arent that many providers offering such small ressources at all or at such a price. To be fair, not much one can do with those specs… 10GB storage is very limited already.
    But for those specs… always free oracle tier would work too (though requires a credit card).


  • Ionos… not a good provider.
    Great it works for you, but i wouldnt touch them with a long pole.
    Created by an old internet provider (which is also not very good…), pulling every shady marketing trick weird “cloud” providers have…

    Contabo is very cheap too, but i wouldnt trust them with critical stuff.
    Netcup is next, quite good and still cheap.
    Hetzner is very nice, but the cloud offers are expensive. the dedicated server offers though… holy sweetness, specially the auction servers.
    Dont forget smaller providers either, they can have some good stuff, but cannot really compete with the big players. (i have one for clean ip space for mail)

    Over the years hosting i learned that paying slightly more is often worth it depending on the needs.
    And as my requirements went up, i moved up in the tiers. If you have a need for the dedicated servers, gets cheaper for what you get (though you need to manage the hardware side then too…)

    Oh and dont forget the Oracle free offers. I dont really trust Oracle, but free compute is free… maybe dont store sensitive stuff though


  • I dont see how e.g. arch would be super hard to maintain.
    There is a nice GUI program for installing programs and updates. (like many modern distros)
    If you dont want to set everything up, go with Endeavour or Garuda.

    I find rolling release to be easier to maintain and keep up to date than non-rolling.
    Specially if you want up to date packages for desktop use.


  • Windows has a request assistance function? wtf… where is that found?
    I only know Remote desktop tools and most of these work perfectly fine on linux as the client or even under Wine.

    [Edit: woah, i did some rambling below here… not related to your specific case here, but some nice information maybe]

    Linux as host is where it gets funny… bigger ones support X11, pretty much none support Wayland.
    To be fair, its impossible to control mouse and keyboard under Wayland without root.
    I think we now have some new desktop packages for gnome and kde which can do that, so now they need to be implemented.

    But i dont see an effort being made for Wayland by the bigger providers in the near future… the market just isnt there and there is lots of uncertainty with the featureset.

    Switched to Rustdesk a while back, works nicely as client, but only picture output with wayland as host.l as of now.
    And i cannot copy&paste under wayland as client… even though it worked before…





  • Async is good because threads are expensive, might aswell do something else when you need to wait for something anyways.
    But only having async and no other thread when you need some computation is obviously awful… (or when starting anothe rthread is not easily manageable)

    Thats why i like go, you just tell it you want to run something in parallel and he will manage the rest… computational work, shift current work to new thread… just waiting for IO, async.




  • more time into crafting the right prompt

    Thats not work to you? My company pays me to spend time to do the right thing, even though most of the work does the computer.

    I see where you are going at, but your argument also invalidates other forms of human interaction and creating.

    In my country copyright can only be granted if a certain amount of (human) work went into something. Any work.
    The difficult part is finding out whats enough and what kind of work qualify to lead to some kind of protection, even if partial.
    The difficult part was not to create something, but to prove someone did or didnt put enough work into it.
    I think we can hold generated or assisted goods to the same standard.

    Putting a simple prompt together should probably not be granted protection as no significant work went into it. But refining it, editing the result… maybe thats enough, thats really up to the society to decide.

    At the same time we have to balance the power of machines against human work, so the human work doesnt get totally invalidated, but rather shifted and treated as sub-type.
    Machines already replaced alot of work, also creative ones. Book-printing, forging, producing food… the scary part about generative AI is mainly the speed of them spreading.


  • try SkipRedirect, can break some things though, but rare.
    Only works for hijacked links where the extension can grab the original link somehow of course.

    For general Ad Links, there is FastForward, though i feel it hasnt been on the same level of maintenance since UniversalBypass closed down and they forked it.



  • It not only has to be not ‘open’ in the explorer, but properly unmounted. Tools like mkfs dont do that for you, its just not their job. (and might be unwanted or stop your from making mistakes like accidentally overwriting the wrong drive)

    try umount /dev/USBDRIVE

    If that still complaints about Device or ressource busy, then something is still using it.
    Either try to close things that might be the culprit, reboot and try again or, if installed and you are compfortable, you can check which processes using lsof -D (you can get that location using mount | grep )