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 windowThis test will make use of the Bored API. Feel free to read through the documentation to familiarise yourself with it before beginning.
Throughout the challenge, please feel free to:
mod + Enter
- open terminal
mod + v
- split vertically
mod + h
- split horizontally
mod + Shift + q
- close window
mod + d
- open dmenu
/** @jsx jsx */ | |
import { jsx } from '@emotion/core' | |
import React from 'react' | |
const Flex: React.FC<{ | |
as?: React.ReactType | |
row?: boolean | |
column?: boolean | |
}> = ({ as: Component = `div`, row, column }) => { | |
const flexDirection = row ? 'row' : column ? 'column' : '' |
{"lastUpload":"2019-04-21T08:22:13.740Z","extensionVersion":"v3.2.8"} |
{"lastUpload":"2019-01-07T09:10:24.054Z","extensionVersion":"v3.2.4"} |
import { InMemoryDbService } from 'angular-in-memory-web-api' | |
import { Hero } from './hero' | |
export class InMemoryDataService implements InMemoryDbService { | |
createDb() { | |
const heroes = [ | |
{ id: 11, name: 'Mr. Nice' }, | |
{ id: 12, name: 'Narco' }, | |
{ id: 13, name: 'Bombasto' }, | |
{ id: 14, name: 'Celeritas' }, |
{ | |
"Reggae": [ | |
"The Abyssinians", | |
"The Aces", | |
"Glen Adams", | |
"Admiral T", | |
"Yasus Afari", | |
"African Brothers", | |
"The Aggrovators", | |
"Aisha", |
#!/bin/bash | |
for dir in ./exercises/*/ | |
do | |
dir=${dir%*/} | |
file="$dir/example_gen.go" | |
if [ -f "$file" ]; then | |
metadir="${dir}/.meta/" | |
mkdir -p "${metadir}" | |
mv "$file" "${metadir}gen.go" | |
fi |
--- | |
- name: Create tmp Directory | |
hosts: 127.0.0.1 | |
connection: local | |
tasks: | |
- name: Create tmp Directory | |
file: path=../../tmp state=directory | |