Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| ZOO_LOG4J_PROP="INFO,ROLLINGFILE" | |
| ZOO_LOG_DIR="/var/log/zookeeper/" |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| hi dforsyth | |
| hellooooooooooooo world | |
| asdfasdfasd | |
| bleep |
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |
| import java.util.Scanner; | |
| public class Money { | |
| public static void main (String args[]) { | |
| Scanner sc= new Scanner(System.in); | |
| String name, secondName; //Name is for the first branch, etc. | |
| int nameOrDenom, firstDenom, secondDenom; //firstDenom is for the first branch, etc. | |
| System.out.print("Type 1 to enter a last name, 2 to enter a denomination: "); |