• 2 Posts
  • 35 Comments
Joined 1 year ago
cake
Cake day: June 22nd, 2023

help-circle


  • Education is free and you get what you pay for.

    I disagree. Take the technical university of Graz for instance. The work they accomplish regarding Cyber Security is quite amazing. Remember Meltdown and Spectre? Scientists from Graz were in key positions. Æpic Leak and SQUIP too.

    What about Ferenc Krausz? He studied at the technical university in Vienna, and the team did some work in Vienna and they got the Nobel Prize this year.


  • It’s actually quite okay. Inflation is just high (above average), the prices of everyday life have been skyrocketing for months. Buying real estate has become impossible for most people. Our far-right party has been at the top of the polls for almost exactly a year. Nevertheless, it has to be said that the common Austrian is doing quite well. Public transport is relatively good (at least in the cities) an annual ticket for the whole of Austria costs only €1095 (price for a single state starts at €365). Nature is beautiful, food is good, education is free, social system works. So, could be worse.











  • So… too many cooks creating overly complicated meals that occasionally are admirably but more often then not are not worth the money. Also really hard to get into and make more efficient.

    Bloated complex frontend with so gosh darn many tools, some specifically created for one certain meals but sometimes get used for other meals, more or less effective. Sometimes it’s already at the table, sometimes gets delivered with your meal.

    Fancy looking APIs but you somehow have to know how to correctly talk to them and if you phrase something wrong, well good luck.

    VS:

    Simple, efficient, maybe not as sophisticated but if you get too many customers: just order a second one.







  • smik@discuss.tchncs.detoAustria@feddit.de*Permanently Deleted*
    link
    fedilink
    arrow-up
    6
    arrow-down
    1
    ·
    10 months ago

    Der FPÖ-Politiker nannte etwa „radikale Klimakleber“, Anschläge auf FPÖ-Parteilokale, Morddrohungen gegen freiheitliche Politiker und Vorfälle bei Demonstrationen gegen den Akademikerball als Beispiele.

    Morddrohungen sind kein Kavaliersdelikt, aber protestieren darf man schon noch, oder? Hab die Anti-Corona Demos auch akzeptieren müssen.



  • 10 is a bit exaggerating. What do you really need?

    ExternalDNS is nice so you don’t have to config your DNS manually. You might need to install your own Ingress controller. If you want to automatically add and renew certificates cert-manager is great. Security is important! Speaking of, you should add some kind of secret management (something like sealed-secrets, vault or Secrets Store CSI Driver).

    A really important thing is monitoring so you know your pods and the cluster itself is healthy. Prometheus is still king in that regard in my opinion. PromQL isn’t that hard. Of course some kind of alerting like AlertManager is a must for prod environments. Be aware that the front ends of those tools are not behind a login so something like oauth2-proxy and dex is vital! You might want to have some visualisation too so Grafana is a nice addition. If you add Loki too you got your OPs covered.

    Keeping track of all of your stuff is the hard part so some GitOps is highly recommended. ArgoCD or FluxCD are popular for a reason!

    I think that should cover the basic setup so you may scale your CRUD app without worries!