Moved to github.com/rafi/notebook
This file contains hidden or 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 | |
| # Check if we are root | |
| if [ $UID -ne 0 ]; then | |
| echo "Please run this as root!" | |
| exit 255 | |
| fi | |
| # Check if we are on Ubuntu | |
| set distro=$(lsb_release -is) |
This file contains hidden or 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
| [Desktop Entry] | |
| Version=1.0 | |
| Type=Application | |
| Name=JetBrains PhpStorm | |
| Exec="/opt/phpstorm/PhpStorm-129.487/bin/phpstorm.sh" %f | |
| Icon=/opt/phpstorm/PhpStorm-129.487/bin/webide.png | |
| Comment=Develop with pleasure! | |
| Categories=Development;IDE; | |
| Terminal=false | |
| StartupNotify=true |
This file contains hidden or 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
| .hg/ | |
| *.swp | |
| *.lock | |
| # var | |
| .adobe/ | |
| .cache/ | |
| .cpan/ | |
| /.fonts/ | |
| .gegl-*/ |
This file contains hidden or 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
| [global] | |
| font = EnvyCodeR 10 | |
| # allow a small subset of html markup: | |
| # <b>bold</b> | |
| # <i>italic</i> | |
| # <s>strikethrough<s/> | |
| # <u>underline</u> | |
| # | |
| # for a complete reference see http://developer.gnome.org/pango/stable/PangoMarkupFormat.html |
This file contains hidden or 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
| . . | |
| ├── apps ├── apps | |
| │ ├── foo │ ├── foo | |
| │ │ ├── cache │ │ ├── cache | |
| │ │ ├── config │ │ ├── config | |
| │ │ ├── logs │ │ ├── logs | |
| │ │ └── media │ │ └── media | |
| │ └── bar │ └── bar | |
| ├── bin ├── bin | |
| ├── plugins ├── kohana |
This file contains hidden or 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 | |
| // src/kohana/classes/Sortex/KohanaBundle/PhpSpec/Bridge.php | |
| namespace Sortex\KohanaBundle\PhpSpec; | |
| use PhpSpec\Extension; | |
| use PhpSpec\ServiceContainer; | |
| /** | |
| * PHPSpec Kohana extension |
This file contains hidden or 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 config | |
| # https://github.com/rafi/.config | |
| # | |
| [user] | |
| name = Your Name | |
| email = your@email.com | |
| [github] |
- account add jabber USERNAME@chat.hipchat.com 'PASSWORD'
- account hipchat set nick_source full_name
- account hipchat set resource bot
- account hipchat on
- For nicks /join &hipchat
This file contains hidden or 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 | |
| Route::set('api', 'api/<version>/<controller>(.<format>)(/<id>)(/<custom>)', | |
| array( | |
| 'version' => 'v1', | |
| 'id' => '\d+', | |
| 'format' => 'json|xml|csv', | |
| )) | |
| ->filter(function($route, $params, $request) | |
| { |