- 2025/10/22にRails8.1がリリースされましたね
- Ruby on Rails 8.1 Release Notes — Ruby on Rails Guidesにリリースノートが書かれている
- 上記メジャーフィーチャーに含まれなかったマイナーフィーチャーのうち、気になったものをざっくりまとめています
- 間違いの指摘や、これも追加してくれ〜という物があればコメントお願いします
こんにちは。今後、GPT-4を使ったアプリケーションやサービスがたくさん登場してくると思います。その中には、たとえばSNSを利用したbotもたくさん出てくるでしょう(現在でもすでにありますけれど)。そこで質問なんですが、SNSでおしゃべりしている相手が、人間なのか、GPT-4などの技術を使ったAIなのかを識別するにはどのような会話をしてみればいいでしょうか。一般的なAIでは難しいかもしれないので、GPT-4に限ってもいいです。あなたの考えを聞かせてください。
GPT-4のような高度なAIと人間を識別するのは、時に難しいことがあります。しかし、いくつかの方法を試してみることで、相手が人間かAIかを見極めることができるかもしれません。
- 複雑な感情やニュアンスについて尋ねる: AIは感情やニュアンスを理解するのが苦手です。複雑な感情を表現する文章やシチュエーションについて尋ねてみて、その反応を見てください。
さくらのVPS(CenoOS7)が障害対応のハードウェア交換で起動しなくなったので、
その対応策の備忘録です。
http://support.sakura.ad.jp/mainte/mainteentry.php?id=22553
これが原因か不明ですが、この時期にサーバへアクセスできなくなる障害が発生しました。
サーバには、Nginx/Postfix/PostfixAdminが稼働中。 teratermでログイン不可なので、さくらVPSのコンソールからログインを試みるもログイン不可。
- Shrink to Grow(Daniel Bovensiepen)
- Identical Production, Staging and Development Environments Using Chef, AWS and Vagrant(Christopher Rigor)
- Fewer Constraints, More Concurrency.(Ryan Smith)
- Webruby: Now you can write your favorite Ruby code for the browser!(Xuejie "Rafael" Xiao)
- Contributing to Ruby(Zachary Scott)
- carrierwave - ファイルアップロードを処理するやつ
- carrierwave_backgrounder - アップロードされたフィアルの処理(画像のリサイズ等)をバックグラウンドで処理する
- delayed_job_active_record - バックグラウンド処理
- fog - AWS との連携に使う。 carrierwave がこれを使って S3 にファイルを保存してくれたりする
- haml-rails - haml 使いたいねん
- twitter-bootstrap-rails - あれ
- will_paginate - ページネーション
- bootstrap-will_paginate - twitter-bootstrap 的にいい感じのタグを出力してくれる
https://github.com/mojombo/jekyll/wiki/Plugins
Jekyllプラグインシステムのフックは、あなたのサイト向けに特化したコンテンツの生成を可能にします。Jekyllのソースを修正することなく、あなたのサイト用のコードを実行できます。
The Jekyll plugin system hooks allow you to create custom generated content specific to your site. You can run custom code for your site without having to modify the Jekyll source itself.
h2. Installing a plugin
| Ruby Twitter Gemの簡易リファレンス(というかメモ)です。内容はバージョン1.1.1に準拠しています。 | |
| {{toc_here}} | |
| ! インストール | |
| $ gem install twitter -v=1.1.1 | |
| (環境によっては sudo gem ~) | |
| ! 概要 | |
| * 公式サイト:http://twitter.rubyforge.org/ |
| #!/bin/bash | |
| if [ $(id -u) != "0" ]; then | |
| printf "Error: You must be root to run this tool!\n" | |
| exit 1 | |
| fi | |
| clear | |
| printf " | |
| #################################################### | |
| # # |
| I am the owner of lvh.me. And I'm glad to hear it's helpful. In truth, it's just a fancy DNS trick. lhv.me and all of it's sub-domains just point back to your computer (127.0.0.1). That means running ssl is as simple (or difficult) as running ssl on your computer. | |
| I'm not sure how comfortable you are with the command line, but here's my how I setup my development environment. (rvm, passenger, nginx w/ SSL, etc). | |
| # Install rvm (no sudo!) | |
| # ------------------------------------------------------ | |
| bash < <( curl http://rvm.beginrescueend.com/releases/rvm-install-head ) | |
| source ~/.rvm/scripts/rvm | |
| rvm install ree-1.8.7-2010.02 |