/* ******************************************************************************************* * SYNOPSIS * http://nodejs.org/api/synopsis.html * ******************************************************************************************* */ var http = require(‘http’); // An example of a web server written with Node which responds with ‘Hello World’. // To …
programmerdude
-
-
/* ******************************************************************************************* * GLOBAL OBJECTS > OBJECT * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object * ******************************************************************************************* */ // Global object: properties Object.length // length is a property of a function object, and indicates how many …
-
Assembler List Name Desc Flat Assembler (FASM) is a fast assembly language compiler for the x86 architecture processors, which does multiple passes to optimize the size of generated machine code …
-
<!– * ******************************************************************************************* * HTML5 Cheat sheet by Hackr.io * Source: https://websitesetup.org/wp-content/uploads/2014/02/HTML-CHEAT-SHEET-768×8555.png * ******************************************************************************************* * –> <!– Document Summary –> <!DOCTYPE html> <!– Tells the browser that HTML5 version of …
-
<?php // Exit the file, string inside get’s echo’ed die(“This file is not ment to be ran. ¯\_(ツ)_/¯”); exit(“This file is not ment to be ran. ¯\_(ツ)_/¯”); /** * Printing …
-
main() Function * The main() function is the starting point of the program: int main (int argc, char *argv[]) * The return type of the main() function is an integer …
-
CHEATSHEET C# 1. Data Types Primitive Size Example String 2 bytes/char s = “reference”; bool b = true; char 2 bytes ch = ‘a’; byte 1 byte b = 0x78; …
-
A huge collection of python related books and ebooks that are freely available online Python 20 Python Libraries You Aren’t Using (But Should) (email address requested, not required) A Beginner’s Python Tutorial – …
-
A large collection of Javascript related ebooks and also some frameworks JavaScript Basic JavaScript for the impatient programmer – Dr. Axel Rauschmayer Book of Modern Frontend Tooling Crockford’s JavaScript – Douglas Crockford …
-
This is a collection of C and C++ books and resources that are either available online or you can also download a pdf or other formats C A Tutorial on …