Skip to content

Instantly share code, notes, and snippets.

View InsaneNaman's full-sized avatar
😈
Oh! Hi there

Naman Gupta InsaneNaman

😈
Oh! Hi there
View GitHub Profile
// Restify Server CheatSheet.
// More about the API: http://mcavage.me/node-restify/#server-api
// Install restify with npm install restify
// 1.1. Creating a Server.
// http://mcavage.me/node-restify/#Creating-a-Server
var restify = require('restify');
@InsaneNaman
InsaneNaman / egghead_YouTube_downloader.py
Created June 25, 2017 17:23 — forked from SamuelMarks/egghead_YouTube_downloader.py
Simple algorithm to download all the egghead.io videos in highest-quality from YouTube.
"""
Simple algorithm to download all the egghead.io videos in highest-quality from YouTube.
Run from the directory you want the videos to appear. Renames them so that they have the video number + omit the repetitive "Egghead.io - AngularJS -" text.
Installing dependency:
$ pip install git+https://github.com/NFicano/pytube#egg=pytube
"""
from pytube import YouTube #, exceptions as YTD_exceptions
@InsaneNaman
InsaneNaman / riot-matrix-workshop.md
Created June 15, 2017 20:39 — forked from attacus/riot-matrix-workshop.md
Create your own encrypted chat server with Riot and Matrix

Running your own encrypted chat service with Matrix and Riot

Workshop Instructor:

This workshop is distributed under a CC BY-SA 4.0 license.

What are we doing here?

The goal of this workshop is to teach you how to configure and run your own Matrix/Riot service. By the end of the workshop, you should be able to log into secure chat rooms and invite others to the same server.

@InsaneNaman
InsaneNaman / README.md
Created April 16, 2017 10:33 — forked from hofmannsven/README.md
My simply Git Cheatsheet