Skip to content

Instantly share code, notes, and snippets.

View adrienlucas's full-sized avatar

Adrien LUCAS adrienlucas

View GitHub Profile
@adrienlucas
adrienlucas / .bash_aliases
Last active August 29, 2015 14:05
My bash resources
#...
alias vgrt-up='(cd vagrant && vagrant up)'
alias vgrt-ssh='(cd vagrant && vagrant ssh)'
alias vgrt-status='(cd vagrant && vagrant status)'
alias vgrt-halt='(cd vagrant && vagrant halt)'
alias ssh-dev='ssh root@192.168.1.230'
alias mount-dev='sshfs root@192.168.1.230:/var/www /mnt/dev'
@adrienlucas
adrienlucas / README
Last active August 29, 2015 14:02
Atom.deb - Debian Jessie
Debian: jessie/sid
Atom: 103
Node: v0.10.28
npm: v1.4.4
@adrienlucas
adrienlucas / functions.php
Last active August 29, 2015 13:57
Wordpress (quick n' dirty) shortcode to display a map and markers.
<?
/*
This shortcode display a google map with some markers on it.
*/
/*
<!--Usage :-->
[amod-map]
Somewhere###<strong></strong><br /><a href="http://foobar.com/"###-25.363882,174.044922
Somewhere else###<strong></strong><br /><a href="http://foobar.com/"###15.549876,131.123489
[/amod-map]
@adrienlucas
adrienlucas / HackableObject.php
Created November 19, 2013 13:38
Dumb class that can be used to debug a third-party object calls.
<?php
class HackableObject {
protected $obj;
public function __construct($obj){
$this->obj = $obj;
}
@adrienlucas
adrienlucas / .gitignore
Last active December 25, 2015 20:49
Symfony2 capable gitignore file.
# Deprecated, use gibo instead : https://github.com/simonwhitaker/gibo
/build/
/composer.phar
vendor/*
app/bootstrap*
web/uploads/*
web/bundles/*
*/logs/*
*/cache/*