View vscode_custom.css
This file contains 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
.part.titlebar { | |
display: none !important; | |
} | |
.monaco-workbench { | |
background-color: rgba(0, 0, 0, 0); | |
} |
View won-as-backquote.sh
This file contains 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
mkdir -p ~/Library/KeyBindings && | |
echo '{ "₩" = ("insertText:", "`"); }' >> ~/Library/KeyBindings/DefaultkeyBinding.dict |
View launch.json
This file contains 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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Electron: Main", | |
"protocol": "inspector", | |
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron", | |
"runtimeArgs": [ |
View run.js
This file contains 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
const m = require('module') | |
const res = vm.runInThisContext(m.wrap(code))( | |
exports, | |
require, | |
module, | |
__filename, | |
__dirname | |
) |
View console.log.js
This file contains 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
const log = console.log | |
console.log = function logIt() { | |
var stack = new Error().stack, | |
callee = stack.split('\n')[3].slice(7), | |
tag = '[LOG]'; | |
if (arguments.length > 0) { | |
tag = Array.prototype.slice.call(arguments, 0)[0] | |
} | |
log.call(this, tag, callee) | |
arguments.length > 1 && log.apply(this, arguments) |
View shell-i-used-at-least-once.sh
This file contains 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
# find directories in the path | |
find . -maxdepth 10 -type d |
View package.json
This file contains 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
{ | |
"name": "tiddlywiki", | |
"version": "1.0.0", | |
"main": "index.js", | |
"license": "MIT", | |
"dependencies": { | |
"tiddlywiki": "^5.1.14" | |
}, | |
"scripts": { | |
"build": "tiddlywiki wiki --init server", |
View cvim.rc
This file contains 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
let searchalias b = "bookmark" | |
let searchalias g = "google" |
View header template for presentation of marp.html
This file contains 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
<!-- $theme: default --> | |
<!-- prerender: false --> | |
<!-- page_number: false --> | |
<!-- $width: 1980px --> | |
<!-- $height: 1080px --> | |
<link href='https://fonts.googleapis.com/css?family=Roboto:100' rel='stylesheet' type='text/css'> | |
<style> | |
p { |
View react-pwa-hello-world.firebaseapp.com_2017-04-21_17-43-38.json
This file contains 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
{ | |
"lighthouseVersion": "1.6.0", | |
"generatedTime": "2017-04-21T08:43:38.178Z", | |
"initialUrl": "https://react-pwa-hello-world.firebaseapp.com/#/", | |
"url": "https://react-pwa-hello-world.firebaseapp.com/#/", | |
"audits": { | |
"is-on-https": { | |
"score": true, | |
"displayValue": "", | |
"rawValue": true, |