Pradeepto SarkarforThe nameSpace Community Blogblog.namespacecomm.in·Jun 23, 2024Building a Custom Compiler or Transpiler with Node.jsIntroduction In the world of software development, compilers and transpilers are essential tools that allow developers to leverage new programming languages, optimize code, and ensure cross-platform compatibility. Despite their critical role, buildin...Discuss·7 likes·100 readslexical-analysis
Pratyay Dhonddhondpratyay.hashnode.dev·Mar 9, 2024A Busy Wait Loop For The Eye! [compiler Optimization Rant]for(int i = 25; i > 0; i--){ for(int j = 2147483647; j > 0; j--){ // this loop is supposed to busy wait } } I was supposed to implement scheduling and then test which scheduling was better; the one I had written (Pri...Discuss·11 likes·239 readscompileroptimization