Skip to content

Instantly share code, notes, and snippets.

View arnaudbesnier's full-sized avatar
🏠
Working from home

Arnaud Besnier arnaudbesnier

🏠
Working from home
View GitHub Profile
@ArnaudValensi
ArnaudValensi / composer.json
Created January 4, 2018 16:39
Laravel link package
"repositories": [
{
"type": "path",
"url": "/Users/arnaud/dev/forest/repos/forest-laravel",
"options": {
"symlink": true
}
}
],
"require": {
@kadishmal
kadishmal / app.js
Created October 11, 2012 08:36
Simple Node.js server which responds in chunked transfer encoding
var http = require('http');
http.createServer(function (request, response) {
response.setHeader('Content-Type', 'text/html; charset=UTF-8');
response.setHeader('Transfer-Encoding', 'chunked');
var html =
'<!DOCTYPE html>' +
'<html lang="en">' +
'<head>' +