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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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>' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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) |
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:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pierstoval@PIERSTOVAL /mnt/e/dev/www/sandbox $ ./test.bash | |
KO for key ALLUSERSPROFILE | |
KO for key APPDATA | |
KO for key CLINK_DIR | |
KO for key CommonProgramFiles | |
KO for key CommonProgramW6432 | |
KO for key COMPUTERNAME | |
KO for key ComSpec | |
KO for key FPS_BROWSER_APP_PROFILE_STRING |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Title</title> | |
<style type="text/css"> | |
* { margin: 0; padding: 0; box-sizing: border-box; } | |
iframe { | |
overflow: hidden; | |
border: solid 1px black; |
Place this at the "root" of your git repos, or even your projects directory.
Like /var/www/git_gc.bash
for example, if you save many projects under this dir.
This script will run git reflog expire
and git gc
with extra options to save
some space when working with heavy & often rebased projects.
To compute the results, just use Melody and run the script:
melody run https://gist.github.com/Pierstoval/ed387a09d4a5e76108e60e8a7585ac2d
OlderNewer