I hereby claim:
- I am mattskala on github.
- I am mattskala (https://keybase.io/mattskala) on keybase.
- I have a public key ASD_nIrB4tCMgLuTL10w7b6VCMW-Tk5AMwavDkHwyzJjDQo
To claim this, I am signing this object:
| # Node | |
| npm-debug.log | |
| # Mac | |
| .DS_Store | |
| # Windows | |
| Thumbs.db | |
| # WebStorm |
| [user] | |
| name = Matouš Skála | |
| email = skala.matous@gmail.com | |
| [alias] | |
| st = status | |
| hist = log --pretty=format:\"%C(yellow)%h %Cred%ad%Cgreen%d %Creset%s %Cblue[%an]\" --graph --date=short --date=relative | |
| [color] | |
| ui = auto | |
| [color "branch"] | |
| current = yellow reverse |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| if [ -z "$1" ]; then | |
| echo "Missing argument: dir" | |
| exit | |
| fi | |
| if [ -z "$2" ]; then | |
| echo "Missing argument: format" | |
| exit |
| [user] | |
| name = Matouš Skála | |
| email = skala.matous@gmail.com | |
| [core] | |
| # windows->true, linux->input | |
| autocrlf = input | |
| safecrlf = false | |
| excludesfile = /Users/skala/.gitignore_global | |
| [alias] | |
| co = checkout |
| apt-get install gitolite | |
| adduser \ | |
| --system \ | |
| --shell /bin/bash \ | |
| --gecos 'git version control' \ | |
| --group \ | |
| --disabled-password \ | |
| --home /home/git \ | |
| git | |
| su git |
| <?php | |
| $this->template->registerHelper('linkify', function($text) { | |
| return preg_replace('"\b(http(s)?://\S+)"', '<a href="$1">$1</a>', $text); | |
| }); | |
| ?> |
| /* | |
| table foo | |
| id int(11) AUTO INCREMENT | |
| name varchar(255) | |
| */ | |
| $item = array(); | |
| $item['id'] = null; | |
| $item['name'] = "Lorem ipsum"; |