Remote address: 150.0.0.1
Remote user: joe
Remote repos should be able to accept push from other repos. Therefore, we need to setup a bare repo:
mkdir foobar.git
| { | |
| "auto_indent": true, | |
| "font_face": "Inconsolata-dz", | |
| "font_size": 15.0, | |
| "highlight_line": true, | |
| "tab_size": 2, | |
| "translate_tabs_to_spaces": true, | |
| "trim_trailing_white_space_on_save": true, | |
| "use_tab_stops": true, | |
| "word_wrap": false |
| canvas = document.getElementById('canvasImage'); | |
| context = canvas.getContext('2d'); | |
| containerWidth = window.innerWidth; | |
| containerHeight = 90; | |
| // set width/height | |
| context.canvas.width = containerWidth; | |
| context.canvas.height = containerHeight; |
| #!/bin/bash | |
| #============================================================================== | |
| # | |
| # Script for automated deployments. | |
| # | |
| # This system expects at least the following directories to exists: | |
| # | |
| # * ../../temp | |
| # * ../../transfer | |
| # * ../../testing |
| { | |
| "aed": { | |
| "priority": 100, | |
| "iso_code": "AED", | |
| "name": "United Arab Emirates Dirham", | |
| "symbol": "د.إ", | |
| "alternate_symbols": ["DH", "Dhs"], | |
| "subunit": "Fils", | |
| "subunit_to_unit": 100, | |
| "symbol_first": true, |
| $_countries = [ | |
| 'AND' => 'Andorra', | |
| 'ARE' => 'United Arab Emirates', | |
| 'AFG' => 'Afghanistan', | |
| 'ATG' => 'Antigua and Barbuda', | |
| 'AIA' => 'Anguilla', | |
| 'ALB' => 'Albania', | |
| 'ARM' => 'Armenia', | |
| 'AGO' => 'Angola', | |
| 'ATA' => 'Antarctica', |
| # | |
| # that goes into your .bash_profile | |
| # | |
| export GEM_PATH=~/gems | |
| # | |
| # install e.g. bundler | |
| # | |
| gem install -i ~/gems bundler |
| 1. Run in terminal: | |
| defaults write com.apple.Finder AppleShowAllFiles YES | |
| 2. Relaunch finder | |
| 3. Done |
| [client] | |
| default-character-set=utf8 | |
| socket=/usr/local/var/run/mysql.sock | |
| ################################################# | |
| [mysqld] | |
| socket=/usr/local/var/run/mysql.sock | |
| skip-ssl | |
| skip-name-resolve |