Preferences

awoimbee
Joined 150 karma
[ my public key: https://keybase.io/awoimbee; my proof: https://keybase.io/awoimbee/sigs/zXvGiUE1SCnJE6BECDg-dtfoUlxXqcpD1VEk1Z9nIYw ]

  1. How is garage for a simple local dev env ? I recently used seaweedfs since they have a super simple minimal setup compared to garage which seemed to require a config file just to get started.
  2. That's why the GPL license was created.
  3. The feature that makes me love pulumi is crd2pulumi, it generates simple, type checked and documented libraries from CRDs.

    E.g. these are the libs I use, generated from CRDs: https://github.com/Extrality/pulumi-crds

  4. I ran into: - too high memory usage - no warning when a task doesn't yield - monkey patching: * general confusion like threading.local behaving differently * pain to integrate sentry in gunicorn with gevent since you need to import sentry after monkey patching. The OTel libs work better but you need to be careful * all compiled libs need to be replaced (eg psycogreen) ...
  5. Building a framework on a non-async foundation (flask) in 2025 is bizarre. The only way to scale a flask API is to use gevent, which is just problems waiting to happen. Asyncio is just better, safer and has been adopted by the industry.
  6. THANK YOU FOR YOUR ATTENTION ON THIS MATTER

    This announcement contains so many fake marketing words I can't help but read it in DJT's voice... Add Tim Apple's present and yeah, cool tech, not interested.

  7. The main issue is podman support on Ubuntu. Ubuntu ships outdated podman versions that don't work out of the box. So I use podman v5, GitHub actions uses podman v3, and my coworkers on Ubuntu use docker. So now my script must work with old podman, recent podman and docker
  8. This can't be reduced to a boolean (as always). The issue is that ICE is doing #2 via #1.
  9. Containers != Docker Vulnerable software is an issue outside containers too. Containers allow better isolation.
  10. I can't find sources to this one sided article nor can I find anything recent when searching for it
  11. That's some horrible url parsing code...

    But honestly urllib sucks:

    url.hostname doesn't return the port url.netloc also returns the basic auth part So you have to f"{u.hostname}:{u.port}"

  12. I donate to immich even though I still use Google photos since I don't want to host critical infra in my spare time

    https://github.com/immich-app

  13. I'm in the position where I have to run a WAF to pass security certifications. The only open source WAFs are modsecurity and it's beta successor, coraza. These things are dumb, they just use OWASP's coreruleset which is a big pile of unreadable garbage.
  14. It looks like what the grafana stack does but it's linking specialized tools instead of building one big tool (eg linking traces [0]).

    The only thing then is that there is no link between logs and metrics, but I guess since they created alloy [1] they could make it so logs and metrics labels match, so we could select/see both at once ?

    Oh ok here's a blog post from 2020 saying exactly this: https://grafana.com/blog/2020/03/31/how-to-successfully-corr...

    [0]: https://grafana.com/docs/grafana/latest/datasources/tempo/tr... [1]: https://grafana.com/docs/alloy/latest/

  15. Ansys SimAI | DevOps (more developer than SRE) | REMOTE (France, office is in Paris) | Full time

    We're building products to predict the results of numerical simulation and act on them. Since joining the Ansys portfolio we are experiencing more demand than ever and we need help to transform a good product and infra into something truly great.

    At SimAI we lightly use AWS and heavily depend on Kubernetes, both being 100% configured through Infrastructure as Code (a bit of terraform and a lot of pulumi). You will mostly work with Typescript (pulumi), Python (scripts and application code), Bash (scripts).

    As a DevOps at SimAI you will work with me on exciting subjects like moving the compute closer to the customer, you will also work on improving our security posture and help secure more certifications for our platform. As part of my job at SimAI I personally maintain <https://github.com/Trow-Registry/trow>.

    Don't hesitate to apply, motivation matters as much as experience to me ! Apply here: https://careers.ansys.com/job/Montigny-le-Bretonneux-Senior-...

  16. The offer was quite good honestly: people who left got a $30k buyout.
  17. > The long double type varies dramatically across platforms: > [...] > What sets numpy_quaddtype apart is its dual-backend approach: > Long Double: This backend uses the native long double type, which can offer up to 80-bit precision on some systems allowing backwads compatibility with np.longdouble.

    Why introduce a new alias that might be 128 bits but also 80 ? IMO the world should focus on well defined types (f8, f16, f32, f64, f80, f128), then maybe add aliases.

  18. In the current ecosystem even for a single server I would use K8S via something like minikube. You get for free: operators, observability, a standard API (so you can use helm and such), ...
  19. That 8th entry pouring loads on WD40 on trees is just crazy, that thing is petroleum distillate !
  20. For a single node cluster, just use minikube (or RKE2 if you have masochistic tendencies). And if everything runs on a single small vps, why even use postgres and not SQLite.

This user hasn’t submitted anything.