Skip to content

Instantly share code, notes, and snippets.

View adrienlucas's full-sized avatar

Adrien LUCAS adrienlucas

View GitHub Profile
@adrienlucas
adrienlucas / poc-bash-colors.sh
Created May 4, 2015 17:11
Bash colors PoC script
#!/bin/bash
echo ---BG---40---41---42---43---44---45---46---47
for i in {30..37} # foreground
do
echo -n -e FG$i-
for j in {40..47} # background
do
echo -n -e '\E['$i';'$j'm foo\E[0m'
done
@adrienlucas
adrienlucas / pagebrowser.html.twig
Created September 4, 2014 09:11
Twig macro to display a pagination, aka page browser.
{*
Twig macro to display a pagination, aka page browser.
Usage :
First you have to import the macro using "import" :
{% from 'AcmeBundle:Default:Macro/pagebrowser.html.twig' import pagebrowser %}
Then, call the function :
{{ pagebrowser(route, routeParams, totalPages, currentPage, browserSize) }}
Where :
route : the list route that have the page param, usually 'app.request.attributes.get('_route')'
@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]