Skip to content

Instantly share code, notes, and snippets.

View thundernet8's full-sized avatar
🎯
Focusing

✨ Touchumind thundernet8

🎯
Focusing
View GitHub Profile
@thundernet8
thundernet8 / README.md
Created October 12, 2017 16:54 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
@thundernet8
thundernet8 / gist:c64e979b15e26e84552199d11c4711a1
Created July 28, 2017 16:41 — forked from RichFromGalvanize/gist:5873044
An image piping example using Node.js, express, and request...BOOYA!
var request = require('request');
var express = require('express');
var app = express();
app.get('/goofy', function(req, res) {
request('http://images1.wikia.nocookie.net/__cb20120715102950/disney/images/a/a5/Disneygoofy2012.jpeg').pipe(res);
});
app.get('/loop', function(req, res) {
res.render('mypage');