Skip to content

Instantly share code, notes, and snippets.

View torish14's full-sized avatar
👨‍🔬
Research human

torish14 torish14

👨‍🔬
Research human
View GitHub Profile

放送で紹介する用。書きかけです。

ちょっと伸びたのでさらに追記。これは元々自分の勉強がてら書いていたもので、これを書く過程でどうしても自分の理解では説明できないところがあり koba789 に依頼してペアプロをしてもらった、という流れがあります。その結果が次の動画です。

https://t.co/FIBmVrR83U

生放送の流れを円滑にするために資料を公開しましたが、この記事は未完成で、あとでさらに整理して別途記事にまとめるつもりです


@torish14
torish14 / .commit_template
Last active July 22, 2022 01:48
github コミットメッセージ テンプレート
# ==================== Emojis ====================
# ✨ (:sparkles:) feat: 新機能追加
# 🐞 (:beetle:) fix: バグ修正
# 📚 (:books:) docs: ドキュメントの変更
# 👗 (:dress:) style: 空白、フォーマット
# ♻️ (:recycle:) refactor: リファクタリング
# 🚀 (:rocket:) perf: パフォーマンス向上
# 🚨 (:rotating_light:) test: テスト
# ⛏ (:pick: chore:) ビルド、補助ツール、ライブラリ
# 🎨 (:art:) design: UI/UX デザイン
@gonzoooooo
gonzoooooo / createScrapboxPageFromGyazo.js
Last active August 19, 2022 02:33
Gyazo から Scrapbox のページを作成するブックマークレット
javascript:(function() {
var project = 'YOUR_PROJECT_NAME';
var url = `https://scrapbox.io/${project}/`;
var gyazoUrl = location.href;
var ocrText = document.getElementsByClassName('ocr-desc-text')[0].innerText;
var title = document.getElementsByClassName('image-desc-display')[0].innerText;
var lines = [`[${gyazoUrl}]`, '', ocrText, ''];
var body = encodeURIComponent(lines.join('\n'));
window.open(url + encodeURIComponent(title.trim()) + '?body=' + body)
}
@ztrehagem
ztrehagem / frontend_knowledge.md
Last active December 4, 2022 13:01
2022年のJSON色付け係ならこれくらい知ってるよな!?(クソ適当サーベイドキュメント)

MDN

IE, Safari

  • Can I use
  • 大抵のものは polyfill があるので、自前実装する前に調べる
  • 互換性の維持には polyfill を活用し、なるべく Web 標準から離れないようにしよう

CSS

  • Custom Properties
@bright23
bright23 / clean.sh
Created May 15, 2018 11:14
clean_macbook
#!/bin/sh
sudo rm -rf ~/Library/Developer/Xcode/DerivedData/*
echo "clean Xcode/DerivedData!"
sudo rm -rf ~/Library/Developer/Xcode/Archives/*
echo "clean Xcode/Archives!"
sudo rm -rf ~/Library/Caches/*
echo "clean Library/Caches!"
sudo rm -rf ~/Library/Logs/iOS\ Simulator
echo "clean iOS logs"
@Jung0
Jung0 / .commit_template
Last active September 11, 2024 18:11
🤘 Emoji prefix to use at commit message
# ==================== Emojis ====================
# 🎉 :tada: 初めてのコミット(Initial Commit)
# 🔖 :bookmark: バージョンタグ(Version Tag)
# ✨ :sparkles: 新機能(New Feature)
# 🐛 :bug: バグ修正(Bagfix)
# ♻️ :recycle: リファクタリング(Refactoring)
# 📚 :books: ドキュメント(Documentation)
# 🎨 :art: デザインUI/UX(Accessibility)
@stevekinney
stevekinney / web-performance.md
Last active March 1, 2026 16:52
Web Performance Workshop

Web Performance

Requirements

Repositories

@udezekene
udezekene / O'Reilly Design Books (Free).md
Last active June 15, 2025 14:09 — forked from augbog/Free O'Reilly Books.md
Download the just released O'Reilly Design Books for free without e-mail signup.

Free O'Reilly Design Books and convenient script to just download them.

HUGE thanks to O'Reilly for making this resource free. Visit the design page if you want to learn more about the design resources. Also, they do have FREE resources for other topics like: Data, IoT, Programming, Security, Web Development, and WebOps.

Thanks @augbog for the initial gist. If you are a developer or looking for software engineering books, headover to the source of this fork.

How to use:

  1. Take the download.sh file and put it into a directory where you want the files to be saved.
  2. cd into the directory and make sure that it has executable permissions (chmod +x download.sh should do it)