Skip to content

Instantly share code, notes, and snippets.

@LeeDDHH
LeeDDHH / github-pr-search-option.md
Last active April 10, 2024 10:01
github prの検索時に使えるオプション

文字列がどのフィールドに含まれているかを検索する

in:title,body,commet

issue、prの作成者を検索する

author:ユーザー名

assigneeを検索する

@LeeDDHH
LeeDDHH / git-command.md
Last active March 25, 2024 01:58
忘れがちなgitコマンド

ローカルgitのリモート先urlを確認する

git config --get remote.origin.url

git remote -v

git remote show -n origin

git config -l
@LeeDDHH
LeeDDHH / remove-url-params-from-url-bookmarklet.md
Last active March 25, 2024 00:55
URLからURLパラメータだけを削除する
  • 現在開いているページからURLパラメータだけを削除する
javascript:(function() {
  const url = new URL(window.location.href);
  history.replaceState('', '', url.pathname);
}())

参考

@LeeDDHH
LeeDDHH / a_wise_remark_data.json
Last active March 22, 2024 10:32
個人的に思う名言を集めたjson
[
{
"id": 0,
"content": "「遊び」って本気でやると「学び」になり、突き詰めていくと「スキル」になる"
},
{
"id": 1,
"content": "運動していることは、自分の無気力と絶望感を克服したという意味でもある"
},
{
@LeeDDHH
LeeDDHH / css-emphasis-element-with-overlay.md
Created March 15, 2024 04:04
オーバーレイをかけて一部の要素だけを強調させるCSS
<div>
  <div>
    <div class="other_one"></div>
    <div class="other_one"></div>
    <div class="other_one"></div>
    <div class="important"></div>
    <div class="other_one"></div>
    <div class="other_one"></div>
 
@LeeDDHH
LeeDDHH / eslint-tips.md
Last active February 11, 2024 07:39
eslintの設定に関するあれこれ

eslintのインストール

npm install eslint --save-dev


eslintの初期設定

設定ファイルの生成

@LeeDDHH
LeeDDHH / ghostscript-compress-pdf.md
Last active February 6, 2024 08:27
ghostscriptを使ってpdfの圧縮をする場合

ghostscript

  • 単体で圧縮するときには使えそう
  • pdfの中身をいじるとなると、けっこうしんどい戦いになりそう

確認時の環境

MacOS 13.4.1
@LeeDDHH
LeeDDHH / bulletproof-react-project-structure.md
Created December 28, 2023 04:33
bulletproof-reactのプロジェクト構造について

ルートディレクトリの全体像

ほとんどのコードは src ディレクトリにあり、以下のような構造になる

src
|
+-- assets # 画像、フォントなどの静的ファイルを全て含む
|
+-- components # アプリケーション全体で使用される共有コンポーネント