I plan to build a custom ergonomic mechanical keyboard for you. We want it to fit you so well it becomes a joy to type.
Name | # of keys** | Number row | Column stagger | Notes |
---|
# Change these variables as necessary. | |
main_package_path = ./cmd/example | |
binary_name = example | |
# ==================================================================================== # | |
# HELPERS | |
# ==================================================================================== # | |
## help: print this help message | |
.PHONY: help |
I plan to build a custom ergonomic mechanical keyboard for you. We want it to fit you so well it becomes a joy to type.
Name | # of keys** | Number row | Column stagger | Notes |
---|
NOTE: This gist is deprecated. I've moved everything into
/users/muppetjones
, and I have an open PR on the QMK repo. Eventually, this will probably be merged, and I'll (hopefully) remember to update this note.
pool: your-agent-pool-name | |
trigger: | |
batch: true | |
branches: | |
exclude: | |
- refs/heads/feature* | |
resources: | |
repositories: |
parameters: | |
container_name: | |
container_key: | |
variable_group_name: | |
environment: | |
tf_plan_name: | |
working_directory: | |
steps: | |
- checkout: self |
^3[47][0-9]{13}$
^(6541|6556)[0-9]{12}$
^389[0-9]{11}$
^3(?:0[0-5]|[68][0-9])[0-9]{11}$
^65[4-9][0-9]{13}|64[4-9][0-9]{13}|6011[0-9]{12}|(622(?:12[6-9]|1[3-9][0-9]|[2-8][0-9][0-9]|9[01][0-9]|92[0-5])[0-9]{10})$
^63[7-9][0-9]{13}$
^(?:2131|1800|35\d{3})\d{11}$
^9[0-9]{15}$
{ | |
"presets": [ "es2015" ] | |
} |
import React, { Component } from 'react' | |
import Subapp from './subapp/Root' | |
class BigApp extends Component { | |
render() { | |
return ( | |
<div> | |
<Subapp /> | |
<Subapp /> | |
<Subapp /> |
import { STAR_PERSON, MET_PERSON, UPDATE_NOTES, SET_URL } from '../constants/action-types' | |
import { LS_KEY } from '../constants/localstorage-keys' | |
import tryit from 'tryit' | |
import debounce from 'lodash.debounce' | |
const userPreferenceActions = [STAR_PERSON, MET_PERSON, UPDATE_NOTES] | |
function writeToLocalStorage (getState) { | |
let data = { | |
starred: {}, |
. | |
├── books | |
│ ├── handlers.go | |
│ └── models.go | |
├── config | |
│ └── db.go | |
└── main.go |