• 0 Posts
  • 47 Comments
Joined 1 year ago
cake
Cake day: June 23rd, 2024

help-circle
  • It doesnt matter if we can define if it is a threat from a outside perspective with a historical context and it doesnt matter that god is actually not real because if you are a kid growing up and your parets tell you that you will die and go toll hell to be punished for eternety for some reason it has a big impact on you. These kids dont have the outside perspective or a history backround to know better, it will affect them. Even if it seems sus to them, untill a certain age kids will just beelieve what parents or other important figures tell them and if you grow up in an environment where everyone beelieves this it gets ingrained in you. It took a shit ton of time untill i aceppted that it was ok to also think guys are hot after being indoctrinated for most of my life. The deconstruction of all the bullshit and absolutly awfull morals and ethics you learn is very hard.



  • Ok so first if all anlinear electric motor is really expensive all the things that you said that were good about the aérotrain then dont apply annymore.

    The amount of thrust you have to generate to stop a decently sized train is huge, that kind of turbine would be super loud and blow tons of debris around. If you brake with biting the rail you will also have lots of wear.

    I dont even get why you would need to brake that fast? With a vehicle that heavy you will never be able to brake so fast that you could stop if something happened a hundret meters in fro t of you. And even if you bite down on the rail to stop near instantly the kinetic energy of a few hundret tons moving at lets say 70km/h would just destroy the rail.





  • The nutrition score is a german thing that our nestle lobby minister pushed. Its worthless because it compares the products in arbitrery categories with each others so a nutri score of A on sweets just means that these are the “healthiest” sweets but they are still far worse than something from another category that has a “lower” score. The worst thing is that the categories are weird sometimes so two products that you would think are in the same category sometimmes arent and you cant compare them withoud looking at the category on the package every time.


  • I mean the thing with overloading is that your functions should have some difference in the paraameters they take, if you make 3 functions that have the exact same parameters of course you will not be shure what the compiler does(alötho i dont think that it would compile? But i dont think that i have ever done that)

    If you have a foo(int x float y) and a foo( int x ) function and you call it with just a x as parameter you can be shure the compiler will call your second function. If the compiler for some reasson tried to use the first foo it would throw a error because it wants a int and a float and you just gave it one int.

    I am shure that

    Foo(){ static int x =0;
    X +=1; Printf(“%d”,); }

    Foo(); every time foo is called x increments so print will be 1,2,3,4… for every call of foo

    Printf(“%d”,x); <- wont work because x cant be acessed here, it is out of scope.




  • Die meisten spülmaschinentabs haben abbrasive partikel die helfen den schmutz abzutragen, das sorgt bei messern aber auch dafür, dass die schneide stumpf wird und bei beschichteten pfannen die ptfe beschichtung abgelöst wird. Von nicht rostfreien messern mal abgesehen, das ist denke ich selbsterklärend. Edelstahlpfannen und töpfe sind eigentlich kein Problem, brotmesser und co mache ich auch in die Spühlmaschine.

    Gute küchenmesser einfach direkt nach dem benutzen mit heißem wasser und spüle abspülen und gut ist, solange nichts antrocknet bekommt man die mit 2 handgriffen schnell sauber.

    Gusstöpfe/pfannen sollten durch das benutzen ja einee LEICHTE patina aufbauen die hilft, dass nichts beim braten festklebt die würde in der spühlmaschine zerstört und guss rostet. Hier auch einfach direkt per hand spülen und gut ist.




  • Ahh ok yea i also do some terminal shenanigans most in gdb to fix all the segfaults i make, git stuff and reading tons of compiler and cmake errors. Most time is spent thinking about what i broke and how, instead of typing.

    I am a electrical engineering student in my last semester but i have been working at my position since starting uni. So my work is more low level stuff wirh c/c++, embedded linux and some pcb layouting. I dont think that i would ever use vim, sublime or vscode/vscodium is the sweet spot for me.


  • Ok but what is your job then? I do software development and in no way would it make my work faster if i can type 2 more words a minute because i dont type that much. Most time is used to read sourcecode, chassing references through the codebase and reading api references in the browser. If i have to do more hardware related stuff i would never want to use a keyboard to scroll through datasheets.



  • I work in a company that has a old codebse in c with tons of realtime intime stuff that is acessed via a shared memory from the realtime to the non realtime system. Tons of strucs get copied around then typecast to other structs and global variables all over the place. You never know where a variable is written to and where it is also acessed from or if it is just a copy. No assembly but still super obscure.