Skip to content

Instantly share code, notes, and snippets.

View oxo-yuta's full-sized avatar
:octocat:

Yuta Okuzono oxo-yuta

:octocat:
View GitHub Profile
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->
@oxo-yuta
oxo-yuta / file0.txt
Last active April 24, 2019 06:31
Markdown形式のリンクを作成するChrome拡張機能を作ってみた(メモ) ref: https://qiita.com/spadeloves/items/ff953b8a0c93c0ccf0ab
[表示名](https://hoogehoge.com "title")
@oxo-yuta
oxo-yuta / file0.txt
Created January 12, 2018 04:17
WebページのHTMLと読み込まれているCSS,JSをwgetでぶっこぬく ref: https://qiita.com/spadeloves/items/b09d8632be2acd481821
wget -p http://hogehoge.com
@oxo-yuta
oxo-yuta / file0.txt
Last active March 30, 2020 06:05
Gitで特定のブランチとの差分ソースをZipで出力する。 ref: https://qiita.com/Yuta_spade/items/fa95464af579417a552b
git archive --format=zip --prefix=root/ HEAD `git diff --name-only MyBranch` -o archive.zip
@oxo-yuta
oxo-yuta / NuxtDeployToFirebase.yml
Last active December 11, 2020 15:10
yml for Github Actions to deploy Nuxt project to Firebase
name: Deploy to firebase
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
@oxo-yuta
oxo-yuta / nuxt_p5_template.vue
Last active April 14, 2021 14:44
use p5 on Nuxt template. You need to add p5 and @type/p5
<template>
<v-row>
<v-col>
<v-card width="500" height="500">
<div id="p5Canvas"></div>
</v-card>
</v-col>
</v-row>
</template>
@oxo-yuta
oxo-yuta / 01-howto-on-windows.md
Created June 24, 2023 05:51 — forked from squeuei/01-howto-on-windows.md
物理JISキーボードをUS配列として認識させ、かつ変換/無変換キーでIMEをON/OFFする方法

物理JISキーボードをUS配列として認識させ、かつ変換/無変換キーでIMEをON/OFFする方法 on Windows

  1. Windowsの設定->言語と地域->日本語->言語のオプション->キーボードレイアウトでキーボードレイアウトを英語キーボード(101/102キー)に変更する

fig1

  1. Powertoysをインストールし、Keyboard Managerで変換/無変換キーをIME Convert/IME Non-Convertにリマップする

fig2

@oxo-yuta
oxo-yuta / 01-howto-on-windows.md
Created June 24, 2023 05:51 — forked from squeuei/01-howto-on-windows.md
物理JISキーボードをUS配列として認識させ、かつ変換/無変換キーでIMEをON/OFFする方法

物理JISキーボードをUS配列として認識させ、かつ変換/無変換キーでIMEをON/OFFする方法 on Windows

  1. Windowsの設定->言語と地域->日本語->言語のオプション->キーボードレイアウトでキーボードレイアウトを英語キーボード(101/102キー)に変更する

fig1

  1. Powertoysをインストールし、Keyboard Managerで変換/無変換キーをIME Convert/IME Non-Convertにリマップする

fig2