Skip to content

Instantly share code, notes, and snippets.

const {
RUNTIME,
aceVimMap,
addSearchAlias,
cmap,
imap,
imapkey,
getBrowserName,
getClickableElements,
getFormData,
@syon
syon / README.md
Last active January 26, 2019 16:06
Git Commit Emoji
  • 🎉 :tada: yay!
  • 🌀 :cyclone: tweak
  • :zap: zapping feature
  • 💎 :gem: new attracting feature
  • 🌐 :globe_with_meridians: network
  • 📦 :package: package relevant
  • 📁 :file_folder: restructure files
  • 🚿 :shower: clean
  • 🌊 :ocean: empty
  • 🌱 :seedling: initialized
@syon
syon / README.md
Last active March 1, 2023 09:27
cVim Theme: FFXIV

cVim Theme: FFXIV

cvim-ffxiv

@syon
syon / cloudSettings
Last active November 18, 2018 15:12
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-11-18T15:12:33.419Z","extensionVersion":"v3.2.0"}
@syon
syon / ogp_print.js
Created May 1, 2017 03:28
OGP with cheerio on Node.js (Sample)
const fetch = require('node-fetch');
const cheerio = require('cheerio');
urls = []
urls.push('http://qiita.com/horike37/items/b295a91908fcfd4033a2')
urls.push('http://qiita.com/ryo0301/items/7f9fd8024987526cbc30')
urls.push('http://inokara.hateblo.jp/entry/2017/04/30/092304')
urls.push('https://togetter.com/li/1105672')
urls.push('https://allabout.co.jp/gm/gc/469010/')
urls.push('http://anond.hatelabo.jp/20170429110724')

Document Title (Level 0)

Level 1 Section Title

Level 2 Section Title

Level 3 Section Title

Level 4 Section Title
@syon
syon / webpack.config.js
Created December 5, 2016 16:28
SPA ではない Webpack 設定サンプル
var HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
context: __dirname + '/src',
entry: {
javascript: './app.js',
},
output: {
@syon
syon / 0_reuse_code.js
Created June 18, 2016 06:18
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console

Windows settings

Apps

Keyboard

@syon
syon / cVimrc
Last active May 31, 2020 07:33
syon / cVimrc
set scalehints
set smoothscroll
let scrollduration = 300
let hintcharacters = "asdgwetcvb"
copyThisPageTitle() -> {{
var text = document.title || (document.querySelector("title") || {}).innerText || '';
RUNTIME('copy', { text: text });
Status.setMessage(text, 2);
}}