タグ

2023年9月10日のブックマーク (6件)

  • Teachable Machine

    Train a computer to recognize your own images, sounds, & poses. A fast, easy way to create machine learning models for your sites, apps, and more – no expertise or coding required.

    Teachable Machine
    cpw
    cpw 2023/09/10
    画像認識
  • Amazon、「生成AI使ったら申告」をKindle出版ガイドラインで義務付け

    Amazonは9月7日(現地時間)、Kindle電子書籍出版サービス「Kindleダイレクト・パブリッシング」のコンテンツガイドラインを更新し、人工知能AI)コンテンツに関する条項を追加した。 出版するコンテンツ(テキスト、画像、翻訳)を生成AIベースのツールによって作成した場合は、申告することを義務付ける。 ガイドラインに従っていないことが判明したコンテンツは却下または削除される。 なお、自分の作品をAIツールで編集、改良、エラーチェックした場合は、AI生成コンテンツとはみなさない。また、アイデア出しの段階でAIツールを使っても、最終的に自分でテキストや画像を作成した場合は対象外という。 これは、Authors Guild(全米作家協会)が7月に公開した、AIのトレーニングに作家の作品を無断で使わないよう求める書簡を受けたものとみられる。 Authors Guildは同日、Amaz

    Amazon、「生成AI使ったら申告」をKindle出版ガイドラインで義務付け
    cpw
    cpw 2023/09/10
    使ったか使ってないか判断つかなくないかなー
  • React Pro Tip #1 — Name your `useEffect`!

    useEffect( () => { /** * Your effect code * * Note that this may or may not make * sense to you in 6 months time. */ }, [] ); What for? This should provide 3 key benefits: More clarity in the purpose of the effect, so other programmers would could easily tell what it's supposed to do just by reading the name; If the effect throws an error, the function's name will show up in the stack trace, which

    React Pro Tip #1 — Name your `useEffect`!
    cpw
    cpw 2023/09/10
    useEffectには名前をつける
  • Bun 1.0 | Bun Blog

    Bun is an all-in-one toolkitWe love JavaScript. It's mature, it moves fast, and its developer community is vibrant and passionate. It's awesome. However, since Node.js debuted 14 years ago, layers and layers of tooling have accumulated on top of each other. And like any system that grows and evolves without centralized planning, JavaScript tooling has become slow and complex. Why Bun existsBun's g

    cpw
    cpw 2023/09/10
    もしかしたらGoをおさえてサーバサイドの本命になるか!?TSの手に馴染む感はとても良いんだよね。
  • git add -p 使ってますか? - Qiita

    Deleted articles cannot be recovered. Draft of this article would be also deleted. Are you sure you want to delete this article?

    git add -p 使ってますか? - Qiita
    cpw
    cpw 2023/09/10
    GUI使ったら簡単よ
  • 強い思想: Go を Web 開発に採用する上で

    フラットパッケージは正義か? 私が SNS で何度か言及した以下の記事がある。 フラットパッケージ戦略は,確かに Go文化圏においては一定の支持を集めている。Go の公式リポジトリや有名ライブラリなんかも,Java などの言語に比べたらずっとパッケージ階層が浅く,ネストしていないものが多いと思う。 しかし,それも 「コードベースを小さく保つ」 を大前提としていることを忘れてはならない。 DDD やクリーンアーキテクチャといった言葉が飛び交うぐらいの規模であれば,パッケージを切ることに関して後ろめたさを感じる必要はない。 むしろ,大きなコードベースが誕生することが開発初期から簡単に予見できるような状況で, YAGNI という言葉に甘んじて設計を放棄するのは極めて悪手であると私は断言する。身を以て失敗を経験した私の口から伝えたい。

    強い思想: Go を Web 開発に採用する上で
    cpw
    cpw 2023/09/10
    Webに使うのは悪くないのだけれど大域脱出がないのが辛すぎる。一生懸命エラー取り回ししても結局500返すだけなんよ。ここだけなんとかなって欲しい。