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 fs = require('fs'); | |
const path = require('path'); | |
const { files } = require('.next/next-server.js.nft.json'); | |
const { nodeFileTrace } = require('@vercel/nft'); | |
const getAllFiles = async dirPath => { | |
let files = []; | |
const dirEntries = await fs.promises.readdir(dirPath, { withFileTypes: true }); | |
for (const entry of dirEntries) { | |
const filePath = path.join(dirPath, entry.name); |
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
import {Transform} from "jscodeshift"; | |
const transform: Transform = (fileInfo, api, options) => { | |
const j = api.jscodeshift; | |
const root = j(fileInfo.source); | |
root.find(j.JSXOpeningElement, { | |
name: { name: 'TextInput' }, | |
}) | |
.replaceWith(({node}) => { |
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
import {Transform} from "jscodeshift"; | |
const transform: Transform = (fileInfo, api, options) => { | |
const j = api.jscodeshift; | |
const root = j(fileInfo.source); | |
root | |
.find(j.ImportDeclaration) | |
.filter(path => path.node.source.value === 'react-router' || path.node.source.value === 'react-router-dom') | |
.find(j.ImportSpecifier) |
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
var parseParams = function (qs) { | |
return qs.split(/&/).reduce((base, cur) => { | |
const kv = cur.split(/=/); | |
base[decodeURIComponent(kv.shift())] = decodeURIComponent(kv.join('=')); | |
return base; | |
}, {}); | |
} | |
function doPost(e) { | |
var prop = PropertiesService.getScriptProperties().getProperties(); |
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
/** | |
Copyright (c) 2018 kyo-ago | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |
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 fs = require('fs'); | |
let karabinerJsonPath = `${process.env.HOME}/.config/karabiner/karabiner.json`; | |
let conditionAppMap = { | |
browsers: [ | |
"^com\\.google\\.Chrome$", | |
"^org\\.mozilla\\.firefox$", | |
"^com\\.apple\\.Safari$", | |
], |
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
{ | |
"context": "/Users/kyo/projects/lifter/packages/lifter-app", | |
"devtool": "nosources-source-map", | |
"externals": [ | |
"@lifter/electron-window-manager", | |
"@lifter/lifter-common", | |
"@lifter/lifter-main", | |
"@lifter/networksetup-proxy", | |
"electron-context-menu", | |
"electron-ipc", |
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
// ==UserScript== | |
// @name shigotoshiro | |
// @namespace hinatami.net | |
// @description 平日の昼間にamazonを見れなくします。 | |
// @match http://www.amazon.co.jp/* | |
// @grant none | |
// ==/UserScript== | |
/*! jQuery v2.1.3 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ | |
!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l=a.document,m="2.1.3",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=n.merge |
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
<autogen> | |
__KeyToKey__ | |
KeyCode::P, ModifierFlag::COMMAND_L | ModifierFlag::SHIFT_L, KeyCode::JIS_EISUU, KeyCode::A, ModifierFlag::SHIFT_L, KeyCode::P, KeyCode::P, KeyCode::L, KeyCode::I, KeyCode::C, KeyCode::A, KeyCode::T, KeyCode::I, KeyCode::O, KeyCode::N, KeyCode::C, ModifierFlag::SHIFT_L, KeyCode::A, KeyCode::C, KeyCode::H, KeyCode::E, KeyCode::SPACE, KeyCode::P, ModifierFlag::SHIFT_L, KeyCode::O, KeyCode::I, KeyCode::S, KeyCode::O, KeyCode::N, KeyCode::I, KeyCode::N, KeyCode::G | |
</autogen> |
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
var SSE = require('sse') | |
, http = require('http'); | |
var server = http.createServer(function(req, res) { | |
res.writeHead(200, {'Content-Type': 'text/html'}); | |
res.write('<html><head><title></title></head><body>'); | |
res.write('<script src="https://raw.githubusercontent.com/Yaffle/EventSource/master/eventsource.js"></script><script>'); | |
res.write('var es = new EventSource("/sse");es.onmessage = function (event) {alert(event.data);};'); | |
res.write('</script></body></html>'); | |
res.end(); |
NewerOlder