Skip to content

Instantly share code, notes, and snippets.

View atouchard's full-sized avatar

Alexandre Touchard atouchard

View GitHub Profile
@atouchard
atouchard / varnish-install.sh
Last active September 29, 2021 16:16
Install Varnish on MacOSX via Homebrew
#!/bin/sh
#
# Install Varnish via Homebrew
#
# You need to add /usr/local/sbin in your PATH
# vcl files are in /usr/local/etc/varnish
#
# Usage :
@atouchard
atouchard / ubuntu-php-install.sh
Last active December 13, 2015 18:08
Simple PHP installation for Ubuntu
#!/bin/bash
# Install base packages
sudo apt-get install aptitude
sudo aptitude safe-upgrade
sudo apt-get update
sudo aptitude install build-essential
dpkg-reconfigure tzdata
sudo apt-get install language-pack-fr
dpkg-reconfigure locales
@atouchard
atouchard / Preferences.sublime-settings
Last active December 13, 2015 16:59
My Sublime text configuration
{
"bold_folder_labels": true,
"color_scheme": "Packages/Color Scheme - Default/Monokai Bright.tmTheme",
"default_line_ending": "unix",
"draw_white_space": "all",
"ensure_newline_at_eof_on_save": true,
"fallback_encoding": "UTF-8",
"folder_exclude_patterns":
[
".svn",