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
--- | |
- block: | |
- name: Install apt-transport-https | |
apt: | |
name: apt-transport-https | |
state: present | |
- name: Adding Adoptopenjdk's Signing Key | |
apt_key: | |
url: https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public |
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#include <TimerOne.h> | |
const byte PWMDAC1pin = 9; // PWM DAC, only pins 9 and 10 are allowed | |
const byte PWMDAC2pin = 10; // example using second DAC | |
const byte period = 32; // for 8 bit DAC | |
byte commandByte; | |
byte noteByte; |
#!/usr/bin/env python | |
# | |
# dumpit.py | |
# An Alternative to mysqldump written in Python | |
# Requires MySQLdb Python Module. | |
# | |
# Author : Keiran 'Affix' Smith | |
# Email : [email protected] | |
# Web : http://affix.me | |
# Copyright 2013 Keiran Smith |