Skip to content

Instantly share code, notes, and snippets.

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

Sébastien ELET SebastienElet

🏠
Working from home
View GitHub Profile
@SebastienElet
SebastienElet / tdb.patch
Created August 1, 2013 12:46
Tdb patch file
--- tdbtool.c 2008-01-20 22:26:37.000000000 +0100
+++ tdbtool.c 2008-01-20 22:27:45.000000000 +0100
@@ -169,23 +169,21 @@
static void help(void)
{
- printf("
-tdbtool:
- create dbname : create a database
- open dbname : open an existing database
@SebastienElet
SebastienElet / install.sh
Created July 9, 2013 15:39
Node installer
#!/bin/sh
apt-get install -y curl
CURRENT=$(node -v)
VERSION=$(curl -L -s http://nodejs.org/dist/latest/ \
| egrep -o '[0-9]+\.[0-9]+\.[0-9]+' \
| tail -n1)
PLATFORM=linux
ARCH=x64
PREFIX="/usr/local/"
@SebastienElet
SebastienElet / .vimrc
Created December 11, 2012 17:00
.vimrc
set encoding=utf-8
set number
set title
syntax on
set autoindent
set expandtab
set background=dark
@SebastienElet
SebastienElet / libxl.rb
Last active October 12, 2015 12:07
Homebrew php54-excel (using libxl)
require 'formula'
class Libxl < Formula
homepage 'http://www.libxl.com/'
url 'ftp://xlware.com/libxl-mac-3.6.0.tar.gz'
sha1 '52da78f73e4a8e727c8c73c99435f4136e3774c2'
def install
lib.install 'lib/libxl.dylib'
include.install Dir["include_c/*.h"]