method | path | header | query,entity | status | description |
---|---|---|---|---|---|
- | - | - | Any | 400 Bad Request | The request could not be understood by the server due to malformed syntax |
- | - | Any | Any | 403 Forbidden | The server understood the request, but is refusing to fulfill it |
- | Any | - | - | 404 Not Found | The server has not found anything matching the Request-URI |
Any | - | - | - | 405 Method Not Allowed | The method specified (GET, PUT...) in the Request-Line is not allowed for the resource |
- | - | Any | - | 412 Precondition Failed | The precondition given in one or more of the request-header fields evaluated to false |
- | - | Any | - | 431 Request Header Fields Too Large (RFC 6585) | The server is unwilling to process the the header fields are too large. |
- | - | - | Any | 413 Request Entity Too Large | The server is refusing to process a request because the request entity is too large |
- | - | - | Any | 414 Reques |
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
#GIT Alias | |
alias latest='git checkout master;git fetch --all;git rebase;git status;' | |
alias br='git show-branch;git branch;git status;' | |
alias h2='git rebase -i HEAD~2' | |
alias h3='git rebase -i HEAD~3' | |
alias h4='git rebase -i HEAD~4' | |
alias h5='git rebase -i HEAD~5' | |
alias h6='git rebase -i HEAD~6' |
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
# | |
#Creator: 2013, Olivier Huin (https://github.com/olih) | |
#License: Eclipse Public License - v 1.0 | |
#Contributors: | |
# | |
# Generates a random password | |
#This code is a quick hack and should not be used for production | |
#as it is not optimized and the random numbers could be predicted. | |
G=10000000000 |
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
#!/usr/bin/env python | |
# encoding: utf-8 | |
""" | |
Executes a ps | |
Kill all processes with a given name | |
Creator: 2013, Olivier Huin (https://github.com/olih) | |
License: Eclipse Public License - v 1.0 | |
Contributors: | |
""" |
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
#!/usr/bin/python | |
# | |
#Creator: 2013, Olivier Huin (https://github.com/olih) | |
#License: Eclipse Public License - v 1.0 | |
#Contributors: | |
# | |
import sys, getopt | |
import csv |
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
# | |
#Creator: 2013, Olivier Huin (https://github.com/olih) | |
#License: Eclipse Public License - v 1.0 | |
#Contributors: | |
# | |
pairToMap= (key,value)-> | |
row= | |
Name: key | |
Value: value |
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
# | |
#Creator: 2013, Olivier Huin (https://github.com/olih) | |
#License: Eclipse Public License - v 1.0 | |
#Contributors: | |
# | |
#This code is a quick hack and should not be used for production | |
#as it is not optimized and the random numbers could be predicted. | |
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
# | |
#Creator: 2013, Olivier Huin (https://github.com/olih) | |
#License: Eclipse Public License - v 1.0 | |
#Contributors: | |
# | |
#Very basic page view cost calculator | |
#Dollar conversion | |
D= 0.65 |
- name
- description
- version
- keywords
- homepage
- author
- repository
- licenses
- stars
- updated
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
function tard { tar cvf $1-$(date +%Y-%m-%dT%H:%MZ).tar $1;} | |
export tard | |
function tarzd { tar cvfz $1-$(date +%Y-%m-%dT%H:%MZ).tar.gz $1;} | |
export tarzd |