Are you working for hire? I'd like you to join my team where we are automating parametrizing paradigms to foster growth in changing paradigms of parametrizing workflows.
yes I am. I prefer a modern 996 schedule to maximize efficiency. let me know how I can contact you and we can set up a meeting to discuss collaboration and elevate our synergies to grow revenue through AI powered velocity
> How exactly can you provide impartial, objective reporting when you cant afford the salaries?
you provide free service, build brand and ecosystem, and charge for extra services, e.g. automatic-monitoring specific news topic, analytics, faster delivery on scale, etc. and even ads/ads free accounts
> Before Java got virtual threads in Project Loom, people were typically using some promises equivalent even though it mangled the heck out of all your code
I think majority Java code is just sequential blocking code, and it works just fine.
> Want to build a web app, every more or less popular framework is async.
I think its the same as Java, Tomcat has some async threadpool inside, they just hide it from you, and your favorite rust framework doesn't, you need manually move your sync logic to Tokio spawn_blocking
Java is different. Tomcat's thread pool is the older way. A lot of newer stuff was using something promises-related instead with an event loop. But then recently Java added virtual threads which should obviate the need for that, similar to Go. Rust considered virtual threads but chose against that because it requires a more abstracted runtime like Java and Go have. Great preso on this https://www.youtube.com/watch?v=lJ3NC-R3gSI
All the "async" stuff is super poorly named. They mean cooperative multitasking, or I guess "async within a single kernel thread." Yeah multiple kernel threads are asynchronous but "async" doesn't mean that :S
reply