表題の通り。 SafariへのUserScriptの導入と管理は以下がおすすめ
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 | |
| set -euo pipefail | |
| # devcontainerを停止するスクリプト | |
| # devcontainerは起動時に独自のプロジェクト名と一時的なoverride composeファイルを使うため、 | |
| # 単純な `docker compose -f <file> down` では停止できない。 | |
| # `devcontainer up --expect-existing-container` でプロジェクト名を取得して停止する。 | |
| WORKSPACE_FOLDER="${1:-.}" |
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
| {"label":"backend","message":"22.74%","schemaVersion":1,"color":"red"} |
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
| mapkey('<Ctrl-y>', 'Show me the money', function() { | |
| Front.showPopup('a well-known phrase uttered by characters in the 1996 film Jerry Maguire (Escape to close).'); | |
| }); |
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
| // ==UserScript== | |
| // @name ChatGPT Enter Fix (GPT4) | |
| // @name:ja ChatGPT Enter Fix (GPT4) | |
| // @namespace http://tampermonkey.net/ | |
| // @description This Chrome/Safari extension addresses the issue where ChatGPT sends text even when the Enter key is pressed during Japanese conversion. | |
| // @description:ja ChatGPTにおいて日本語IMEで変換中にEnterを押した時に送信されてしまうの問題を阻止します。 Safariにも対応。 | |
| // @version 2.1 | |
| // @author satosh1suzuk1, d-engine | |
| // @match https://chat.openai.com | |
| // @match https://chat.openai.com/* |
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
| // bootstrap w-sm-50 ish | |
| // bootstrap/scss/utilities/_sizing.scss を参考に作成 | |
| @each $name, $width in $grid-breakpoints { | |
| @include media-breakpoint-up(md) { | |
| @each $size, $length in $sizes { | |
| .w-#{$name}-#{$size} { width: $length !important; } | |
| } | |
| } | |
| } |
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
| import { Module } from '@nestjs/common'; | |
| import { TypeOrmModule } from '@nestjs/typeorm'; | |
| import { FooService } from './foo.service'; | |
| //TODO: import Foo and Bar entities. | |
| @Module({ | |
| imports: [TypeOrmModule.forFeature([Foo, Bar])], | |
| providers: [SurveysService], |