brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
| // no-shebang | |
| #![allow(unused_imports)] | |
| #![allow(dead_code)] | |
| #![allow(unused_variables,unused_must_use)] | |
| #![allow(unused_mut)] | |
| // -- in rust, a slice of a String is an &str ref | |
| fn main() { | |
| let pi = "3.14151".to_string(); | |
| let slice_of_pi: &str = &pi[0..3]; |
| use AppleScript version "2.4" -- Yosemite (10.10) or later | |
| use scripting additions | |
| property imageName : "red" | |
| property delayValue : 20 | |
| property googleURL : "http://www.google.com" | |
| on run | |
| set imageName to "white" | |
| end run |
| employee.name = "John" | |
| employee.age = 24 | |
| department.employees.append(employee) |
| elasticsearch: | |
| image: carmudi/elasticsearch | |
| ports: | |
| - "9200:9200" | |
| api-search: | |
| image: carmudi/api-search | |
| volumes: | |
| - .:/var/www/html | |
| links: |
brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
| # Insert your preferred key mappings here. | |
| unmap u | |
| unmap d | |
| map <C-u> scrollPageUp | |
| map <C-d> scrollPageDown | |
| map <M-l> nextTab | |
| map <M-h> previousTab |
| # +---------+ | |
| # | CD Find | | |
| # +---------+ | |
| cdf() { | |
| sp=$(pwd) | |
| if [[ "$1" = "" ]]; then | |
| echo "Usage: ..." | |
| return | |
| fi |
| #!/usr/env bash | |
| # +-------------------+ | |
| # | Color Definitions | | |
| # +-------------------+ | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' | |
| NC='\033[0m' # No Color | |
| RESTORE='\033[0m' | |
| YELLOW='\033[00;33m' |
Mobile Bug Report
Summary: Brief description of the issue
Platform:
Operating System: