This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function boot(){ | |
| injectStyles(chrome.runtime.getURL('/src/inject/notes_theme.css')); | |
| injectStyles(chrome.runtime.getURL('/src/inject/notes.css')); | |
| injectScripts(chrome.runtime.getURL('/src/inject/utils.js')); | |
| injectScripts(chrome.runtime.getURL('/src/inject/rte.js')); | |
| injectScripts(chrome.runtime.getURL('/src/inject/notes.js')); | |
| } | |
| function injectStyles(href){ | |
| const link = document.createElement("link"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| alias dm='docker-machine' | |
| alias dmx='docker-machine ssh' | |
| alias dk='docker' | |
| alias dki='docker images' | |
| alias dks='docker service' | |
| alias dkrm='docker rm' | |
| alias dkl='docker logs' | |
| alias dklf='docker logs -f' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use strict'; | |
| console.log('Loading function'); | |
| let doc = require('dynamodb-doc'); | |
| let dynamo = new doc.DynamoDB(); | |
| const tableName = process.env.TABLE_NAME; | |
| const createResponse = (statusCode, body) => { | |
| return { |