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
- 34 Comments
DrM@feddit.deto
Programmer Humor@lemmy.ml•Damn no integrated advanced AI-driven solution that analyzes patterns and just predicts the errors? 🤨
2·2 years 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
DrM@feddit.deto
Technology@beehaw.org•Discord is nuking Nintendo Switch emulator devs and their entire servers
11·2 years agoI don’t see people hating discord for it, just pointing out that it was a bad choice from the beginning
DrM@feddit.deto
Technology@lemmy.ml•Fairphone Fairbuds launch with replaceable batteries, titanium drivers and ANC
21·2 years agoThe adapter is still the inconvenience for me, just because the other option is a (tiny) inconvenience for you doesn’t change the fact that the adapter is an inconvenience for me.
DrM@feddit.deto
Technology@lemmy.ml•Fairphone Fairbuds launch with replaceable batteries, titanium drivers and ANC
181·2 years agoThe adapter IS the inconvenience.
PgUp and PgDn are also extremely useful when scrolling through logs
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=falseand 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.
I hate Typescript for promising me that nobody can put cyanide on the list, but in reality it disallows ME from putting cyanide on the list, but everyone else from the outside is still allowed to do so by using the API which is plain JavaScript again
I don’t really code in my free time, every merge request for a FOSS project I wanted to do so far was for company projects where a feature was missing or buggy. My GitHub and Gitlab accounts are full of outdated forks we needed for a minor change in the FOSS project which I was not allowed to merge upstream
FOSS user:
Wants to improve the software and sees easy fixes, but isn’t allowed to create a Merge Request because company policy disallows you from writing code for other projects on company time
Shared hosting sounds like you don’t have your data stored privately and doesn’t sound like less work for the company.
Don’t look at the name from a technicians perspective, but from the perspective of a manager of a small startup who wants to reduce the overhead for hosting it’s service as much as possible. Also serverless is not wrong per sé, it’s exactly what you as the customer get.
You could spin it the same way for every other instance. Why do you call GoDaddy “shared hosting”, in the end it’s just a pod on a kubernetes cluster. So why don’t you call it “private kubernetes pod”?
I think that’s the main reason, it’s a good name explaining what you can expect: an environment where you don’t have to worry about servers and don’t need an administrator
For a side sleeper I recommend going to a mattress store with a friend and your pillow. You lay down on the mattress and your friend checks if your back is straight, it’s easily visible:

I went to a mattress boutique and ordered my mattress there. I would never do it differently again, I love it every night. The saleswoman took great care of trying the different mattresses to see which one had the backs of my girlfriend and I in the best positions and whenever I’m back from a trip I feel again the greatness of my mattress
Ah the classic. Firing the people you need the most in emergencies
Why does this happen so often currently? Atlassian is so unreliable, we are not able to work efficiently because of them having problems like once a month
DrM@feddit.deto
World News@lemmy.ml•Ukraine designates PepsiCo, Mars as 'international war sponsors'
194·2 years agoIf you buy a drone for lets say 1000$ from Xiaomi via AliBaba, 100$ of those go to AliBaba maybe 1$ goes to Russia. from the 900$ left for Xiaomi, 600 are gone for the production. 300 left, 3 go to Russia. 4$ for Russia. But if this drone helps invalidate only one russian soldier, that 4$ are easily worth 100000$. If it helps invalidate a tank, it goes to the millions. Thats easily worth it if there is no alternative


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)