Javascript cheatsheet
/* *******************************************************************************************
* 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...
List of Assembly related tools
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...
HTML cheatsheet
<!-- * *******************************************************************************************
* HTML5 Cheat sheet by Hackr.io
* Source: https://websitesetup.org/wp-content/uploads/2014/02/HTML-CHEAT-SHEET-768x8555.png
* ******************************************************************************************* * -->
<!-- Document Summary -->
<!DOCTYPE html> <!-- Tells the browser that HTML5 version...
PHP cheatsheet
<?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. ¯_(ツ)_/¯");
/**
*...
C cheatsheet
main() Function
* The main() function is the starting point of the program: int main (int argc, char *argv)
* The return type of the main()...