はてなキーワード: ASとは
https://x.com/ThePosieParker/status/1990283629394821498
@Li_Kotomi
He thinks he passes as a woman 🤣🤣🤣🤣🤣🤣🤮🤮🤮🤮🤮🤮🤮 he’s actually suing
@WomenReadWomen
Stay out of women only spaces
これは @Li_Kotomi。
彼は自分のことを女性に見えると思っているらしい🤣🤣🤣🤣🤣🤣🤮🤮🤮🤮🤮🤮🤮
そして @WomenReadWomen が「彼は男性だ」と言ったことに対して訴えている最中。
誰も彼のことを女性だなんて思っていない。
utf8の文字コードで構成されたバイナリーファイルがある。このファイルの改行の数を数えよ。改行はCRのみとする。このファイルにはCR が必ず含まれており、CRで分割すればマルチスレッドで処理できる。
size_t count_cr_in_file(const std::string& path) {
std::ifstream fs(path, std::ios::binary);
size_t size = fs.tellg();
fs.seekg(0);
const size_t thread_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::ifstream fs(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_t total = 0;
for (auto& f : futures) total += f.get();
return total;
}
import mmap
mm = mmap.mmap(f.fileno(), 0, access=mmap.ACCESS_READ)
return mm.count(b'\r')
c#で書けと指示したところ、
using System;
using System.IO;
using System.IO.MemoryMappedFiles;
{
public static long CountCRInFile(string path)
{
using var mmf = MemoryMappedFile.CreateFromFile(path, FileMode.Open, null);
using var accessor = mmf.CreateViewAccessor(0, 0, MemoryMappedFileAccess.Read);
long fileSize = accessor.Capacity;
int processorCount = Environment.ProcessorCount;
long chunkSize = fileSize / processorCount;
long total = 0;
object lockObj = new object();
Parallel.For(0, processorCount, i =>
{
long start = i * chunkSize;
long end = (i == processorCount - 1) ? fileSize : (i + 1) * chunkSize;
long localCount = 0;
byte b;
for (long pos = start; pos < end; pos++)
{
if (b == 0x0D) // CR
localCount++;
}
lock (lockObj)
{
total += localCount;
}
});
return total;
}
static void Main(string[] args)
{
long count = CountCRInFile(path);
Console.WriteLine($"CR count = {count}");
}
}
というコードが出てきた。
実際はcrlf,lfもあり得るんだが、そこは考慮しなくてもよく、そう考えるとaiはすごいとしか言いようがない。
SNS上で自称IQ276の男性が、聖書の価値について独自の見解を示し話題になっています。
投稿者は自らを「世界最高IQ保持者」と称し、以下のように述べています。
「As the world's highest IQ record holder, I believe the Bible is the perfect, eternal, and final Word of God. Therefore, the Bible doesn’t need to be updated. The world needs to catch up.」
(世界最高IQ保持者として、私は聖書が完全で永遠、そして最終的な神の言葉だと信じています。したがって、聖書を更新する必要はありません。世界が追いつくべきです。)
投稿者は聖書を「完璧で永遠、最終的な神の言葉」と位置付け、現代の世界がそれに追いつく必要があると強調しています。
NAZO!!!!!!!!!!!!!!
https://worldjpn.net/documents/texts/docs/19500112.S1E.html
This defensive perimeter runs along the Aleutians to Japan and then goes to the Ryukyus
Military Security in the Pacific
Now, let's in the light of that consider some of thee policies. First of all, let's deal with the question of military security. I deal with it first because it is important and because, having stated our policy in that regard, we must clearly understand that the military menace is not the most immediate.
What is the situation in regard to the military security of the Pacific area, and what is our policy in regard to it?
In the first place, the defeat and the disarmament of Japan has placed upon the United States the necessity of assuming the military defense of Japan so long as that is required, both in the interest of our security and in the interests of the security of the entire Pacific area and, in all honor, in the interest of Japanese security. We have American -- and there are Australian -- troops in Japan. I am not in a position to speak for the Australians, but I can assure you that there is no intention of any sort of abandoning or weakening the defenses of Japan and that whatever arrangements are to be made either through permanent settlement or otherwise, that defense must and shall be maintained.
This defensive perimeter runs along the Aleutians to Japan and then goes to the Ryukyus. We hold important defense positions in the Ryukyu Islands, and those we will continue to hold. In the interest of the population of the Ryukyu Islands, we will at an appropriate time offer to hold these islands under trusteeship of the United Nations. But they are essential parts of the defensive perimeter of the Pacific, and they must and will be held.
The defensive perimeter runs from the Ryukyus to the Philippine Islands. Our relations, our defensive relations with the Philippines are contained in agreements between us. Those agreements are being loyally carried out and will be loyally carried out. Both peoples have learned by bitter experience the vital connections between our mutual defense requirements. We are in no doubt about that, and it is hardly necessary for me to say an attack on the Philippines could not and would not be tolerated by the United States. But I hasten to add that no one perceives the imminence of any such attack.
So far as the military security of other areas in the Pacific is concerned, it must be clear that no person can guarantee these areas against military attack. But it must also be clear that such a guarantee is hardly sensible or necessary within the realm of practical relationship.
Should such an attack occur -- one hesitates to say where such an armed attack could come from -- the initial reliance must be on the people attacked to resist it and then upon the commitments of the entire civilized world under the Charter of the United Nations which so far has not proved a weak reed to lean on by any people who are determined to protect their independence against outside aggression. But it is a mistake, I think, in considering Pacific and Far Eastern problems to become obsessed with military considerations. Important as they are, there are other problems that press, and these other problems are not capable of solution through military means. These other problems arise out of the susceptibility of many areas, and many countries in the Pacific area, to subversion and penetration. That cannot be stopped by military means.
Different in many ways
As so were those
In World War II
Combat soldier was twenty-six
N-n-n-n-nineteen
The heaviest fighting
Miles northwest of Saigon
N-n-n-n-nineteen, nineteen
N-nineteen, nineteen
In Vietnam, the combat soldier
Typically served a twelve month tour of duty
But was exposed to hostile fire almost everyday
N-n-n-n-nineteen
N-n-n-n-nineteen
In Saigon, a US miltary spokesman
Said today, more than 720 troops
Were killed last week in
2,689 soldiers
All those who remember the war
They won't forget what they've seen
Destruction of men in their prime
Whose average age was nineteen
D-d-d-d-d-destruction
D-d-d-d-d-destruction
According to a Veteran's Administration study
Half of the Vietnam combat veterans 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 coming home
Almost eight-hundred-thousand men
Are still fighting the Vietnam War
None of them received
A hero's welcome
S-s-s-s-s-Saigon
Nineteen, s-s-s-s-Saigon
N-n-n-n-n-nineteen
CEDAWの活動対象には トランス女性を含んでることだけはマジだぞ
例えば
できっちり語っとる
Although the Convention only refers to sex-based discrimination,
18. Intersectionality is a basic concept for understanding the scope of the general
obligations of States parties contained in article 2. The discrimination of women based on
sex and gender is inextricably linked with other factors that affect women, such as race,
ethnicity, religion or belief, health, status, age, class, caste and sexual orientation and
gender identity.
条約が女性しか対象にしてないと思っているバカどもおるけど性自認に基づく差別、つまりトランス女性への差別も自分たちの活動範囲である
と言うてる、これ以外にも繰り返し言うとるよ。
なお、CEDAWの管轄は「国連人権高等弁務官事務所」でここの事務局はリームアルサレム否定派
つまるところ引用元になっているリーム氏はCEDAWの活動にトランス女性が入っていることに突沸して顔真っ赤にしてるだけで実際のCEDAW活動範囲はリーム氏の言うてる事の反対側です。
トランス女性は女性に含まれないって本人からめっちゃはっきり言われてるやん
https://x.com/UNSRVAW/status/1988951169591398663
As i said in my June 2025 report, para 6. “it can be concluded that the understanding and practice of States that are parties to international treaties is that the term “woman” in international law refers to a person of the female sex.” Sex being biological sex. Therefore CEDAW in my view was meant to apply only to biological females, including those that do not identify as women. It does not apply to males who identify as female.
2025年6月の報告書の第6段落で述べたように、「国際条約締約国の理解と実践においては、国際法における「女性」という用語は女性の性を指すと結論付けられる」。ここで言う「性」とは生物学的な性別のことである。したがって、私の見解では、女性差別撤廃条約は、女性であると自認していない人を含め、生物学的な女性にのみ適用されるべきである。
アルサレム氏はCEDAW(国連女性差別撤廃条約)の範囲にはレズビアンや、女性を自認しない生物学的女性も含まれるということを言ってるにもかかわらず、とまとはトランス女性(生物学的男性)が含まれるかのようなデマをばら撒いてる。
まともに文章が読めず、自分の都合のいいように曲解しまくるのがこの手のトランスあるあるだね。
I also do recognize that women and girls should not be discriminated against on any grounds including their gender identity and sexual orientation and specifically spoke to the discrimination faced by lesbian women, and women who do not identify as female (otherwise referred to more loosely as "transmen" or "nonbinary" women). These women also fall under the scope 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 Glasses Woman "
“Remove what you can see as AI only by サムネ .”
When you do it, the number is narrowed down a lot, and when you look at the contents, you ちゃんcan see that all of them are declared at the beginning that “created by AI”. did you skip the opening?
From the channel video list
https://uphold-io-en.pages.dev
" Samne 's Cute Glasses Woman "
“Remove what you can see as AI only by サムネ .”
When you do it, the number is narrowed down a lot, and when you look at the contents, you ちゃんcan see that all of them are declared at the beginning that “created by AI”. did you skip the opening?
dorawii represents a case of unprocessed grief over lost grandiosity (from psychotic episode) manifesting as compulsive boundary-testing and argument-seeking, where genuine neurological limitations are weaponized defensively to avoid confronting existential ordinariness, sustained by platform affordances that enable persistent identity within anonymity and rewarding provocative engagement.
A person who briefly experienced feeling god-like through psychosis, recovered to find themselves merely disabled and ordinary, and cannot bear this truth. They use real limitations as both explanation and shield, seek significance through online conflict, and remain trapped in a cycle where the behaviors meant to prove their worth actually demonstrate their difficulties - but acknowledging this would require grieving what was lost, which remains unbearable.
This reveals how recovery from severe mental illness isn't just about symptom remission - it's about psychological integration of what was experienced and what was lost. Medical model focuses on eliminating psychosis, but doesn't address the meaning-crisis created when extraordinary experiences are taken away and ordinary limitation remains.
It also shows how online spaces with ambiguous accountability structures can enable acting-out that serves defensive purposes while feeling like genuine engagement. The person suffering most is probably dorawii themselves, even as their behavior drives others away.
The most sophisticated theoretical vocabulary, the most detailed self-disclosure, the most elaborate arguments - none of it addresses the core issue. All of it is displacement. The real conversation dorawii needs to have is not with anonymous strangers about who won an argument. It's an internal conversation: "I am not who I was during that brief, terrible, extraordinary episode. I am ordinary, limited, and mortal. And somehow, that has to be enough."
Until that conversation can happen, everything else is noise.
自分はそこそこ賢いと思い込んでるおバカちゃん達の歯切れの悪い言い訳が笑えるんだが、
「やるとしても今じゃない」「他にもっと優先すべき事がある」っていう詭弁には何かズバリの名前はないのかな?
これがなんで詭弁なのかと言うと、
だよ。
以下追記
───────────────
ある提案に対して、「やるとしても今じゃなくてもいいだろう」「他にもっと優先度の高いことがあるはずだ」などと言って、内容について直接の批判はせずにネグレクトすることで実質的に否定しようとする詭弁に、何か通りの良い呼び名はあるだろうか?
───────────────
このような論法は、論理的誤謬(fallacy)の一種として「相対的剥奪の誤謬」(fallacy of relative privation)と呼ばれるものが最も近いと考えられます。
これは、提案や議論を直接批判せずに「もっと重要な問題(または優先度の高いこと)があるから」という理由で実質的に無視したり却下したりするもので、「より悪い問題への訴え」(appeal to worse problems)や「not as bad as」(それほど悪くない)誤謬とも呼ばれます。
あなたの例の「他にもっと優先度の高いことがあるはずだ」がこれに該当し、内容の本質を避けつつ相対的に矮小化する点が特徴です。
一方、「やるとしても今じゃなくてもいいだろう」というタイミングを理由にしたものは、厳密には上記と重なる部分もありますが、話題を逸らす回避策として「燻製ニシンの虚偽」(red herring)にも似ています。
これは、議論の本筋から無関係な要素(ここではタイミングや延期の可能性)を持ち込んで注意をそらすものです。
どちらも直接的な否定を避け、ネグレクト(無視)を通じて実質的に提案を弱体化させる点で共通しています。これらの呼び名は論理学や議論術の文脈でよく使われ、通りの良い表現として適していると思います。
前々から思っていたけど機能のツアマス配信を見て改めてそう思った。
推しも担当も色んなブランドにいる。(学だけはプレイしてないです)
グラフィックも良く、美麗な3Dで踊る越境ゲームというのは素直に
ワクワクした。
制作にコストはかかるだろうがどうにか頑張ってほしいなという思いがあり
ロケテにも行ける範囲で何度も足を運んで沢山アンケートも書いた。
だが本稼働を楽しみに待って、蓋を開けたら正直コレという感じの連発で
期待値をかけていたが
今回は個人的に思っている不満を全部ぶちまけようと思う
男性キャラクターに猫耳をつけてグッズを売るという商売をずっとしていた
会社が今更何をしているんだと
好みの問題ではなく、
このゲームは前提として「ハズレカードをいかに少なくするか」が
ポイントになるのに、誰でもつけれるようなアクセサリーを男女分けにしようとする意味がわからない。
アクセサリーは一切つけれなかっただろうが
もしそれで稼働した場合、
全てSideMのアイドルで遊びたい層にはハズレになるわけだし、
「できたけどやらなくていいか」
といかにローコストでなぁなぁでやりたいかがすけて見えたのが不快だった
獣耳はこの着地になったが
固有SPを連発して女性専任、男性専任が遊ぶハードルをどんどんあげているのが意味が分からない
そんなことをヒヨるくらいならそもそも男女越境ゲームなんて作るなよとしか思えない
ビキニやドレス等さすがに男性が着れない衣装の時のための差分だと
悪い意味で拍子抜けした。
今後もうさぎの耳は女性のみ!とかして燃えそうだなぁと個人的には思う
こんなの全ブランド作っておけや
・765
・越境
・凛
センスが無い
稼働して最初に衝撃だった
まさかの男女曲しばり
ファ~~~~~~~~~~~~~~~~~wwww
これSideMのモーションが大変だから女性のフリやるのコストカットしたんだろうけど
女性は女性男性は男性の曲しかダメですってそれそもそもアイマス合同を
越境曲が
なん笑、ボイジャー、アイNEEDYOU、クリスタの4曲しかないのやばすぎて
どうすんですかねこれ
MOIW2023の感動全否定で公式がそれやるんだってかんじ。
生放送やら全体の動きを見ていると
ほんっと~に嫌いだ
学を入れるな、優遇するなという話では無くて
学マスがだれがどうみても勢いがある人気コンテンツなのに
こんな下準備が整っていない雑な状況で使用するなという、、、
ツアマスもかなり中だるみしてきたし
という状態の起死回生の一手として学マスは残しておくべきだったと思う
仮にそうしないのであれば
学もいれて6ブランドで展開、スタート稼働から6ブランドでやればよかったじゃないかと思う。
アクセサリーは第一弾流用だはツアーズレアの越境にはデレMいないはで
全部が中途半端すぎる
一番遊んでる層そこじゃないだろと
最初パラ実装の765Mかガッツリ全体越境シナリオにするべきだったと思う
学のオタクからしたらフルボイスが前提のシナリオしか見てないのに
越境ゲーでポポポポってはぁ?って思うにきまってると思いますよマジで
ボイス無しなら猶更既存ブランドイベントやるべきだったと思いますね。
というかアーケードから始まり20周年である765のイベントから始めるべきだったと思いますよ
それでブランド順にやればいいじゃん
強い札である学は雑に消費 最悪すぎる
前半はどう見ても手抜きで顧客を舐めていて
知らない層からは書下ろしがが出せないくらい終わってるのか~と言われ
後半で書下ろしを出すも
一弾と比べて排出してる人が圧倒的に少ない
学を追加するなら
専用衣装とボイス有りのコミュは大前提だったと思いますよマジで
765Mの第三弾追加(まぁ1弾遅れるということは全体の追加)と
まずロケテは
SideMのアイドルが入っていないロケテを続けて実施していたのは
どう考えても意味もなかったし、開発が遅れているとしか思えなかった
変な初めてのツアマス~みたいな漫画もあれ何だったんですかね?
あんなの誰が求めてました?
それならミキシングパーティーの越境漫画出る方が顧客はよっぽど
望んでたでしょう
稼働してからだいぶたって遊び方みたいなの説明してたけど遅すぎる
稼働初期にスライダーがわからないとかアイテムの使い方がわからないって
層めちゃくちゃいましたよ
■結果何がしたいゲームなの?
フォトコンはまだしも
というかリズムゲー層を狙ってるの?
着せ替えして写真とってSNSあげたりしてプロデュースを楽しむゲーム
だと思ってたんですけど
全部がちぐはぐすぎる
■サ終はしないと思うよ、撤去はされるだろうけど
よくサ終サ終っていわれてるけど
これはガチ
ただこの亀みてぇな速度で常に期待値を下回るアプデを繰り返すと
ある意味それはもう終わり、ではあるので
そういう終わりはあると思いますね
過疎った後にどんな良い施策うってももう人は戻ってこないんですよ
ふんわりしてるので
こんな言い方したくないですけど人気がないアイドル担当しているPは
全体曲しか追加できないわけでそれってまぁまぁ虚無じゃないです???
知らんけど
・盛り上がる物の使いどころが絶望的にヘタ
・合同やりたい~って割に変な制約があって逆に男女越境アンチに餌与えてる
この辺のアイドルマスターの嫌な所がぎゅっと凝縮された
こっから盛り上がるかは知りませんけど買い支えたい人だけ頑張ってください
やっぱアイドルマスター合同ってやらない方がいいと思う
3~5万溶かし前提だと思うけど
皆ついていけるんすかね?
Israel is fractured, isolated after two years of its war on Gaza: Analysts
How the US funded Israel’s wars on Gaza, Lebanon, Iran
Two years of Israel’s genocide in Gaza: By the numbers
Ceasefire or empty promises? Gaza’s displaced speak out on Trump’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
Israel is fractured, isolated after two years of its war on Gaza: Analysts
How the US funded Israel’s wars on Gaza, Lebanon, Iran
Two years of Israel’s genocide in Gaza: By the numbers
Ceasefire or empty promises? Gaza’s displaced speak out on Trump’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
Israel is fractured, isolated after two years of its war on Gaza: Analysts
How the US funded Israel’s wars on Gaza, Lebanon, Iran
Two years of Israel’s genocide in Gaza: By the numbers
Ceasefire or empty promises? Gaza’s displaced speak out on Trump’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
Israel is fractured, isolated after two years of its war on Gaza: Analysts
How the US funded Israel’s wars on Gaza, Lebanon, Iran
Two years of Israel’s genocide in Gaza: By the numbers
Ceasefire or empty promises? Gaza’s displaced speak out on Trump’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
Israel is fractured, isolated after two years of its war on Gaza: Analysts
How the US funded Israel’s wars on Gaza, Lebanon, Iran
Two years of Israel’s genocide in Gaza: By the numbers
Ceasefire or empty promises? Gaza’s displaced speak out on Trump’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
Israel is fractured, isolated after two years of its war on Gaza: Analysts
How the US funded Israel’s wars on Gaza, Lebanon, Iran
Two years of Israel’s genocide in Gaza: By the numbers
Ceasefire or empty promises? Gaza’s displaced speak out on Trump’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
Israel is fractured, isolated after two years of its war on Gaza: Analysts
How the US funded Israel’s wars on Gaza, Lebanon, Iran
Two years of Israel’s genocide in Gaza: By the numbers
Ceasefire or empty promises? Gaza’s displaced speak out on Trump’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