Mobile Bug Report
Summary: Brief description of the issue
Platform:
- iOS / Android / Other
Operating System:
- Version number
Mobile Bug Report
Summary: Brief description of the issue
Platform:
Operating System:
#!/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' |
# +---------+ | |
# | CD Find | | |
# +---------+ | |
cdf() { | |
sp=$(pwd) | |
if [[ "$1" = "" ]]; then | |
echo "Usage: ..." | |
return | |
fi |
# 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 |
brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
elasticsearch: | |
image: carmudi/elasticsearch | |
ports: | |
- "9200:9200" | |
api-search: | |
image: carmudi/api-search | |
volumes: | |
- .:/var/www/html | |
links: |
employee.name = "John" | |
employee.age = 24 | |
department.employees.append(employee) |
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 |
// 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]; |