Tag: computer science
All the articles with the tag "computer science".
-
Weird but awesome Javascript
Posted on:A deep dive into the Javascript runtime environment. Explains the single-threaded nature, the call stack, the event loop, the callback queue, and how they work together to handle asynchronous operations.
-
Some more #P complete problems
Posted on:A discussion on #P-Complete problems, specifically #SAT and counting 3-colorings in a graph. Includes proofs of their completeness and relevant reductions.
-
The complexity class of #P problems
Posted on:An in-depth look at the complexity class #P, based on Valiant's work. Focuses on the problem of computing the permanent of a binary matrix.
-
Machine level obfuscation
Posted on:A demonstration of how to obfuscate strings in C using floating-point numbers and machine endianness. Includes a code example that prints "ILOVEYOU" through seemingly random double values.