This file contains hidden or 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
{ | |
"meta": { "theme": "short" }, | |
"basics": { | |
"name": "Kengo Hamasaki", | |
"label": "Software Developer", | |
"picture": "https://d1qb2nb5cznatu.cloudfront.net/users/1541642-medium_jpg?1462493251", | |
"email": "[email protected]", | |
"website": "http://hmsk.me", | |
"summary": "Kengo is an end to end web engineer from Japan. He started his carrier from DevOps but shifted his primary focus toward Frontend until today through Middleware and Backend. Dove into product management, design, and customer support as a first employee of a fast-growing startup. Current favorite areas are \"payment processing\" and \"static site generation\". Loving OSS development.", | |
"location": { |
This file contains hidden or 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
export default function () { | |
// Nuxt resolves .ts extension | |
this.nuxt.options.extensions.push('ts') | |
// Extend webpack build | |
this.extendBuild(config => { | |
// Add ts-loader to import .ts | |
config.module.rules.push({ | |
test: /\.ts$/, | |
loader: 'ts-loader', |
This file contains hidden or 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
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "es5", | |
"lib": ["dom", "es2015"], | |
"module": "es2015", | |
"moduleResolution": "node", | |
"experimentalDecorators": true, | |
"noImplicitAny": false, | |
"noImplicitThis": false, | |
"strictNullChecks": true, |
This file contains hidden or 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
#include "sweet16.h" | |
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |
LAYOUT_ortho_4x4( | |
KC_PGUP, KC_PGDN, KC_N, LSFT(KC_N), | |
LALT(LGUI(KC_L)), LALT(LGUI(KC_T)), LALT(LGUI(KC_R)), LALT(LGUI(KC_J)), | |
LALT(KC_LT), LALT(KC_GT), LALT(KC_COMMA), LALT(KC_DOT), | |
LGUI(KC_B), LGUI(KC_I), LGUI(KC_U), KC_NO | |
) | |
}; |
This file contains hidden or 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
module.exports = { | |
processors: [ | |
["@mapbox/stylelint-processor-arbitrary-tags", { fileFilterRegex: [/\.vue$/] }] | |
], | |
extends: [ | |
"stylelint-config-standard", | |
"stylelint-config-recess-order" | |
], | |
rules: { | |
"no-empty-source": null |
This file contains hidden or 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
cat > cmds << EOF | |
ls Applications | |
ls Desktop | |
ls Music | |
EOF | |
cat cmds | xargs -L1 -I BUILD -P3 bash -c BUILD | |
# -P[thread-num] |
This file contains hidden or 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
tell application "System Events" | |
tell application "System Preferences" | |
activate | |
set current pane to pane "com.apple.preference.sound" | |
end tell | |
tell application process "System Preferences" | |
repeat until (exists window "Sound" of application "System Preferences") | |
delay 1 | |
end repeat | |
tell tab group 1 of window "Sound" |
This file contains hidden or 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
<!-- pages/about.vue --> | |
<template> | |
<div class="Content"> | |
<div class="container"> | |
<h1 class="Content__Title">{{ $t('about.title') }}</h1> | |
<p>{{ $t('about.introduction') }}</p> | |
</div> | |
</div> | |
</template> |
This file contains hidden or 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
<!-- pages/_lang/about.vue --> | |
<template> | |
<div class="Content"> | |
<div class="container"> | |
<h1 class="Content__Title">{{ $t('about.title') }}</h1> | |
<p>{{ $t('about.introduction') }}</p> | |
</div> | |
</div> | |
</template> |
This file contains hidden or 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
git commit --allow-empty -m "I'm empty" -n |
NewerOlder