This is unmaintained, please visit Ben-PH/spacemacs-cheatsheet
SPC q q- quitSPC w /- split window verticallySPC w- - split window horizontallySPC 1- switch to window 1SPC 2- switch to window 2SPC w c- delete current window
This is unmaintained, please visit Ben-PH/spacemacs-cheatsheet
SPC q q - quitSPC w / - split window verticallySPC w - - split window horizontallySPC 1 - switch to window 1SPC 2 - switch to window 2SPC w c - delete current windowEDIT: You can find this same updated tutorial here -> Medium
Now I'm going to list how to publish an Android libray to jCenter and then syncronize it with Maven Central:
emacs --daemon to run in the background.
emacsclient.emacs24 <filename/dirname> to open in terminal
NOTE: "M-m and SPC can be used interchangeably".
C-/C-?M-c
2. Upper Case : M-uM-lThere is no official alpine Docker image for the arm platform. The onec i found are not taking advantage of the much quicker Fastly CDN basedpackage mirror option
Here are steps to rebuild the images on a rpi:
git clone https://github.com/gliderlabs/docker-alpine.git docker-alpine-gliderlabs
cd docker-alpine-gliderlabs/
| package main | |
| import ( | |
| "fmt" | |
| "net" | |
| "time" | |
| "bufio" | |
| ) | |
| func handleConnection(conn net.Conn) { |
| { | |
| "statements": [ | |
| { | |
| "source": { | |
| "web": { | |
| "site": "https://applinkingexperiment.appspot.com." | |
| } | |
| }, | |
| "relation": "delegate_permission/common.handle_all_urls", | |
| "target": { |
| package main | |
| import ( | |
| "log" | |
| "time" | |
| "golang.org/x/net/context" | |
| "google.golang.org/grpc" | |
| pb "github.com/jzelinskie/grpc/simple" |
| public class NetworkHelper extends Fragment { | |
| public static final String TAG = "NetworkHelper"; | |
| public static final String CHECK_INTERNET = "network_connection"; | |
| private Activity mActivity; | |
| AlertDialog mAlertDialog = null; | |
| private BroadcastReceiver onNotice = new BroadcastReceiver() { | |
| @Override |
| """ | |
| Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy) | |
| BSD License | |
| """ | |
| import numpy as np | |
| # data I/O | |
| data = open('input.txt', 'r').read() # should be simple plain text file | |
| chars = list(set(data)) | |
| data_size, vocab_size = len(data), len(chars) |
| package be.digitalia.common.widgets; | |
| import android.content.Context; | |
| import android.os.SystemClock; | |
| import android.util.AttributeSet; | |
| import android.view.View; | |
| import android.widget.ProgressBar; | |
| /** | |
| * ContentLoadingProgressBar implements a ProgressBar that waits a minimum time to be |