lynx   »   [go: up one dir, main page]

「ANY」を含む日記 RSS

はてなキーワード: ANYとは

2025-05-30

BigListに1.2億行*100文字=12GBのテキストを突っ込んでみた。

文字操作タスクマネージャーから見たメモリー使用量は500~900MB程度。

なお、行テーブルの所は面倒なのでディスクに保存してない。

benchmark start

size:120000000

Allocated GC Memory:66,304bytes

add time:173334 ms

Allocated GC Memory:101,257,168bytes

replace 1 time:816628 ms

Allocated GC Memory:101,247,232bytes

replace 2 time:1179279 ms

Allocated GC Memory:333,371,424bytes

replace 3 time:1886714 ms

Allocated GC Memory:333,257,000bytes

enumratotion time:1638579 ms

Allocated GC Memory:331,904,816bytes

clear buffer

Allocated GC Memory:180,072bytes

add line time:17935 ms

Allocated GC Memory:4,916,166,568bytes

update line time:2876 ms

Allocated GC Memory:4,916,146,904bytes

clear buffer

Allocated GC Memory:172,104bytes

Finished.Hit Any Key

https://github.com/oonyanya/FooList/commit/e795913ef8c8fbd16e59d54048ff68a202ca7c1b

Github code pilotの最大の欠点

何もしないと個人リポジトリ―のコードが取り込まれ、設定によってはどんなライセンスコードだろうと取り込まれることだ。たとえば…

https://github.com/timdetering/Wintellect.PowerCollections/blob/master/Binaries/License.txt

4. COMMERCIAL DISTRIBUTION

Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.

For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.

5. NO WARRANTY

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.

みたいに商用利用が実質的ダメな奴だろうとな…。

ちなみにこのライセンス合意管轄

This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.

アメリカニューヨーク州なので、ニューヨーク州法と連邦法が適用される。

もし、Github code pilotでBigListやNode、Bagなどのコードが出てきたら、注意したほうがいいぞ。

https://www.ai-souken.com/article/github-copilot-copyright-issues

訴えている奴がマジでいるんで、Code Pilot Businessのほうは公開されているコードは取り込まないという設定を有効にしておいたほうがいいと思われる。

2025-05-26

BigListの一部を再帰なしにしたけど、C#最適化すごいな。

メモリー使用量以外は再帰ありのほうがいいわ。

速度的には再帰しより再帰ありのほうが圧倒的に速い。

ベンチマークは1000行×100文字

マシンCore i5 10400F、メモリー16GB。

再帰なし。ブランチ rewrite_nonrecursive、Commit 84b25c1

https://github.com/oonyanya/FooList/commit/84b25c172b2f8792ad2d1a645c0b25ff7bf8093d

benchmark start

Allocated GC Memory:61,240bytes

add time:1025 ms

Allocated GC Memory:199,685,064bytes

replace 1 time:7274 ms

Allocated GC Memory:199,698,944bytes

replace 2 time:9565 ms

Allocated GC Memory:345,442,528bytes

replace 3 time:7716 ms

Allocated GC Memory:345,442,552bytes

enumratotion time:1125 ms

Allocated GC Memory:345,442,672bytes

clear buffer

Allocated GC Memory:82,728bytes

add line time:384 ms

Allocated GC Memory:41,048,400bytes

update line time:99 ms

Allocated GC Memory:41,048,464bytes

clear buffer

Allocated GC Memory:82,984bytes

Finished.Hit Any Key

再帰あり

benchmark start

Allocated GC Memory:60,752bytes

add time:1055 ms

Allocated GC Memory:199,622,776bytes

replace 1 time:6032 ms

Allocated GC Memory:199,636,920bytes

replace 2 time:8309 ms

Allocated GC Memory:369,227,696bytes

replace 3 time:6220 ms

Allocated GC Memory:369,227,696bytes

enumratotion time:1158 ms

Allocated GC Memory:369,227,840bytes

clear buffer

Allocated GC Memory:82,728bytes

add line time:357 ms

Allocated GC Memory:40,996,432bytes

update line time:75 ms

Allocated GC Memory:40,999,688bytes

clear buffer

Allocated GC Memory:82,984bytes

Finished.Hit Any Key

できたら、RemoveRangeInPlaceとRebalaceも再帰なしにしたいけど、どう書いたらいいのかわから

2025-05-23

anond:20250522165141

https://szkwjp.sakura.ne.jp/#search_replase_multiline_text

鈴川エディタの置き換えがどういうことをしているのかわからんが、BigListで④4.8GB、3680万行より少し上まで動くことが確認できた。

(手元のマシンではメモリーのみだと4のテスト限界のようでこれ以上は試すことができんかった。)

ただ、速度は鈴川エディタやSublimeTextにははるか及ばんがな。

それでも、EmEditor 64bit(ver16.3.1)よりははるかに速いが…。

benchmark start

Allocated GC Memory:61,088bytes

add time:18541 ms

Allocated GC Memory:7,984,576,768bytes

replace 1 time:146495 ms

Allocated GC Memory:7,984,593,376bytes

replace 2 time:837038 ms

Allocated GC Memory:13,814,137,216bytes

replace 3 time:621522 ms

Allocated GC Memory:13,814,137,912bytes

enumratotion time:88196 ms

Allocated GC Memory:13,814,138,056bytes

clear buffer

Allocated GC Memory:82,728bytes

add line time:10398 ms

Allocated GC Memory:1,638,728,376bytes

update line time:1423 ms

Allocated GC Memory:1,638,739,600bytes

clear buffer

Allocated GC Memory:82,984bytes

Finished.Hit Any Key

githubリポジトリこちら。

https://github.com/oonyanya/FooList

2025-05-22

鈴川エディタもしかしてRopeを使ってるんじゃね?

ふと思い、BigListの中身をディスクに書きだす機能を追加してみた。

ベンチマークの内容は例のごとく100万行×100文字の追加・置き換え・列挙とする。

benchmark start

Allocated GC Memory:62,264bytes

add time:2825 ms

Allocated GC Memory:7,859,888bytes

replace 1 time:23211 ms

Allocated GC Memory:7,884,512bytes

replace 2 time:43044 ms

Allocated GC Memory:6,467,032bytes

replace 3 time:78671 ms

Allocated GC Memory:6,222,968bytes

enumratotion time:76317 ms

Allocated GC Memory:4,978,392bytes

clear buffer

Allocated GC Memory:170,208bytes

add line time:377 ms

Allocated GC Memory:41,135,880bytes

update line time:77 ms

Allocated GC Memory:41,135,944bytes

clear buffer

Allocated GC Memory:170,464bytes

Finished.Hit Any Key

なお、ベンチマークプログラムだと、char以外はめんどくさいのでディスクに書きだす機能実装してないので、そこは注意。

メモリー使用量は7,859,888バイト(約8MB)、ワークファイル使用量は412,762,130バイト(約412MB)程度と、メモリーには優しいが、SSDだと400MBの読み取りと書き込みを行うので、あまり優しくはない。

しかも、SSDでもこの遅さ。

ベンチマークの実行に使用した環境Core i5 10400F、メモリー16GB、SSD512GB(ADATA SX8200PNP SDD)なんで、HDDだともっと遅いと思われる。

計算上はブロックサイズが32768だと1836311903*32768*2バイト、すなわち100TB程度のテキストファイルが扱えるはずだが、本当にそこまで扱えるかは試してないのでわからね。

ソースコードhttps://github.com/oonyanya/FooList

2025-05-15

PS VitaのEnsoインストール詰んだ人へ(2025年版 HENloによるCFW導入メモ

VitaCFWを導入するにあたり、情報が散乱していたのでまとめる

<なぜ情報が散乱しているか

2022年末に革新的進歩があり、VITA単体でCFW導入できるようになった(通称 HENlo)

・にも関わらず古いCFW導入方法を案内しているブログが大量にある

しかタイトルの"20XX年最新"だけ更新し続けているから、最新記事に見える

PC使用が前提になっているブログは全部古いので無視した方が良いです。

<どんな情報採用すべきか>

・『HENlo』について触れている

PC使用が前提になっていない

この2つが押さえられてれば最新情報です。(2025年5月現在

ただし、現状だと実は『PC操作が一部必要』という罠があります

その問題について書いている記事が見当たらないので、ここに残しておきます

超具体的には

「HENkaku、VitaDeploy、VitaShellは導入できた」

「けどEnso導入ができない/つまづいている」  エラー:failed to get fw version please disable all the plugins and try again

というタイミングの人に一番役に立つはずです

5chでもRedditでも

プラグイン無効しろ』『0syscall6を無効しろ』って書いてあったのですが、実はEnsoのバージョン変えれば解決します。(後述)

CFW導入まで

この記事が役に立ちました

[Vita] 2023年最新手順【HENlo】3.65-3.74 PC不要CFW(HENkaku)導入

https://re-doing.com/vita-henlo-hack/

(一応魚拓https://web.archive.org/web/20250226111105/https://re-doing.com/vita-henlo-hack/

上記記事を読めば

・HENkaku (カスタムファームウェア 3.65 変革 -2)

VitaDeploy

VitaShell

について理解しつつインストールできると思います

記事の補足

・新型PSVitaPCH-2000)でも問題ない

・最悪文鎮化する可能性があるのでセーブデータバックアップを取ったほうが良い

VITAセーブデータ特殊で、PCと繋ぐだけでは取り出せない

バックアップはいくつか方法があるが、PCコンテンツ管理アシスタントは既に使えないと思ったほうが良い。PS Plusのクラウドバックアップが最も良いはず

記事の内容を実施する前にバックアップ取るのを強くおすすめする


Enso導入 ※本題※

EnsoとはCFWを安定化させるために必要ものです。

これをインストールすることで、電源を切ってからCFW状態を維持できます

VitaDeploy内のApp downloaderメニューからEnsoをインストールできますが、実はこのバージョンが古いです。※重要

そのためVitaDeployからインストールすると先程のエラー(failed to get fw version please disable all the plugins and try again)が必ず出ます

PC不要になった」と書いてあったので盲点ですが、ここからPC必要です。

正しい方法は以下です

① Ensoインストール

1, PC操作GithubからEnso最新版のenso.vpkファイルダウンロード現在v1.1)

https://github.com/TheOfficialFloW/enso/releases

2, PCVitaUSBケーブルで繋げる ※データ転送対応ケーブルを使うこと。相性もある

3, Vita操作VitaShellを起動する

4, Vita操作SELECTボタンを押す

5, PC操作USBドライブとしてVITAデータが表示されるので、ダウンロードしていたenso.vpkファイルを置く(フォルダはどこでもOK自分ルート直下に置きました)

6, Vita操作:✕ボタンを押してCancelする

7, Vita操作VitaShellでenso.vpkを見つける(さっきルートに置いたなら恐らくux0:にある)

8. Vita操作:enso.vpk上で◯ボタン

9. Vita操作:Do you want to install this package? → ◯ボタン

10. Vita操作:~~~ Would you like to continue the install? ※意訳:「失敗したら文鎮化するけど自己責任だけど続ける?」 → ◯ボタン 

11. 進行バーが消えたらインストール完了 ホーム画面に戻ってOK

12. Vita操作ホーム画面にEnsoが追加されている

② Enso実行 ※全てVITA操作

Ensoはファームウェアが3.60か3.65じゃないとインストールできないです。(3.65 変革 -2は3.65扱い)

先程の記事の通り進めていたら3.65 変革 -2 になっているはずですが、実行前に再確認して下さい。

1, ~~~ Press CIRCLE to accept these terms or any other key to not accept. → ◯ボタンを押す(=CIRCLE

2, Options:

  CROSS   Install /reinstall the hack.

  TRIANGLE  Uninstall the hack.

  SQUARE  Fix boot configuration (choose this if taiHEN isn't loading on boot).

  CIRCLE   Exit without doing anything.

  → ✕ボタンを押す(=CROSS

3-a, 問題がない場合

Locking sustem ..

(中略)

The installation was completed successfully.

suocess.

Press any key to reboot.

 →何かボタンを押すと再起動される(Enso導入完了

3-b, 問題がある場合 ※自分はこっちでした。Quick 3.65の副作用かも※

MBR was detected but instllation checksum dose not match.

A dump was created at ux0:data/blocks.bin.

Press X to continue, any othe key to exit.

意訳:「ちょい待った。思ってた構成じゃないから危ないかもしれんわ。続ける?」

 →✕ボタンを押す ※結局原因分かってないので自己責任でお願いします※

4, Locking sustem ..

(中略)

The installation was completed successfully.

suocess.

Press any key to reboot.

 →何かボタンを押すと再起動される(Enso導入完了

<Enso導入の確認方法

Enso導入が成功していると

本体起動時にEnsoのロゴが表示される

ファームウェアが3.65 変革 -2のままなっている

お疲れ様でした。

記事の本題は以上です。


雑談VITAセーブデータは未だ檻の中

VITAセーブデータ暗号化されており、吸い出せてもエミュレータで使えないらしい。本体機体とセットで揃わないと使えない仕様

調べたらセーブデータをここまでキツく縛ってるハードは他にない

からメモリーカードデータ管理でもPSPのセーブデータしか項目がなかったのか…

不便すぎる


失敗の備忘録1:VitaDeploy版のEnsoで苦戦していた時に取った行動メモ

当時の仮説

・HENkaku設定が悪さをしているのではないかPSNの偽装有効化、バージョン偽装有効化) →オフにしたが関係なかった

本体にSD2VITAを刺しているのが良くないのではないか →抜いたが関係なかった

・enso.vpkの置き場所ルート(ux0:)が良くなかったのではないか →関係なかった

VITAメモリーカードを刺しているのが良くないのではないか →関係なかったが、データ保護的には抜くのが良さそう

ゴミデータが残っていて悪さしているのではないか(手順を間違えたデータや古いデータなど) →関係ある可能性はある。最後までわから

・Ensoのバージョンが古いのではないか →これが主要因だった


失敗の備忘録2:vita starting taiHEN framework対処

ゴミデータを疑った自分正規ファームウェアに戻して、CFW化をやり直したりもした。

その際HENkakuすら入れられなくなってしまったので、抜け方を書いておく。

行った手順:脱CFWからHENkaku再導入時のエラーまで

ENSO実行

~~~ Press CIRCLE to accept these terms or any other key to not accept. → ◯ボタンを押す(=CIRCLE

Options:

  CROSS   Install /reinstall the hack.

  TRIANGLE  Uninstall the hack.

  SQUARE  Fix boot configuration (choose this if taiHEN isn't loading on boot).

  CIRCLE   Exit without doing anything.

  → △ボタンを押す(=TRIANGLE Uninstall the hack.)

公式ファームウェア3.65に戻る

強制再起動される

ファームウェアアップデートが促され、アップデートしないとメモリースティックが使えない

公式ファームウェア3.74にアップデート

HENloのブラウザアクセスからやり直す

HENloメニュー

Install HENkaku

Install VitaDeploy

reset taitan config

Exit

のうち、Install henkakuを選択

インストールは上手くが、Exitができない。

「Eiting in 3」 の後に、以下のエラーメッセージがでて固まってしま

エラー内容(うろ覚え

vita starting taihen framework

If you are stuck on this screen, hold down the power button until your Vita turns off, then turn it back on.

原因:恐らく余計なデータと衝突を起こしてる

解決法:reset taitan configを先に実行する

(さっきのエラーメッセージ画面で)

電源ボタン10秒長押し

セーフモードが起動する

本体再起動するを選択

HENloのブラウザアクセス

HENloメニュー

Install HENkaku

Install VitaDeploy

reset taitan config

Exit

のうち、reset taitan config選択

その後

Install HENkaku、Install VitaDeployを選択して、Exit選択

追記)より網羅的な補足

この記事を書き終えた後に見つけたのですが、以下の記事の『改造方法』というところに情報がかなりまとまっています

Vita バージョンが低くてもPSNにサインイン&PSストアにアクセス(エラーNW-8942-3回避)&機器認証する方法(2025最新)

https://yyoossk.blogspot.com/2024/10/vitapsnps2024.html

感想

今回VITAセーブデータバックアップが主目的だったから、徒労でしかなかった

せめてこの記事が誰かの時間節約することを願う

指摘、補足、最新情報あれば反応もらえるとありがたいです

2025-05-02

おもろい迷惑メールをもらったか晒す

Dear

Please, I am writing to you with desperation and I will be relieved if you could reply soon.

My name is Julian Bikram, I had a fiance and we have been living together since 2019 with a daughter.

He is a gold broker and a foreigner. He was attacked in 2022 by bandits while he was in a gold mining site and died after some days in the hospital.

Since the incident happened, no one has contacted me from his family aside his local friends here that came for condolence.

Please , I can't keep waiting for his relatives, this is 3 years of no contact from them, it's obvious they don't know us.

I have spoken with his bank here, they confirmed he has a floating balance in his account and after much deliberation for them to release the money to me, they said I should give them the contact of his relative.

I am helpless with their decision , because i don't know his people, they have not contacted us since the incident which is extremely understandable that they don't know about us.

Therefore please, i am appealing to you (based on the reality that you have the same last name like him) to stand for me as the family member, so that they can accept to release the money back to me.

The bank is not asking for any payment

They are only asking for his relatives to be aware and agreed with them to pay me

Please, I want you to help me for the sake of my child's support, even if we can share the money.

Please, for the sake of humanity, please help me.

Juilan

要約すると

差出人は「ジュリアン・ビクラム」と名乗り、婚約者がいたがその婚約者2022年金鉱山で強盗に襲われて死亡したという話をしています婚約者家族とは連絡が取れず、銀行に預けられているお金を受け取るためには親族同意必要だと銀行に言われたと主張しています

そこで、あなた婚約者と同じ苗字を持っているという理由で、代わりに親族として名乗り出てほしいと頼んでいます報酬としてそのお金を分け合うことを提案し、「人道的な理由で助けてほしい」と懇願しています



どうもワイがこいつの婚約者と同じ苗字を持ってるらしいんや。

おもろいからやり取りしようかな

2025-04-20

ログインしようとidパスワード入力する→「Xのアカウントをさがす」ページに飛ばされる

ログイン出来なくなって、パスワード間違えたという表示が出るわけでもないから乗っ取られたか何かなと異議申し立てリンクから乗っ取りで異議申し立て

届いたメールで求められた情報id登録アドレス最後ログインした日)を入力して返信

それに対して来た返事がこれ

Hello,

We’re writing to let you know that we’re unable to verify you as the account owner. We know this is disappointing to hear, but we can’t assist you further with accessing your account.

If you know which email address or phone number is associated with the account, and you no longer have access to that email or connected phone number, please contact your service provider for assistance.

For privacy reasons, we can’t provide any information about this account’s registered email address or phone number

We understand it’s frustrating to get locked out of an account, but we have these policies to protect accounts and private data. We appreciate your understanding.

You’re more than welcome to create a new account to get back onto X.

Please do not respond to this email as replies to this account are not monitored.

Thanks,

X Support

乗っ取った奴のプライバシー配慮って…

2025-04-13

anond:20250413202111

じゃあ海外アセクシャルコミュニティ掲示板行けば?(これ何度目だ?)

Asexuality

https://www.asexuality.org/

 

割と増田みてーな同人腐女子・生きづらいオタ女子が言いそうな発言とかも突っ込まれことなく、

穏やかにやりとりしてる(自分のアイディンティーなんて自己定義するものからそれはそう)ので

ニコニコできるんじゃあないでしょうか?

 

たとえば『コンビニ人間』がAVENにアセクシャルとしてあげられていて草生えましたわ

I recently read 'The Convenience Store Woman' by Sayaka Murata (English translation)

 

It's a quirky, funny and quick read. I would even recommend it to people who don't like reading, if I thought the story/character/quirkiness would interest them. I'm actually going to give a copy to a friend as a gift.

The central character also appears to be aro and ace.

ーーー

最近読んだ村田沙耶香の「コンビニの女」(英訳版)

 

風変わりで、面白くて、あっという間に読めてしまう。読書が好きでない人にも、ストーリーキャラクター、奇抜さに興味を持ってもらえると思えば、薦めたいくらいです。実際、友人にプレゼントするつもりだ。

中心人物もアロとエースに見える。 

 

Asexuality and Asexual Characters in Books & Comics - a Collection

https://www.asexuality.org/en/topic/122643-asexuality-and-asexual-characters-in-books-comics-a-collection/page/5/

  

日本恋人を作らないと云々かんぬんとか寝言言ってるやつは、アセクシャルなのにゲイを名乗らないといけない世界を見て震えろって思うわ

これが本物のカップル圧ってやつだよ、神の愛を示せないやつに居場所はないの

 

 

 

 

再放送

そもそもなんだけど、伝統的な宗教価値観支配するカップル文化が強烈な地域、つまり日本以外じゃないと、

アセクシャルで困ること特にないぞ。カップル圧の低い日本理想郷なのでは?

 

あと、同性愛者だと思われて困ること特にないし、異性となんかあったんだな(トラウマがあるんだな)って思われて困ること特に無い

日本自称アセクシャルの人は、こういう風に思われて、具体的にどう困るのか、逆に教えて欲しいのだわな

同性に告白されたことはあるけど、それは学生時代のことだし、増田やってる年齢になってもなお起こることじゃねーのよ

異性に関しては、高齢親族に『お前は異性を必要としていないように見える』って言われるくらいなので、誰も寄ってこないぞ(平和世界)

 

強いて言えばセックスアピールが強烈な人・モテに全力で価値を置いてる人とは男女とも相性が最悪

微塵も思っていないのに素敵ですね~ってやってやんないといけないか

ほんまリモワデフォになってよかったよねぇ

恋愛トラウマとか思われてるなら『時期が来たらまた向き合いと思う🥺』とか適当に誤魔化せるでしょ

(そこまで踏み込まれることはまず無いんだけど。学生じゃあるまいし)

 

ゲイも、異性や恋愛トラウマがある人も、モテない人も、異常者では無いけど(理解できる範疇にいる人)、

人に情を持たない、人をセクシーだと思わないヤツは、多くの人にとって理解できる範疇になくて、

映画に出てくるナイフ持ってニタついてるサイコパスみたいなヤツなのかな?って警戒されちゃう

 

そもそも友達ゼロじゃなきゃ、こういうやり取りの末に、(きっとゲイなんだな)、(きっと異性や恋愛トラウマがあるんだな)

(この話題には触れんでおこう)ってなってると思うよ

 

 

セクシャルマイノリティー はキラキラベルじゃないよ

 

>その実情が発達障害というダサくて劣った症状だと突き付けられたらすぐにその看板を下ろすだろう

 

 

ググればいくらで出てくるぞ。下記のように

double minority asexuality asd adhd

Are Autism Spectrum Disorder and Asexuality Connected?

https://www.researchgate.net/publication/356247505_Are_Autism_Spectrum_Disorder_and_Asexuality_Connected

Asexuality is a lack of sexual attraction to any gender. There is some evidence to suggest that many self-identified asexuals have a formal diagnosis of autism spectrum disorder which is characterized by deficits in social interaction and communication, as well as by restricted and repetitive interests and behaviors. Additionally, the literature shows that asexuality and lack of sexual attraction or low sexual interest is overrepresented in people with autism spectrum disorder compared with neurotypical samples. Nevertheless, no studies have been conducted to investigate the relationship between autism and asexuality in depth. We conducted a systematic review of the literature to examine whether asexuality and autism spectrum disorder are connected. We conclude that asexuality and autism share various aspects, such as a possible role of prenatal factors, reference to romantic dimensions of sexual attraction and sexual orientation, and non-partner-oriented sexual desire, but future research should explore and clarify this link.

 

性愛とは、どの性別にも性的魅力を感じないことを指します。多くの自己認識された無性愛者が、自閉症スペクトラム障害ASD)の正式な診断を受けているという証拠がありますASDは、社会的相互作用コミュニケーションの欠陥、ならびに制限された反復的な興味や行動によって特徴付けられますさらに、文献によると、無性愛性的魅力の欠如、または低い性的関心は、神経典型的なサンプルと比較して、自閉症スペクトラム障害を持つ人々に過剰に表れています。それにもかかわらず、自閉症と無性愛関係を深く調査する研究は行われていません。私たちは、無性愛自閉症スペクトラム障害が関連しているかどうかを調べるために、文献の体系的なレビューを行いました。私たちは、無性愛自閉症が、出生前の要因の役割性的魅力と性的指向ロマンチックな側面への言及パートナー指向でない性的欲望など、さまざまな側面を共有していると結論付けましたが、将来の研究はこのリンクを探求し、明確にする必要があります

 

あるものなんか下記から始まって笑っちゃったw そっかw一般的概念だったんだw

This chapter challenges the commonly held notion that individuals with ASD are asexual or inappropriate in their sexual behaviors.

この章では、自閉症スペクトラム障害ASD)を持つ個人が無性愛であるか、性的行動が不適切であるという一般的概念に挑戦しています

アセクシャルセックス依存症発達障害である可能性は高いだろうけど、別にイコールではないだろうよってねw

発達障害じゃないアセクシャルもいるでしょうよw

ちなみにこれは発達障害アセクシャル不適切社会的けがあれば、異性愛者として楽しめるとかいう内容みたいよ

 

あと、ずっと『なんでセックスするんだ😡』って言ってるが、アセクシャルセックスするやつはするぞ。なんなら性依存症だっているし

セックスで情が深められないだけ、恋愛以前に人や気持ちに対する関する関心が無いか薄い、それにグラデーションがあるだけ

 

それからアイデンティティ自分で定めるものから今日から私はアセクシャルって決めたらアセクシャルだぞ

2025-04-11

関税any%?で、安くなんねーの? for iPhone

馬鹿からさぁ…(地歴公民の成績は2!)

関税とかよく知らんのだけど、RTAany%?やってる人たちが使うバグみたいのでiPhone安くなったりしねーの???

朗報JKローリングさん、また正論を述べてしま

https://x.com/jk_rowling/status/1909662082531787064

Men who choose to publicly ridicule the idea that there's any harm in women being forced to compete against men, or being imprisoned with males, or losing single-sex spaces, have ripped their credibility to shreds. If they'll lie about this, they'll lie about absolutely anything.

女性男性と格闘することを強制されたり、男性と一緒に監禁されたり、男女別空間を失ったりすることに何らかの害があるという考えを公然嘲笑する男性は、自分たちの信用をずたずたに引き裂いてしまった。この件で嘘をつくなら、絶対に何についても嘘をつくだろう。

トランスカルトは今後も永遠に信用されないんよ

2025-04-07

anond:20250407074057

なるほどなぁ。

勉強になるわ。

かに穢れに相当する単語が無い、というのは重要だね。

Typical causes of kegare are the contact with any form of death, childbirth (for both parents), disease, and menstruation,[2] and acts such as rape. In Shinto, kegare is a form of tsumi (taboo violation), which needs to be somehow remedied by the person responsible.[3] This condition can be remedied through purification rites called misogi and harae. Kegare can have an adverse impact not only on the person directly affected, but also to the community they belong to.

Kegare is not a form of moral judgment, but rather a spontaneous reaction to amoral natural forces. Whether the defiling was caused by a deliberate act, as for example in the case of a crime, or by an external event, such as illness or death, is secondary.[4] It is therefore not an equivalent of sin.

この辺の説明レビ記描写神道の穢れと合致しない?

https://www.wordproject.org/bibles/jp/03/15.htm

2025-03-22

anond:20250220134419

RopeもといBigList+GapBufferでさくさくエディターの置き換え処理をやってみた。

使用したマシンCore i7 14700、メモリー32GB、Intel ARC A750。

100万行×100文字を置き換え。

addバッファーの構築で、0.8秒ぐらいで終わる。

replace1は3文字削除の3文字挿入で、3.5秒ぐらいで終わる。

replace2は3文字削除の4文字挿入で、4.9秒ぐらいで終わる

replace3は4文字削除の3文字挿入で、3.6秒ぐらいで終わる。

enumratotionはNULデバイスへの保存で、1.1秒で終わる。

benchmark start

Allocated GC Memory:60,600bytes

add time:729 ms

Allocated GC Memory:199,388,824bytes

replace 1 time:3490 ms

Allocated GC Memory:199,405,136bytes

replace 2 time:4861 ms

Allocated GC Memory:368,390,560bytes

replace 3 time:3577 ms

Allocated GC Memory:368,390,560bytes

enumratotion time:1086 ms

Allocated GC Memory:368,390,736bytes

clear buffer

Allocated GC Memory:84,360bytes

100万行の行とインデックスの変換テーブルの追加と更新処理はこのくらいで終わる。

変換テーブルの処理は構築が0.2秒、行が増えない更新は0.1秒ぐらいで終わる。

add line time:170 ms

Allocated GC Memory:32,805,312bytes

update line time:110 ms

Allocated GC Memory:32,811,000bytes

clear buffer

Allocated GC Memory:84,616bytes

Finished.Hit Any Key

結論

マシン進化はすごい。

.NET8で、さくさくエディタとほぼ互角になるとは。

以下、ソースコード

https://github.com/rirufa/FooList

2025-03-09

anond:20250309212928

2016年10月版にも入ってるみたいだけど、2016年ってコロナ前じゃね?

1.3.3.4 Brand Protection and Use of the Visa-Owned Marks

A Member must not use the Visa-Owned Marks:

• In any manner that may bring the Visa-Owned Marks or Visa Inc. or its affiliates into disrepute

• In relation to, or for the purchase or trade of, photographs, video imagery, computer-generated images, cartoons, simulation, or any other media or activities including, but not limited to, any of the following:

  • Child pornography
  • Bestiality
  • Rape (or any other non-consensual sexual behavior)
  • Non-consensual mutilation of a person or body part

A Member that does not comply with these requirements will be subject to non-compliance assessments prescribed under the Global Brand Protection Program and/or, in the Europe Region, the Electronic Commerce Merchant Monitoring Program.

ID# 0007283 Edition: Oct 2016 | Last Updated: Oct 2016

https://www.nrbcommercialbank.com/downloads/visa-core-rules-and-visa-product-and-service-rules-15-october-2016.pdf

anond:20250308095202

• In relation to, or for the purchase or trade of, photographs, video imagery, computer-generated images, cartoons, simulation, or any other media or activities including, but not limited to, any of the following:

この部分が大まかな範囲定義していて、その下の字下げした箇条書きで、その具体例や詳細を列挙してる。原文の「including, but not limited to」(含むが限定されない)という表現で、字下げして列挙した項目はあくまで例示であり、それら以外にも該当する可能性のあるもの存在することを示してる。

なので、それをふまえて関係か所を訳すと、こんな感じになる。

-----

会員はVisa所有のマークを以下の目的使用してはなりません:

写真動画コンピューター生成画像漫画アニメーションシミュレーション、またはその他のメディア活動に関連して、あるいはそれらの購入もしくは取引のために。これには以下のものが含まれますが、それらのもの限定されません:

児童への性的虐待を内容とする素材

近親相姦

獣姦動物との性的行為

強姦(またはその他のあらゆる非同意性的行為

・人または身体部位に対する非同意の切断行為

-----

増田は↓こう言うが、

アニメーションも明確に記載されているんだからオタクエロコンテンツも該当するように初めからルール定義されている

増田定義するオタクエロコンテンツ上記で例示されたものが含まれているなら、そのオタクエロコンテンツは明確にアウトだろう。しかし、そうでない場合は「それらのもの限定されません」の部分の解釈Visaにゆだねる他ない。そのことについては話題になった記事でも言及されている。

Visaサービス運用にあたってルールを明確に定義しており、アダルトコンテンツについての言及も行われている。正確には「アダルト」ではなく、CSAMと呼ばれる「児童虐待」などにまつわるコンテンツに関するものだが、下にあるようなものが明確に確認できない限り、Visaとして具体的なアクションは起こさないという判断だ。

https://www.itmedia.co.jp/news/articles/2503/07/news144_2.html



また、以上の観点から増田引用たこ意見↓も妥当見解。「一部の」と言って、きちんと条件を限定している。

原因わからないって言いつつ”Visaサービス運用にあたってルールを明確に定義”と書かれてその中にレイプとか児童ポルノが入ってる。海外基準では非実在でもアウトなので日本アダルト同人コンテンツの一部はNG



しかし、増田の「アニメーションも明確に記載されているんだからオタクエロコンテンツも該当するように初めからルール定義されている」という意見は、好意的にとらえても「曖昧バイアスのかかった」意見であって、歯に絹着せずに言うなら英文誤読による誤解であり、人様に「英語VISAルール読めてなくね」だの言えるほどのものではない。

anond:20250309114008

英文はこういう構造

A Member must not use the Visa-Owned Marks

  • In any manner that may bring the Visa-Owned Marks or Visa Inc. or its affiliates into disrepute
  • In relation to, or for the purchase or trade of, photographs, video imagery, computer-generated images, cartoons, simulation, or any other media or activities including, but not limited to, any of the following:
    • Child sexual abuse materials
    • Incest
    • Bestiality
    • Rape (or any other non-consensual sexual behavior)
    • Non-consensual mutilation of a person or body part

日本語訳はこうな?

会員は、以下の場合においてVisa所有のマーク使用してはなりません:



そもそもロゴ使用の話だが

2025-03-03

anond:20250303111842

coverって上場してたっけ?なんでany color資本で負けてるの?

2025-02-20

テキストエディタ高速化するためにある人が書いたBigListを改造して、リーフノードリンクリストでつないだら全列挙が早くなって、スタックオーバーフローしなくなった。

ただ、その代わり元々のコードにあったノードの共有機はいらなそうなので省くことにした。

Core i5 10400F、メモリー16GBで、100文字×100行=1億文字を突っ込んで、あれこれ操作した場合はこのくらいの速度で動く。

benchmark start

Allocated GC Memory:60,392bytes

add time:1728 ms

Allocated GC Memory:416,037,968bytes

replace 1 time:5776 ms

Allocated GC Memory:416,082,104bytes

replace 2 time:5694 ms

Allocated GC Memory:416,082,272bytes

replace 3 time:5196 ms

Allocated GC Memory:416,082,296bytes

enumratotion time:1179 ms

Allocated GC Memory:416,082,440bytes

clear buffer

Allocated GC Memory:82,360bytes

Finished.Hit Any Key

https://github.com/rirufa/FooList

ListやGapBufferだとGCに優しくないけど、BigListだとLOH入りしないので、GCに優しいのだ。

その代わり速度はBigListの中身はRopeなので、少し遅くなるのだ。

Ropeで、リーフノードリンクリストでつないだ場合、挿入と削除、追加、ランダムアクセスはO(Log N)、全列挙はO(N)なのだ

MITライセンスなんで商用でも問題ないけど、元々のBigListのライセンスに不穏なことが書いてあったので、気になるなら、自分で書き直したほうがいい。

元々のBigListはこの本を参考にしたようなのだ

The rebalancing algorithm is from "Ropes: an Alternative to Strings", by

Boehm, Atkinson, and Plass, in SOFTWARE--PRACTICE AND EXPERIENCE, VOL. 25(12), 1315–1330 (DECEMBER 1995).

https://www.cs.tufts.edu/comp/150FP/archive/hans-boehm/ropes.pdf

2025-02-16

anond:20250216154245

スコットランド政府は、そのセーフアクセスゾーンと称する範囲に家があ

る市⺠たちに⼿紙を送りつけて、⾃宅内の詩的なお祈りですら、この法律違反になりかねな

いぞと警告したんです。当然ながら、政府はその読者に対し、イギリスヨーロッパでこの

思考犯罪を犯した疑いのある同胞たちを通報するよう奨励したんです。” 原文:This last October, just a few months ago, the Scottish government began distributing letters to citizens whose houses lay within so-called safe access zones, warning them that even private prayer within their own homes may amount to breaking the law. Naturally, the government urged readers to report any fellow citizens suspected guilty of thought crime in Britain and across Europe.

 

2024年9月スコットランド政府は「Abortion Services (Safe Access Zones) (Scotland) Act 2024」を施行し、すべての中絶サービス提供施設の周囲200メートル以内を「安全アクセスゾーン」と定めました。このゾーン内では、女性スタッフ意思決定に影響を与えたり、アクセスを妨げたり、恐怖や嫌がらせ不安を引き起こす行為犯罪とされています

ttps://www.gov.scot/news/safe-access-zones/ 政府公式ページ

ニュース

安全アクセスゾーン

公開 2024年9月24日00:01

トピック 健康社会的ケア

現在中絶サービスの周りの保護ゾーンが設置されています

スコットランドのすべての中絶サービスの周りの200メートル保護ゾーンが設置されました。

これらのゾーン内では、サービスアクセスするための女性スタッフの決定に影響を与える可能性のある方法意図的または無謀に行動することは、今や刑事犯罪です。彼らのアクセスを妨げる;そうでなければ、警報嫌がらせ、または苦痛引き起こします

スコットランド警察法律施行する責任があります法律を破った人は、裁判所手続きに応じて、£10,000までの罰金を科されるか、無制限罰金が科せられます

犯罪が犯されたかどうかを判断することは、スコットランド警察クラウンオフィス検察庁裁判所問題になります。各ケースの事実と状況に応じて、犯罪行為のいくつかの例には、中絶サービスアクセスしないように誰かに説得し、クリニックや病院に出入りしようとする人々を取り囲み、チラシを配ることが含まれます。、宗教的説教沈黙徹夜。原文;approaching someone to try and persuade them not to access abortion services, surrounding people as they try to go in or out of the clinic or hospital, handing out leaflets, religious preaching and silent vigils.

公衆衛生女性健康のための大臣ジェニーミントは言った:

“セーフアクセスゾーンの導入は、女性中絶権を保護する上で重要マイルストーンです–誰も女性個人的医療決定に干渉する権利がなく、法律により、そのことが十分に明らかになっています

“ジリアン・マッカイと、この法律を進展させるための彼らの仕事関係したすべての人々に感謝します。私は特に法案プロセス中に発言し、経験を共有することに信じられないほどの勇気を示した女性認識したいと思います

“すべての中絶サービスの周りの200メートルの新しいゾーンは、女性脅迫を受けずにヘルスケア安全アクセスできるようにするのに役立ちます–。この法律は、多くの人が深く個人的で困難な決定を下すことに信じられないほど脆弱であると感じるときに、女性保護することです。”

ーーーーーーーーーーーーーーーーーーーーーーーーーーーー

特に政府が配布したガイダンスでは、「意図的または無謀に」行われる「宗教的説教」や「静かな集会(silent vigils)」などの活動禁止される可能性があると明記されていますさらに、エディンバラの「安全アクセスゾーン」内の住民に送付された手紙では、自宅内での行為であっても、法律抵触する可能性があると警告されています

https://www.gbnews.com/news/praying-at-home-illegal-scottland-safe-access-zones-abortion-law

スコットランドの新しい「安全アクセスゾーン中絶法では、自宅での祈り違法である可能性 公開日:2024年1010日 -”

エディンバラの「安全アクセスゾーン」の居住者投稿された手紙は、彼らが自宅で実行された訴訟のために刑事訴追に直面する可能性があると警告したとテレグラフは報じている。” 

 

この法律施行により、特定地域内での祈り宗教的活動制限されることとなり、住民宗教団体から懸念の声が上がっています。一方で、政府はこの措置中絶サービスを利用する女性スタッフ安全プライバシーを守るためのものである説明しています

ttps://www.gbnews.com/news/abortion-clinics-silent-prayer-safe-zones-banned-home-office

内務省は、中絶反対運動家が静かに診療所外で祈ることを禁止することを検討していると述べました。”

沈黙祈りは、心の関与であり、神への祈りの中で考えられており、1998年人権法の下で絶対的権利として保護されており、それ自体では、いかなる状況でも犯罪と見なされるべきではありません。”

いちおう揺り戻しも来ている模様

ttps://www.gbnews.com/news/video-silent-prayer-demonstrator-claims-police-turn-blind-eye-attacks-pro-lifers

クレイジーなことは、私(2回逮捕された)が静かに路上で祈っているとき、通りにも止まっている他の人々がいるということです。誰かがタバコを持っているかもしれません、誰かが友人を待っているかタクシーを待っているかもしれません。

警察はこれらの人々のいずれにも近づかず、彼らに尋ねません、彼らは祈っていますか、彼らは何を考えていますか?

しかし、地元の人々の何人かは私がプロライフであることを知っており、警察に連絡するので、警察は彼らをサポートし、地域の分裂の精神強制するのを助けました。”

2025-02-12

Men are hated because they eat a lot

That pursues nothing other than their interest That hates and kill women for their interest

And that doesn't have any guilt feeling to the community

I want to be the one

− A mad doctor

2025-02-07

Best Dating App Opening Lines

Let’s face it: starting a conversation on a dating app can feel terrifying. You see someone you’re interested in, you type out a message, and then… you delete it. “Is this too boring?” “Will they even respond?” “What if I sound awkward?”

We’ve all been there. That first message can make or break your chances of connecting with someone amazing. But here’s the good news: you don’t have to overthink it. With the right opening line, you can spark a conversation that feels natural, fun, and meaningful.

At MixerDates, we believe that every great connection starts with a great conversation. That’s why we’ve put together this guide to help you craft the best dating app opening lines—ones that stand out, show your personality, and lead to real connections. Ready to ditch the “hey” and start making an impact? Let’s dive in!

[:contents]


Why Your First Message Matters

Before we get into the best opening lines, let’s talk about why your first message is so important.

1. First Impressions Count

Your opening line is your chance to make a great first impression. It’s the gateway to a conversation that could lead to something special. A thoughtful, creative message shows that you’re genuinely interested—not just swiping mindlessly.

2. It Sets the Tone

Your first message sets the tone for the entire conversation. A boring or generic opener might lead to a dull chat, while a fun or intriguing one can spark excitement and curiosity.

3. It Shows Effort

Let’s be real: everyone loves feeling special. When you put effort into your opening line, it shows that you care enough to stand out. And on MixerDates, where we value authenticity and positivity, that effort goes a long way.


The Best Dating App Opening Lines (And Why They Work)

Now, let’s get to the good stuff—the best dating app opening lines that actually work. These are divided into categories to suit different personalities and situations.

1. The Playful Opener

2. The Compliment Opener
  • Why It Works: Compliments make people feel good, especially when they’re specific and genuine.

3. The Question Opener

4. The Shared Interest Opener

5. The Bold Opener
  • Why It Works: Confidence is attractive, and this type of opener shows you’re not afraid to be bold.

6. The Quirky Opener
  • Example: “Quick: pineapple on pizza—yes or no? This could determine our compatibility.”
  • Why It Works: Quirky openers are memorable and show off your unique personality.


Tips for Crafting Your Own Opening Lines

While the examples above are great starting points, the best opening lines are the ones that feel authentic to you. Here are some tips to help you craft your own:

1. Personalize It

Reference something from their profile—a photo, a hobby, or a shared interest. It shows you’re paying attention and not just copying and pasting.

2. Keep It Light and Fun

Avoid heavy or overly serious topics right off the bat. Keep the tone light and playful to make the conversation enjoyable.

3. Be Yourself

Don’t try to be someone you’re not. If you’re naturally funny, lean into that. If you’re more thoughtful, go for a sincere compliment or question.

4. Avoid Clichés

“Hey” or “What’s up?” might be easy, but they’re also forgettable. Put in a little effort to stand out.

5. End with a Question

This gives the other person an easy way to respond and keeps the conversation flowing.


Why MixerDates is the Perfect Place to Practice Your Opening Lines

At MixerDates, we’re all about creating a positive, inclusive space where you can feel comfortable being yourself. Here’s why our platform is the best place to put these opening lines into practice:

1. A Welcoming Community

We welcome everyone, no matter who you are or who you love. Our platform is designed to be a safe space where you can connect with like-minded people.

2. Profiles That Spark Conversations

Our users create detailed profiles that make it easy to find shared interests and craft personalized opening lines.

3. A Focus on Authenticity

We encourage our community to be genuine and kind, so you can feel confident starting conversations without fear of judgment or rejection.

4. Success Stories

Don’t just take our word for ithere’s what one of our users had to say:

I met my partner on MixerDates, and it all started with a simple message about our shared love for travel. The conversation flowed naturally, and the rest is history. I’m so grateful for this platform!”


Key Elements to Finding a Mutual Connection

While a great opening line can spark a conversation, building a real connection takes more than just a clever message. Here are the key elements to look for when seeking a meaningful connection:

1. Shared Values and Goals

A strong connection starts with alignment on the things that matter most. Do you share similar values, life goals, or visions for the future?

2. Emotional Availability

Look for someone who is willing to share their thoughts, feelings, and vulnerabilities—and who encourages you to do the same.

3. Mutual Effort

Healthy relationships are a two-way street. Both people should be putting in effort to communicate, plan dates, and support each other.

4. Respect for Individuality

A true connection allows both people to be themselves without judgment. Look for someone who celebrates your uniqueness and encourages you to pursue your passions.

5. Open and Honest Communication

Communication is the foundation of any strong relationship. A mutual connection thrives on honesty, transparency, and the ability to resolve conflicts in a healthy way.


At MixerDates, we’re here to help you find these key elements in a partner. Our platform is designed to connect you with people who share your values and are looking for the same things you are. Starting a conversation on a dating app doesn’t have to be stressful. With the right opening line, you can spark a connection that feels natural, fun, and meaningful. And at MixerDates, we’re here to help you every step of the way.

So, what are you waiting for? Craft that perfect opening line, join MixerDates, and start connecting with people who value authenticity and positivity. Your perfect match is out there—and they’re just one message away.

How to Flirt on a First Date Without Feeling Awkward

First dates can be exciting and nerve-wracking all at once. You’re meeting someone new, learning about their interests, and trying to figure out if there’s chemistry between you. And then there’s flirting, that delicate dance of showing someone you’re interested without being too forward or awkward.

Flirting doesn’t have to be a high-pressure situation. In fact, it can be the most fun part of getting to know someone. Whether you're meeting someone on MixerDates or any other platform, the most important thing is to be genuine, stay calm, and let the connection develop naturally.

If you’ve ever found yourself wondering how to flirt on a first date without feeling uncomfortable, you’re not alone. Everyone has their awkward moments, but the more you understand the art of flirting, the easier it becomes. In this article, we’ll break down how to flirt in a way that feels natural, exciting, and authentic to who you are. So, let's dive in and learn how to make the most of your first date experience—without overthinking it.


Confidence: The Foundation of Flirting

When it comes to flirting, confidence is key. But what does it really mean to be confident on a first date? Confidence doesn’t mean you need to be perfect, or even outgoing—it simply means being comfortable in your own skin and showing up as your authentic self.

Have you ever noticed how people are drawn to those who radiate self-assurance? It’s not about bragging or dominating the conversationit’s about presenting yourself with ease. If you feel good about yourself, it will naturally show. A great smile, good posture, and eye contact can go a long way in making a good first impression.

For instance, think about the last time someone walked into a room and immediately caught your attention—not because they were the most attractive person in the room, but because of their energy. They were confident, they were present, and they made you feel at ease. That’s the kind of confidence you want to project on your date.

When you're confident, you're not worried about saying the perfect thing. Instead, you focus on enjoying the moment, making the other person feel comfortable, and letting the connection happen naturally. That’s the magic of confidence—it allows you to be present, fun, and, most importantly, yourself.

The Power of Subtlety

Let’s face it—no one wants to feel like they’re being “worked” or put through a game. That’s why subtlety is such a powerful tool when it comes to flirting. It's all about showing interest without being over-the-top or too obvious.

Flirting doesn’t always mean complimenting someone non-stop or using cheesy pickup lines. In fact, the most successful flirting is the kind that happens behind the scenes—subtle, playful, and lighthearted. Think about the little moments, like a teasing comment about how they always order the same thing at a restaurant or the way you laugh at a silly joke they make.

The key is to find a balance. A simple smile or a playful comment can convey interest without being too much. For example, if your date tells you they love hiking but they tend to get lost easily, you could say something like, “So, you’re telling me you need a personal guide? I could get behind that!” It’s lighthearted, humorous, and most importantly, it keeps the conversation fun without putting too much pressure on the situation.

By keeping it subtle, you allow your date to feel at ease. It takes the pressure off them to be perfect and allows both of you to enjoy the interaction more naturally. Flirting doesn’t need to be a performance—it’s about creating an environment where both of you can feel comfortable and authentic.


Active Listening: A Key to Connection

Now, let’s talk about something incredibly important in the flirting game: active listening. When we’re on a date, we often get caught up in thinking about what to say next, how we’re coming across, or if we’re being interesting enough. But the best way to make an impression? Truly listening to your date.

Active listening means you’re fully engaged in the conversation, giving your date your full attention and responding thoughtfully. It’s about showing that you care about what they’re saying and that you’re genuinely interested in getting to know them better. When you listen actively, you’re also giving them space to open up, and that can create an immediate connection.

For example, if your date mentions they recently traveled to Japan, instead of simply saying, “That’s cool!” you could follow up with something like, “What was the most memorable experience you had there?” This shows that you’re not just hearing their words but are genuinely curious and invested in their experiences. It’s a great way to build rapport and let them know you’re not just there to impress them—you’re there to connect.

Body Language: Saying More Than Words Can

While your words are important, body language often speaks louder than anything you can say. Whether you realize it or not, your body is constantly communicating how you feel. How you sit, stand, and move tells your date whether you’re relaxed, engaged, or distracted.

Small gestures can go a long way in flirting. A light touch on the arm, a subtle lean in when they’re speaking, or maintaining good eye contact—all these body language cues help signal your interest. And the great thing is, when done naturally, these cues can be just as effective as words.

For example, if you’re sitting at a café on your date and you lean in slightly when they’re sharing a funny story, you’re not just showing that you’re interested—you’re inviting them into your space. It’s an invitation to connect further. And when they respond by leaning in too, that’s when the magic happens—the unspoken connection that tells you both that there’s potential for more.

Flirting through body language doesn’t mean making grand gestures or being overly touchy. It’s about being present and showing that you’re engaged with your date in a subtle, but meaningful way.


Have Fun: Don’t Take It Too Seriously

It’s easy to get caught up in overthinking how to flirt or trying to figure out if your date is into you. But here’s a secret—when you let go of the pressure and allow yourself to have fun, everything flows much more naturally. Flirting on a first date doesn’t need to feel like a test or an assignment. It’s supposed to be a fun, lighthearted experience that sets the stage for more great dates ahead.

When was the last time you had a genuinely fun date? Was it when you were trying too hard to impress, or when you were both laughing, chatting, and enjoying each other's company? Flirting becomes effortless when you're present, enjoying the moment, and letting the connection grow naturally.

Sometimes, it's the small momentslike sharing a laugh or swapping embarrassing stories—that make a first date truly special. When you focus on having fun, you create an environment where both of you can relax, flirt, and let the chemistry grow. That’s the secret to a great date.

Flirting with the Right Match: How MixerDates Makes It Easier

One of the best things about using a platform like MixerDates is that it takes the guesswork out of the equation. By connecting with someone who already shares your interests and values, you’ve got a head start on making a real connection. No more swiping through countless profiles hoping for a sparkon MixerDates, you already know there’s something in common.

When you’re already on the same page with your date, flirting comes more easily. There’s less of that awkward, “Are we even on the same wavelength?” feeling, and more of the fun, “Wow, we really click!” vibe. Whether you’re talking about favorite hobbies, movies, or life goals, the conversation flows naturally, making the flirting feel effortless.

If you're looking for a place to meet like-minded people and build genuine connections, MixerDates is the perfect platform. It's a great place to find someone who appreciates you for who you are and who you can naturally flirt with, without the stress.

Ready to Take the Leap?

Flirting on a first date is all about confidence, connection, and fun. When you let go of the pressure and focus on enjoying the experience, the chemistry will naturally follow. Remember, the best way to flirt is by being yourself—let your personality shine through, listen with intention, and embrace the moment.

And if you’re ready to meet someone new, who’s just as interested in making a connection as you are, MixerDates is the perfect place to start. So go ahead, take the leap, and see where it leads. Who knows? Your next great connection might be just a click away.

Sign up for MixerDates today and start your journey to exciting first dates and meaningful connections!

2025-02-04

ライブラリーを触るプログラマー英語必須だわ。

一部ライブラリーMITGPL意外なものがある。

例えば、

https://github.com/timdetering/Wintellect.PowerCollections/tree/master

License.txt

4. COMMERCIAL DISTRIBUTION

Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.

For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.

要約すると裁判でここの作者が損害賠償を命じられそうになった場合、商用ソフト提供元裁判に協力しないといけないし、求償請求にも応じないといけないとある

今は機械翻訳があるからここら辺に関してはあまりシビアにならないでもいいけどね…

http://hvivi.dyndns.org/sse/replaceAll.html

さくさくエディタのまねをして全置換えでベンチマークを取ってみた。

benchmark start

Allocated GC Memory:60,392bytes

add time:1996 ms

Allocated GC Memory:440,048,840bytes

replace time:10779 ms

Allocated GC Memory:440,082,632bytes

replace time:10682 ms

Allocated GC Memory:440,082,656bytes

clear buffer

Allocated GC Memory:82,280bytes

Finished.Hit Any Key

ベンチマークソースコード

https://github.com/rirufa/FooList

Rope<T>は削除と置き換え、文字列ランダムアクセスがO(log N)なのでさくさくエディタに比べると遅い。

それでも秀丸Meryよりは早いが…

2025-02-02

Chatgptが答えた異星人の存在可能性とのそのロジック

Please consider the histroy of humanity from biological perpsecitve and current known fact in nearby universe, which expo-planet (from the Sol system perspective) is most likely to have civlizaed society? Please add percentage next to it in the chart

ChatGPT

Reasoned about exoplanet civilization likelihoodを28 秒行う

Evaluating planetary prospects

OK, I’m looking at the likelihood of a civilized society on an exoplanet within our Solar System. I’ll consider biological history and current space knowledge, aiming to identify the most promising candidate.

Identifying potential candidates

I'm considering exoplanets like Proxima Centauri b and TRAPPIST-1e, which might suggest they are within or observed from our Solar System.

Assessing potential candidates

I’m evaluating Proxima Centauri b, Barnard's Star, LHS 1140, and TRAPPIST-1, focusing on their habitable zones and available data. The Drake equation might help estimate their civilized society likelihoods.

Identifying promising exoplanets

I’m noting key exoplanets like Proxima Centauri b and TRAPPIST-1, which have Earth-like characteristics and are in habitable zones. This narrows down the potential candidates for advanced civilizations.

Assessing habitable zones

I'm gathering info on planets like Proxima Centauri b and TRAPPIST-1, considering factors like magnetic fields, atmospheres, and proximity to G-type stars for their potential to support advanced civilizations.

Evaluating exoplanet prospects

I'm noting that Proxima Centauri b, despite being close and around a red dwarf star, might support life if it has a magnetic field and atmosphere. This makes me think about its potential.

Charting probabilities

I'm estimating civilization probabilities for exoplanets like Proxima Centauri b and TRAPPIST-1 e, using speculative percentages based on the Drake equation and the lack of evidence for intelligent life.

Charting speculative odds

I'm crafting a chart with exoplanet names and civilization likelihood percentages, grounded in the long timeline of life's evolution, despite the speculative nature of these figures.

Identifying exoplanet contenders

I’m evaluating exoplanets like Proxima Centauri b, TRAPPIST-1 e, and Kepler-186f, considering their star types and distances, to gauge their potential for supporting advanced civilizations from our solar system's viewpoint.

Weighing proximity and observation

I'm leaning towards Proxima Centauri b due to its closeness and observational potential, despite concerns about its flare star dynamics. TRAPPIST-1 e, f, or g are also worth considering.

Revisiting exoplanet options

I'm focusing on exoplanets like Proxima Centauri b, Ross 128 b, LHS 1140 b, TRAPPIST-1 e/f/g, and K2-18b, aiming to chart their likelihood of hosting a civilized society based on current knowledge.

Assessing exoplanet potentials

I'm gathering speculative probabilities for exoplanets like Proxima Centauri b and TRAPPIST-1 e/f/g, using the Drake equation and current understanding, to better estimate their chances of hosting a civilized society.

Refining speculative probabilities

I’m refining speculative probabilities for exoplanets, including Proxima Centauri b and TRAPPIST-1 e/f/g, to estimate their chances of hosting a civilized society, considering Earth's long biological history.

Refining odds

I'm considering the astronomical timeline for intelligent life on Earth, leading me to assign even lower speculative odds for exoplanets like Proxima Centauri b and TRAPPIST-1 e.

Clarifying speculative nature

I’m crafting a simplified chart with arbitrary percentages, clearly noting the speculative nature and lack of scientific data, while considering the target audience's basic understanding of the topic.

Mapping out speculative odds

I’m charting arbitrary percentages for exoplanets, clarifying their speculative nature, and ensuring the data is accessible for young audiences with minimal scientific detail.

Crafting a chart

I’m creating a markdown table with speculative percentages for the likelihood of civilized life on exoplanets, emphasizing their purely theoretical nature and considering the understanding level of an 8-year-old.

Integrating speculative analysis

I’m mapping out a markdown chart with speculative percentages for the likelihood of a civilized society on exoplanets, mindful of the complexity and simplifying for an 8-year-old's understanding.

Assessing likelihoods

I’m piecing together markdown for exoplanets, noting Proxima Centauri b's reduced civilized life chance due to the red dwarf's activity. This inclusion highlights the speculative nature of the analysis.

Piecing together speculative odds

I’m detailing a markdown chart for audience-friendly exoplanet likelihoods, considering environmental challenges and adding a disclaimer about the speculative nature and lack of evidence.

Piecing together

I’m leaning towards Proxima Centauri b for its proximity and silent star, but I’ll add a speculative chart ranking nearby exoplanets, noting their advanced civilizations' hypothetical likelihood.

Assessing civilization probabilities

I'm emphasizing the slow emergence of intelligent life on Earth, which suggests that the odds of any habitable planet developing a complex civilization might be as low as a few percent.

Below is a very speculative chart thatbased on what we know about Earth’s long, winding path from simple life to a “civilized society” and our limited observations of nearby exoplanets—gives some fun, made‑up percentage chances for a few of our best candidate exoplanets. Remember: Scientists have not yet found any proof of life (let alone advanced civilizations) on any exoplanet. These numbers are just playful estimates to help you think about the ideas!

Speculative Chances of Finding an Advanced Civilization on Nearby Exoplanets

Exoplanet Estimated Likelihood of a Civilized Society

Proxima Centauri b ~2%

TRAPPIST-1 e ~1.5%

TRAPPIST-1 f ~1%

TRAPPIST-1 g ~1%

LHS 1140 b ~0.5%

How Did We (Very Roughly) Guess These Numbers?

Earth’s Example:

On Earth, life began as simple single‑celled organisms and took billions of years to evolve into a species that built complex societies. This long journey suggests that—even if a planet is in the “habitable zone” (where liquid water could exist)—developing an advanced, civilized society might be rare.

Nearby Exoplanets:

Proxima Centauri b:

This is the closest exoplanet to us. Even though its star (Proxima Centauri) is a red dwarf that sometimes sends out strong flares (which might harm life), its closeness makes it one of our most interesting candidates. That’s why we give it a slightly higher guess (~2%).

TRAPPIST-1 System (e, f, g):

These planets are part of a group orbiting a very cool star. Their environments might be challenging (for example, they could be tidally locked, meaning one side always faces the star), so the chance of a complex, advanced civilization might be a bit lower.

LHS 1140 b:

This planet is promising in some ways but is a little farther away and around a dimmer star, so our playful estimate is even lower.

A Final Note

All of these percentages are extremely rough guesses based on what little we understand about the conditions for life and intelligence. Scientists use ideas like the Drake Equation to think about these chances—but until we have concrete evidence, these numbers remain just for fun and imagination.

Enjoy exploring these ideas—and remember, space is full of mysteries waiting to be discovered!




あなた:

Please examine the Drake Equation itself and see if this euqation is acculate or more opition in the equation you will use

ChatGPT

Reasoned about the Drake Equationを6 秒行う

re-examining the Drake Equation

evaluating the Drake Equation's value

Clarifying the Drake Equation

OK, let me see. The Drake Equation isn't a precise formula; it's more of a guiding heuristic that tackles numerous uncertainties regarding extraterrestrial civilizations.

Assessing the Drake Equation

Thinking through the Drake Equation, I’m evaluating its conceptual nature, its uncertain parameters, and its criticism to conclude on its reliability as an accurate predictive model.

Understanding the Drake Equation

I’m mapping out the Drake Equation as a conceptual guide, detailing its parameters, which are often based on estimates or opinions, to evaluate its reliability for predicting extraterrestrial civilizations.

The Drake Equation is a famous formula that was created to help scientists think about the many factors involved in estimating the number of detectable extraterrestrial civilizations in our galaxy. However, when we look at the equation closely, we see that it is more of a conceptual framework or heuristic tool than a precise, predictive formula. Let’s break down why:

The Drake Equation

The equation is usually written as:

𝑁

=

𝑅

×

𝑓

𝑝

×

𝑛

𝑒

×

𝑓

𝑙

×

𝑓

𝑖

×

𝑓

𝑐

×

𝐿

N=R

×f

p

×n

e

×f

l

×f

i

×f

c

×L

Where:

𝑅

R

: The average rate of star formation per year in our galaxy.

𝑓

𝑝

f

p

: The fraction of those stars that have planetary systems.

𝑛

𝑒

n

e

: The average number of planets that could potentially support life per star with planets.

𝑓

𝑙

f

l

: The fraction of those planets where life actually develops.

𝑓

𝑖

f

i

: The fraction of planets with life where intelligent life evolves.

𝑓

𝑐

f

c

: The fraction of civilizations that develop technology that releases detectable signals into space.

𝐿

L: The length of time such civilizations release detectable signals.

Why the Drake Equation Is More of a Guideline Than a Precise Formula

Uncertain Inputs:

Well-Known Parameters:

Some factors, like

𝑅

R

(star formation rate) and

𝑓

𝑝

f

p

(fraction of stars with planets), have become better known through modern astronomy.

Highly Speculative Factors:

The parameters related to the development of life and intelligence

𝑓

𝑙

f

l

,

𝑓

𝑖

f

i

,

𝑓

𝑐

f

c

, and

𝐿

L—are based on very limited data. For example, Earth is the only planet we know where life has developed, so we have no way to compare or derive a statistically robust estimate for these factors. This means that the values chosen for these parameters are largely subjective estimates or educated guesses.

Wide Ranges of Possible Values:

Because many of these factors are not well-constrained, if you change one of the more uncertain parameters even slightly, the final estimate for

𝑁

N (the number of civilizations) can vary by many orders of magnitude. This wide range shows that the equation can lead to very different outcomes based on personal or theoretical assumptions.

Heuristic, Not Predictive:

The Drake Equation was never meant to provide a precise answer. Instead, it serves as a way to organize our thinking about what conditions might be necessary for the development of extraterrestrial civilizations. It encourages discussion about the relative importance of different factors and highlights where our scientific knowledge is limited.

Is the Drake Equation Accurate or More Opinion-Based?

Accurate?

In the sense of being a strict mathematical model with well-defined inputs and predictable outputs, the Drake Equation is not accurate. Its accuracy is limited by the extreme uncertainties in several of its key parameters.

Opinion-Based?

Many of the terms in the equation, especially those concerning the evolution of life and intelligence, are based on opinion, interpretation, and the single example of Earth. Therefore, while the structure of the equation is logical, the numbers you put into it (and hence the final result) are often more reflective of our current opinions and assumptions than of robust empirical data.

Conclusion

The Drake Equation is a valuable tool for framing the question of extraterrestrial life. It helps scientists and enthusiasts break down a complex problem into smaller, more manageable questions. However, because several of its factors are highly uncertain and subject to personal interpretation, it is more of a conceptual guide—or even a way to stimulate discussion—than a formula that provides a definitive, accurate prediction of the number of extraterrestrial civilizations.

In summary, while the Drake Equation is useful for thinking about the various factors that might lead to the emergence of a civilization, its outputs should be taken as highly speculative estimates rather than precise measurements.




あなた:

Please also consider the possiblities of non-human intelligent emrgencing from the long history of Sol system and nearby planets and see if there is any possiblites that in one time intelligent life emerged in nearby planets and see this to the equation

ChatGPT

Reasoned about non-human intelligence and the Drake Equationを19 秒行う

Evaluating non-human intelligence

I'm thinking about the potential for non-human intelligent life forms in the Sol system and neighboring planets, and how this might factor into the equation.

Piecing together possibilities

I'm thinking about how to integrate the emergence of non-human intelligent life, possibly on Mars or Europa, into the Drake Equation for the Sol system and neighboring planets.

Reflecting on potential

It's interesting to think about the hypothesis of intelligent life emerging on Mars or Venus, though Earth remains the only known life-supporting planet in the solar system.

Considering other realms

I'm examining if intelligent life could have emerged on planets like Mars, Venus, or Europa, and how this possibility aligns with the predictions of the Drake Equation.

Analyzing parallel evolution

Hmm, I’m thinking about how non-human intelligent life on Mars or Venus could intersect with the assumptions of the Drake Equation, which seems to focus solely on Earth-based evolution.

Evaluating life exploration

I’m piecing together the hypothesis of non-human, advanced, intelligent life in the solar system. Mars, Venus, and Titan present challenges, but Europa and Enceladus might harbor microbial life.

Adapting the equ Permalink | 記事への反応(0) | 21:12

ログイン ユーザー登録
ようこそ ゲスト さん
Лучший частный хостинг