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
| { | |
| // See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. | |
| // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp | |
| // List of extensions which should be recommended for users of this workspace. | |
| "recommendations": [ | |
| "biomejs.biome", | |
| "devsense.composer-php-vscode", | |
| "editorconfig.editorconfig", | |
| "jasonlhy.hungry-delete", |
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
| # https://ghostty.org/docs/config/reference | |
| macos-titlebar-proxy-icon = hidden | |
| theme = 0x96f | |
| background-opacity = 0.85 | |
| # 補完の文字の色を濃く | |
| palette = 8=#a8a8a6 |
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
| #!/bin/sh -eu | |
| token="my-token" | |
| secret="my-secret" | |
| t=$(date +%s000) | |
| nonce=$(uuidgen) | |
| sign=$(/bin/echo -n "$token$t$nonce" | openssl dgst -sha256 -hmac $secret -binary | base64) | |
| curl https://api.switch-bot.com/v1.1/devices \ |
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
| // Amazonの注文履歴をTSV形式で出力するスクリプト | |
| // | |
| // 2015-01-01 時点での DOM 構造に対応, GoogleCrome, Opera でテスト済。 | |
| // formatEntry関数を書き換えれば自由な書式で出力できます。 | |
| // | |
| // 参考: | |
| // - Amazonの注文履歴をCSV形式にして出力するスクリプト | |
| // https://gist.github.com/arcatdmz/8500521 | |
| // - Amazon で使った金額の合計を出す奴 (2014 年バージョン) | |
| // https://gist.github.com/polamjag/866a8af775c44b3c1a6d |
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
| $color-danger: #dc3545; | |
| $color-success: #28a745; | |
| .form-group > label { | |
| &.required { | |
| &:after { | |
| content: " *"; | |
| color: $color-danger; | |
| } | |
| } |
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
| $list-margin-left: 3rem; | |
| $ol-padding-left: 0.4rem; | |
| ul { | |
| margin-left: $list-margin-left; | |
| padding-left: 0; | |
| } | |
| ol { | |
| counter-reset: ol; |
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
| #!/bin/bash | |
| # | |
| #################################### | |
| # iTunes Command Line Control v1.0 | |
| # written by David Schlosnagle | |
| # created 2001.11.08 | |
| # edit 2010.06.01 rahul kumar | |
| #################################### | |
| showHelp () { |
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
| javascript: (function (f) { | |
| var t = document.createElement('script'); | |
| t.src = '//ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js'; | |
| t.onload = function () { | |
| f(jQuery.noConflict(true)); | |
| }; | |
| document.body.appendChild(t); | |
| })(function ($) { | |
| var md = ''; | |
| $('.list-header-name:contains("Today")').parents('.list').children('.list-cards').children('.list-card').each(function () { |
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
| <?php | |
| // 家系図全体の定義. | |
| // 配列の最初の要素は親、それ以降の要素は子を表す. | |
| $tree = [ | |
| 1 => [null, 2, 3, 4], | |
| 2 => [1, 5, 6, 7], | |
| 3 => [1, 8, 9, 10], | |
| 4 => [1, 11, 12, 13], | |
| 5 => [2, 14, 15, 16], | |
| 6 => [2, 17, 18, 19], |
NewerOlder