はてなキーワード: hateとは
自動で安価をつけて返信するプログラムでもこんなに長く複雑になる(一部抜粋)
/**************************************
以下のCSV_DIR, FILE_PATHS, SETTINGSを書き換えてね。 <h3>o- *************************************/</h3>
//CSVファイルが置かれてるディレクトリのパス。投稿前にエラー出たら大体ここの設定ミス。 例:"C:\\Users\\sakuraimasahiro\\Documents\\iMacros\\Macros\\rentou\\";
'C:\\Users\\USER\\Desktop\\iMacros\\Macros\\rentou\\';
//ファイルのパス。CSVは絶対パスで、拡張子も必要。iimは相対パスでよく、拡張子不要。
const FILE_PATHS = {
textCsv: CSV_DIR + 'textNoAnker.csv',
//レス用投稿文が書かれたCSV。通常とレス用で分けないなら同じファイルを使えばいい。
replyTextCsv: CSV_DIR + 'textReply.csv',
};
baseWaitTime: 5,
//baseWaitTime+0~waitTimeRange(ランダム)だけ待つ
waitTimeRange: 5,
//連投しすぎだと忠告された場合に処理を一時停止させる時間(秒)
waitTimeForAvoidingPunishment: 60 * 30,
//メール
mail: 'sage',
//名前設定
name: '',
//以下、偽装ワッチョイ設定。浪人でワッチョイを非表示にしてるときだけtrueにしてね。
//妙なニックネーム(ワッチョイ、アウアウウーなど)をランダムで決めて付加するかどうか。true=付加する。false=付加しない。
//妙なニックネームの後に付く8桁の文字列をランダムで決めて付加するかどうか。
},
//アンカー無し投稿をするならtrue。しないならfalse。noAnkerPostかreplyPostのどちらかはtrueにすること(両方trueでもOK)。
//アンカー付き投稿(返信)をするならtrue。しないならfalse。もしnoAnkerPostとreplyPostの両方がtrueの場合、投稿は返信が優先され、返信対象が見つからなくなったらアンカー無し投稿をする。
//最初に取得するアンカー無し投稿文CSVファイルの行番号。もし返信用と同じCSVファイルを使うなら-1と入力。
noAnkerPostTextCsvStartRow: 1,
//最初に取得する返信用投稿文CSVファイルの行番号。もしアンカー無しと同じCSVファイルを使うなら-1と入力。
//テキストCSV/返信用テキストCSVの取得行が最終行に達したら最初の行まで戻るかどうか。true=戻る。false=マクロ終了。
//返信する場合、これより小さなレス番には返信しない。返信を投稿すると、この数値は前回の返信先のレス番に更新される。
minAnker: 895,
//返信する場合、名前に以下の文字列を含む投稿にアンカーをつけて返信する(ワッチョイやIPなど名前フィールドにあるものならなんでも可)。配列で複数指定可能。指定無しなら空配列([])。filterNamesとfilterNamesNotIncluded共に無指定ならレス番1から順に返信していく(minAnkerが設定されてればそこから順に)。以下のfilter系は全て併用可能。
//↑とは逆に、名前に以下の文字列を含まない投稿にアンカーをつけて返信する。↑と併用も可能。
//返信する場合、本文に以下の文字列を含む投稿にアンカーをつけて返信する。
filterText: ['自演かな', '自演わらわら', 'スクリプト使うの', '安価ガバ', '>>660', '自演で擁護', '最後' ,'あいうえお', 'かきくけこ', 'さしすせそ', 'なにぬねの', 'はひふへほ', 'まみむめも', 'やいゆえよ', 'やゆよ', 'らりるれろ', 'わいうえを', 'わをん', 'わいうえをん'],
},
//自分のIPアドレスの確認。VPNとかでIPを変更してマクロを動かしてるとき、突然VPNが作動しなくなってIPが元に戻ったときにマクロを止めるためのもの。
//以下の文字列が自分の現在のIPアドレスに含まれている場合、マクロを一時停止する。基本的に自分の本当のIPアドレスを入力。
},
//浪人設定。最後に動作を確認したのは5年くらい前で、今も同じように動作するかは、浪人を持ってないから確認できずわからない。
//浪人にログインしてるかどうかをチェックするかどうか。trueならする。falseならしない。trueにしていてもし浪人にログインしていないことを確認したらログインしにいく。
password: '1234',
},
};
/**************************************
設定箇所終わり。
https://info.5ch.net/index.php/%E6%9B%B8%E3%81%8D%E8%BE%BC%E3%82%81%E3%81%AA%E3%81%84%E6%99%82%E3%81%AE%E6%97%A9%E8%A6%8B%E8%A1%A8 <h3>o- *************************************/</h3>
/**************************************
・NULL演算子(??)は使えない。論理積(&&)は使える。
・オブジェクトの分割代入はできない。
・importはできない。 <h3>o- *************************************/</h3>
/**************************************
関数 <h3>o- *************************************/</h3>
/**
* ここから始まる。
*/
checkSettings();
var _TextCsvCursors = new TextCsvCursors(
SETTINGS.postSettings.noAnkerPostTextCsvStartRow > 0
? SETTINGS.postSettings.noAnkerPostTextCsvStartRow - 1
: SETTINGS.postSettings.noAnkerPostTextCsvStartRow,
SETTINGS.postSettings.textCsvLoop,
),
SETTINGS.postSettings.replyPostTextCsvStartRow > 0
? SETTINGS.postSettings.replyPostTextCsvStartRow - 1
: SETTINGS.postSettings.replyPostTextCsvStartRow,
SETTINGS.postSettings.textCsvLoop,
),
);
var _LoopStatuses = new LoopStatuses(0, SETTINGS.postSettings.minAnker);
const _MyPosterName = new MyPosterName({
name: SETTINGS.nameSettings.name,
});
const _ThreadUrl = openPromptThreadUrl();
//ループ
while (true) {
SETTINGS.ipSettings.checkIp && checkCurrentIpNotTheIp();
//スレを開く
openUrl(_ThreadUrl.fullUrlHttps());
//浪人にログインする設定なら、浪人にログインしているかどうかを確認し、していなければログインしにいく。
if (SETTINGS.roninSettings.checkLogin) {
}
}
if (SETTINGS.postSettings.replyPost) {
const targetAnkerNumber = createPostDOMList()
.filterPostnumberHigher(_LoopStatuses.currentMinAnker())
.filterByPostername(SETTINGS.postSettings.filterNames)
.filterByPosternameNotIncluded(
SETTINGS.postSettings.filterNamesNotIncluded,
)
.filterByText(SETTINGS.postSettings.filterText)
if (targetAnkerNumber !== null) {
const r = _TextCsvCursors.takeNextRowTextAsReply(targetAnkerNumber);
messageDisplay(`返信対象有り。アンカー先: ${targetAnkerNumber}`);
return {
...r,
updatedLoopStatuses:
_LoopStatuses.updateMinAnker(targetAnkerNumber),
};
}
}
if (SETTINGS.postSettings.noAnkerPost) {
//返信対象無し、或いは返信しない設定の場合。アンカー無し投稿文を作る。
const r = _TextCsvCursors.takeNextRowTextAsNoAnker();
messageDisplay('返信対象無し。アンカー無し投稿。');
return {
...r,
updatedLoopStatuses: _LoopStatuses,
};
}
return null;
})();
if (p) {
//投稿。
nickname: SETTINGS.nameSettings.nickname,
korokoro: SETTINGS.nameSettings.korokoro,
area: SETTINGS.nameSettings.area,
}),
SETTINGS.mail,
p.text,
);
//_TextCsvCursorsと_LoopStatusesを更新。
_TextCsvCursors = p.updatedTextCsvCursors;
_LoopStatuses = p.updatedLoopStatuses.incrementPostCount();
`投稿回数: ${_LoopStatuses.currentPostCount()}`,
`minAnker: ${_LoopStatuses.currentMinAnker()}`,
`今回アンカー無し投稿取得行: ${_TextCsvCursors.currentRows().noAnker}`,
`今回アンカー有り投稿取得行: ${_TextCsvCursors.currentRows().reply}`,
]);
} else {
`返信対象が現われるのを待機中...。`,
`投稿回数: ${_LoopStatuses.currentPostCount()}`,
`minAnker: ${_LoopStatuses.currentMinAnker()}`,
`今回アンカー無し投稿取得行: ${_TextCsvCursors.currentRows().noAnker}`,
`今回アンカー有り投稿取得行: ${_TextCsvCursors.currentRows().reply}`,
]);
}
wait(SETTINGS.baseWaitTime + randomRange(0, SETTINGS.waitTimeRange));
}
}
/**
* 投稿処理と投稿結果を見てリトライしたりマクロ終了したり。
* @param {string} serverName サーバー名
* @param {MyPosterName} _MyPosterName
* @param {string} postMail メール
*/
serverName,
postMail,
_MyText,
retryTimes = 0,
) {
const r =
retryTimes === 0
? new ValuesOfPost(serverName, _MyPosterName, postMail, _MyText).post(
postTo5chTread,
)
serverName,
postMail,
_MyText,
).postSubstring(retryTimes, postTo5chTread, postConfirm);
if (r) {
back();
return;
}
wait(7);
const error = createPostErrorMessage().analyze();
messageDisplay(error.message);
if (error.order === 'KILL') {
kill();
} else if (error.order === 'SKIP') {
return;
} else if (error.order === 'TRUNCATE') {
back();
serverName,
postMail,
_MyText,
retryTimes + 1,
);
} else if (error.order === 'WAIT') {
wait(SETTINGS.waitTimeForAvoidingPunishment);
serverName,
postMail,
_MyText,
retryTimes,
);
} else if (error.order === 'LOGIN') {
serverName,
postMail,
_MyText,
retryTimes,
);
}
return;
}
/**
* 現在のIPアドレスに、SETTINGS.ipSettings.avoidTheIpの値が含まれていないことを確認する。含まれていたらマクロを一時停止。
* @returns
*/
function checkCurrentIpNotTheIp() {
openUrl('https://www.cman.jp/network/support/go_access.cgi');
const _IpAdress = createIpAdressFromCMan();
if (_IpAdress.includes(SETTINGS.ipSettings.avoidTheIp)) {
pause('現在のIPに指定した値が含まれていることを確認。');
}
return;
}
/**
* @returns
*/
if (
SETTINGS.postSettings.noAnkerPost === false &&
SETTINGS.postSettings.replyPost === false
) {
return kill('設定エラー。noAnkerPostとreplyPost両方ともfalseになってる。');
}
if (
SETTINGS.postSettings.noAnkerPostTextCsvStartRow < 0 &&
SETTINGS.postSettings.replyPostTextCsvStartRow < 0
) {
return kill(
'設定エラー。noAnkerPostTextCsvStartRowとreplyPostTextCsvStartRow両方とも-1になってる。',
);
}
if (
SETTINGS.postSettings.noAnkerPostTextCsvStartRow === 0 ||
SETTINGS.postSettings.replyPostTextCsvStartRow === 0
) {
return kill(
'設定エラー。noAnkerPostTextCsvStartRow/replyPostTextCsvStartRowの初期値は-1或いは1以上で。',
);
}
}
/**
* 入力フォームを表示して入力されたスレのURLを受け取る。
*/
function openPromptThreadUrl() {
const url = prompt('スレURLを入力');
}
/**
* 開いてるスレのレス全て読み取ってPostListインスタンスを作って返す。
* 重すぎるので使うのやめ。どうやらインスタンスの大量生成が原因な模様。
*/
const posts = window.document.getElementsByClassName('post');
return new PostList(Array.from(posts).map((e) => new Post(e)));
}
/**
* 開いてるスレのレス全て取得してPostDOMListに格納して返す。
* @returns
*/
function createPostDOMList() {
const posts = window.document.getElementsByClassName('post');
for (let index = 0; index < posts.length; index++) {
//HTMLCollectionからElementを1つずつ抽出して配列に。
arrPostDOMList.push(posts.item(index));
}
return new PostDOMList(arrPostDOMList);
}
/**
* 開いてる投稿結果画面に表示されてるエラーを読み取ってPostErrorMessageインスタンスを作って返す。
*/
function createPostErrorMessage() {
window.document
If you could only eat one meal for the rest of your life, what would it be?
If you could live anywhere, where would it be?
What is your favorite family vacation?
What would you change about yourself if you could?
What motivates you to work hard?
What is your biggest complaint about your job?
What is your favorite book to read?
What makes you laugh the most?
What was the last movie you went to? What did you think?
What did you want to be when you were small?
If you could choose to do anything for a day, what would it be?
What would you sing at Karaoke night?
How would your friends describe you?
36. What is the best gift you have been given?
37. What is the worst gift you have received?
40. Where do you see yourself in five years?
42. If you were a super-hero, what powers would you have?
43. What would you do if you won the lottery?
44. What form of public transportation do you prefer? (air, boat, train, bus, car, etc.)
45. What's your favorite zoo animal?
46. If you could go back in time to change one thing, what would it be?
48. How many pillows do you sleep with?
49. What's the longest you've gone without sleep (and why)?
52. How often do you buy clothes?
53. Have you ever had a secret admirer?
54. What's your favorite holiday?
55. What's the most daring thing you've ever done?
56. What was the last thing you recorded on TV?
57. What was the last book you read?
58. What's your favorite type of foreign food?
59. Are you a clean or messy person?
60. Who would you want to play you in a movie of your life?
61. How long does it take you to get ready in the morning?
62. What kitchen appliance do you use every day?
63. What's your favorite fast food chain?
64. What's your favorite family recipe?
65. Do you love or hate rollercoasters?
66. What's your favorite family tradition?
67. What is your favorite childhood memory?
68. What's your favorite movie?
69. How old were you when you learned Santa wasn't real? How did you find out?
70. Is your glass half full or half empty?
71. What's the craziest thing you’ve done in the name of love?
72. What three items would you take with you on a deserted island?
73. What was your favorite subject in school?
74. What's the most unusual thing you've ever eaten?
76. Is there anything you wished would come back into fashion?
77. Are you an introvert or an extrovert?
78. Which of the five senses would you say is your strongest?
79. Have you ever had a surprise party? (that was an actual surprise)
80. Are you related or distantly related to anyone famous?
81. What do you do to keep fit?
82. Does your family have a “motto” – spoken or unspoken?
83. If you were ruler of your own country what would be the first law you would introduce?
84. Who was your favorite teacher in school and why?
85. What three things do you think of the most each day?
86. If you had a warning label, what would yours say?
87. What song would you say best sums you up?
88. What celebrity would you like to meet at Starbucks for a cup of coffee?
time clocks alarms appointments schedules tan sign up form team volunteers meeting black recruitment recruiting need sign up form 5k marathon running race marathon green shoes sign up form
90. What's the most interesting thing you can see out of your office or kitchen window?
91. On a scale of 1-10 how funny would you say you are?
92. Where do you see yourself in 10 years?
94. If you could join any past or current music group which would you want to join?
95. How many languages do you speak?
96. What is your favorite family holiday tradition?
97. Who is the most intelligent person you know?
98. If you had to describe yourself as an animal, which one would it be?
http://netgeek.biz/archives/62033
https://www.trendsmap.com/twitter/tweet/1452827185224454145
https://ameblo.jp/haiku-de-moemoe/entry-12299930353.html
https://matsumoto-hajime.com/blog/archives/319
法政大・山口二郎「安倍に言いたい。お前は人間じゃない! たたき斬ってやる!」
https://www.youtube.com/watch?v=mifhF05u9AA
http://japanese.china.org.cn/life/2013-04/27/content_28678960_2.htm
増 "Well… do you have something you want to tell to Japanese people?"
B "well, I would say something not only to the Japanese, but to many other people. how should I put this?
"Most people began to hate Russians by default. But this war was started by our government, not by us. Of course, we don't want this war, nobody wants it. And I assure you, our people have repeatedly gone to rallies against the government. But always people who participate in such events are sent to prison. Even people on the Internet who express a point of view that the government does not like are jailed for misinformation.
And I will not deny that some Russians have succumbed to the propaganda of our government and are expressing support for this "military operation". But many people in other countries are actually the same. They hypocritically pretend that they are concerned about the fate of Ukraine, although in fact they have only recently learned that this country even exists. In reality, if you ask them "What do they think about the DNR and LNR?", they will have absolutely no idea what are you talking about.
It's good if you sincerely worry about Uraina. But the majority worry about Ukrina and hate Russians only and only because it's a trend that their government has set. In other words, this is the same propaganda.
Well, to summarize, I just wanna say "let's just be friendly to each other." Even if our governments are not friendly to each other, this doesn't mean that we should be the same." "
C*
https://anond.hatelabo.jp/20220429233816
•what do you think about zelenskii
•do you know other politicians except him
•how future is you predict, how future is you want (i mean politically and concretely)
•What do you think about ukranians language law
•how DNR and LNR people life is?
•did you see people which changed after starting this war
•what do you think that Russian army kidnap ukranians
•what do you think about that Russian language uses «в» for any country but «он» for yours?
•and anything you want to say to Japanese
Aの露訳
①の回答
О своем будущем скажу только одно, что после войны усыноввлю и удочерю детей которые потеряли своих родителей
Aの英訳
About my future, I'll say that after the war I'll adopt children who lost their parents in this bloodshed.
Bの露訳と②の回答
1. Что ты думаешь на счёт Зеленского?
Моё мнение, что Зеленский является лучшим президентом, который не бросил Украину и народ во время войны, как сделал это Янукович. Зеленский, его команда и наш народ делают всё возможное и невозможное для сохранения нашей страны.
2. Знаешь ли ты других политиков кроме Зеленского?
Знаю многих.
3. Какое будущее ты видишь для своей страны?
Хотелось бы чтобы территории Украины вернулись в полном составе, так как это было признано международным правом.
4. Что ты думаешь о законе про украинский язык?
Я поддерживаю этот закон, хотя в нашей стране люди общаются на разных языках, в том числе и на русском, но я ни разу не слышал информации о преследовании или конфликтах на этой почве.
5. Видишь ли ты как люди сменились после начала войны?
Наш народ очень сплотился, каждый старается помочь друг другу, война наложила отпечаток на всех, это бесконечные переживания и боль.
6. Что ты думаешь по поводу того, что российская армия похищает украинцев?
Это является ужасным преступлениям.
7. Что ты думаешь о том, что русские для любой страны говорят "в", но в случае с Украиной говорят "на"?
Я считаю что это очень не красиво по отношению к украинскому государству и людям которые там живут.
8. Что ты хочешь сказать японцам?
Хочу поблагодарить за поддержку нашей страны, пожелать мира, добра и процветания.
9. Что ты хочешь меня спросить?
Почему тебя так детально интересует ситуация в моей стране?
Надеюсь всё правильно понял
•what do you think about zelenskii?
I belive Zelensky is the best president who did not abandon Ukraine and the people during the war, as Yanukovych did. Zelensky, his team and our people are doing everything possible and impossible.
•do you know other politicians except him?
•how future is you predict, how future is you want (i mean politically and concretely)?
I would like the territories of Ukraine to return in full force, because this is what was recognized by international law.
•What do you think about ukranians language law?
I support this law. Despite the fact that in our country people communicate in different languages, including Russian, I have never heard information about persecution or conflicts on this basis.
•how DNR and LNR people life is?
skipped
•did you see people which changed after starting this war?
Our people are very united, everyone is trying to help each other, the war left its mark on everyone in the form of endless experiences and pain.
•what do you think that Russian army kidnap ukranians?
•what do you think about that Russian language uses "в" for any country but "на" for yours?
I think this is very discourteous in relation to the Ukrainian state and the people who live there.
•and anything you want to say to Japanese?
I want to thank you for the support of our country. I wish you peace, kindness and prosperity.
D*
増 "Ah, turkestan ban Russian language?"
D "Not really "ban" but "limitation". This sounds more suitable in this case. it is the natural phenomenon for the mononational states. And multinational, actually. Using the one language as official. To strengthen the statehood. Same thing with Ukraine. More separation from the "big brother". That is the point, I guess.
By the way, they strengthened much more after these 8 years. I think it is too late to start an invasion now than these 8 years ago back then in any case. That does not mean that I support it, of course. You knew my point. We talked about it earlier. 🙂 I think that it is just "balls to the wall" (like the title from the one of Accept's albums). Recklessly in a word. It is naive to believe that they have stagnated all this time and have not developed or strengthened.
A*
1) Another Ukranian president that just had "the luck" to get the war. Looks funny and trustworthy. Though he sometimes lacks the experience.
2) Yes I do.
3) I predict OK future for Ukraine, bad future for Russia. Russia lost any trust and contacts that it made for over 30 years. Dark decades ahead. I want good future, with no wars and with everyone helping each other.
4) Ukrainian language law? Well, it's their country. Let them speak what they want to speak. Besides, most Ukrainians speak Russian, and they even have mostly Russian cities, like Khar'kiv. I saw no oppression of Russian.
5) DNR and LNR are basically buffer states for Russia like North Korea with the same amount of freedom. It's hell on earth.
6) Had no information about that, but I had info about killing civilians and looting their homes. It's horrible. Those soldiers are monsters and they do not represent Russia. I don't count themselves as my fellow Russians. They're monsters. Barbarians. Putin's orcs. Not Russians.
7) I say let us use whatever we want. I use "на Украину" simply because I spoke it like that over 20 years and it's the correct one.
8) I love Japan and its people. I wish we could achieve peace and could work together. Please don't think bad of Russian people, we don't support this war. We're the same victims, like Ukrainians. Victims of Putin and his police state.
https://anond.hatelabo.jp/20220312204919
信憑性がないので原文を出してほしいというトラバがいくつかあり、もっともだと思ったので出すことにします。
元のチャットでは改行だったところの大部分をピリオドにしています(許可は取りました)。
増田 "何に"
友達 "North Korea is firing at you"
友達 "I guess we're gonna be disabled from the global internet"
増田 "そうしたらもう本当に終わりだね。どこで知ったの?"
友達 "tor is blocked. proxies are not working. at least, most of them.
but i'm prepared. i got tor, i got proxies. dunno if it will work."
増田 "そうなんだ"
友達 "Portuguese menu for Russian tourists: "We don't service the Russians. Go eat some stones. Bon appetit."
https://cdn.discordapp.com/attachments/629783855070445598/951836523836358746/2022-03-11_22.37.48.png
増田 "あー"
友達 "Russians are becoming the worldwide exiles"
増田 "レストランはロシア人とそうでない人の見分けがつくんだろうか"
友達 "I can't even speak Russian in online games anymore.
they don't even care that I don't support the war"
増田 "ははは"
友達 " "Customers with Russian passport are not welcomed in our restaurant. We do understand that "normal" Russians are not responsible for criminal decisions of their government, but we have to do something already. By prohibiting the Russians to come in, we're making our contribution into the free Europe for our children." "
https://cdn.discordapp.com/attachments/629783855070445598/951836523521769483/2022-03-11_22.38.07.png
増田 "そう"
友達 "i'm disappointed in reddit"
増田 "何?"
友達 "i read a topic "stop shout abuse at russians"
they said "fuck you, we hated you russians before the war too" "
増田 "そう"
友達 "now i see the true face of the west.
I'm so disappointed...
I'm being witchhunted just because I'm Russian.
How does this differ from what Hitler did"
増田 "国同士なんて仲がいい方が珍しいしそんなもんだよ。今ごろ気がついたの?
日本のネットでも評判がいい国なんてほとんどないって。99%の国は嫌われてるか知られてないかだよ"
友達 "USA talks about "peace in all the world" is a pack of fucking shit.
when they bomb the shit out Yugoslavia, it's legit, it's legal, it's OK, nobody hates americans.
when Russia is in war, every Russian should be burned"
増田 "アメリカは仕方ないね。東京裁判も不当だったみたいだし"
友達 "i'm gonna stick to Asia. I'll learn Chinese and Japanese"(注:このstickをどう訳すべきかわからない)
友達 "I always made a distinction between government and people.
When USA and other countries do some shit, that's the government.
But when usual people say that they hate Russians...
I have to get out of Russia. In that manner, we're even worse than North Korea"
友達 "people who ran from NK are treated well. they're heroes.
but Russian people are not wanted anywhere"
増田 "そう"
友達 "there is information that there's gonna be a martial law in Russia. 5 or 6 of march"
増田 "本当?"
増田 "そうなんだ"
友達 "i'm against killing at all. hide.
友達 "I guess, we're repeating the history of Germany and Japan
増田 "そこそこ良いんじゃない?"
友達 "well, in Russian reality, it'll be worse"
増田 "知らん"
友達 "60% of our people is fucking stupid. they're lazy. they were taught that war is good. that nazis are everywhere around them. that stealing is good. they're corrupted. most of those people was born in USSR"
増田 "そう"
友達 "We have to be our own country, but free. Free of Putin and corruption and violence. Though I do not want to be Russian anymore.I love Russian culture but I hate the government"
増田 "そう"
友達 "people are saying that all Russians are guilty. fucking hypocrits. when USA bombed Yugoslavia, Iraq, Libya, Syria, and Hiroshima and Nagasaki, nobody seemed to mind.
when the West says: "We're tolerant, we're free, we're not racists", know that they lie"
増田 "そう"
友達 "the only nation that didn't say that all russians are guilty, was Japanese. I've heard that Japanese people think that only Putin is guilty. and not all Russians"
友達 "I've asked a couple of my japanese friends"
増田 "this is.. probably very biased sample actually"(注:増田もたまに英語を使うことがある)
増田 "私が知る限りそのredditのトピックと日本のネットでそこまで雰囲気変わらないと思う。ロシア食品店が襲われて壊されたらしいし"
増田 "ところで他の国の友達にもロシア人についてどう思ってるか聞いたの?"
友達 "they won't even speak to me, most of them"
増田 "あっ"
友達 "if they are affected by public opinion and ready to betray their friends, they're no longer my friends"
増田 "そう"
友達 "in Russia, we have a proverb "You can only find true friends in a trouble" "Друг познаётся в беде" "
増田 "日本語に似たようなことわざがあった気がしたけど今調べたら『昨日の友は今日の敵』しかなかった"
(注:チャットをそのまま載せると身バレ&グダグダすぎるので日本語訳版では適当に要約してあるが、友達のウクライナ人の知り合いが無事だと聞いたのは本当)
増田 "よかったね。……あ、ウクライナ人の友達は話してくれるんだ"
友達 "we speak. ukrainian friends are still with me. just imagine. the victims of war are still friends with me. and this two-faced West fucks are not"
友達 "those West fuck just love to write hate messages knowing that we can't do anything in return. that they are in comfort. they scream "NO TO WAR", and after that they go to a happy dinner with their families"
増田 "●●さんは本当に自分のことを西洋人とは思ってないんだな"
友達 "maybe i had some sparks of western in me. but now i fucking don't"
増田 "たいていの日本人にとって白人=西洋。私も●●さんに会って話すまではそう思ってた"
友達 "well you know now that it's not"
増田 "うん"
増田 "制裁はロシア国民が政府に反旗を翻すことを目的に行われているらしい"(注:よく調べずに適当なことを言ったので間違ってるかも)
友達 "yes. but it's useless. people won't turn against government. they are zombified by propaganda"
友達 "but there are not too much people. Russia is basically like Hitler's Germany now"
友達 "it's not optimistic at all. russians are being equated to fascists. they don't make the distinction. they say that we all are guilty
増田 "you have to hope you all aren't like german in Traité de Versailles"
友達 "in fact, if I say in Internet that I don't support war, I can go in jail for 15 years"
増田 "それにしてはあのredditのロシア人は普通にプーチン批判や戦争反対を言ってたけど"
友達 "the law came after that post."
増田 "ええっ"
友達 "when they wrote it, it was OK. but now Putin does everything he can to stay in power. they're frantically making new laws. so they can stay in power for a little longer. what happens now is the blackest page in Russia's history. since Russia-Japan war"
友達 "USA always hated Russia. They are using every chance they get to destroy us. if instead of Russia it was Finland or China, attacking Ukraine, they wouldn't do shit about it. we several times tried to have friendly relationships with USA and each time they basically said "Fuck off, Russians". I didn't have any illusions about them before. but now I plainly fucking hate them. Japanese are the best"
増田 "また始まったよ"
友達 "first time was during World War 2 lend-lease they helped us (注: チャットなので文章がところどころ適当になることがある)
we tried to be friends with them after, but they had secret plan to conquer USSR while it's weak. it was cancelled"
友達 "then Cold War, a lot of hating each other. next time we tried to be friends in 90s. "Bush's chicken legs", helping each other"
友達 "USA's bombing of Yugoslavia made us enemies again. since then, we were not friends"
友達 "when that happened, Russian premier Primakov was on the flight to USA. there was gonna be a deal that could help Russia greatly. when Primakov heard about Yugoslavia, he asked his pilot to turn around, back to Moscow, and cancelled that deal. in Russia, it's known as "Primakov's turn" "
増田 "なんでそれで帰るの?"
友達 "he didn't want to work with countries that act like that. it was a war crime"
増田 "プリマコフという人は今の日本ではあまり知られてませんよ。私も今初めて聞きました"
友達 "he's not well known in Russia too :D "
増田 "失脚させられたみたいだからね。こんな政治家について今のロシアで報道されないのは自然だ"
友達 "he's still in government, if i remember correct"
増田 "……
エフゲニー・マクシモヴィチ・プリマコフ(ロシア語: Евгений Максимович Примаков、ラテン文字転写の例:Evgenii Maksimovich Primakov、1929年10月29日 - 2015年6月26日」 "
友達 "ah"
増田 "やっぱりさ、西洋の人たちがロシア人全部を雑に罵倒してくるの仕方ないと思うんだよ"
友達 "meh. fuck them then. i'm not gonna contact them then"
増田 "charmという単語があるでしょう。likable appealという意味だよね"
友達 "you can say it that way, yes"
増田 "でもmagicという意味もある。超自然的で恐ろしくて強いものだ"
増田 "日本語では魅力というけどこの"魅"は実は化け物のこと。
人間はこのcharmとか魅力とかいう恐ろしいものに支配されて生きている。
なんでアメリカの空爆のときとロシアの侵略のときで世論が全然違うのか? それはアメリカやウクライナには魅力があるけどロシアやユーゴにはないからだよ。人間にはかわいくもかっこよくもない人々の命より好きな人ひとりのほうが大事なんだ"
友達 "for me, all people are the same. every life is equal. (注:ここでは彼は「生命は尊い」とは言っていないが、普段の態度と前後の文脈からそう思っているのが明らかなので勝手に足しておいた)
death of Yugoslavians person is as tragic as the death of American and other people"
増田 "●●さんはそうでもたいていの人はそうではないからね。だから仕方がないんだ。実のところ私も他人のこと言えないんだよ。だって私もシリアの内戦とかクリミア侵略とか外国のニュースは気にしなかったのに、●●さんに出会ったからってだけでウクライナ侵略ばかり気にしてるからその『西洋人たち』と同じなんだよ。だから、仕方がないと思う"
The name's popularity decreased rapidly after Amazon picked it as the wake word of its voice service Amazon Alexa, which was released worldwide in 2016. Now, with Amazon making it their goal to implement their smart assistants into every consumers homes, people like Alexa A., a Bay Area resident, explains the impact, trauma, and teasing she lives with everyday by sharing a name with a computer: "I hate my name now, thank you so much Amazon for making everyone tease me with their annoying Alexa jokes" (Bay Area Star).
https://en.wikipedia.org/wiki/Alexa_(name)
ということらしい。
頭が悪くない(とりたてて良くもない)おかげでギリギリセーフみたいな生活を送っているが、とにかく人生そのものに対してモチベーションが全然ないので、メチャクチャきつい
同期と仕事について話していて、酒も入ってたんで素直に「俺には何の野望も目標もない、適当に就活をしてたら偶然拾ってくれたのでここに入った、仕事は向いてないしまったく楽しくない、さっさと辞めたい、しかし転職したいとかってわけでもない、なぜならどんな仕事でも似たようなもんだという確信があるからだ、それはそれとしてやっぱり辞めたいですよね」というような話をしたら、けっこうビックリされた
みんな何かしら夢らしきものを持ってたり、持ってなくても仕事を辞めたいとは思ってなかったりするっぽい
なぜそんなことができるんだ?
俺はすべての義務が嫌いで、これまで所属してきたすべての組織に対して最終的には「辞めたい」という感情をもってきた
というか、なんかもうめんどくせーな 人生やめてえんだわ
人生、やめたくないですか?
楽しいことがある、みたいなのはマジでどうでもよくて、一切楽しくなくていいんで、俺を一切苦しませないでくれ
眠れないとか、体がベタつくとか、暑いとか、寒いとか、部屋に虫が出るとか、枕元が汚いとか、食器を洗わないといけないとか、そういう細々としたところも全部めんどくさい
やめてくれ!
仕事ってマジで意味わかんなくて、ウィーク・デーのすべてがやりたくもねえつまんねえカスみたいな謎の業務に費やされることになってしまう
やめたらやめたで、やっていけない
やっていくってなんなんだよ
なぜやっていかないといけないのか?
結局そこなんですが、俺は死ぬ勇気がないから生きてるだけで、ホント何にも執着がないというか、執着、なくはないんだけど、それよりもラクがしたいって気持ちが圧倒的に強い
仕事辞めて、仕事をする時間の半分くらいだけでも本気で株の勉強とかしたらいいんだろうか?
親の金が500〜1000万くらいあって、遺産が入ればもう少し増える
それじゃ元手にはなんないよなあ!
というか、俺が言いたいのは、そういう金勘定みたいなのをやんのも嫌なんだってことなんだ
全部嫌なんだ
なんもしたくないマジで
存在するのが嫌だ 嫌いだ
みんなどうやって嫌にならずに存在してるんだ?→実際そこそこの割合の人が嫌になりながら存在しているらしいです
そんな……
なに?ここ
これなんなんだよマジで
やめてほしいよなあ!