Skip to content

Instantly share code, notes, and snippets.

@cmygray
cmygray / vimium-nord-theme.css
Last active January 19, 2022 11:14
vimium-nord-theme
/* extensions > vimium > extension options > show advanced options > CSS for Vimium UI */
:root {
/* https://www.nordtheme.com/docs/colors-and-palettes */
--nord0: #2e3440;
--nord1: #3b4252;
--nord2: #434c5e;
--nord3: #4c566a;
--nord4: #d8dee9;
@cmygray
cmygray / conference_satisfaction.csv
Last active September 3, 2019 10:47
파이콘 설문 비교
year response value
2016 매우 불만족 8
2016 불만족 25
2016 보통 73
2016 만족 160
2016 매우 만족 73
2017 매우 불만족 4
2017 불만족 14
2017 보통 61
2017 만족 105
@cmygray
cmygray / .eslintrc.js
Created March 25, 2019 15:17
vue eslintrc
module.exports = {
root: true,
env: {
node: true
},
extends: ["plugin:vue/recommended", "@vue/prettier", "@vue/typescript"],
rules: {
"vue/html-self-closing": ["error", {
html: {
"void": "never",