- C-a == Ctrl-a
- M-a == Alt-a
:q close
:w write/saves
:wa[!] write/save all windows [force]
:wq write/save and close
VERSION = \"1.0.0\" | |
PREFIX ?= out | |
INCDIR = include | |
SRCDIR = src | |
LANG = c | |
OBJDIR = .obj | |
MODULE ?= binary_name | |
CC ?= gcc |
package jwt | |
import ( | |
"crypto/rsa" | |
"errors" | |
"encoding/json" | |
"io/ioutil" | |
"net/http" | |
"crypto/x509" | |
"encoding/pem" |
# Keras==1.0.6 | |
from keras.models import Sequential | |
import numpy as np | |
from keras.layers.recurrent import LSTM | |
from keras.layers.core import TimeDistributedDense, Activation | |
from keras.preprocessing.sequence import pad_sequences | |
from keras.layers.embeddings import Embedding | |
from sklearn.cross_validation import train_test_split | |
from keras.layers import Merge | |
from keras.backend import tf |
package semaphore | |
// Semaphore channel | |
type Semaphore chan struct{} | |
// Acquire resource | |
func (s Semaphore) Acquire() { | |
s <- struct{}{} | |
} |
var current = window.location.href; | |
var party_url = "";//Typ hier je Feest url | |
var base_url = "https://www.ticketswap.nl"; | |
$( document ).ready(function() { | |
if (current.indexOf("event") > -1) { | |
refreshPage(); | |
} | |
else if (current.indexOf("listing") > -1){ | |
orderCard(); |
# Initialize the scroll | |
page = es.search( | |
index = 'yourIndex', | |
doc_type = 'yourType', | |
scroll = '2m', | |
search_type = 'scan', | |
size = 1000, | |
body = { | |
# Your query's body | |
}) |
http://stackoverflow.com/questions/7004702/how-can-i-create-a-makefile-for-c-projects-with-src-obj-and-bin-subdirectories | |
# ------------------------------------------------ | |
# Generic Makefile | |
# | |
# Author: [email protected] | |
# Date : 2011-08-10 | |
# | |
# Changelog : | |
# 2010-11-05 - first version |