Skip to content

Instantly share code, notes, and snippets.

View AmanRaj1608's full-sized avatar
๐Ÿ€
Get Schwifty!

Aman Raj AmanRaj1608

๐Ÿ€
Get Schwifty!
View GitHub Profile

Projects

@AmanRaj1608
AmanRaj1608 / After_React.md
Last active December 26, 2019 14:29
To Do after Learning React

Already know in React

  • React Basics
  • Props , States , Component Lifecycle
  • React Hooks
  • Http requests
  • Routing
  • Redux

To Do after Learning React

@AmanRaj1608
AmanRaj1608 / tech-sheet.md
Created June 21, 2019 19:33 — forked from tamtamchik/tech-sheet.md
IT Tech-sheet

IT Tech-sheet

  1. Google
  2. HTTP / HTTPS
  3. MVC / MVVM
  4. LAMP
  5. AJAX
  6. Comet / WebSockets / Pooling
  7. git / Mercurial / SVN
  8. BASH
@AmanRaj1608
AmanRaj1608 / InputNode.js
Last active March 9, 2019 17:36
Taking Input in Node.js for competitive
// Get process.stdin as the standard input object.
var standard_input = process.stdin;
// Set input character encoding.
// Although not mendatory
standard_input.setEncoding('utf-8');
// Prompt user to input data in console.
console.log("Enter your name");