(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
When working with Git, there are two prevailing workflows are Git workflow and feature branches. IMHO, being more of a subscriber to continuous integration, I feel that the feature branch workflow is better suited, and the focus of this article.
If you are new to Git and Git-workflows, I suggest reading the atlassian.com Git Workflow article in addition to this as there is more detail there than presented here.
I admit, using Bash in the command line with the standard configuration leaves a bit to be desired when it comes to awareness of state. A tool that I suggest using follows these instructions on setting up GIT Bash autocompletion. This tool will assist you to better visualize the state of a branc
Upgrading to Lion or Yosemite and WebStorm 9, I noticed key repeat was
turned off for the IdeaVim plugin h j k l keys.
defaults write -g ApplePressAndHoldEnabled -bool false in a terminal will enable
key repeat for every app. This can alternatively be found in the accessibility
settings in OS X' preferences.
| // Using Singleton on Kotlin | |
| public object MySingleton { | |
| public fun foo() { | |
| } | |
| } | |
| // And use it on Kotlin | |
| MySingleton.foo() |
| $ ffmpeg -i input.mp4 -vcodec h264 -acodec mp2 output.mp4 |
| [ | |
| { | |
| "name": "Afghanistan", | |
| "dial_code": "+93", | |
| "code": "AF" | |
| }, | |
| { | |
| "name": "Aland Islands", | |
| "dial_code": "+358", | |
| "code": "AX" |
| class Adder implements Function { | |
| call(int a, int b) => a + b; | |
| } | |
| class Incrementer implements Function { | |
| int _amt; | |
| Incrementer(this._amt); | |
| call(int a) => a + _amt; | |
| } |
| package id.bitcase.ocafe.utility; | |
| import android.bluetooth.BluetoothAdapter; | |
| import android.bluetooth.BluetoothDevice; | |
| import android.bluetooth.BluetoothSocket; | |
| import android.graphics.Bitmap; | |
| import android.os.AsyncTask; | |
| import android.util.Log; | |
| import java.io.IOException; |
| package id.bitcase.ocafe.utility; | |
| import android.bluetooth.BluetoothAdapter; | |
| import android.bluetooth.BluetoothDevice; | |
| import android.bluetooth.BluetoothSocket; | |
| import android.graphics.Bitmap; | |
| import android.os.AsyncTask; | |
| import android.util.Log; | |
| import java.io.IOException; |