結城浩さんの実験を一部改変し追試してみました。
物書きの先生の文章を切り貼りすることは失礼な行為であることを承知ながら、条件を揃えて実験するため、やむなく先生の表現を使用いたしました。ごめんなさい。
追試の意図としては、ChatGPTはある程度、人間に合わせて応答する傾向があるので、繰り返しがあったか聞かれた場合に、実際には繰り返しがなかったとしても似たような応答をする可能性を感じた、というものでした。
| 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], |
| // 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; } | |
| } | |
| } | |
| } |
| // ==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/* |
| 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).'); | |
| }); |
| {"label":"backend","message":"22.74%","schemaVersion":1,"color":"red"} |
表題の通り。 SafariへのUserScriptの導入と管理は以下がおすすめ
| #!/bin/bash | |
| set -euo pipefail | |
| # devcontainerを停止するスクリプト | |
| # devcontainerは起動時に独自のプロジェクト名と一時的なoverride composeファイルを使うため、 | |
| # 単純な `docker compose -f <file> down` では停止できない。 | |
| # `devcontainer up --expect-existing-container` でプロジェクト名を取得して停止する。 | |
| WORKSPACE_FOLDER="${1:-.}" |