I hereby claim:
- I am pierstoval on github.
- I am pierstoval (https://keybase.io/pierstoval) on keybase.
- I have a public key ASDMqGJzpJ2OMQa9tDDwznVYnbzPVW7K4oDlKUBliBawWAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Titre | URL |
---|---|
xkcd.com | http://xkcd.com/ |
Saturday Morning Breakfast Cereal | http://www.smbc-comics.com/ |
Symfony Blog | http://symfony.com/blog/ |
BlogLaurel (fr) | http://bloglaurel.com |
YODABLOG | http://www.yodablog.net |
<?php | |
$number = "\d*(?:\.\d+)?"; // It's a reference to use in other cases that matches any kind of number/float | |
$width = "(?<w>(?:$number)?%?)?"; // This is the first part, the width | |
$height = "(?:x(?<h>(?:$number)?%?))?"; // Here is the height, the same as "width" but starting with an "x" | |
$aspect = "[!><@^]"; // These are the different filters one can use to stretch, shrink, etc. | |
$size = "$width$height"; // To match any size we need width and height at least (aspect comes later) |
#!/bin/bash | |
######################################################################## | |
################################ README ################################ | |
######################################################################## | |
# | |
# This script is here to allow the use of "git push prod v1.2.3" commands or similar. | |
# | |
# Push a tag to a bare repository having this file as pre-receive hook, | |
# and you'll be able to deploy directly from command line in your local environment, |
#!/bin/bash | |
# Author: Joel Nothman | |
# Optimized by Pierstoval | |
# Under BSD-2 license | |
# See https://github.com/jnothman/git-squash | |
# See https://github.com/Pierstoval/git-squash | |
usage() { | |
echo "" | |
echo Usage: git squash '[-m <commit msg>] [-a|--append] [-f|--full] <base>' |