Skip to content

Instantly share code, notes, and snippets.

@ragingwind
ragingwind / chpwd.fish
Last active April 3, 2017 03:18
fish shell
function chpwd --on-variable PWD --description 'handler of changing $PWD'
if not status --is-command-substitution ; and status --is-interactive
set cur_cwd (echo $PWD | sed -e "s|^$HOME|~|" -e 's|^/private||')
# set_color -o black
# printf (printf "%*s" (tput cols)) | sed -e "s/ /\─/g";
echo ""
printf "%s⇢ %sEntering %s%s%s …\n" (set_color $fish_color_cwd) (set_color normal) (set_color $fish_color_cwd) $cur_cwd (set_color normal)
ls
{
"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,
<!-- $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 {
let searchalias b = "bookmark"
let searchalias g = "google"
@ragingwind
ragingwind / package.json
Created July 7, 2017 20:52
tiddlywiki package.json
{
"name": "tiddlywiki",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"tiddlywiki": "^5.1.14"
},
"scripts": {
"build": "tiddlywiki wiki --init server",
# find directories in the path
find . -maxdepth 10 -type d
@ragingwind
ragingwind / console.log.js
Created March 2, 2018 09:33
Logger with console.log and call stack in strict mode
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)
@ragingwind
ragingwind / run.js
Last active April 9, 2018 00:08
running code block by wrapping module
const m = require('module')
const res = vm.runInThisContext(m.wrap(code))(
exports,
require,
module,
__filename,
__dirname
)
@ragingwind
ragingwind / launch.json
Created April 9, 2018 07:01
Debugging electron app with vscode
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Electron: Main",
"protocol": "inspector",
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron",
"runtimeArgs": [
@ragingwind
ragingwind / won-as-backquote.sh
Last active August 7, 2021 03:49
Backquote binding for won key
mkdir -p ~/Library/KeyBindings &&
echo '{ "₩" = ("insertText:", "`"); }' >> ~/Library/KeyBindings/DefaultkeyBinding.dict