Tracking issues:
Pull requests:
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title> | |
Replace me with a real title | |
</title> | |
<script src="https://www.w3.org/Tools/respec/respec-w3c" async class= | |
"remove"></script> | |
<script class="remove"> |
nsAutoString myString; | |
printf("%s\n", NS_ConvertUTF16toUTF8(myString).get()); |
Tracking issues:
Pull requests:
console.log("hey"); | |
// There is a space before the first line, which is not renderered by many | |
// IDEs/text editors. | |
// | |
// It bit me once when I copied a snippet from some site, and they added | |
// (probably accidentally; evil otherwise) a zero-width space before every line | |
// of code. The code failed to compile saying "unexpected token", but it took me | |
// quite some time to understand what just happened. |
program bisection | |
REAL a, b, c, TOL | |
INTEGER NMAX, N | |
WRITE(*, *) "Enter a and b" | |
READ(*, *) a, b | |
NMAX = 20 | |
N = 1 | |
TOL = 1.0e-04 |
# see the libxbgi project here: http://libxbgi.sourceforge.net/ | |
# #include <graphics.h> in your code | |
# usage (to compile): | |
# for gcc, use: ggcc filename.c | |
# for g++, use: ggpp filename.cpp | |
# if you want to use delay(int milliseconds) command with g++, create a macro in your source code: | |
# #define delay(t) sleep(t/1000) | |
# install dependencies | |
sudo apt-get install libx11-dev -y |