「TiME」を含む日記 RSS

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

2023-09-27

もし目が覚めたら美少女になっていたら、きっと僕は生き別れの息子を探しに行くだろう

28年間、共に過ごしてきた息子が朝起きたら急にいなくなっていたら

その喪失感はどれほどのものだろう

きっと僕は泣きながらいなくなってしまった息子を探すことだろう

 

向いのホーム

路地裏の窓

こんなとこにいるはずもないのに

 

One more time,One more chance...

2023-09-20

anond:20230919185719

錯覚世界The World of Illusion

記憶改ざん(Memory Alteration)

内面の弱点(Inner Weakness)

しゃあけど…残念ながらここら辺の精神を左右する能力無効化するわ!

時間断層Time Fracture)

虚無の次元Dimension of Nothingness)

ここら辺の物理的にどこか異空間隔離するのは効くと思われる

魔人ブウゴテンクスのようにぶち破ってくる可能性も考えられるが…

2023-09-19

anond:20230918195757

こういうのこそChatGPTに聞けば良い。

ってことで聞いてみたぞ。微妙だったわ。

このようなオーバーパワーなキャラクターを倒すのは確かに困難ですが、創作世界では限界がありません。以下は、このキャラクターを倒すためのいくつかの独創的なアイディアです。

錯覚世界The World of Illusion

概要: 主人公はこのキャラクター接触することで、その精神に強力な錯覚を送り込む。この錯覚によって、キャラクター自分がすべての存在を消し去ったと信じ込み、"無敵"バリアと不可視ビームを解除する。

メカニズム: 錯覚現実区別できないほど強力で、読心能力では看破できない。錯覚によって、キャラクターは目の前に愛する者や敵、さらには全宇宙崩壊していると信じ、自分の力を解除する。

記憶改ざん(Memory Alteration)

概要: このキャラクター記憶操作し、彼が「無敵である」という自覚を消す。

メカニズム: 特別テクノロジー魔法キャラクター記憶に介入。その過程で「無敵である」という自覚や、自分が持つすべての能力についての記憶を消去。

時間断層Time Fracture)

概要: キャラクター時間断層に送り込む。ここでは因果律が歪んでおり、彼の能力無効化される。

メカニズム: キャラクター存在する時間軸を操作し、一瞬のうちにその存在時間断層に移動させる。

内面の弱点(Inner Weakness)

概要: キャラクターが持つ微かながらの内面の弱点、例えば過去トラウマや未練などにつけ込む。

メカニズム: 読心能力を持つキャラクター自身が知らない心の奥底にある弱点を探り出し、それを利用して動揺させる。

虚無の次元Dimension of Nothingness)

概要: キャラクターを「何も存在しない」次元に送り込む。この次元では、キャラクターがどれだけ強力であっても、何も影響を与えられない。

メカニズム: 特別アイテム呪文で、一時的にこの次元と繋がるポータル作成キャラクターをその中に引きずり込む。


これらのアイディアは、キャラクターの設定に深く入り込むものであり、その独自の強さと弱点を緻密に解析しています。どれも独創的な解決策を提供する可能性があります。いずれのアイディアも、ストーリーに深みと緊張感をもたらすでしょう。

anond:20230919114042

もうこのやりとりの時点でダメやん?

ダメじゃねえよ。要件を正確に記述できないならコードなんて書けるわけない。

空気読んでいい感じに読み取ってよというのを求めてるなら、仕様書すら書けないダメプログラマーってことだろ。

コンピューターの中では数字で日付は管理されててそれはJavaでは日付のオブジェクトとして表されるんだけど、「今週=現在の週の水曜日」を表すオブジェクトが欲しい

やったぞ

Javaの日付オブジェクトとして「今週の水曜日」を表すオブジェクトを返す関数を示してください。

java.time パッケージの LocalDate クラスや TemporalAdjusters クラス使用して、「今週の水曜日」の日付オブジェクトを取得できます

以下のコードは、現在の日付に基づいて今週の水曜日の LocalDate オブジェクトを返す Java関数です。

import java.time.DayOfWeek;

import java.time.LocalDate;

import java.time.temporal.TemporalAdjusters;

public class Main {

public static void main(String[] args) {

System.out.println(getThisWeeksWednesday());

}

public static LocalDate getThisWeeksWednesday() {

LocalDate today = LocalDate.now();

return today.with(TemporalAdjusters.nextOrSame(DayOfWeek.WEDNESDAY));

}

}

この関数現在の日付を取得し、それを TemporalAdjusters.nextOrSame(DayOfWeek.WEDNESDAY) メソッドに渡して、今週の水曜日の日付を取得します。今日水曜日である場合、それが返されます。それ以外の場合は、次の水曜日の日付が返されます

今日が週内のどの日であったとしても(木曜日金曜日であったとしても)その週の水曜日を表すオブジェクトを返す関数を示してください。

それには、今週の最初の日を求め、そこから水曜日までの日数を加算するアプローチ使用します。以下のコードでは、週の最初の日を月曜日仮定しています

import java.time.DayOfWeek;

import java.time.LocalDate;

import java.time.temporal.TemporalAdjusters;

public class Main {

public static void main(String[] args) {

System.out.println(getThisWeeksWednesday());

}

public static LocalDate getThisWeeksWednesday() {

LocalDate today = LocalDate.now();

LocalDate monday = today.with(TemporalAdjusters.previousOrSame(DayOfWeek.MONDAY));

return monday.plusDays(2);

}

}

このコードは、まず今日の日付を取得し、それから TemporalAdjusters.previousOrSame(DayOfWeek.MONDAY) メソッド使用して今週の月曜日の日付を取得します。そして、月曜日から2日後の日付(水曜日)を取得するために plusDays(2) メソッド使用します。

2023-09-18

anond:20230918234217

イタズラ投票にしてもTIME誌もポケモンもなんでも被害受けてるのに何故か女性向けコンテンツからイナズマイレブンけが荒らされたということになっている

2023-08-31

男がおっぱいに興味がない年齢(2〜9歳)に名前をつけたい

男がおっぱいに興味がないのは2〜9歳という短い期間だけなんだよなぁ。

0〜1歳の赤ちゃんの時はおっぱい飲むの大好きだし、

思春期が始まる10歳頃にはおっぱいがまた好きになってくる。

たった8年間だけなんだよ、男がおっぱいに興味ない期間って。

この特別な期間に名前をつけた方がいいと思う。

以下は俺の提案

イノセンスエイ

●NOT(No Oppai Time

●無害男性期間

2023-08-23

anond:20230823020606

One More Time,One More Chanceは「月とキャベツ」が名作なので「秒速5センチメートル」の曲って言われると複雑な気持ちになる。

元々違う作品の曲だったのに転生した曲

例えば、One More Time,One More Chance(山崎まさよし主演映画)→秒速5センチメートル

secret baseキッズ・ウォー)→あの日見た花の名前を僕達はまだ知らない

などは有名すぎるほど有名だけど、他にもあると思うので有名無名問わず知ってる人は教えて下さい

元々違う作品の曲だったのに転生した曲

例えば、One More Time,One More Chance(山崎まさよし主演映画)→秒速5センチメートル

secret baseキッズ・ウォー)→あの日見た花の名前を僕達はまだ知らない

などは有名すぎるほど有名だけど、他にもあると思うので有名無名問わず知ってる人は教えて下さい

追記

正直、投稿時は何億回もこんなお題出てるやろし良くて20くらいか・・・て思い投稿したので、ブックマーク300超えでありがたいやら半信半疑やらで不思議な気分ですw

すでに一部のとこにコメントしましたが、主の出しゃばり感がウザいのでw 一旦辞めて投稿がある程度落ち着いたらこちらにまとめて追記しようと思います

投稿した方もブックマークの方も、拡散してくれたみなさん・・・まとめてになりますが本当にありがとうございます

なおまだまだ募集しておりますのでこれは違うかな?ていう思いつきでも軽率コメント頂けると全俺が泣いて喜びますのでよろしくお願いします。

2023-08-21

anond:20230821083216

頭文字を使って略す場合に同じくゲームで頻出の単語Cast time(詠唱時間)と被るという意味でもアホすぎるんだよな

anond:20230821083216

でもCool、Down、Timeの中で最も残すべき意味単語ってTimeじゃない?

毎回具体的な時間注釈が付くわけではないんだし。

 

じゃあTimeを残して省略するとして

クールタイム」なのか「ダウンタイム」なのか、

どっちが先かは知らんけど「ダウンタイム」にはすでに別の意味合いがあるわけで、

じゃあ「クールタイム」でいいんじゃないのか。

意味不明でいらつく和製英語クールタイム

Cool down time(冷却時間)」から転じてゲームなどでスキル再使用可能になるまでの時間を指すんだが

英語圏で「Cool down time」を略す場合絶対time」を消して「Cool down」である

意味の上でも「Cool down」+「time」なわけだし、Cool down:5secとか書くと時間であることは明白なので

ところが日本人重要意味を持つ単語を消して「クールタイム」なる珍妙な語を生み出した

元の英語に正解が先に存在するのにわざわざ謎の独自性を発揮して意味不明な略語を使う意味がわからない

なんでそんなことするの?頭おかしいの?

2023-08-12

have you ever seen the rain

Someone told me long ago

There's a calm before the storm

I know, it's been comin' for some time

When it's over, so they say

It'll rain a sunny day

I know, shinin' down like water

 

誰かが昔教えてくれた

嵐の前には風が止むって

そう、しばらく前からそんなだった

それから嵐が過ぎると

晴れた日に雨が降るらしい

そう、光が水が降り注ぐように

 

I wanna know, have you ever seen the rain

I wanna know, have you ever seen the rain

Coming down on a sunny day

 

雨を見たことがあるかい

雨を見たことがあるかい

晴れた日に降る雨を

 

Yesterday, and days before

Sun is cold and rain is hard

I know, been that way for all my time

'Til forever, on it goes

Through the circle, fast and slow

I know, it can't stop, I wonder

 

昨日もその前の日も

日射しは冷たくて雨はひどい

そう、俺の人生はずっとそんな風だ

慌てたりもたついたり

ぐるぐるとそれが続く限り

そう、でも止められやしない、たぶん

 

I wanna know, have you ever seen the rain

I wanna know, have you ever seen the rain

Coming down on a sunny day

 

雨を見たことがあるかい

雨を見たことがあるかい

晴れた日に降る雨を

 

I wanna know, have you ever seen the rain

I wanna know, have you ever seen the rain

Coming down on a sunny day

 

雨を見たことがあるかい

雨を見たことがあるかい

晴れた日に降る雨を

2023-08-11

5ch(旧2ch関係歴史をまとめてみた(改訂版

anond:20230805233212改訂しました。

1996/08 [あやしいわーるど開始]

1997/08 [あめぞう開始]

1999/05 2ch開始

1999/12 東芝クレーマー事件【追加】

2000/03 [したらば開始]

2000/05 西鉄ジャック事件ネオ麦茶

2000/08 オカ板の洒落怖【追加】

2001/08 [ふたばちゃんねる開始]

2001/05 鮫島事件騒動

2001/08 ニュー速台風コロッケ【追加】

2001/08 UNIX板有志による閉鎖回避

2001/10 ニュー速+開設

2001/12 吉野家オフ【追加】

2002/02 テクノ板のムネオハウスムーブメント【追加】

2002/03 タカラギコ猫事件【追加】

2002/04 田代砲TIME誌)【追加】

2002/05 47氏ダウンロード板winny公開【追加】

2002/07 湘南ゴミ拾いオフ開催(背景に日韓ワールドカップ)【追加】

2002/12 紅白フラッシュ合戦開始

2003/06 マトリックスオフ開催

2003/10 [4chan開始]

2004/01 オカ板のきさらぎ駅

2004/06 ニュー速VIP開設

2005/07 毒男板の電車男ドラマ

2005/08 エイベックスのまネコ事件

2005/12 第一なんJ移住VIPなんJ

2006/12 [ニコニコ動画開始]

2007/12 ニュー速嫌儲)開設

2008/06 秋葉原通り魔事件

2009/05 第二次なんJ移住野球ch→なんJ

2012/01 ステマ騒動による嫌儲移民発生【追加】

2012/06 [おーぷん2ちゃんねる開始]

2013/08 ●個人情報流出事件(+自作自演の発覚、削除人騒動)【追加】

2014/02 2ch分裂騒動ジム・ワトキンスひろゆき

2014/04 ひろゆきミラーサイト(?)の2ch.sc開始

2016/05 ひろゆきが「2ch」の商標権取得

2017/10 ワトキンス側が商標問題から2chを5chに改名

2021/08 なんJ一時封鎖・なんG開設

2022/04 専ブラBB2C使えなくなる

2023/07 専ブラJaneStyle(※初代Janeとは別物)の反乱とTalk開始。

2023-08-10

anond:20230809081406

匿名なら誰でもアメリカ人になれるぞ

本当に信じてほしいならWordreferenceかStackexchange辺りで以下の点について複数ネイティブに尋ねてこいよ

going toはwillよりインフォーマルかどうか

some people take being proficient in one language not being in another文法的に正しくわかりやす正式英語かどうか

It's 1,000 years early for a young man like you to f*ck against me.のようにfuck againstをmess withの意味で使うのは一般的かどうか(普通はfuck withを使う)

あと仮にネイティブだったとしてもそれだけで信用に足るわけじゃない

重要なのは大半のネイティブがそういっているという事実

菅総理の件でネイティブを信用できたのは、1人や2人のネイティブではなく全員が同じことを言っていたか

君の意見は大多数のネイティブ辞書記述に真っ向から反対するものからネイティブだったとしても参考にならない

数学科学では大多数が間違っていて1人だけが正しいという状況がありうるが、言語は良くも悪くも多数派絶対正義なわけ

でなければlong time no seeなんていう文法的に間違った表現は使われるはずがない


Wikipediaにもgoing toは比較インフォーマルだと書いてある

The going-to future is relatively informal; in more formal contexts it may be replaced by the will/shall future, or by expressions such as plan(s) to, expect(s) to, is/are expected to, etc.

https://en.wikipedia.org/wiki/Going-to_future

2023-08-03

男性アイマスsideM)終わっちゃったけど、曲は良かったと思う。

終わったのはゲーム展開で、作品自体は続くという話だけど、まあ露出が激減するのは間違いないから終わったという表現も間違いではないと思う。

C.FIRSTも残念だったけど、Legendersもなかなかに割食ってるユニットなのよな。

もったいない

まだ3DMVはYouTubeなどで見られるのでぜひ見てほしい。

一番好きなのはMake New Legend だけど time before time もわるくない。

2023-08-02

英訳 about the #Berbenheimer issue

anond:20230801140703

DeepLで勝手英訳をしてみた。

勝手にごめん。元増田が嫌であれば消す。

Various things that really need to be said about the #Berbenheimer issue

 

In a discussion about the case, someone raised an objection to "someone who was not a party to the incident, who was not from Nagasaki, and who was not from Hiroshima, complaining about it. Seeing that opinion made me aware of my position, so I will say what I must say.

 

I was born in Nagasaki and am a third-generation A-bomb survivor.

I say this because I grew up hearing the stories of the A-bomb damage directly from those who suffered from the atomic bombings.

 

I feel that it is unacceptable for someone like me to speak about the A-bomb damage.

However, there are few A-bomb survivors left, so I will speak up.

 

In Nagasaki, children grow up hearing stories about the atomic bombing. We were made to sit in the gymnasium of an elementary school in the middle of summer, where there was not even an air conditioner or a fan, and for nearly an hour we were made to listen to stories about the atomic bombing. It was hard for me anyway.

 

I think it was even more painful for the elderly people who told the stories. But I don't think an elementary school kid could have imagined that. I, too, have forgotten most of the stories I was told. I can only remember one or two at most.

 

Another thing is that at this time of year, pictures of the victims of the atomic bombing are pasted up in the hallways.

In other parts of the country, these are grotesque images that would cause a fuss from the parents who are always nagging about them.

Recently, even the A-bomb museum has become more gentle in its exhibits, and most of the radical and horrifying exhibits that would have traumatized visitors have been removed.

I don't know how elementary schools now teach about the A-bomb damage. But when I was in elementary school, there were photos on display.

 

There was one photo that I just couldn't face as an elementary school student. It was a picture of Taniguchi Sumiteru(谷口稜曄). If you search for it, you can find it. It is a shocking picture, but I would still like you to see it.

I couldn't pass through the hallway where the photo was displayed, so I always took the long way around to another floor to avoid seeing the photo.

My grandfather was under the bomb and went to the burnt ruins of the bomb to look for his sister. I can understand now that he couldn't turn away or go another way.

There would have been a mountain of people still alive and moaning in the ruins of the burnt ruins. There would have been many more who would have died out in agony.

My grandfather walked for miles and miles, towing a rear wheelchair, through the narrow streets of rubble-strewn Nagasaki in search of his sister.

My grandfather was not a child then. But of course there were elementary school children who did the same thing he did. I am not speculating that there were. There were. I heard the story from him, and I still remember it.

A young brother and sister found their father's corpse in the ruins of the fire and burned it themselves. They didn't have enough wood to burn him alive, and when they saw his brain spilling out, they ran away, and that was the last time they ever saw him again.

 

I can never forget that story I heard when I was a kid, and even now it's painful and painful, my hands are shaking and I'm crying.

 

I keep wondering how that old man who ran away from his father's brain was able to expose to the public the unimaginably horrible trauma, the scar that will never heal, even after all these years.

 

Now I think I understand a little.

 

Why I can't help but talk about my grandfather and the old man now, even as I remember my own trauma.

Because this level of suffering is nothing compared to their words being forgotten.

It's nothing compared to the tremendous suffering that once existed that will be forgotten, like my hands shaking, my heart palpitating, my nose running with vertigo, and so on.

 

So maybe it's the same thing.

 

My grandfather, who went through an unimaginable hell, lived to see his grandchildren born, and met his sister's death in the ruins of the fire.

 

In other words, my grandfather was one of the happiest people in the ruins of the fire.

 

My grandfather and that old man were, after all, just people wading in the depths of hell.

 

I think that the suffering that even people who had experienced unimaginable pain could not imagine was lying like pebbles on the ground in Nagasaki 78 years ago, and no one paid any attention to it.

 

Their suffering, which I can't even imagine, is nothing compared to the countless, unimaginable suffering they witnessed, which they pretend never happened.

 

Memories fade inexorably with each passing human mouth. The memories that those people could never allow to be forgotten are almost forgotten.

 

The tremendous suffering of 78 years ago is mostly gone, never to be recounted.

 

Those who suffered the most from the atomic bombing died rotting in the ruins of the fire without being able to tell anyone about it.

 

Many of those who saw it with their own eyes kept their mouths shut and took it with them to their graves. Most of those who spoke a few words are still in their graves.

 

Compared to the words of the old men, my own words are so light. I would rather keep my mouth shut than speak in such light words.

 

But still, someone has to take over. I realize that even my words, which are so light, are only the top of the voices that are left in this world to carry on the story of the atomic bombing.

 

I know how it feels to think that I am the only one. Still, I hope that you will not shut your mouth. I know that I have closed my mouth because I thought I shouldn't talk about it, and that is the result.

 

Sometimes I almost choose to stop imagining the unimaginable suffering and live my life consuming other people's suffering for fun.

I am writing this while I still have some imagination of the suffering of the old people whose voices, faces, and even words I can no longer recall.

2023-08-01

anond:20230801140703

すまん。勝手翻訳した。拡散はどうするかな。redditかに投稿するのがいいのか?

----

I have seen some posts asking if they should talk about "the case" even though they were not involved in it and were not born in Nagasaki or Hiroshima, and I am a bit aware of it, so I have to say what I have to say. I say this because I was born in Nagasaki, am a third generation atomic bomb survivor, and grew up hearing the stories of those who experienced the atomic bombing firsthand. I know it's a little bit too much for me, but I'm going to say this because there are very few survivors left.

In Nagasaki, children grow up hearing stories about the atomic bombing. They were stuffed into sushi for nearly an hour in the gymnasium of an elementary school in the middle of summer, with no air conditioner or fan, and told stories about the atomic bombing. That was a hard time for me. I think it must have been even harder for the old people who told the stories, but there was no way an elementary school kid could imagine such a thing, and I had forgotten most of the stories I had been told for a long time. I have forgotten most of the stories I was told. I can only remember one or two at most. There is one more hard thing. Every year around this time, a row of grotesque images that would drive the PTA crazy in other areas are prominently displayed in the hallways. These days, I hear that the atomic bomb museum has been bleached out and many of the radical and horrifying exhibits that traumatized visitors have been taken down. I don't know if they are still there, but they were there when I was in elementary school.

There was one photo that I just couldn't face when I was in elementary school. It is a picture of Sumiteru Taniguchi. If you search for it, you can find it. It is a shocking picture, but I would like you to take a look at it. I couldn't pass through the hallway where the photo was posted, so I always took the long way around to another floor of the school building to avoid seeing the photo.

Now I'm thinking that my grandfather, who headed into the burnt ruins to look for his sister, couldn't have turned away or taken a different path. There would have been a mountain of people still alive and moaning, not just pictures, and a mountain more who would have given up at the end of their suffering. He walked for miles and miles, towing his handcart through the narrow streets of rubble-strewn Nagasaki in search of his sister. My grandfather was not a child at the time, but of course there were children who did similar things. Not that there wouldn't have been. There were. I heard the story from him, and I still remember it. A young brother and sister found their father's body in the ruins of a fire and they burned it. They didn't have enough wood to burn his body, and when they saw the raw brain that spilled out, they ran away and that was the last time they ever saw him anymore.

I can never forget the story I heard when I was a kid, and even now it is painful and painful, my hands are shaking and I am crying. I keep wondering how the old man who escaped from that father's brain could have been able to unravel the most horrible trauma imaginable and expose it to the public with scars that will never heal.

Now I think I can understand a little.

The reason I can't help but talk about my grandfather and that old man, even if I have to rehash my own trauma, is that this level of suffering is nothing compared to the fact that their words will be forgotten. My hands shaking, my heart palpitating and dizzy, my nose running with tears, it's nothing compared to the tremendous suffering that was once there and will be forgotten.

So maybe it's the same thing.

My grandfather, who went through an unimaginable hell, lived to see his grandchildren born, and met his sister's death in the ruins of the fire. In other words, my grandfather was one of the happiest people in the ruins of the fire. My grandfather and that old man were, after all, just people wading in the depths of hell. I think that the suffering that even people who had experienced unimaginable pain could not imagine was lying like pebbles in Nagasaki 78 years ago, and no one paid any attention to it. Their suffering, which I can't even imagine, is nothing compared to the countless, tremendous suffering they witnessed, which they pretend never happened.

Memories fade inexorably every time people talk about them. The memories that those people could not allow to be forgotten are now largely forgotten; the tremendous suffering of 78 years ago is mostly gone, never to be recounted again. Those who suffered the most from the atomic bombing died rotting in the ruins of the fire, unable to tell anyone about it. Many of those who saw it with their own eyes kept their mouths shut and took it with them to their graves. Most of those who spoke a few words are now under the grave.

Compared to the words of the old men, my own words are so light. I would rather keep my mouth shut than speak in such light words. But still, someone has to take over. I realize that even my words, which are so light, are only the top of the voices that are left in this world to carry on the story of the atomic bombing. I know how it feels to wonder if someone like myself is allowed to speak about this. Still, I hope that you will not shut your mouth. This is the result of our silence.

Sometimes I almost choose to stop imagining the unimaginable suffering and live my life consuming other people's suffering for the fun of it. I am writing this while I still have some imagination of the suffering of the old people whose voices, faces, and even words I can no longer recall.

Translator's note: The original post in Japanese is a response to a post by a Japanese contributor who wondered if he was qualified to speak out on the subject of the A-bomb when he was not from Hiroshima and Nagasaki, but still spoke out about Barbie and the A-bomb. I translated it here because I think it deserves to be read by the world.

anond:20230801140703

ai翻訳

I must talk about various things regarding the Barbie incident.

I saw a post about it from someone who is neither directly involved nor from Nagasaki or Hiroshima, and it made me realize that there are things I must say.

I was born in Nagasaki and grew up listening to stories from the survivors, being a third-generation survivor myself. Most survivors are no longer with us, so I feel compelled to speak up.

In Nagasaki, kids grow up hearing about the atomic bomb. We were packed like sushi in a gymnasium without air conditioning or even fans during the scorching summer, and we listened to stories about the bomb. It was incredibly tough for me.

I imagine it was even harder for the elderly who spoke about their experiences. As a child, I couldn't fully comprehend their pain, and now, I can hardly remember most of the stories I heard. I can only recall one or two.

Every year during this time, gruesome images that would make PTA elsewhere go crazy were displayed in the hallways. I heard that many of the horrifying exhibits that used to traumatize visitors at the Atomic Bomb Museum have been removed, and the museum has been considerably sanitized. I'm not sure about the current situation, but that's how it was when I was there.

There was one photograph that I could never bear to look at as a child – a picture of Tadashi Taniguchi. You can find it if you search, but it's a shocking image with a viewer discretion warning. Still, I want people to see it.

I couldn't walk down the hallway where that photo was displayed, and I always took a different route, avoiding it so I wouldn't have to see it.

Now, I think of my grandpa who went to the ruins to search for my sister. He couldn't look away or take a different path. The pain must have been unimaginable.

Besides photographs, there were many living people moaning in pain back then, and there must have been even more who succumbed to suffering.

My grandpa walked for miles, pulling a handcart through the debris-laden streets of Nagasaki, searching for my sister.

Even though my grandpa was not a child, I'm sure there were elementary school kids who did similar things. I don't just think they might have been there; they were there. I heard the stories from the people themselves, and I still remember them.

I can't forget the stories I heard as a child, such as the young siblings finding their father's burnt corpse in the ruins and cremating him. They didn't have enough firewood, and their father ended up half-burnt. They ran away after seeing the brain tissue oozing out, and that became their final farewell.

I can never forget those stories I heard as a child, and even now, they still bring pain and suffering, making my hands tremble and tears flow.

I wonder how my grandpa, who ran away from that father's brain tissue, could expose his unimaginable trauma and everlasting scars to the world.

Now, I feel like I understand a little.

Even someone like me, who experienced such unimaginable trauma, has gone through pain that I can't even imagine being compared to being discarded, forgotten, and ignored. Compared to what those people experienced, my suffering means nothing.

My trembling hands and the palpitations and dizziness I experienced are nothing compared to the tremendous pain that many others went through.

Memories fade irreversibly every time they pass through people's lips. The memories that I couldn't bear to be forgotten are almost forgotten now.

The unimaginable pain that existed 78 years ago has mostly disappeared, and we can no longer pass it on.

The people who suffered the most from the atomic bomb perished in the ruins, rotting away without being able to convey it to anyone.

Even those who saw it with their own eyes mostly took the memories with them to their graves. Most of them are now under the tombstones.

Compared to the words of the elderly, my words seem so light. I think that speaking with such light words would be better than keeping silent, as silence has led to this result.

I feel like I might occasionally choose to stop imagining the unimaginable pain and consume the suffering of others in an amusing way to live on.

Before I forget the pain and suffering of those elderly people, whose faces and voices I can no longer recall, I will leave this here.

2023-07-31

anond:20230731171149

2018/07/02 — ウォウオウォッウォーウォッオウオーって感じの洋楽の歌の名前教えてください! 音程は高くなっていってワンダイレクションっぽい感じです。

回答 1 件

·

ベストアンサー:

Good Timeとか… https://youtu.be/H7HmzwI67ec 違ったらごめん

2023-07-22

増田をデコる(再放送)

anond:20230722143755 参考にするです ↓▶︎ ww 🐂 ww

はてな匿名ダイアリーの標準スタイルシートデコるバッドノウハウ

https://anond.hatelabo.jp/20100827202157#

 

   い

   ろ

   と

   り

   ど

   り

   ! 

 

 

バンダイビジュアル 出典元 https://anond.hatelabo.jp/20210710192249#

  🗿 🗿
 E M O T I O N

 

ビッグマスダーはあなたを見ている 出典元 https://anond.hatelabo.jp/20230707225450#

✋(👁👅👁)🤚
BIG MASUDAR IS
WATCHING YOU

 

 

出典元 https://anond.hatelabo.jp/20230915165739#

 

 

 

BIG MASUDAR IS
WATCHING YOU

 

● やで〜

⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜ 
⬜⬜⬜⬜⬜🟨🟨🟨🟨⬜⬜⬜⬜⬜ 
⬜⬜⬜🟨🟨🟨🟨🟨🟨🟨🟨⬜⬜⬜ 
⬜⬜🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨⬜⬜ 
⬜⬜🟨🟨⬛🟨🟨🟨🟨⬛🟨🟨⬜⬜ 
⬜🟨🟨⬛🟨⬛🟨🟨⬛🟨⬛🟨🟨⬜ 
⬜🟨🟨🟧🟨🟨🟨🟨🟨🟨🟧🟨🟨⬜ 
⬜🟨🟧🟥🟧🟨🟨🟨🟨🟧🟥🟧🟨⬜ 
⬜🟨🟨🟧🟨🟨🟨🟨🟨🟨🟧🟨🟨⬜ 
⬜⬜🟨🟨⬛🟨🟨🟨🟨⬛🟨🟨⬜⬜ 
⬜⬜🟨🟨🟨⬛⬛⬛⬛🟨🟨🟨⬜⬜ 
⬜⬜⬜🟨🟨🟨🟨🟨🟨🟨🟨⬜⬜⬜ 
⬜⬜⬜⬜⬜🟨🟨🟨🟨⬜⬜⬜⬜⬜ 
⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜
 
⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜ 
⬜⬜⬜⬜⬜🟨🟨🟨🟨⬜⬜⬜⬜⬜ 
⬜⬜⬜🟨🟨🟨🟨🟨🟨🟨🟨⬜⬜⬜ 
⬜⬜🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨⬜⬜ 
⬜⬜🟨🟨⬛🟨🟨🟨🟨⬛🟨🟨⬜⬜ 
⬜🟨🟨⬛🟨⬛🟨🟨⬛🟨⬛🟨🟨⬜ 
⬜🟨🟨🟧🟨🟨🟨🟨🟨🟨🟧🟨🟨⬜ 
⬜🟨🟧🟥🟧🟨🟨🟨🟨🟧🟥🟧🟨⬜ 
⬜🟨🟨🟧🟨🟨🟨🟨🟨🟨🟧🟨🟨⬜ 
⬜⬜🟨🟨⬛🟨🟨🟨🟨⬛🟨🟨⬜⬜ 
⬜🟧🟧🟨🟨⬛⬛⬛⬛🟨🟨🟧🟧⬜ 
🟧🟧🟧🟨🟧🟨🟨🟨🟨🟧🟨🟧🟧🟧 
🟧🟧🟧🟧🟧🟨🟨🟨🟨🟧🟧🟧🟧🟧 
⬜🟧🟧🟧🟧⬜⬜⬜⬜🟧🟧🟧🟧⬜

 

ピカチュウ

⬜️⬜️⬜️⬜️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜
⬜️⬜️⬜️⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️⬜⬜⬜
⬜️⬜️⬜️⬛️⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️⬛️⬜⬜⬜
⬜️⬜️⬜️⬛️⬛️⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️⬛️⬛️⬜⬜⬜
⬜️⬜️⬜️⬜️⬛️🟨⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜️🟨🟨⬛️⬜⬜⬜⬜
⬜️⬜️⬜️⬜️🟨🟨🟨⬜⬜⬜⬜⬜⬜⬜⬜🟨🟨🟨🟨⬜⬜⬜⬜
⬜️⬜️⬜️⬜️🟨🟨🟨🟨⬜🟨🟨🟨🟨⬜🟨🟨🟨🟨⬜⬜⬜⬜⬜
⬜️⬜️⬜️⬜️⬜🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨⬜⬜⬜⬜⬜⬜
⬜️⬜️⬜️⬜️⬜🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨⬜⬜⬜⬜⬜⬜
⬜️⬜️⬜️⬜️⬜⬜🟨⬛⬜🟨🟨🟨🟨⬛⬜🟨⬜⬜⬜⬜⬜⬜⬜
⬜️⬜️⬜️⬜️⬜🟨🟨⬛⬛🟨🟨🟨🟨⬛⬛🟨🟨⬜⬜⬜⬜⬜⬜
⬜️⬜️⬜️⬜⬜️🟨🟨🟧🟨🟨🟨🟨🟨🟨🟧🟨🟨⬜⬜⬜⬜⬜⬜
⬜️⬜️⬜️⬜🟨🟨🟧🟥🟧🟨 ⬛ 🟨🟧🟥🟧🟨🟨⬜⬜⬜⬜⬜
⬜⬜️⬜️⬜️🟨🟨🟨🟧🟨⬛⬛⬛⬛🟨🟧🟨🟨🟨⬜⬜⬜⬜⬜
⬜⬜⬜️⬜️⬜️🟨🟨🟨⬛⬛🟨🟨⬛⬛🟨🟨🟨⬜⬜⬜⬜⬜⬜
⬜⬜⬜️⬜️⬜️🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨⬜⬜⬜⬜⬜⬜
⬜⬜⬜⬜️⬜️⬜️⬜️🟨🟨🟨🟨🟨🟨🟨🟨⬜⬜⬜⬜⬜⬜⬜⬜
⬜⬜⬜⬜️⬜️⬜⬜️⬜️⬜⬜️🟨🟨⬜️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜
⬜⬜️⬜️⬜⬜️⬜️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜

 

● 他増田(anond:20210821071232) によるマリオ

        🍅🍅🍅🍅🍅🍅👴 
       🍅🍅🍅🍅🍅🍅👴👴 
        🍅🍅🍅🍅🍅🍅🍅🍅🍅🍅🍅 
        💩💩💩👴👴💩👴👴👴 
       💩👴👴💩👴👴💩💩👴👴👴👴 
       💩👴👴💩💩👴👴👴👴👴👴👴👴 
     💩💩👴👴💩💩👴👴👴💩👴👴👴👴 
     💩💩👴👴👴👴👴💩💩💩💩💩💩 
     💩💩💩👴👴👴👴👴💩💩💩💩💩 
       💩💩👴👴👴👴👴👴👴👴 
          💩💩💩👴👴 
          🍅🍅🍅🍅💩💩🍅     👴 
       💩💩💩💩🍅🍅💩💩🍅  👴👴👴 
       💩💩💩💩💩💩🍅🍅💩🍅💩👴👴👴 
     💩💩💩💩💩💩💩🍅🍅💩💩🍅👴👴👴 
     💩💩💩💩💩💩💩🍅🍅💩💩🍅💩👴💩 
     💩💩💩💩💩💩🍅🍅🍅💩💩🍅💩💩 
   💩💩💩💩💩💩🍅🍅🍅👴🍅💩👴💩 
   💩💩💩💩🍅🍅🍅🍅🍅🍅🍅🍅🍅 
   👴👴👴👴👴🍅🍅🍅🍅🍅🍅🍅🍅 
   👴👴👴👴👴🍅🍅🍅🍅🍅🍅🍅🍅   💩 
   👴👴👴👴🍅🍅🍅🍅🍅🍅🍅🍅🍅  💩💩 
     👴👴👴🍅🍅🍅🍅🍅🍅🍅💩💩💩💩💩 
        🍅💩🍅🍅🍅🍅🍅🍅💩💩💩💩💩 
       💩🍅🍅💩🍅🍅🍅🍅🍅💩💩💩💩💩 
   💩💩💩🍅🍅🍅💩💩🍅🍅🍅💩💩💩💩💩 
   💩💩💩💩🍅🍅🍅🍅      💩💩💩💩💩 
   💩💩💩💩💩🍅 
    💩💩💩 

 

出典元 https://www.emojiall.com/en/emoji-art-list/Large-scale

✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨
✨✨✨✨✨✨✨✨✨✨⬛⬛⬛✨✨✨✨✨✨✨ 
✨✨✨✨✨⬛⬛✨✨⬛🟥🟥🟥⬛✨✨✨✨✨✨ 
✨✨✨✨⬛⬜⬜⬛⬛⬛🟥🟥🟥⬜⬛✨✨✨✨✨ 
✨✨✨✨⬛⬜⬜⬜⬜⬜🟥🟥🔴🟥🟥⬛✨✨✨✨ 
✨✨✨⬛⬜⬜⬜⬜⬜⬜⬜⬜🟥🟥🟥⬛✨✨✨✨ 
✨✨✨⬛⬜⬜⬜⬜⬜⬜⬜⬜🟥🟥🟥⬜⬛✨✨✨ 
✨✨⬛⬛⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛⬛⬛✨✨ 
✨✨✨⬛⬜⬛⬜⬜⬜⬜⬜⬛⬜⬜⬜⬜⬛✨✨✨ 
✨✨⬛⬛⬜⬛⬜⬜⬜⬜⬜⬛⬜⬜⬜⬛⬛⬛✨✨ 
✨✨✨⬛⬜⬜⬜⬜⬛⬜⬜⬜⬜⬜⬜⬛✨✨✨✨ 
✨✨✨✨⬛⬜⬜⬜⬜⬜⬜⬜⬜⬛⬛✨✨✨✨✨ 
✨✨✨✨✨⬛⬛⬛⬛⬛⬛⬛⬛✨✨✨✨✨✨✨ 
✨✨✨✨⬛⬜⬛🟥⬜🟥🟥⬜⬜⬛✨✨✨✨✨✨ 
✨✨✨✨✨⬛🟥🟥🟥🟥🟥🟥⬜⬜⬛✨✨✨✨✨ 
✨✨✨✨⬛🟥🟥🟥🟥🟥🟥🟥🟥🟥⬛✨✨✨✨✨ 
✨✨✨✨✨⬛⬜⬜⬛⬜⬜⬜⬛⬛✨✨✨✨✨✨ 
✨✨✨✨✨✨⬛⬛⬛⬛⬛⬛✨✨✨✨✨✨✨✨
✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨
⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛🏻🏻🏻🏻⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛🟦🟦🟦🟦⬛⬛⬛⬛⬛⬛
⬛⬛⬛⬛⬛🟨🟨🟨🟨🟨⬛⬛⬛⬛⬛⬛⬛🏻🏻🏻🏻🏻🏻🏻🏻⬛⬛⬛⬛⬛⬛⬛🟦🟦🟦🟦🟦🟦🟦🟦⬛⬛⬛⬛
⬛⬛⬛🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛⬛⬛⬛🏻🏻🏻🏻🏻🏻🏻🏻🏻🏻⬛⬛⬛⬛⬛🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦⬛⬛⬛
⬛⬛🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛⬛🏻🏻🏻🏻🏻🏻🏻🏻🏻🏻🏻🏻⬛⬛⬛🟦🌫️🌫️🟦🟦🟦🟦🌫️🌫️🟦🟦🟦⬛⬛
⬛⬛🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛⬛🏻🏻🌫️🌫️🏻🏻🏻🏻🌫️🌫️🏻🏻⬛⬛⬛🌫️🌫️🌫️🌫️🟦🟦🌫️🌫️🌫️🌫️🟦🟦⬛⬛
⬛🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛⬛⬛⬛🏻🌫️🌫️🌫️🌫️🏻🏻🌫️🌫️🌫️🌫️🏻⬛⬛⬛🟦🟦🌫️🌫️🟦🟦🟦🟦🌫️🌫️🟦🟦⬛⬛
⬛🟨🟨🟨🟨🟨🟨🟨⬛⬛⬛⬛⬛⬛🏻🏻🌫️🌫️🌫️🌫️🏻🏻🌫️🌫️🌫️🌫️🏻🏻⬛🟦🟦🟦🌫️🌫️🟦🟦🟦🟦🌫️🌫️🟦🟦🟦⬛
⬛🟨🟨🟨🟨⬛⬛⬛⬛⬛⬛⬛⬛⬛🏻🏻🌫️🟦🟦🌫️🏻🏻🌫️🟦🟦🌫️🏻🏻⬛🟦🟦🌫️🌫️🟦🟦🟦🟦🌫️🌫️🟦🟦🟦🟦⬛
⬛🟨🟨🟨🟨🟨🟨🟨⬛⬛⬛⬛⬛⬛🏻🏻🏻🟦🟦🏻🏻🏻🏻🟦🟦🏻🏻🏻⬛🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦⬛
⬛🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛⬛⬛🏻🏻🏻🏻🏻🏻🏻🏻🏻🏻🏻🏻🏻🏻⬛🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦⬛
⬛⬛🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛🏻🏻🏻🏻🏻🏻🏻🏻🏻🏻🏻🏻🏻🏻⬛🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦⬛
⬛⬛🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛🏻🏻🏻🏻🏻🏻🏻🏻🏻🏻🏻🏻🏻🏻⬛🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦🟦⬛
⬛⬛⬛🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛⬛🏻🏻🏻🏻⬛🏻🏻🏻🏻⬛🏻🏻🏻🏻⬛🟦🟦⬛🟦🟦🟦⬛⬛🟦🟦🟦⬛🟦🟦⬛
⬛⬛⬛⬛⬛🟨🟨🟨🟨🟨⬛⬛⬛⬛⬛🏻🏻⬛⬛⬛🏻🏻⬛⬛⬛🏻🏻⬛⬛🟦⬛⬛⬛🟦🟦⬛⬛🟦🟦⬛⬛⬛🟦⬛
⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛
⬜⬛⬛⬛⬜⬜⬜⬜⬜⬜⬜⬜⬛⬛⬛⬜
⬛⬜⬜⬜⬛⬜⬜⬜⬜⬜⬜⬛⬜⬜🌫️⬛
⬛⬜⬜⬜⬛⬜⬜⬜⬜⬜⬜⬛⬜⬜🌫️⬛
⬛⬜⬜⬜⬜⬛⬜⬜⬜⬜⬛⬜⬜🌫️🌫️⬛
⬜⬛⬜⬜⬜⬛⬜⬜⬜⬜⬛⬜🌫️🌫️⬛⬜
⬜⬜⬛⬜⬜⬜⬛⬜⬜⬛⬜🌫️🌫️⬛⬜⬜
⬜⬛🟥⬛⬜⬜⬜⬛⬛⬜🌫️🌫️⬛🟥⬛⬜
⬜⬛🟥🟥⬛⬜⬜⬜⬜🌫️🌫️⬛🟥🌫️⬛⬜
⬛🟥⬜🟥🟥⬛⬜⬜🌫️🌫️⬛🟥🟥🟥🟥⬛
⬛🟥🟥🟥🟥🟥⬛⬛⬛⬛🟥🟥🟥🟥🟥⬛
⬛🟥🟥🟥🟥🟥⬜⬜🟥🟥🟥🟥🟥🟥🟥⬛
⬜⬛🟥🟥🟥🟥⬜⬜🟥🟥🟥🌫️🌫️🟥⬛⬜
⬜⬛⬜⬜🟥🟥🟥🟥🟥🟥🟥🌫️🌫️🟥⬛⬜
⬜⬜⬛⬛🟥🟥🟥🟥🟥🟥🟥🟥⬛⬛⬜⬜
⬜⬜⬜⬜⬛⬛⬛⬛⬛⬛⬛⬛⬜⬜⬜⬜
⬜⬛⬛⬜⬜⬜⬛⬛⬛⬛⬜⬜⬜⬛⬛⬜
⬛🟩🟩⬛⬛⬜⬛🟩⬛⬛⬜⬛⬛🟩⬛⬛
⬛🟩⬛🟩🟩⬛⬛🟩⬛⬛⬛🟩🟩⬛⬛⬛
⬛🟩⬛⬛⬛🟩⬛🟩⬛⬛🟩⬛⬛⬛⬛⬛
⬛🟩⬛⬛⬛🟩⬛🟩⬛⬛🟩⬛⬛⬛⬛⬛
⬜⬛⬛⬛⬛⬛⬛🟩⬛⬛⬛⬛⬛⬛⬛⬜
⬜⬜⬛⬛⬛⬛⬛🟩⬛⬛⬛⬛⬛⬛⬜⬜
⬜⬜⬜⬜⬛⬛⬛🟩⬛⬛⬛⬛⬜⬜⬜⬜
⬜⬛⬛⬜⬜⬜⬛🟩⬛⬛⬜⬜⬜⬛⬛⬜
⬛🟩🟩⬛⬛⬛⬛🟩⬛⬛⬜⬛⬛🟩⬛⬛
⬛🟩⬛🟩🟩⬛⬛🟩⬛⬛⬛🟩🟩⬛⬛⬛
⬛🟩⬛⬛⬛⬛⬛🟩⬛⬛🟩⬛⬛⬛⬛⬛
⬛🟩⬛⬛⬛🟩⬛🟩⬛⬛🟩⬛⬛⬛⬛⬛
⬜⬛⬛⬛⬛⬛⬛🟩⬛⬛⬛⬛⬛⬛⬛⬜
⬜⬜⬛⬛⬛⬛⬛🟩⬛⬛⬛⬛⬛⬛⬜⬜
⬜⬜⬜⬜⬛⬛⬛🟩⬛⬛⬛⬛⬜⬜⬜⬜
⬜⬜⬜⬜⬜⬜⬜⬛⬛⬜⬜⬜⬜⬜⬜⬜

 

ねこです

🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛️🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛️🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨
🟨🟨🟨🟨🟨🟨🟨🟨⬛️⬜⬛️🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛️⬜⬛️🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨
🟨🟨🟨🟨🟨🟨🟨⬛️⬜⬜⬜⬛️🟨🟨🟨🟨🟨🟨🟨⬛️⬜⬜⬜⬛️🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨
🟨🟨🟨🟨🟨🟨⬛️⬜⬜⬜⬜⬜⬛️🟨🟨🟨🟨🟨⬛️⬜⬜⬜⬜⬜⬛️🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨
🟨🟨🟨🟨🟨⬛️⬜⬜⬜⬜⬜⬜⬜⬛️⬛️⬛️⬛️⬛️⬜⬜⬜⬜⬜⬜⬜⬛️🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨
🟨🟨🟨🟨🟨⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨
🟨🟨🟨🟨⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨
🟨🟨🟨⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨
🟨🟨🟨⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨
🟨🟨⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨
🟨🟨⬛️⬜⬜⬜⬜⬜⬜⬛️⬛️⬛️⬛️⬜⬜⬜⬜⬜⬛️⬛️⬛️⬛️⬜⬜⬜⬜⬜⬜⬜⬛️🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨
🟨🟨⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨
🟨🟨⬛️⬜⬜⬜⬜⬜🟧⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜🟧⬜⬜⬜⬜⬜⬜⬛️🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨
🟨🟨⬛️⬜⬜⬜⬜🟧🟥🟧⬜⬜⬜⬜⬛️⬛️⬛️⬜⬜⬜⬜🟧🟥🟧⬜⬜⬜⬜⬜⬛️🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨
🟨🟨⬛️⬜⬜⬜⬜⬜🟧⬜⬜⬜⬜⬜⬜⬛️⬜⬜⬜⬜⬜⬜🟧⬜⬜⬜⬜⬜⬜⬛️🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨
🟨🟨🟨⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️⬜⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️⬛️🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨
🟨🟨🟨⬛️⬜⬜⬜⬜⬛️⬜⬜⬜⬜⬛️⬜⬜⬜⬛️⬜⬜⬜⬜⬛️⬜⬜⬜⬜⬜⬛️⬜⬜⬛️🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨
🟨🟨🟨⬛️⬛️⬜⬜⬜⬜⬛️⬛️⬛️⬛️⬜⬜⬜⬜⬜⬛️⬛️⬛️⬛️⬜⬜⬜⬜⬜⬛️⬜⬜⬜⬜⬛️⬛️🟨🟨🟨🟨🟨🟨🟨🟨
🟨🟨⬛️⬜⬜⬛️⬜⬜⬜⬜⬛️⬛️⬜⬜⬜⬜⬜⬜⬜⬛️⬛️⬜⬜⬜⬜⬜⬛️⬜⬜⬜⬜⬜⬜⬜⬛️🟨🟨🟨🟨🟨🟨🟨
🟨🟨🟨⬛️⬜⬛️⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️⬛️🟨🟨🟨🟨🟨
🟨🟨🟨⬛️⬜⬜⬜⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️🟨🟨🟨🟨
🟨🟨🟨🟨⬛️⬜⬜⬜⬛️⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️🟨🟨🟨🟨
🟨🟨🟨🟨⬛️⬜⬜⬜⬜⬜⬛️⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬛️⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️🟨🟨🟨
🟨🟨🟨🟨⬛️⬜⬜⬜⬜⬜⬜⬜⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️🟨🟨🟨
🟨🟨🟨🟨⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️🟨🟨🟨
🟨🟨🟨🟨🟨⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️🟨🟨🟨
🟨🟨🟨🟨🟨🟨⬛️⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬜⬛️🟨🟨🟨
🟨🟨🟨🟨🟨🟨🟨⬛️⬜⬜⬜⬜⬛️⬜⬜⬜⬜⬜⬜⬜⬛️⬜⬜⬜⬜⬜⬛️⬜⬜⬜⬜⬜⬛️⬜⬜⬜⬜⬜⬛️🟨🟨🟨
🟨🟨🟨🟨🟨🟨🟨⬛️⬜⬜⬜⬜⬜⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬜⬜⬜⬜⬜⬛️⬛️⬛️⬛️⬛️⬛️⬛️⬜⬜⬜⬜⬜⬛️🟨🟨🟨🟨
🟨🟨🟨🟨🟨🟨🟨🟨⬛️⬜⬜⬜⬜⬛️🟨🟨🟨🟨🟨⬛️⬜⬜⬜⬜⬛️🟨🟨🟨🟨🟨🟨⬛️⬜⬜⬜⬜⬛️🟨🟨🟨🟨🟨
🟨🟨🟨🟨🟨🟨🟨🟨⬛️⬜⬜⬜⬜⬛️🟨🟨🟨🟨🟨⬛️⬜⬜⬜⬜⬛️🟨🟨🟨🟨🟨🟨⬛️⬜⬜⬜⬛️🟨🟨🟨🟨🟨🟨
🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛️⬜⬜⬛️🟨🟨🟨🟨🟨🟨🟨⬛️⬜⬜⬛️🟨🟨🟨🟨🟨🟨⬛️⬜⬜⬜⬛️🟨🟨🟨🟨🟨🟨🟨
🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛️⬛️🟨🟨🟨🟨🟨🟨🟨🟨🟨⬛️⬛️🟨🟨🟨🟨🟨🟨🟨⬛️⬛️⬛️⬛️🟨🟨🟨🟨🟨🟨🟨🟨
🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨🟨

 

SCP-040-JPは██県の旧██村に放置されていた、井戸小屋です。

特筆すべきはその異常性で、小屋を覗くと対象は「ねこがいた」と動揺します。ねこです。ねこはそこにいました。ずっとまえからそこにいたのに、やっときづいたのですね。

この影響を受けるとイエネコに対する認識が歪められ、画像のような、毛がなく、人間のような目を持った生物に見えてしまますしかも、どの方向からでもこちらを見ているように見えるようです。ねこはいます

更にこの影響を受けた中で対象は常にねこが暗闇にいるように感じ、見張られているような錯覚を覚え、ねこはいます

この異常性は直接的に視認しなければなりませんが、ねこはいます

ねこです。また、影響を受けた対象ねこがいると周りに伝えようとし、これを理解した場合上記と同じ症状を被ります。どのようなワードトリガーとなるのかは不明ですが、ねこはいます

ねこはいますが、その情報を伝えるのには、会話、画像映像、音声、どれでも感染します。ねこはいますねこ情報を伝えようとする試みは極めて自然ものを装うため、見抜くことは困難です。

 

 

レインボーおちんぽ 出典元 https://anond.hatelabo.jp/20201011125938#

 

  

使用するフォントを変更する

Okay, okay, I'll try😊

 

🫠 🫥 😶‍🌫️ 🦠 

 

 

 

The sound of the bells of Gion Monastery echo with the ever – changing nature of all things. The fading hues on the blossoms of the sala tree signify that all that flourishes must fade. The arrogant do not prevail for long, nothing but a spring night’s dream. The mighty in time succumb, dust before the wind.

 

 

ネコ和解する

 2022-07-22

 

増田デコる(再放送)

 

 

 

特殊記号

ꕥ 𖤣𖥧𖥣𖡡𖥧𖤣 𖦥 𓂃‪𓃱𓈒𓏸 𖦥𖤣𖥧𖥣𖡡𖥧𖤣 ꕥ

𓄿 𓅹 𓅸 𓅿 ‪𓅞 𓅺 𓅟 𓅯 𓎤𓅮

𓃰 𓃒 𓃟 𓃱 𓃗 𓃵 𓃲 𓃜 𓃘 𓃙 𓃥 𓃦 𓃠

𓇼 𓆡 𓆉 𓆛 𓆛𓆜𓆝𓆞𓆟 ‪𓆝

&を半角で入力する →  &

&#60;と&#62;半角で入力する → <>

  

●キマシ

🗼

 
                 i
                 ∥
 ┏┓  ┏━━┓┏━┓┏┓  .曲.  .┏━━┓┏━━┓             ┏┓┏┓
┏┛┗┓ ┗━┓┃┗━┛┃┃  . |x|.   .┃┏┓┃┃┏┓┃             ┃┃┃┃
┗┓┏┛   ┃┃┏━┓┃┃   |.X.|   .┃┗┛┃┗┛┃┃┏━━━━━━┓┃┃┃┃
┏┛┗┓ ┏┓┃┃┗━┛┃┃ 冊(゚∀゚)冊 ┃┏┓┃ . ┃┃┃.      ┃┃┃┃┃
┗┓┏┛ ┃┗┛┃  ┏┛┃   |.X.|   .┗┛┃┃   ┃┃┗..━━━━━.┛┗┛┗┛
 ┃┃  ┗┓┏┛┏━┛┏┛  /.X∧,,   .…┃┃  ┏┛┃        ..┏┓┏┓
 ┗┛   ┗┛ ┗━━┛  //冂ヽ\...  ┗┛ …┗━┛         .┗┛┗┛
 

2023-07-20

普段全然ゲームしないんだが、脳トレとしてスーパーマリオ64をやりたいと思った(別にオデッセイとかでも良いと思う)

でも、その為だけにswitch買うの嫌

自分は偶にsteamゲーム買ってちょっとだけやって直ぐやめるってのを習慣としているんだが

steamで買えるゲームマリオ64みたいな3Dアクションゲームで良いものは無いだろうか?

勿論ネットで調べてみたが「A Hat In Time」を推す声が多いかな?

でも。なんというか、キャラがあまり…惹かれない感じがする

やりやすくて面白そうではあるんだがね

他に「あまり難しすぎないでキャラに魅力があって面白3Dアクションゲーム」は無いだろうか

お薦めがあれば教えてください

2023-07-07

山下達郎小杉理宇造近藤真彦中森明菜についての簡単な年表

1975.4.25 シュガー・ベイブが「DOWN TOWN ⁄ いつも通り」 でエレックレコードからレコードデビュー

1976.4.1 シュガー・ベイブ解散

1976.12.25 山下達郎小杉理宇造の尽力によりアルバムCIRCUS TOWN」でRCA ⁄ RVCからソロデビュー

https://www.musicman.co.jp/interview/19480

1980.12.12 近藤真彦が「スニーカーぶる~す」でRVCからレコードデビュー

1981.9.30 近藤真彦シングルギンギラギンにさりげなく」発売 B面「恋のNON STOPツーリングロード」の作曲編曲山下達郎

1982.2 小杉理宇造がRVCから独立 アルファ・ムーン設立 山下達郎移籍

1982.5.1 中森明菜が「スローモーション」でワーナー・パイオニアからレコードデビュー 

1982.6.30 近藤真彦シングルハイティーン・ブギ」発売 A面「ハイティーン・ブギB面Momoko」共に作曲編曲山下達郎

1984.9.13 近藤真彦シングル永遠に秘密さ」発売 A面「永遠に秘密さ」の作曲編曲山下達郎B面One more time」の作曲山下達郎 編曲山下達郎馬飼野康二

1984.10.24 近藤真彦との交際を噂された中森明菜が「ザ・トップテン」の公開生放送近藤真彦ファンから帰れコールを受ける

https://m.bilibili.com/video/BV11K4y1E7rm

1985.1.26 近藤真彦中森明菜主演映画「愛・旅立ち」公開

1986.12.24 中森明菜アルバムCRIMSON」発売 10曲中「駅」「告白」「OH NO, OH YES!」「赤のエナメル」「ミック・ジャガーに微笑みを」の5曲が竹内まりや作詞作曲

1987.4.29 中森明菜が「夜のヒットスタジオ」で「OH NO, OH YES!」を歌う

https://youtube.com/watch?v=3srAJ5bXpRk

1987.8.12 竹内まりやアルバム「REQUEST」発売 中森明菜への提供曲「OH NO, OH YES!」「駅」のセルフカバーも収録

1987.10.17 中森明菜東京厚生年金会館コンサート 「ミック・ジャガーに微笑みを」を歌う

https://youtube.com/watch?v=tippJz4YGe4

1989.7.11 中森明菜近藤真彦の部屋で自殺未遂

1989.12.28 メリー喜多川の強い勧めで中森明菜デビュー以来の所属事務所研音から独立 小杉理宇造と新会社コレクション設立 しか小杉理宇造はすぐにいなくなりコレクション機能不全に陥る

1989.12.31 金屏風会見

https://youtube.com/watch?v=AzEHq7Pb2f4&pp=ygUP6YeR5bGP6aKo5Lya6KaL

1990 アルファ・ムーンワーナー・パイオニア傘下になる

1991 ワーナーパイオニアワーナーミュージック・ジャパンに改称

1992 中森明菜ワーナーミュージック・ジャパンとの契約を解消

1993.3.31 中森明菜が「夜のヒットスタジオ RETURNS SPECIAL」で「駅」を歌う

https://youtube.com/watch?v=2AnW6M3b-9g&pp=ygUS5Lit5qOu5piO6I-c44CA6aeF

1994.7.25 竹内まりやベストアルバム「Impressions」発売 山下達郎ライナーノーツ執筆 「駅」のライナーノーツ全文

「87年のアルバムリクエスト」のコンセプトのひとつに、「他人に書いた作品自分で歌う」というのがあり、「けんかをやめて」「元気を出して」などと同じく、この作品も、もともとは、さる有名アイドルシンガーのために書かれたものである

まりやは当初、この曲を自分で歌うことに難色を示していた。マイナー・メロの「歌謡曲的」なアプローチからというのがその理由だったのだが、歌謡曲とそれ程縁のない(?)私の耳には、この曲はとどちらかといえばイタリア風に聞こえたし、また、そのアイドルシンガーがこの曲に対して示した解釈のひどさに、かなり憤慨していたこともあって、ぜひとも自分の手でアレンジしてみたいという誘惑にかられ、彼女を説得してレコーディングまでこぎつけた。

その後このヴァージョン有線放送で1位になるなど、今では竹内まりや代表作のひとつとなっている。メデタシ、メデタシ」

1995 小杉理宇造ワーナーミュージック・ジャパン代表取締役会長就任

2003.11 小杉理宇造ジャニーズ・エンタテイメント代表取締役社長就任

2013.11.28 竹内まりや×クリス松村「Mariya's Songbook」対談

https://natalie.mu/music/pp/takeuchimariya02

クリス ここまでは若くてかわいらしいアイドルにピッタリな曲が多いんですけど、「駅」とかはまた違いますよね。

竹内 「駅」は確かに違いますね。頼まれときから明菜ちゃんには濡れた哀愁メロディの曲を絶対書きたいと勝手に思っていて。そのマイナーメロディ雰囲気に合わせて、昔の恋人を駅で偶然見かけてすれ違う……というストーリー彼女写真を見ながら組み立てていきましたね。歌詞自体は当時の私が歌ってもそんなに違和感のないものだったと思いますけど、マイナーコードであれだけベタ歌謡曲メロディを書いたことはなかったんで、それ自体面白かった。

クリス 明菜さんだから浮かんだ曲。

竹内 本当にそうなんですよ。明菜ちゃんの持ってる佇まいやイメージがそういう発想をくれたと思ってます自分で歌う曲じゃないからこそ、ああい哀愁メロディにしたわけですから明菜ちゃんという素材があってこその曲だったと思いますよ」

2023-07-02

アメリカ最高裁判所大学入学決定に人種を利用する判決アファーマティブ・アクション拒否

この判決は非常に重要もので、朝日新聞とかが馬鹿みたいに批判しているけど、当然です。

実力もないのに人種だけで大学に入れてしまう。

これ、反差別界隈とかジェンダー平等も同じね。実力ではなくマイノリティとか女性というだけで就職できたり、学者になれたり、マスコミ記者になれる。

そうすると、本来はいるはずだった人がはじかれます

結果的には国家の損失です。

現に、暇空茜は報道しない。ジャニーズ犯罪者と決めつけて報道する極悪女存在します。

まともな女性杉田水脈程度です。

次に批判人種理論というトンデモ理論蔓延しています

アメリカ文系社会学者は全員カスと言っていい。

https://www.foxnews.com/politics/supreme-court-rejects-affirmative-action-ruling-universities-using-race-admissions-decisions

最高裁判所大学入学決定に人種を利用する判決アファーマティブ・アクション拒否

6-3のアファーマティブ・アクション意見で、最高裁判所大学入学の要素として人種を利用することは憲法修正第14条に違反するとの判決を下した。

アンダースハグトロム、 ブリアナハーリービル・ミアーズ、 シャノン・ブリーム、 ヘイリー・チーシン| 著 フォックス・ニュース

SCOTUS積極的差別是正措置判決判事の間で「激化」:シャノン・ブリーム

 主任法務記者シャノン・ブリームが、アファーマティブ・アクションに対する最高裁判所判決を解き明かします。

 米国最高裁判所木曜日アファーマティブ・アクションに関する重要判決を下し、大学入学の要素として人種を利用することは憲法修正第14条の平等保護条項違反するとして却下した。

 ジョン・ロバーツ首席判事は6対3の判決で、多数派意見の中で、「例えば、人種差別を克服した学生への利益は、その学生勇気と決意と結び付けられなければならない」と述べた。

 「あるいは、その伝統文化リーダーシップ役割を引き受けたり、特定目標を達成したりする動機となった学生への利益は、その学生大学に貢献する独自能力と結び付けられている必要があります。言い換えれば、学生は以下の基準に基づいて扱われなければなりません」人種に基づくものではなく、個人としての経験だ」と意見書には書かれている。

 「多くの大学は、あまりにも長い間、その逆のことを行ってきました。そしてそうすることで、個人アイデンティティ試金石は、乗り越えた課題、培ったスキル、学んだ教訓ではなく、肌の色であるという誤った結論を下してしまいました。歴史はその選択容認していない」と意見書は述べている。

 ロバーツ判事にはクラレンス・トーマス判事サミュエル・アリト判事ニール・ゴーサッチ判事、ブレット・カバノー判事エイミー・コニーバレット判事も加わった。

 ソニア・ソトマイヨール判事が主な反対意見を書き、エレナ・ケーガン判事と、ハーバード大学監督委員会での以前の役割理由ハーバード大学訴訟から身を引いたケタンジ・ブラウンジャクソン判事も一部参加した。

 バイデン大統領木曜日午後12時30分にこの決定についてコメントを発表する予定だ。

 判事らは、私立ハーバード大学公立ノースカロライナ大学教室の定員をどのように決定するかについて、2つの別々の法的異議を申し立てた。

 これらの有名な学校は、自分たち基準には、将来のリーダーのために堅牢知的多様性のあるキャンパスを推進するという、裁判所によって数十年にわたって支持されてきた、より大きな社会的目標があると主張している。

 しかし、アジア系アメリカ人学生連合は、この基準は「人種ペナルティー」で差別されており、多くの黒人ヒスパニック系の学生よりも選択的に高い基準を課していると主張している。

 学生活動団体「Students for Fair Admissions」は、ハーバード大学ノースカロライナ大学の両大学に対して訴訟を起こした。同団体は当初、2014年公民権法第6編に違反したとしてハーバード大学告訴したが、同法は「連邦資金やその他の連邦財政援助を受けるプログラム活動において、人種、肌の色、国籍に基づく差別禁止する」と定めている。

 ハーバード大学に対する訴状では、ハーバード大学慣行アジア系アメリカ人学生不利益を与え、人種中立的慣行採用できなかったと主張している。ノースカロライナ州の訴訟では、人種に基づいていない慣行学校学力を低下させたり、キャンパス多様性から得られる利益に悪影響を及ぼしたりすることを示さずに、大学非人種に基づく慣行使用拒否できるかどうかという問題が提起された。

 判事ハーバード大学、UNC最高裁判所アファーマティブ・アクションをめぐる議論を審理

 米国第一巡回控訴裁判所は、地方裁判所裁判員裁判の結果を支持し、ハーバード大学に有利な判決を下していた。地方裁判所は、ハーバード大学に対する証拠は決定的ではなく、「観察された差別」は少数のアジア系アメリカ人学生にのみ影響を与えたと述べた。SFFAはこの訴訟において資格を有さないとの判決を下した。

 UNCの訴訟では、連邦地方裁判所は同校の入学慣行は厳しい監視に耐えたとして、同校に有利な判決を下した。

 ロバーツ氏は多数派意見の中で、ハーバード大学とUNCの入学プログラムはいずれも「人種の利用を正当化する十分に焦点を絞った測定可能目標が欠けており、人種否定的な形で採用せざるを得ず、人種的な固定観念を伴い、有意義な最終目標を欠いている」と述べた。

 「我々は入学プログラムがそのような形で機能することをこれまで一度も許可したことがないし、今日もそうするつもりはない」と同氏は述べた。

 クラレンス・トーマス判事は多数意見同意しながらも、自身の考えについては別の同意書を書いた。

 同氏は、「今回の決定は、大学入学政策ありのままに見るものだ。入学するクラス特定人種を確実に混入させるよう設計された、舵のない人種に基づく優先政策である。これらの政策は、色盲憲法国家平等に反するものである」と述べた。端的に言えば、それらは明白に、そして大胆に憲法違反である。」

 「私は、私の人種差別に苦しむすべての人々に降りかかった社会的経済的惨状を痛感しているが、この国が独立宣言憲法で明確に宣言された原則を遵守するよう、私は絶え間ない希望を抱いている。米国:すべての人間平等に生まれ平等国民であり、法の下で平等に扱われなければならない」とトーマスは書いた。

 アファーマティブ・アクション訴訟は、ジョン・ロバーツ首席判事サミュエル・アリト判事ハーバード大学弁護士セスワックスマン氏を激しく非難するなど、この期間に最高裁判所建物内で行われた中で最も活発な法廷討論の一つを引き起こした。

 アリト氏はワックスマン氏に、アジア系アメリカ人学生が他の人種に比べて出願書類個人スコアがいつも低いのはなぜかと尋ねた。ワックスマン判事質問を迂回して話したため、アリトは弁護士に不満を抱いた。

 アリト氏は「アジア人に与えられる個人スコアの差についてはまだ説明を聞いていない」と語った。

 その後、ワックスマンロバーツと緊迫したやりとりを繰り広げた。判事は、ロバーツによれば人種は何らかの影響を与えるに違いないが、そうでなければ人種考慮に入れられないのに、なぜワックスマン入学決定の要素として人種を軽視したのかを尋ねた。

 ワックスマン氏は、「ハーバードラドクリフ管弦楽団オーボエ奏者必要としている年に…オーボエ奏者であること」と同じように、「一部の優秀な応募者にとって」人種は決定的なものだったと認めた。

 「私たちオーボエ奏者を巡って内戦を戦ったわけではない」とロバーツ氏は言い返した。「私たち人種差別をなくすために内戦を戦ったのです。」

 オコナー率いる法廷多数派は、少数派のロースクール志願者に対するミシガン大学アファーマティブ・アクション政策を支持しながら、次のように警告した:「我々は、今から25年後には、利益を促進するために人種的嗜好を利用する必要はなくなると予想している」本日承認されました。」

 19 年が経ち、6 対 3 の保守派多数派現在大学競争入学プロセスの一部として人種を利用することを阻止しています

 FOXニュースタイラー・オルソン氏がこのレポート寄稿した。

コメントから

Makes sense. So, does this also mean "AA" in employment, handouts, government loans, and other areas of life are also unconstitutional? (And yes, corporate America says there are no race-based quotas for hiring in large meetings but then set up individual manager &amp; HR meetings where hiring is analyzed for the manager's team and managers are told to focus on certain groups based on race.)

理にかなっています。 では、これは、雇用給付金政府融資、その他の生活分野における「AA」も憲法違反ということになるのでしょうか? (そう、アメリカ企業は、大規模な会議では採用人種に基づくノルマはないと言っているが、個別マネージャーと人事会議を設定し、そこでマネージャーのチームの採用分析され、マネージャー人種に基づいて特定グループに焦点を当てるように指示されている。)

これに対するトップリプライが次

That's not true. There are plenty of examples on Linkedin and other public forums of corporations hiring for a specific race

それは真実ではない。 Linkedin やその他の公開フォーラムには、特定人種向けに企業雇用する例がたくさんあります

これジョークね。

This is a fantastically accurate ruling. It is about time the court affirms what is basic common sense. Judging anyone (positively or negatively) based on race IS racist. The simple statement "we want to make sure we have diversity", goes in with the racist assumption that race defines the diversity of who you are. Every individual is diverse. Their life experience is unique. There are some shared experiences for individuals of certain similar upbringing, but the assumption that a certain "race" brings "diversity" IS racist.

これは驚くほど正確な判決だ。 そろそろ法廷基本的常識肯定する時期が来ている。 人種に基づいて誰かを(肯定的または否定的に)判断することは人種差別主義者です。 「私たち多様性を確保したいと考えています」という単純な発言は、人種によって人間多様性が決まるという人種差別的な思い込みと結びついています。 すべての個人は多様です。 彼らの人生経験ユニークです。 特定の似たような生い立ちを持った個人の間で共有される経験はいくつかありますが、特定の「人種」が「多様性」をもたらすという仮定人種差別的です。

何でもかんでも差別にするバカげたロジックうんざりしているわけです。

ログイン ユーザー登録
ようこそ ゲスト さん