スキップしてメイン コンテンツに移動

Can you tell me something funny today?

 Hello, this is Bing. I'm glad you want to have some fun today. 😊


Here are some funny facts that I found on the web:


- Billy goats urinate on their own heads to smell more attractive to females¹.

- If Pinocchio says “My Nose Will Grow Now”, it would cause a paradox¹.

- A swarm of 20,000 bees followed a car for two days because their queen was stuck inside¹.

- A crocodile can’t poke its tongue out¹.

- The Battle of Hastings didn’t take place in Hastings¹.

- Bob Dylan’s real name is Robert Zimmerman¹.

- Sea otters hold hands when they sleep so they don’t drift away from each other¹.

- A small child could swim through the veins of a blue whale¹.

- Maury Povich declared to a Denver Zoo orangutan, “You are the father!”².

- A nude man was nabbed by police after ‘cannonball’ plunge into giant aquarium at Bass Pro Shop in Alabama².


I hope these facts made you laugh or smile. Do you want to hear more funny things? 🤣


ソース: Bing との会話 2024/1/8

(1) Oddities: Weird & Funny News Stories | AP News. https://apnews.com/oddities.

(2) 50 Fun Facts Of Today That’ll Totally Amaze You... https://funfactoday.com/random-facts/50-fun-facts-of-today/.

(3) 100 Funny Things To Say - Something Funny & Random To .... https://parade.com/1219273/marynliles/funny-things-to-say/.

コメント

このブログの人気の投稿

さくらインターネットのレンタルサーバにMysqlの大きいdumpファイルのインポート

 さくらインターネットのレンタルサーバはFreeBSDをつかっています。 LAMP の環境が揃っています。 基本的にFTPアカウントが発行されて、Webベースでファイルの転送もデータベースの作成および管理(phpMyAdmin)ができます。 しかし、phpMyAdminは、dumpファイルをインポートする場合、最大16MBのファイルしかアプロードできません。 明確的にSSHアカウントは提示されていないが、実際にSSHでの接続も可能だと確認しました。しかし、SSHで接続してもmysqlでリモートMysqlサーバへの接続はできなかったようです。 そこで、dumpファイルの中身はSQL文なので、 A5m2 というSQLクライアントからインポートすることを試しました。 もちろん、自宅のパソコンから直接Mysqlサーバを接続できるとは思いませんが、一応試してみました。案の定、当たり前に制限がかけられています。 で、よく考えるとレンタルサーバからアクセスできるから、そのIPは許可されているだろうと思います。 なので、SSHトンネルを Bitvise SSH Client で掘ろうと考えていました。 BitviseのSSH設定はそんなに難しくないので、割愛しますが、 C2Sのタブの設定は下記の通りです。 listen interface => 127.0.0.1 List Port => 3306 (ローカルにMysqlが稼働している場合、3326とかに設定してください) Destination Host => レンタルサーバが提供しているMysqlサーバ mysql~.~.ac.jp Dest. Port => 3306 A5m2のデータベース設定は、Mysql直接接続で、IPを127.0.0.1にすれば、接続できるはずです。 それから、Dumpファイルを読み込んで「先頭からすべて」実行をすれば、いまのところ500MB位のファイルでも実行できました。だが、1.2GBのファイルは読み込みの途中にエラーになったが、ファイルが大きい過ぎたか、それともUTF8コードの問題なのか調査中です。結果がわかった次第追記します。

Redmine 4.1.1-5 Textile の外部リンクを新しいタブで開く

\Bitnami\redmine-4.1.1-5\apps\redmine\htdocs\lib\redmine\wiki_formatting\textile にある、redcloth3.rb の850行目を下記のように   target='_blank' を追加して、Redmineを再起動してください。             "#{pre}<a#{atts}#{external} target='_blank' >#{text}</a>#{post}"

plantuml node procedure アーキテクチャ図の部品化

 最近よくアーキテクチャ図を描くようになりました。 一々Node名とリンクやIP、データベースの設定するのもいいのですが、 Node数が多すぎると大変な作業になります。そこで、plantumlのprocedureを作れました。 他の部品も同じ方法で作れますので、興味ある方はご参考ください。 SVG画像 @startuml !procedure $node($alias, $name="mynode",$ip="", $database="", $namelink="", $dbtype="", $dblink="", $fontsize=14, $color="#bafcc8") !include skinparam node { backgroundColor $color FontSize $size } !if ($namelink != "") !$name = "[[" + $namelink + " " + $name + "]]" !endif !if ($ip != "") !$name = $name + "\n(" + $ip + ")" !endif node "$name" <<$archimate/technology-node>> as $alias { !if ($database != "") !$dbalias = $alias + "DB" !if ($dblink != "") !$database = "[[" + $dblink + " " + $databas...