Skip to content

Instantly share code, notes, and snippets.

View optimistanoop's full-sized avatar
💭
<tod-fod-code>

Anoop Kumar optimistanoop

💭
<tod-fod-code>
View GitHub Profile
@natebass
natebass / shortcuts_terminal.md
Last active March 15, 2018 12:50
Terminal Shortcuts

Bash Keyboard Shortcuts

Mon Dec 29 19:53:08 PST 2014 Link

Moving the cursor:

Keys Description
Ctrl + a Go to the beginning of the line (Home)
@rwaldron
rwaldron / index.js
Created July 27, 2012 07:01
Correct implementation of Array.from and Array.of as they are currently spec'ed. Includes "isConstructor"
(function( global ) {
"use strict";
function isConstructor( C ) {
try {
new C();
return true;
} catch ( e ) {
return false;
}