“In everyone’s pocket right now is a computer far more powerful than the one we flew on Voyager. I don’t mean your cell phone — I mean the key fob that unlocks your car.”
— Rich Terrile, JPL scientist and member of the Voyager imaging team
America is sabotaging its own scientific research with cutting the NSF budget from $9 billion to only $3 billion, using AI to evaluate grant proposals and shift NSF funding from universities to private companies
As a result, applications for positions as research group leaders from the US at Germany‘s Max Planck have doubled 🚀🔬
https://www.tagesschau.de/ausland/amerika/usa-forschung-kuerzungen-100.html
int foo(int x) { if (x == 0) { goto error; } return 1; error: // if you set a breakpoint here, you don't know where you came from return 0; } static inline void *error_label(void *label) { // set a breakpoint here! return label; } int bar(int x) { if (x == 0) { goto *error_label(&&error); } return 1; error: return 0; }