I hereby claim:
- I am kaave on github.
- I am kaave (https://keybase.io/kaave) on keybase.
- I have a public key ASCHIHL5CDGn3xsP32QTFHbG0kb74COOQauLiBq4Tc_IJwo
To claim this, I am signing this object:
| # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to log to the console when each text editor is saved. | |
| # | |
| # atom.workspace.observeTextEditors (editor) -> | |
| # editor.onDidSave -> |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title></title> | |
| </head> | |
| <body> | |
| HELLO bl.ocks.org | |
| </body> | |
| </html> |
| Vagrant.configure(2) do |config| | |
| config.vm.synced_folder './sync', | |
| '/var/sync', | |
| type: 'rsync', | |
| # 標準の設定から[--delete]のみ除外 | |
| rsync__args: ['--verbose', '--archive', '-z', '--copy-links'], | |
| rsync__exclude: ['.DS_Store', '.git/', 'deps/', '_build/', 'node_modules/'] | |
| end |
| // Netable differences vs. the default firmware for the ErgoDox EZ: | |
| // 1. The Cmd key is now on the right side, making Cmd+Space easier. | |
| // 2. The media keys work on OSX (But not on Windows). | |
| #include "ergodox_ez.h" | |
| #include "debug.h" | |
| #include "action_layer.h" | |
| #define BASE 0 // default layer | |
| #define SYMB 1 // symbols | |
| #define MDIA 2 // media keys |
| def show_tag(self, tag): | |
| # print tags | |
| print(tag) | |
| # create url values | |
| url_values = urllib.urlencode({"read": tag}) | |
| # create request url | |
| url = "http://localhost:8000/?" + url_values | |
| print(" Request to: " + url) |
| import XMonad | |
| import XMonad.Hooks.EwmhDesktops -- for chrome's fullscreen mode | |
| -- | |
| -- import XMonad.Config.Desktop | |
| -- | |
| -- baseConfig = desktopConfig | |
| main = do | |
| xmonad $ defaultConfig | |
| { terminal = myTerminal |
I hereby claim:
To claim this, I am signing this object:
| **/*.d.ts |
| yarn add -D @types/webmidi |
| import * as admin from 'firebase-admin'; | |
| import * as functions from 'firebase-functions'; | |
| const validReferrers = [ | |
| 'http://localhost:9012', | |
| ]; | |
| admin.initializeApp(functions.config().firebase); | |
| const db = admin.firestore(); |