1. Basic Syntax Structure of a C Program: #include int main() { // Your code here return 0; } 2. Data Types Type Description Example int Integer type int a …
cheatsheet
-
-
/* *** 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 run the server, …
-
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; short …
-
/* * 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 arguments the function …
-
/* * FEATHERS.JS CHEATSHEET * https://docs.feathersjs.com/api/readme.html * * 1. CORE: Feathers core functionality. * 2. TRANSPORT: Expose a Feathers application as an API server. * 3. CLIENT: More details on …
-
/* * SAILS.JS CHEATSHEET * REFERENCE: https://sailsjs.com/documentation/reference * CONCEPTS: https://sailsjs.com/documentation/concepts * APP STRUCTURE: https://sailsjs.com/documentation/anatomy * * 1. APPLICATION * 2. BLUEPRINT API * 3. COMMAND-LINE INTERFACE * 4. CONFIGURATION * …
-
/* * 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 run the server, …
-
/* ******************************************************************************************* * GLOBAL CONFIG * Vue.config is an object containing Vue’s global configurations. * You can modify its properties listed below before bootstrapping your application. * https://vuejs.org/v2/api/#Global-Config * …
-
/* ******************************************************************************************* * REACT.JS CHEATSHEET * DOCUMENTATION: https://reactjs.org/docs/ * FILE STRUCTURE: https://reactjs.org/docs/faq-structure.html * ******************************************************************************************* */ “` npm install –save react // declarative and flexible JavaScript library for building UI …
-
/* * ———————– * Ember.js Cheatsheet * ———————– * * Docs: https://guides.emberjs.com/ * Quick start: https://guides.emberjs.com/current/getting-started/quick-start/ * * Table of contents * ——————- * 01 | Installation * 02 …