I just googled “BASF T-Shirt” and immediately found the one he is wearing in this video (and he wear it in a couple of other videos recently)
- 0 Posts
- 29 Comments
DrM@feddit.deto Programmer Humor@lemmy.ml•Damn no integrated advanced AI-driven solution that analyzes patterns and just predicts the errors? 🤨2·11 months agoJust using fluentd to push the files into an ElasticSearch DB and using Kibana as frontend is one day of work for a kubernetes admin and it works good enough (and way better than grepping logfiles from every of the 3000 pods running in a big cluster)
And if something breaks they put the burden on you for not creating backups. Always keep it in writing that you are supposed to work on something else, otherwise you will get the problem down the line
I updated my sources.list to something non-existing at some point and run
sudo apt update && sudo apt dist-upgrade -y && sudo apt autoremove
once and it also basically uninstalled everything. But that didn’t even matter, I popped in a recovery disk and could reinstall everything. Pretty great to be able to do all that with Linux, fuck everything up in an instant but after a few hours everything is back again
DrM@feddit.deto Technology@lemmy.world•Users ditch Glassdoor, stunned by site adding real names without consentEnglish17·1 year agoAll of scandinavia. There are public registers where you can look up the salary of everyone for norway, sweden and finland. When these registers were introduced, the salaries were normalized across the whole population
Yeah but it’s more work for the website to implement their own ad-contexts, so obviously the website owner is the problem here /s
DrM@feddit.deto Europe@feddit.de•Europe will lose all credibility if Russia wins in Ukraine, warns French president MacronEnglish163·1 year agoMaybe they should start supporting Ukraine a bit more then, so far they are lacking in comparison to the rest of europe
DrM@feddit.deto Europe@feddit.de•German far-right leader hails Brexit as ‘model for Germany’ [ft.com]English5·1 year agoshe*
I don’t know how it’s outside of Germany, but at least in Germany in every public sauna there are signs saying “No sweat on wood!” (or in German: “Kein Schweiß aufs Holz!”)
What this should mean is that too keep the wood from getting too much salt exposure, you should always sit or lay on a big towel which prevents your body from touching the wood.
Of course the experience is extremely sweaty, thats the reason to go there, so you’re correct on that part :)
The restaurant in my local Therme is in the Sauna area. Of course it’s not a naked restaurant, but a “wear a bathrobe or get something to wear” restaurant. But let me tell you: it’s really weird that there are people with clothes on around you in that restaurant. Not uncomfortable, but weird. And the sauna is a place to relax, so I really think it’s better that everyone has to be naked so that nobody can feel uncomfortable. For most people it might not matter, but for some people it does matter.
Can confirm the german part: In my gym there recently was an outrage because a Muslim member went to the Sauna with bathing clothes multiple times, which in the end resulted in his contract being terminated. Being naked in the sauna is almost the law here (but in the end nobody cares if you wear your towel or put it below you. Just remember: No sweat on wood!)
PgUp and PgDn are also extremely useful when scrolling through logs
DrM@feddit.deto Europe@feddit.de•Paris is saying ‘non’ to a US-style hellscape of supersized cars – and so should the rest of EuropeEnglish27·1 year agoThe cybertruck has a gross weight of 4300kg, which highly exceeds the 3500kg
DrM@feddit.deto Europe@feddit.de•29-euro Deutschlandticket announced for students in GermanyEnglish9·1 year agoI don’t understand your criticism, I thought the AstAs are now removing the Semesterticket alltogether because of the 29€ Deutschlandticket?
DrM@feddit.deto Technology@lemmy.world•China begins building underwater data center with performance equal to 6 million PCs — aims to save 122 million KWh of electricity and nearly ten soccer fields of land | Data centers find refuge at...English196·1 year agoFrom one Datacenter? Yes. If you put all datacenters into the sea? Definitely not. And if the Bitcoin scumbags decide that this is a good idea and built huge mining farms underwarer it’s even worse. Datacenters are one of the biggest contributors to energy need already, taking up 1-1.3% of global energy demand. That’s no joke
It lost a lot of the super-good touchscreen PDF functionality when it switched to chromium though, which I am still mad about. I hope at one point MS will return the PDF Viewer from the original edge
DrM@feddit.deto Europe@feddit.de•Germany proves that private renting can work better than it does in BritainEnglish1·1 year agoThe problem with statistics like this is that you dont know what exactly the area is. Berlin is HUGE, so there are lots of flats on the market which are feasible. You might be able to find a flat in Kleinmachnow, Spandau or Wilhelmshagen for cheap, but if you are studying or working in Berlin you usually search in the city center and rents there are waaaay higher than 13€/m².
I don’t think that this would work, there are no types anymore during runtime because everything is translated into plain js on build. TypeScript only exists during development
The main problem with JavaScript and TypeScript is that there is such a little entrybarrier to it, that way too many people use it without understanding it. The amount of times that we had major issues in production because someone doesn’t understand TypeScript is not countable anymore and our project went live only 4 months ago.
For example, when you use nest.js and want to use a boolean value as a query parameter.
As an example:
@Get('valueOfMyBoolean') @ApiQuery( { name: 'myBoolean', type: boolean, } ) myBooleanFunction( @Query('myBoolean') myBoolean: boolean ){ if(myBoolean){ return 'myBoolean is true'; } return 'myBoolean is false'; }
You see this code. You don’t see anything wrong with it. The architect looks at it in code review and doesn’t see anything wrong with it. But then you do a
GET https://something.com/valueOfMyBoolean?myBoolean=false
and you get “myBoolean is true” and if you do typeOf(myBoolean) you will see that, despite you declaring it twice, myBoolean is not a boolean but a string. But when running the unit-tests, myBoolean is a boolean.
no it’s the joke. In o-notation you always use the highest approximation, so o(n!²) does not exist, it’s only o(n!)
Otherwise there would never be o(1) or o(n), because o(1) would imply that the algorithm only has a single line of instructions, same for o(n)