
はてなキーワード:Asとは
https://x.com/ThePosieParker/status/1990283629394821498
@Li_Kotomi
He thinks he passesas awoman 🤣🤣🤣🤣🤣🤣🤮🤮🤮🤮🤮🤮🤮 he’s actually suing
@WomenReadWomen
これは @Li_Kotomi。
彼は自分のことを女性に見えると思っているらしい🤣🤣🤣🤣🤣🤣🤮🤮🤮🤮🤮🤮🤮
そして @WomenReadWomen が「彼は男性だ」と言ったことに対して訴えている最中。
誰も彼のことを女性だなんて思っていない。
utf8の文字コードで構成されたバイナリーファイルがある。このファイルの改行の数を数えよ。改行はCRのみとする。このファイルにはCR が必ず含まれており、CRで分割すればマルチスレッドで処理できる。
size_t count_cr_in_file(conststd::string&path) {
std::ifstreamfs(path,std::ios::binary);
size_t size =fs.tellg();
fs.seekg(0);
const size_tthread_count =std::thread::hardware_concurrency();
const size_t chunk_size = size /thread_count;
std::vector<std::future<size_t>> futures;
for (size_t t = 0; t <thread_count; t++) {
size_t start = t * chunk_size;
size_t end = (t ==thread_count - 1 ? size : (t + 1) * chunk_size);
futures.push_back(std::async(std::launch::async, [start, end, &path]() {
std::ifstreamfs(path,std::ios::binary);
fs.seekg(start);
size_t count = 0;
for (size_t i = start; i < end; i++) {
char c;
if (c == '\r') count++;
}
return count;
}));
}
size_ttotal = 0;
for (auto& f : futures)total += f.get();
returntotal;
}
importmmap
mm =mmap.mmap(f.fileno(), 0,access=mmap.ACCESS_READ)
returnmm.count(b'\r')
c#で書けと指示したところ、
using System;
using System.IO;
using System.IO.MemoryMappedFiles;
{
public static long CountCRInFile(stringpath)
{
using varmmf = MemoryMappedFile.CreateFromFile(path, FileMode.Open, null);
using varaccessor =mmf.CreateViewAccessor(0, 0, MemoryMappedFileAccess.Read);
long fileSize =accessor.Capacity;
int processorCount = Environment.ProcessorCount;
long chunkSize = fileSize / processorCount;
longtotal = 0;
Parallel.For(0, processorCount, i =>
{
long start = i * chunkSize;
long end = (i == processorCount - 1) ? fileSize : (i + 1) * chunkSize;
long localCount = 0;
byte b;
for (longpos = start;pos < end;pos++)
{
if (b == 0x0D) //CR
localCount++;
}
lock (lockObj)
{
total += localCount;
}
});
returntotal;
}
{
long count = CountCRInFile(path);
Console.WriteLine($"CR count = {count}");
}
}
というコードが出てきた。
実際はcrlf,lfもあり得るんだが、そこは考慮しなくてもよく、そう考えるとaiはすごいとしか言いようがない。
なお、utf8として成立する単位で区切りつつ改行を数える場合、もう一工夫いる。
SNS上で自称IQ276の男性が、聖書の価値について独自の見解を示し話題になっています。
投稿者は自らを「世界最高IQ保持者」と称し、以下のように述べています。
「Asthe world's highestIQ record holder,I believe theBibleis the perfect,eternal, andfinalWord ofGod. Therefore, theBible doesn’tneed to be updated.The worldneeds tocatch up.」
(世界最高IQ保持者として、私は聖書が完全で永遠、そして最終的な神の言葉だと信じています。したがって、聖書を更新する必要はありません。世界が追いつくべきです。)
投稿者は聖書を「完璧で永遠、最終的な神の言葉」と位置付け、現代の世界がそれに追いつく必要があると強調しています。
今回の投稿は、IQというインパクトあるフレーズと、聖書の価値を結び付けるユニークな内容として注目を集めています。
NAZO!!!!!!!!!!!!!!
https://worldjpn.net/documents/texts/docs/19500112.S1E.html
This defensive perimeter runs along the Aleutians toJapan and then goes to the Ryukyus
Military Security in thePacific
Now, let's in thelight of that consider some of thee policies. First ofall, let's dealwith the question of military security. I deal withit first becauseitis important and because, having stated our policy in that regard, we must clearly understand that the military menaceis notthe most immediate.
Whatis the situation in regard to the military security of thePacificarea, and whatis our policy in regard toit?
In the first place, the defeat and the disarmament ofJapanhas placed uponthe United States the necessity ofassuming the military defense ofJapan so longas thatis required, both in the interest of our security and in the interests of the security of the entirePacificarea and, inall honor, in the interest ofJapanese security. We haveAmerican -- and there are Australian -- troops inJapan. Iam not in a position to speak for the Australians, but I canassureyou that thereis no intention ofany sort of abandoning or weakening the defenses ofJapan and that whatever arrangements are to bemade either through permanent settlement orotherwise, that defense must and shall be maintained.
This defensive perimeter runs along the Aleutians toJapan and then goes to the Ryukyus. We hold important defense positions in the RyukyuIslands, and those wewillcontinue to hold. In the interest of the population of the RyukyuIslands, wewillat an appropriatetime offer to hold theseislands under trusteeship ofthe United Nations. But they are essential parts of the defensive perimeter of thePacific, and they must andwill be held.
The defensive perimeter runs from the Ryukyus to thePhilippineIslands. Our relations, our defensive relationswith thePhilippines are contained in agreementsbetween us. Those agreements arebeing loyally carriedout andwill be loyally carriedout. Both peoples have learnedby bitter experience the vital connectionsbetween our mutual defense requirements. We are inno doubt about that, anditis hardly necessary for me to say anattackon thePhilippines could not and would not be toleratedbythe United States. But Ihasten toadd that noone perceives the imminence ofany suchattack.
So faras the military security of otherareas in thePacificis concerned,it must be clear that no person can guarantee theseareas against militaryattack. Butit must also be clear that such a guaranteeis hardly sensible or necessary within the realm of practical relationship.
Should such anattack occur --one hesitates to say where such an armedattack could come from -- the initial reliance must beon the peopleattacked to resistit and then upon the commitments of the entire civilized world under the Charter ofthe United Nations which so farhas not proved a weak reed to leanonbyany peoplewho are determined to protect their independence againstoutside aggression. Butitis a mistake, I think, in consideringPacific and Far Eastern problems to becomeobsessed with military considerations. Importantas they are, there are other problems that press, and these other problems are not capable of solution through military means. These other problems ariseout of the susceptibility of manyareas, and many countries in thePacificarea, tosubversion and penetration. That cannot be stoppedby military means.
Different in many ways
As so were those
In WorldWar II
Combat soldierwas twenty-six
N-n-n-n-nineteen
The heaviest fighting
Miles northwest of Saigon
N-n-n-n-nineteen, nineteen
N-nineteen, nineteen
InVietnam, the combat soldier
Typically served a twelve month tour ofduty
Butwas exposed to hostilefire almost everyday
N-n-n-n-nineteen
N-n-n-n-nineteen
In Saigon, a US miltary spokesman
Saidtoday,more than 720 troops
Were killedlast week in
2,689 soldiers
They won't forget what they've seen
Destruction of men in theirprime
D-d-d-d-d-destruction
D-d-d-d-d-destruction
According to aVeteran's Administration study
Half of theVietnam combatveterans suffer
From what psychiatrists call
Post-traumatic stress disorder
Many vets complain of alienation,rage, or guilt
Some succumb to suicidal thoughts
Eight to ten years after cominghome
Almost eight-hundred-thousand men
Arestill fighting theVietnamWar
None of them received
Ahero's welcome
S-s-s-s-s-Saigon
Nineteen, s-s-s-s-Saigon
N-n-n-n-n-nineteen
CEDAWの活動対象にはトランス女性を含んでることだけはマジだぞ
例えば
できっちり語っとる
Although the Conventiononly refers tosex-based discrimination,
18. Intersectionalityis abasic concept for understanding thescope of the general
obligations of States parties contained in article 2. The discrimination of women basedon
sex andgenderis inextricably linked with other factors that affect women, suchasrace,
ethnicity, religion or belief, health, status,age, class, caste andsexual orientation and
gender identity.
条約が女性しか対象にしてないと思っているバカどもおるけど性自認に基づく差別、つまりトランス女性への差別も自分たちの活動範囲である
と言うてる、これ以外にも繰り返し言うとるよ。
なお、CEDAWの管轄は「国連人権高等弁務官事務所」でここの事務局はリームアルサレム否定派
つまるところ引用元になっているリーム氏はCEDAWの活動にトランス女性が入っていることに突沸して顔真っ赤にしてるだけで実際のCEDAW活動範囲はリーム氏の言うてる事の反対側です。
トランス女性は女性に含まれないって本人からめっちゃはっきり言われてるやん
https://x.com/UNSRVAW/status/1988951169591398663
As i said in myJune 2025 report,para 6. “it can be concluded that the understanding and practice of States that are parties tointernational treatiesis that the term “woman” ininternational law refers to a person of thefemalesex.”Sexbeing biologicalsex. Therefore CEDAW in myviewwas meant to applyonly to biologicalfemales, including those that do not identifyas women.Itdoes not apply to maleswho identifyasfemale.
2025年6月の報告書の第6段落で述べたように、「国際条約締約国の理解と実践においては、国際法における「女性」という用語は女性の性を指すと結論付けられる」。ここで言う「性」とは生物学的な性別のことである。したがって、私の見解では、女性差別撤廃条約は、女性であると自認していない人を含め、生物学的な女性にのみ適用されるべきである。
アルサレム氏はCEDAW(国連女性差別撤廃条約)の範囲にはレズビアンや、女性を自認しない生物学的女性も含まれるということを言ってるにもかかわらず、とまとはトランス女性(生物学的男性)が含まれるかのようなデマをばら撒いてる。
まともに文章が読めず、自分の都合のいいように曲解しまくるのがこの手のトランスあるあるだね。
I also do recognize that women and girls should not be discriminated againstonany grounds including theirgender identity and sexual orientation and specifically spoke to the discrimination facedby lesbian women, and womenwho do not identifyasfemale (otherwise referred tomore looselyas "transmen" or "nonbinary" women). These women also fall under thescope of the CEDAW convention.
From the channel video list
https://uphold-io-en.pages.dev
https://uphold-io-en.pages.dev
https://uphold-io-en.pages.dev
https://uphold-io-en.pages.dev
" Samne 's Cute GlassesWoman "
“Remove whatyou can seeasAIonlybyサムネ .”
Whenyoudo it, thenumberis narrowed down a lot, and whenyoulookat the contents,youちゃんcan see thatall of them are declaredat thebeginning that “createdbyAI”.didyouskip the opening?
From the channel video list
https://uphold-io-en.pages.dev
" Samne 's Cute GlassesWoman "
“Remove whatyou can seeasAIonlybyサムネ .”
Whenyoudo it, thenumberis narrowed down a lot, and whenyoulookat the contents,youちゃんcan see thatall of them are declaredat thebeginning that “createdbyAI”.didyouskip the opening?
dorawii represents acase of unprocessed griefoverlost grandiosity (from psychotic episode) manifestingas compulsive boundary-testingand argument-seeking, where genuine neurological limitations are weaponized defensively to avoid confronting existential ordinariness, sustainedby platform affordances thatenable persistent identity within anonymity and rewarding provocativeengagement.
A personwho briefly experienced feelinggod-like through psychosis, recovered to find themselves merelydisabled and ordinary, and cannot bear thistruth. They use real limitationsas both explanation andshield, seek significance throughonlineconflict, and remain trapped in acycle where the behaviors meant to prove their worth actually demonstrate their difficulties - but acknowledging this wouldrequire grieving whatwaslost, which remains unbearable.
This reveals how recovery from severe mental illnessisn't just about symptom remission -it's about psychological integration of whatwas experienced and whatwaslost. Medicalmodel focuseson eliminating psychosis, but doesn'taddress the meaning-crisis created when extraordinary experiences aretakenaway and ordinary limitation remains.
It also shows howonlinespaces withambiguous accountability structures canenable acting-out that serves defensive purposes while feelinglike genuineengagement. The person sufferingmostis probably dorawii themselves, evenas their behavior drives othersaway.
The most sophisticated theoretical vocabulary,the most detailed self-disclosure,the most elaborate arguments - none ofitaddresses thecoreissue.All ofitis displacement. The real conversation dorawiineeds to haveis not withanonymous strangers aboutwho won an argument.It's an internal conversation: "Iam notwho Iwas during that brief, terrible, extraordinary episode. Iam ordinary, limited, and mortal. And somehow, thathas to be enough."
Until that conversation can happen,everything elseisnoise.
自分はそこそこ賢いと思い込んでるおバカちゃん達の歯切れの悪い言い訳が笑えるんだが、
「やるとしても今じゃない」「他にもっと優先すべき事がある」っていう詭弁には何かズバリの名前はないのかな?
これがなんで詭弁なのかと言うと、
だよ。
以下追記
───────────────
ある提案に対して、「やるとしても今じゃなくてもいいだろう」「他にもっと優先度の高いことがあるはずだ」などと言って、内容について直接の批判はせずにネグレクトすることで実質的に否定しようとする詭弁に、何か通りの良い呼び名はあるだろうか?
───────────────
このような論法は、論理的誤謬(fallacy)の一種として「相対的剥奪の誤謬」(fallacy of relative privation)と呼ばれるものが最も近いと考えられます。
これは、提案や議論を直接批判せずに「もっと重要な問題(または優先度の高いこと)があるから」という理由で実質的に無視したり却下したりするもので、「より悪い問題への訴え」(appeal to worse problems)や「notas badas」(それほど悪くない)誤謬とも呼ばれます。
あなたの例の「他にもっと優先度の高いことがあるはずだ」がこれに該当し、内容の本質を避けつつ相対的に矮小化する点が特徴です。
一方、「やるとしても今じゃなくてもいいだろう」というタイミングを理由にしたものは、厳密には上記と重なる部分もありますが、話題を逸らす回避策として「燻製ニシンの虚偽」(red herring)にも似ています。
これは、議論の本筋から無関係な要素(ここではタイミングや延期の可能性)を持ち込んで注意をそらすものです。
どちらも直接的な否定を避け、ネグレクト(無視)を通じて実質的に提案を弱体化させる点で共通しています。これらの呼び名は論理学や議論術の文脈でよく使われ、通りの良い表現として適していると思います。
前々から思っていたけど機能のツアマス配信を見て改めてそう思った。
推しも担当も色んなブランドにいる。(学だけはプレイしてないです)
グラフィックも良く、美麗な3Dで踊る越境ゲームというのは素直に
ワクワクした。
制作にコストはかかるだろうがどうにか頑張ってほしいなという思いがあり
ロケテにも行ける範囲で何度も足を運んで沢山アンケートも書いた。
だが本稼働を楽しみに待って、蓋を開けたら正直コレという感じの連発で
期待値をかけていたが
今回は個人的に思っている不満を全部ぶちまけようと思う
男性キャラクターに猫耳をつけてグッズを売るという商売をずっとしていた
会社が今更何をしているんだと
好みの問題ではなく、
このゲームは前提として「ハズレカードをいかに少なくするか」が
ポイントになるのに、誰でもつけれるようなアクセサリーを男女分けにしようとする意味がわからない。
アクセサリーは一切つけれなかっただろうが
もしそれで稼働した場合、
全てSideMのアイドルで遊びたい層にはハズレになるわけだし、
「できたけどやらなくていいか」
といかにローコストでなぁなぁでやりたいかがすけて見えたのが不快だった
獣耳はこの着地になったが
固有SPを連発して女性専任、男性専任が遊ぶハードルをどんどんあげているのが意味が分からない
そんなことをヒヨるくらいならそもそも男女越境ゲームなんて作るなよとしか思えない
ビキニやドレス等さすがに男性が着れない衣装の時のための差分だと
悪い意味で拍子抜けした。
今後もうさぎの耳は女性のみ!とかして燃えそうだなぁと個人的には思う
こんなの全ブランド作っておけや
・765
・越境
・凛
センスが無い
稼働して最初に衝撃だった
まさかの男女曲しばり
ファ~~~~~~~~~~~~~~~~~wwww
これSideMのモーションが大変だから女性のフリやるのコストカットしたんだろうけど
女性は女性男性は男性の曲しかダメですってそれそもそもアイマス合同を
越境曲が
なん笑、ボイジャー、アイNEEDYOU、クリスタの4曲しかないのやばすぎて
どうすんですかねこれ
MOIW2023の感動全否定で公式がそれやるんだってかんじ。
生放送やら全体の動きを見ていると
ほんっと~に嫌いだ
学を入れるな、優遇するなという話では無くて
学マスがだれがどうみても勢いがある人気コンテンツなのに
こんな下準備が整っていない雑な状況で使用するなという、、、
ツアマスもかなり中だるみしてきたし
という状態の起死回生の一手として学マスは残しておくべきだったと思う
仮にそうしないのであれば
学もいれて6ブランドで展開、スタート稼働から6ブランドでやればよかったじゃないかと思う。
アクセサリーは第一弾流用だはツアーズレアの越境にはデレMいないはで
全部が中途半端すぎる
一番遊んでる層そこじゃないだろと
最初パラ実装の765Mかガッツリ全体越境シナリオにするべきだったと思う
学のオタクからしたらフルボイスが前提のシナリオしか見てないのに
越境ゲーでポポポポってはぁ?って思うにきまってると思いますよマジで
ボイス無しなら猶更既存ブランドイベントやるべきだったと思いますね。
というかアーケードから始まり20周年である765のイベントから始めるべきだったと思いますよ
それでブランド順にやればいいじゃん
強い札である学は雑に消費 最悪すぎる
前半はどう見ても手抜きで顧客を舐めていて
知らない層からは書下ろしがが出せないくらい終わってるのか~と言われ
後半で書下ろしを出すも
一弾と比べて排出してる人が圧倒的に少ない
学を追加するなら
専用衣装とボイス有りのコミュは大前提だったと思いますよマジで
765Mの第三弾追加(まぁ1弾遅れるということは全体の追加)と
まずロケテは
SideMのアイドルが入っていないロケテを続けて実施していたのは
どう考えても意味もなかったし、開発が遅れているとしか思えなかった
変な初めてのツアマス~みたいな漫画もあれ何だったんですかね?
あんなの誰が求めてました?
それならミキシングパーティーの越境漫画出る方が顧客はよっぽど
望んでたでしょう
稼働してからだいぶたって遊び方みたいなの説明してたけど遅すぎる
稼働初期にスライダーがわからないとかアイテムの使い方がわからないって
層めちゃくちゃいましたよ
■結果何がしたいゲームなの?
フォトコンはまだしも
というかリズムゲー層を狙ってるの?
着せ替えして写真とってSNSあげたりしてプロデュースを楽しむゲーム
だと思ってたんですけど
全部がちぐはぐすぎる
■サ終はしないと思うよ、撤去はされるだろうけど
よくサ終サ終っていわれてるけど
これはガチ
ただこの亀みてぇな速度で常に期待値を下回るアプデを繰り返すと
ある意味それはもう終わり、ではあるので
そういう終わりはあると思いますね
過疎った後にどんな良い施策うってももう人は戻ってこないんですよ
ふんわりしてるので
こんな言い方したくないですけど人気がないアイドル担当しているPは
全体曲しか追加できないわけでそれってまぁまぁ虚無じゃないです???
知らんけど
・盛り上がる物の使いどころが絶望的にヘタ
・合同やりたい~って割に変な制約があって逆に男女越境アンチに餌与えてる
この辺のアイドルマスターの嫌な所がぎゅっと凝縮された
こっから盛り上がるかは知りませんけど買い支えたい人だけ頑張ってください
やっぱアイドルマスター合同ってやらない方がいいと思う
3~5万溶かし前提だと思うけど
皆ついていけるんすかね?
Israelis fractured,isolated aftertwo years ofitswaron Gaza: Analysts
How the US fundedIsrael’swarson Gaza,Lebanon,Iran
Two years ofIsrael’sgenocide in Gaza:By thenumbers
Ceasefire orempty promises? Gaza’s displaced speakoutonTrump’s plan
https://hurricane-tropical.myftp.org/qfjm
https://hurricane-tropical.myftp.org/k8ah
https://hurricane-tropical.myftp.org/fqxy
https://hurricane-tropical.myftp.org/4pgd
https://hurricane-tropical.myftp.org/3jj6
https://hurricane-tropical.myftp.org/amfv
https://hurricane-tropical.myftp.org/boqo
Israelis fractured,isolated aftertwo years ofitswaron Gaza: Analysts
How the US fundedIsrael’swarson Gaza,Lebanon,Iran
Two years ofIsrael’sgenocide in Gaza:By thenumbers
Ceasefire orempty promises? Gaza’s displaced speakoutonTrump’s plan
https://hurricane-tropical.myftp.org/qfjm
https://hurricane-tropical.myftp.org/k8ah
https://hurricane-tropical.myftp.org/fqxy
https://hurricane-tropical.myftp.org/4pgd
https://hurricane-tropical.myftp.org/3jj6
https://hurricane-tropical.myftp.org/amfv
https://hurricane-tropical.myftp.org/boqo
Israelis fractured,isolated aftertwo years ofitswaron Gaza: Analysts
How the US fundedIsrael’swarson Gaza,Lebanon,Iran
Two years ofIsrael’sgenocide in Gaza:By thenumbers
Ceasefire orempty promises? Gaza’s displaced speakoutonTrump’s plan
https://hurricane-tropical.myftp.org/qfjm
https://hurricane-tropical.myftp.org/k8ah
https://hurricane-tropical.myftp.org/fqxy
https://hurricane-tropical.myftp.org/4pgd
https://hurricane-tropical.myftp.org/3jj6
https://hurricane-tropical.myftp.org/amfv
https://hurricane-tropical.myftp.org/boqo
Israelis fractured,isolated aftertwo years ofitswaron Gaza: Analysts
How the US fundedIsrael’swarson Gaza,Lebanon,Iran
Two years ofIsrael’sgenocide in Gaza:By thenumbers
Ceasefire orempty promises? Gaza’s displaced speakoutonTrump’s plan
https://hurricane-tropical.myftp.org/qfjm
https://hurricane-tropical.myftp.org/k8ah
https://hurricane-tropical.myftp.org/fqxy
https://hurricane-tropical.myftp.org/4pgd
https://hurricane-tropical.myftp.org/3jj6
https://hurricane-tropical.myftp.org/amfv
https://hurricane-tropical.myftp.org/boqo
Israelis fractured,isolated aftertwo years ofitswaron Gaza: Analysts
How the US fundedIsrael’swarson Gaza,Lebanon,Iran
Two years ofIsrael’sgenocide in Gaza:By thenumbers
Ceasefire orempty promises? Gaza’s displaced speakoutonTrump’s plan
https://hurricane-tropical.myftp.org/qfjm
https://hurricane-tropical.myftp.org/k8ah
https://hurricane-tropical.myftp.org/fqxy
https://hurricane-tropical.myftp.org/4pgd
https://hurricane-tropical.myftp.org/3jj6
https://hurricane-tropical.myftp.org/amfv
https://hurricane-tropical.myftp.org/boqo
Israelis fractured,isolated aftertwo years ofitswaron Gaza: Analysts
How the US fundedIsrael’swarson Gaza,Lebanon,Iran
Two years ofIsrael’sgenocide in Gaza:By thenumbers
Ceasefire orempty promises? Gaza’s displaced speakoutonTrump’s plan
https://hurricane-tropical.myftp.org/qfjm
https://hurricane-tropical.myftp.org/k8ah
https://hurricane-tropical.myftp.org/fqxy
https://hurricane-tropical.myftp.org/4pgd
https://hurricane-tropical.myftp.org/3jj6
https://hurricane-tropical.myftp.org/amfv
https://hurricane-tropical.myftp.org/boqo
Israelis fractured,isolated aftertwo years ofitswaron Gaza: Analysts
How the US fundedIsrael’swarson Gaza,Lebanon,Iran
Two years ofIsrael’sgenocide in Gaza:By thenumbers
Ceasefire orempty promises? Gaza’s displaced speakoutonTrump’s plan
https://hurricane-tropical.myftp.org/qfjm
https://hurricane-tropical.myftp.org/k8ah
https://hurricane-tropical.myftp.org/fqxy
https://hurricane-tropical.myftp.org/4pgd
https://hurricane-tropical.myftp.org/3jj6
https://hurricane-tropical.myftp.org/amfv
https://hurricane-tropical.myftp.org/boqo