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 | |
| sudo apt-get install git curl postgresql nodejs | |
| sudo add-apt-repository ppa:ondrej/php5 | |
| sudo apt-get update | |
| sudo apt-get install php5 php-pear | |
| sudo pear config-set auto_discover 1 | |
| sudo pear install pear.phpunit.de/PHPUnit |
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
Show hidden characters
| { | |
| "always_show_minimap_viewport": true, | |
| "ensure_newline_at_eof_on_save": true, | |
| "folder_exclude_patterns": | |
| [ | |
| ".svn", | |
| ".git", | |
| ".hg", | |
| "CVS", | |
| ".idea" |
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
| [ | |
| { "keys": ["ctrl+space"], "command": "goto_definition" }, | |
| { "keys": ["f1"], "command": "goto_documentation" }, | |
| { "keys": ["ctrl+shift+up"], "command": "select_lines", "args": {"forward": false} }, | |
| { "keys": ["ctrl+shift+down"], "command": "select_lines", "args": {"forward": true} }, | |
| { "keys": ["insert"], "command": "select_lines" }, | |
| ] |
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
| import sys | |
| from datetime import datetime | |
| if sys.version_info[0] == 2: | |
| range = xrange | |
| class StockClassic(object): |
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
| log_file = os.path.join( | |
| log_dir, | |
| 'deadlocks' | |
| '{}.log'.format(datetime.datetime.now().strftime('%Y-%m-%d_%H-%M-%S')) | |
| ) |
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
| class Robot(object): | |
| def move_forward(): | |
| print('Moving forward') | |
| def move_backward(): | |
| print('Moving backward') | |
| class CleaningRobot(Robot): |
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
| export PS1="$PS1\$(\ | |
| export GIT_BRANCH=\"\$(git branch --no-color 2>/dev/null | grep '*' | cut -d\" \" -f2-)\"; \ | |
| if [ -n \"\$GIT_BRANCH\" ] ; then \ | |
| echo -en \"\[\033[01;33m\]\"\$GIT_BRANCH \"> \[\033[00m\]\"; \ | |
| fi \ | |
| )" |
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
| Host milde | |
| HostName milde.cz | |
| User dundee | |
| Port 1080 | |
| Host nagios | |
| HostName nagios.milde.cz | |
| User dundee | |
| Port 1080 | |
| IdentityFile ~/.ssh/alternative |
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 | |
| $x = 3; | |
| $max = 1000000; | |
| $arr = array( | |
| 1, | |
| 2, | |
| 3, | |
| ); |
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
| /** | |
| * X-Mas Arduino sketch | |
| * Uses 11 LEDs (digital pin 3 to pin 13) and one switch (digital pin 0) | |
| */ | |
| int switchPin = 0; // Switch connected to digital pin 0 | |
| int ledPins[] = {13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3}; | |
| int ledCount = 11; |
OlderNewer