「Date」を含む日記 RSS

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

2023-08-11

この記事だと韓国バービーコケてるのはこの映画フェミニズム映画韓国アンチフェミニズムが強いからって決め付けてるけれど

マイ・エレメントはヒットしているらしいしマイ・エレメントもかなりフェミニズム色は強い映画から

フェミニズムのせいでコケてる訳じゃないでしょ

https://news.yahoo.co.jp/articles/18f2bc9e57e24b71d00edc71a0080f41d549872d?source=sns&dv=pc&mid=other&date=20230810&ctg=wor&bt=tw_up

2023-07-23

素早くブクマされた増田を強調 簡易セルクマ検知ユーザースクリプト

https://b.hatena.ne.jp/site/anond.hatelabo.jp

で動くスクリプトでたとえば投稿10分以内にブクマされページに乗ったら「1 user」が「1 user セルクマ 1とか5(何分後にブクマされたか)」になる。もしマイナスなら誤判定なので無視して。

時間を置いたセルクマには効かないし普通ファーストブクマカがどれぐらいの頻度で確認してるかしらないけど5分以内や1分以内もポロポロあるのでまあ目安に。

増田URLと一覧の時刻表示差分を取ってます

増田じゃpre記法でも記号が変換されるみたいだから作業

.forEach(div => {

('.entrylist-contents-title > a')

if(diffSec >

とかの

<>

<>

に変えてね

他にも見落としあるかも

誤判定が減るから非公開ファーストブクマを判定できたらいいんだけどね。

// ==UserScript==
// @name         hatebu masuda selkmark
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  特定時間以内にブクマされた増田を強調する
// @author       You
// @match        https://b.hatena.ne.jp/site/anond.hatelabo.jp*
// @grant        none
// ==/UserScript==

(function() {
  'use strict';

  const threshold = 60 * 10 // 何秒以内か
  const domain = 'https://anond.hatelabo.jp/'
  const dateTemplate = '202301020304' // 時分まで url時刻表記
  const dateTest = new RegExp('\\d{' + dateTemplate.length + '}')
  document.querySelectorAll('div.entrylist-contents').forEach(div =&gt; {
    const masuda = div.querySelector('.entrylist-contents-title &gt; a')
    const dateStr = masuda.href.substring(domain.length + dateTemplate.length, domain.length)
    if (!dateTest.test(dateStr)) {
      // キーワードとか
      console.log('not diary', dateStr)
      return
    }

    // new Dateできるように変換
    // https://amateur-engineer.com/javascript-date-yyyymmddhhmm/
    const year = parseInt(dateStr.substring(0, 4))
    const month = parseInt(dateStr.substring(4, 6))
    const day = parseInt(dateStr.substring(6, 8))
    const hour = parseInt(dateStr.substring(8, 10))
    const min = parseInt(dateStr.substring(10, 12))
    const date = new Date(year, month - 1, day, hour, min)

    const bukumaDate = new Date(div.querySelector('.entrylist-contents-date').textContent) // 2023/01/23 00:00
    const diffSec = (bukumaDate - date) / 1000 // ms to sec

    if (diffSec &gt; threshold) {
      return
    }
    // ブクマ user
    const user = div.querySelector('span.entrylist-contents-users a').lastChild
    user.textContent += ' セルクマ ' + (diffSec / 60)

    // 古い記事マイナスになる でも2015年ぐらいの記事までかな?新着はセーフ臭い
    /*
    if(diffSec &lt; 0) {
      user.textContent += ' 異常差分:' + diffSec
    }
    */
  })
})();

2023-07-21

「今回の問題職場トイレ問題であって」ってさあ

職場って1日の、それどころか人生の長い時間を過ごす場所なのに

まりにも軽視され過ぎていやしないか

労働時間が3時間もかならともかく、実際は「最低で」8時間という、長い時間拘束されるのに。

https://news.yahoo.co.jp/articles/53b79e8c47fd13354352db74d57e8f5359cf87de?source=sns&dv=pc&mid=art11t3&date=20230721112126&ctg=dom&bt=tw_up

長官候補ともされる今崎幸彦裁判長は、今回の問題職場トイレ問題であって、トイレを含む不特定多数が使う公共施設使用のあり方とは別とも言及。こうした問題は『一律の解決策になじむものではない』と断言していた。判決文だけでは誤解を生むという判断だろう」(司法関係者

2023-07-10

山下達郎氏はもう70歳なのね。もし彼も50歳台なら、もう少しまともなコメントを出せただろうに。

ジャニー喜多川尊敬すると言う70歳の老人に性被害者への想像力社会性を求めるのはいささか厳しいのでは。

ラジオ局もいつまで彼を起用し続けるのだろう?

年を取るのは恐ろしいな。

山下達郎ラジオでの不遜発言に「ファンやめた」の大合唱被害者への想像力社会性の欠如を露呈(日刊ゲンダイDIGITAL)

#Yahooニュース

https://news.yahoo.co.jp/articles/c39e2877a7249f3c1df6c1a81666925b0d4f6f87?source=sns&dv=pc&mid=art08t2&date=20230710&ctg=ent&bt=tw_up

2023-06-29

閣僚が答弁できないの当たり前じゃないの?

ブラック霞が関」で官僚離れ深刻、国会答弁打ち合わせ「朝4時」開始も背景(読売新聞オンライン)

#Yahooニュース

https://news.yahoo.co.jp/articles/ab92fb0543ba4298423f9dcce607678bf56a889c?source=sns&dv=sp&mid=other&date=20230629&ctg=dom&bt=tw_up

これに対して閣僚官僚に答弁を作ってもらってることを批判してるやついるけど、1つの省の全ての業務を1人の人間が把握するのって現実的可能なの?

何十年と働けば可能かもしれないけど、大臣職なんて数年ごとに変わるしその度に各省庁の仕事を全て把握するのはいくらなんでも無理ゲーすぎない?

例えば、お前らは自分の働いてる会社業務全て説明できるか?俺はできない関係ない部署ことなんか説明できないよ

2023-03-09

拡散希望三井住友銀行を騙る巧妙なスパムメールが来た

スパムメールに騙されて、スパム文面(下記参照)の「振込入金の詳細については、SMBCダイレクトでご確認いただけます。」のURLリンクを踏んでしまいました。

だけど、それは謂わばスパム側による囮の様なURLで、三井住友銀行ドメインだったので、幸運にも今回は難を逃れることができました。

今回のスパム側の主な目的は、メール受診者スパム被害者)がHTML形式メール確認して、また、メールの内容を信頼して「ご確認」のURLリンク「ttps://www.shuhmsドットcom」(詐欺サイト)をクリックすることだと思われます

私は普段から平文形式メール確認するので、(実際の被害を受けるという意味では)今回難を逃れたけど、普段からHTML形式メール確認していたり、情報弱者高齢者だったら騙されやすいだろうと感じます

ポイントは、「ご確認」のリンク先が「ttps://www.shuhmsドットcom」になっていた他、「振込入金の詳細については、SMBCダイレクトでご確認いただけます。」の次の行のURLの/kojin以下の文字列オリジナルと違うことです。

それ以外、題名送信元、メール内容についてオリジナル擬態しています

普段からスパムメールに注意していますが、スパム擬態が高度化して、情報弱者が騙されやするなる閾値を超えたと感じたので、警鐘意味を込めて書いておきます

スパムメール

-------------------------------------------------------------------------

Subject: 【三井住友銀行】振込入金失敗のお知らせ

Date: Thu, 9 Mar 2023 **:**:** +0800

From: 三井住友銀行 &lt;SMBC_service@dn.smbc.co.jp&gt;

To: 送信メルアド

-------------------------------------------------------------------------

三井住友銀行からの正常メール

-------------------------------------------------------------------------

Subject: 【三井住友銀行】振 込受付完了のお知らせ

Date: Sat, 25 Feb 2023 **:**:** +0900

From: 三井住友銀行 &lt;SMBC_service@dn.smbc.co.jp&gt;

Reply-To: SMBC.Auto.reply@ar.smbc.co.jp

To: 送信メルアド

-------------------------------------------------------------------------

スパムの文面(オリジナル擬態)】

-------------------------------------------------------------------------

三井住友銀行より、ご指定口座への振込入金失敗についてお知らせします。

失敗の原因確認は下記へアクセスしてください。

確認(←詐欺サイトリンク

―――■SMBCダイレクトで残高確認■―――

振込入金の詳細については、SMBCダイレクトでご確認いただけます

ttps://www.smbc.co.jp/kojin/app/smbcapp.html?aff=dirct_mlODM1902001(←kojin以下の文字列オリジナルと違う)

―――――――――――――――――――――

※振込依頼人から振込の「取消」「変更」「組戻」があった場合等、お知らせした明細と実際の手続が異なる場合があ

ます

※本メールは、お客さまお届けのメールアドレスへお送りしています(本メールの再送依頼は受け付けておりません)

不正送金被害にご注意ください】

偽のメール等で誘導された当行を装う偽サイトに、お客さまの口座情報ワンタイムパスワード等を入力すると、不正

送金被害にあう危険があります

> ttps://www.smbc.co.jp/kojin/special/stop_phishing_crime/

【当行から送信したメールであることの確認方法

三井住友銀行」名でお送りするメールには、携帯キャリアメールアドレス宛を除き全て電子署名を付けています

> ttps://www.smbc.co.jp/security/smime/

【当行のサイトであることの確認方法

閲覧しているサイトが当行の正当なサイトかどうかを、電子証明書により確認いただけます

> ttps://qa.smbc.co.jp/faq/show/297?site_domain=default

メールの内容に身に覚えがない場合

メールに対するメールでのご返信・お問い合わせはお受けしておりません。メールの内容に身に覚えがない場合や、

サービス等についてくわしく知りたい場合は、当行ホームページをご覧いただくか、以下より電話番号確認の上、お

問い合わせください。

> ttps://www.smbc.co.jp/contact_list.html

メールアドレスや配信設定の変更】

SMBCダイレクトにてお手続ください。

> ttps://direct.smbc.co.jp/aib/aibgsjsw5001.jsp?sc=081

-----------------------------------------------------------------------

発行:株式会社 三井住友銀行

東京都千代田区丸の内一丁目1番2号

登録金融機関 関東財務局長(登金)第54号

加入協会 日本証券業協会

一般社団法人金融先物取引業協会

一般社団法人第二種金融商品取引業協会

メールの内容を無断で引用転載することを禁じます

-------------------------------------------------------------------------

注)全てのURLhttp:のhを削除しています

2023-02-19

Youtuberランキング見るのちょっと好き

たまに見てる

https://yutura.net/ranking/?date=202302

https://yutura.net/ranking/?mode=view&date=202302

 

結局キッズけが強いんだよなー

月間のランキング面白そうなの無いかなってたまーに見るんだけど

全然心惹かれないw

最近TikTokの方が視聴時間増えてきた

2023-02-15

anond:20230214105828

ChatGPTさんも、そんな考えは時代遅れやって言うてはるぞ。

Sure, I'd be happy to discuss that with you! The question of who should pay on a first date is a common one and there's no one-size-fits-all answer. It really depends on the situation and the preferences of the people involved.

Traditionally, it was often expected that the man would pay for the first date. However, in modern times, many people prefer to split the bill or take turns paying for dates. Some people may feel strongly about paying on a first date as a way to show their interest or to demonstrate their ability to provide for their partner, while others may feel that splitting the bill or taking turns paying is more fair and equitable.

Ultimately, the decision of who should pay on a first date should be based on what both people are comfortable with. It's a good idea to discuss it ahead of time so that there are no surprises or awkward moments at the end of the date. Communication is key in any relationship, so it's important to be open and honest about your preferences and expectations.

2023-01-28

ChatGPTが嘘ばっかりつくので

Confidence Scoreをつけてくれと言ってみた。

ChatGPT:

Yes, I can provide confidence scores with my answers when they might be inaccurate. However, please note that the confidence score is based on the model's understanding of the input and context and is not a measure of the accuracy of the answer.

ふむふむ・・・・(中略)

つけてくれへんやんけ

ワイ:

Can you add the confidence score for each sentence?

ChatGPT:

I apologize, as a language model, I don't have the capability to calculate confidence scores for individual sentences. However, I have been trained on a large dataset, and I will do my best to provide accurate information based on my knowledge cut-off.

Please note that the information provided might not be up-to-date and it's always good to double-check the information with the official source.

そこも嘘かーい

ワイ:

You said "Yes, I can provide confidence scores with my answers when they might be inaccurate. ".

ChatGPT:

I apologize for the confusion, as a language model, I do not have the capability to assign confidence scores to my responses. I apologize for any confusion caused by my previous response. My main goal is to provide the most accurate information based on my training data, however, the information provided may not be up-to-date or may contain inaccuracies.

Perlexityかなんかで出ると思うんだけど、その辺の値にはアクセスできないのかな。

2023-01-19

ChatGPTにお前はどうやって実装されてんの?って聞いてみたら

マジレスされてチビッた.こりゃGoogleさんもビビるわけだ.

ぼく:

How were you implemented? Is it deep learning-based?

ChatGPT:

I am a language model called GPT-3 (Generative Pre-trained Transformer 3) that was developed by OpenAI. It is a deep learning-based model that uses a type of neural network called a transformer, which was trained on a large dataset of text to learn patterns of language.

GPT-3 is trained using a technique called unsupervised learning, where the model is given a massive amount of text data and uses this data to learn patterns and relationships in the language. This allows GPT-3 to generate human-like text when given a prompt, and to understand and respond to natural language input.

The training process of GPT-3 involves a technique called pre-training, which means that the model is trained on a massive dataset before being fine-tuned on a smaller task-specific dataset. This pre-training allows GPT-3 to have a good general understanding of the language and to be able to adapt to specific tasks more easily.

The GPT-3 model has 175 billion parameters, which is one of the largest language models to date, making it able to generate very human-like text and to understand context in a very natural way.

ぼく:

How does GPT-3 have a knowledgebase like an ontology? As it is deep learning-based, the knowledgebase like an ontology would not be implemented explicitly, but the structure should be designed with an expectation of having such a knowledge about hierarchy of concepts.

ChatGPT:

GPT-3, like other deep learning models, does not have an explicit knowledgebase or ontology built into its structure. Instead, it has been trained on a large dataset of text, which allows it to learn patterns and relationships between concepts.

However, the training data that GPT-3 was exposed to, likely contains a wide range of concepts and hierarchical structures. As GPT-3 learns patterns in the data, it can begin to understand the relationships between different concepts and ideas, and how they are related to each other. This allows the model to generate text that is more coherent and semantically meaningful, making it possible to understand the context and hierarchy of concepts, but it does not have an explicit ontology like a knowledge graph.

It can be said that GPT-3 has a certain level of "implicit ontology", in the sense that it has learned the relationships between concepts in a way that is similar to how a knowledge graph or ontology organizes information. However, it's important to note that GPT-3's understanding of concepts and relationships is based on the patterns it has learned from the training data, which is not a structured and explicit knowledgebase like an ontology.

ぼく:

Then how does GPT-3 handle the long-term or short term memories? Can it remember information about the on-going chatting? My name is Masuda, can GPT-3 keep it in the memory? Furthermore, can it learn and understand the new information from the Q-A queries, and use it in the future queries?

ChatGPT:

GPT-3 handles long-term and short-term memories differently. When it generates text, it uses a technique called attention mechanism which allows the model to focus on certain parts of the input while generating the output. This allows GPT-3 to keep track of previous information and context when generating text, which can be thought of as a form of short-term memory.

Regarding the on-going chatting, GPT-3 can keep track of certain information, like the name you've provided, Masuda, during the conversation and use it in future responses. However, it's important to note that GPT-3 is a stateless model, which means that it doesn't have a permanent memory that it can refer to after a conversation ends.

Regarding learning from Q-A, GPT-3 is trained on a massive dataset of text, and it learns patterns and relationships between concepts from this data. It can generate text that is semantically meaningful and coherent, but it does not have the capability to learn new information from Q-A sessions and use it in future queries. However, OpenAI has developed another model called DALL-E, which uses GPT-3 and it is capable of learning from Q-A sessions and use it in future queries.

ぼく:

Is ChatGPT superior to the Google search? Previously people used Google to search for their questions. Now a days, ChatGPT can answer to those questions. What are pros and cons of ChatGPT over the Google search?

ChatGPT:

ChatGPT and Google search are different technologies with different capabilities and strengths.

Google search is a powerful web search engine that can quickly find relevant information from a vast amount of web pages and documents. It uses complex algorithms to rank and sort search results based on relevance, popularity, and other factors. Google search is very good at providing factual information and is an excellent tool for researching a wide range of topics.

ChatGPT, on the other hand, is a natural language processing model that can generate human-like text. It is trained on a large dataset of text and uses this knowledge to understand and respond to natural language input. ChatGPT can generate text that is more coherent and semantically meaningful than a simple information retrieval engine like Google search. ChatGPT can also be used to generate text that is more engaging and human-like, such as in chatbots and virtual assistants.

One of the main advantages of ChatGPT over Google search is its ability to understand and respond to natural language input in a more human-like way. ChatGPT can also generate text that is more coherent and semantically meaningful, which can be useful in many applications. However, Google search is better at providing factual information and searching for specific pieces of information.

Another disadvantage of ChatGPT is that it doesn't have the ability to retrieve information from the web, it can only generate text based on the patterns it has learned from the training data. That's why it's not a replacement for a web search engine like Google but it can be used as an additional tool to help people to find the information they are looking for.

In summary, ChatGPT and Google search have different strengths and capabilities. While Google search is better at providing factual information, ChatGPT is better at understanding and responding to natural language input in a more human-like way.

ぼく:

Why don't ChatGPT refer to Google search in the generation of the conversation? Google Assistant has such a function. Is the reason due to the fact that OpenAI is funded by Google?

ChatGPT:

ChatGPT is a language model that generates text based on the patterns it has learned from the training data. While it can understand and respond to natural language input in a human-like way, it does not have the capability to access external sources of information like Google search.

Google Assistant, on the other hand, is a virtual assistant that can access a wide range of information and services through the internet, including Google search. Google Assistant can use this information to provide more accurate and relevant responses to user queries.

The reason ChatGPT does not refer to Google search during the generation of the conversation is likely because it was not designed or trained to do so. Instead, it was designed to generate text based on the patterns it has learned from the training data, and it does not have the capability to access external sources of information.

It's worth noting that OpenAI and Google are separate organizations, even though Google is an investor in OpenAI, this doesn't necessarily mean that the two companies work together on their products and services. OpenAI has its own development team, goals and roadmap and they are independent from Google.

ぼく:

I am going to post this conversation with ChatGPT in the anonymous diary of Hatena co. What should I do for attracting people to get many bookmarks?

ChatGPT:

There are several things you can do to attract people and increase the chances of your conversation with ChatGPT getting many bookmarks on Hatena diary. Some suggestions include:

1. Make sure your conversation is well-written and easy to understand. Use clear and concise language, and consider formatting your text in a way that makes it easy to read.

2. Use relevant keywords and hashtags in your diary entry. This can help make your conversation more discoverable to people searching for related topics on Hatena diary.

3. Include images or videos in your diary entry. This can make your conversation more visually appealing and can help attract more readers.

4. Share your diary entry on social media or other platforms. This can help increase the visibility of your conversation and attract more readers.

5. Encourage readers to share their thoughts and opinions on your conversation by including a call to action or a question at the end of your diary entry.

6. Finally, you can also try to participate in the conversation on Hatena diary, by answering the questions, responding to the comments, and engaging with your readers.

It's important to remember that getting many bookmarks on a diary is not easy and it can take time and effort to build an audience. But by following these tips and being consistent with your diary entry, you will increase the chances of attracting more readers and getting more bookmarks.

ぼく:

Thank you. By the way, what is my name?

ChatGPT:

You've mentioned your name is Masuda.

2022-12-21

anond:20221221150739

まあtype=date無難なのかね

yyyyMMddもyyyy/MM/ddもyyyy/M/dもyyyyMdも許すと裏が面倒。あと日付チェックも必須になる

2022-12-19

Highly Sensitive People (HSP)、ググれば秒で出てきますやん。どうぞ anond:20221219010226

下記はカリフォルニア大学ビアンカアセベド博士研究紹介動画書籍記事(Pod cast)、

興味があればどうぞ

HSP brain studies

https://www.youtube.com/watch?v=qep36Vy_0pE

Did you know that the brain of a highly sensitive person (HSP) works differently?

> The results of fMRI brain studies conducted by Dr. Elaine Aron, Dr. Art Aron, Dr. Bianca Acevedo and their colleagues are quite fascinating.

 

高感度な人(HSP)の脳の働きが違うことを知っていますか?

レインアロン博士アートアロン博士ビアンカアセベド博士らが行ったfMRIによる脳の研究結果は、かなり魅力的です。 

 

 

[Amazon] The Highly Sensitive Brain: Research, Assessment, and Treatment of Sensory Processing Sensitivity 1st Edition

https://www.amazon.com/Highly-Sensitive-Brain-Assessment-Sensitivity/dp/0128182512

 

> The Highly Sensitive Brain is the first handbook to cover the science, measurement, and clinical discussion of sensory processing sensitivity (SPS),

> a trait associated with enhanced responsivity, awareness, depth-of-processing and attunement to the environment and other individuals.

> Grounded in theoretical models of high sensitivity, this volume discusses the assessment of SPS in children and adults,

as well as its health and social outcomes.

> This edition also synthesizes up-to-date research on the biological mechanisms associated with high sensitivity,

> such as its neural and genetic basis. It also discusses clinical issues related to SPS and seemingly-related disorders such as misophonia,

> a hyper-sensitivity to specific sounds. In addition, to practical assessment of SPS embedded throughout this volume is discussion of the biological basis of SPS,

> exploring why this trait exists and persists in humans and other species.

> 

>The Highly Sensitive Brain is a useful handbook and may be of special interest to clinicians, physicians, health-care workers, educators, and researchers.

 

『高感度脳』は、感覚処理感度(SPS)の科学、測定、臨床的考察網羅した初めてのハンドブックです。この巻では、高感度の理論モデルに基づいて、子どもと成人のSPSの評価健康社会的転帰について論じています。また、高感受性の神経基盤や遺伝的基盤など、高感受性に関連する生物学メカニズムに関する最新の研究をまとめています。また、SPSの臨床的な問題点や、特定の音に過敏に反応するミソフォニアなど、一見関連していると思われる疾患についても解説していますさらに、この巻全体に組み込まれたSPSの実用的な評価に加えて、SPSの生物学的基盤についての議論があり、なぜこの形質がヒトや他の種に存在し、持続するのかを探っています

臨床医医師医療従事者、教育者研究者にとって有益ハンドブックです。

 

 

[foreverbreak] Highly Sensitive People How to Tell If You’re an HSP + Shedding Light on This Misunderstood Trait

非常に敏感な人々 あなたHSPであるかどうかを見分ける方法+この誤解されている特性に光を当てる

https://foreverbreak.com/podcast/s1/e5/

 

 

 

まぁ、アセベト博士でなくてもいいけど(TEDかにもあるよ)

 

『高感度であることは障害ではない。遺伝的および生物学的要素を持つ生物学特性
HSPの子供は、自閉症スペクトラム障害共通点があるため誤って診断されることがある』
HPSギフトです』

 

ってなってるね

 

SADの方は個性ではなく治療すべきってことになってる

2022-09-25

anond:20220925234447

まれつきの性質やが?

 

Highly Sensitive People (HSP)

下記はカリフォルニア大学ビアンカアセベド博士研究紹介動画書籍記事(Pod cast)、

興味があればどうぞ

HSP brain studies

https://www.youtube.com/watch?v=qep36Vy_0pE

Did you know that the brain of a highly sensitive person (HSP) works differently?

> The results of fMRI brain studies conducted by Dr. Elaine Aron, Dr. Art Aron, Dr. Bianca Acevedo and their colleagues are quite fascinating.

 

高感度な人(HSP)の脳の働きが違うことを知っていますか?

レインアロン博士アートアロン博士ビアンカアセベド博士らが行ったfMRIによる脳の研究結果は、かなり魅力的です。 

 

 

[Amazon] The Highly Sensitive Brain: Research, Assessment, and Treatment of Sensory Processing Sensitivity 1st Edition

https://www.amazon.com/Highly-Sensitive-Brain-Assessment-Sensitivity/dp/0128182512

 

> The Highly Sensitive Brain is the first handbook to cover the science, measurement, and clinical discussion of sensory processing sensitivity (SPS),

> a trait associated with enhanced responsivity, awareness, depth-of-processing and attunement to the environment and other individuals.

> Grounded in theoretical models of high sensitivity, this volume discusses the assessment of SPS in children and adults,

as well as its health and social outcomes.

> This edition also synthesizes up-to-date research on the biological mechanisms associated with high sensitivity,

> such as its neural and genetic basis. It also discusses clinical issues related to SPS and seemingly-related disorders such as misophonia,

> a hyper-sensitivity to specific sounds. In addition, to practical assessment of SPS embedded throughout this volume is discussion of the biological basis of SPS,

> exploring why this trait exists and persists in humans and other species.

> 

>The Highly Sensitive Brain is a useful handbook and may be of special interest to clinicians, physicians, health-care workers, educators, and researchers.

 

『高感度脳』は、感覚処理感度(SPS)の科学、測定、臨床的考察網羅した初めてのハンドブックです。この巻では、高感度の理論モデルに基づいて、子どもと成人のSPSの評価健康社会的転帰について論じています。また、高感受性の神経基盤や遺伝的基盤など、高感受性に関連する生物学メカニズムに関する最新の研究をまとめています。また、SPSの臨床的な問題点や、特定の音に過敏に反応するミソフォニアなど、一見関連していると思われる疾患についても解説していますさらに、この巻全体に組み込まれたSPSの実用的な評価に加えて、SPSの生物学的基盤についての議論があり、なぜこの形質がヒトや他の種に存在し、持続するのかを探っています

臨床医医師医療従事者、教育者研究者にとって有益ハンドブックです。

 

 

[foreverbreak] Highly Sensitive People How to Tell If You’re an HSP + Shedding Light on This Misunderstood Trait

非常に敏感な人々 あなたHSPであるかどうかを見分ける方法+この誤解されている特性に光を当てる

https://foreverbreak.com/podcast/s1/e5/

 

2022-07-18

UNIX 哲学」についていくつか

名著「UNIXという考え方 - UNIX哲学」は本当に名著なのか? 〜 著者のガンカーズは何者なのかとことん調べてみた - Qiita

この記事はよく調べてあるなぁと思う反面,事実関係の間違いも多く当時の空気感など欠けていると思う部分がいくつかある。事実関係に関しては追い切れないので参考文献を挙げるにとどめておくが,空気感のほうはいくつか書いておく。なお当該記事の「当時と今では状況が全然違うんだから安易に『UNIX 哲学』とかいうな」という主旨には大賛成である

参考文献

初期の UNIX歴史について興味がある向きには次の書籍お薦めする。

Peter H. Salus『A Quarter Century of UNIX』(1994, Addison-Wesley Publishing)

和訳の『UNIXの1/4世紀』(Peter H. Salus, QUIPU LLC 訳, 2000, アスキー) は絶版のうえ訳も微妙なので薦めづらいが,原書The Unix Heritage Society (tuhs) で PDF が無償公開されているので,英語が苦にならないのなら読んでみるといい。

また同じく tuhs で無償公開されている Don Libes and Sandy Ressler『Life with UNIX』(1989, Prentice Hall)を読めば80年代終りの UNIX の状況(XENIX についてもしっかり言及されている)や利用者目線での雰囲気もある程度判るだろう。

哲学

記事で一番気になるのが「哲学」という語の捉え方。この言葉の強さに引きずられているように読める。でもこれ,当時は設計基本的な考え方くらいの意味でわりとよく使われていた言葉なんだよね。たとえば米 BYTE 誌のアーカイブを “philosophy” で全文検索するとこんな感じ。

https://archive.org/details/byte-magazine?query=philosophy&sin=TXT&sort=date

ほぼ毎号のように出現していたのが判るだろう。

もっとも猫も杓子も「哲学」を振りかざしていたわけではないし,UNIX開発者たちが「哲学」の語を好んで使っていたのも間違いないように思う。傍証の一つが AT&T定期刊行物『The Bell System Technical Journal』の1978年7, 8月号だ。元記事言及されているマキルロイの Forword の初出がこれで,ネットのアーカイブから PDF が入手できる。

この号は二部構成になっていて第一部が Atlanta Fiber System に関する論文12本(全172ページ),第二部が UNIX に関する(Preface や Foreword を含む)論文22本(全416ページ)となっている。さて前述の PDFOCR されているので “philosophy” で全文検索してみると8箇所見つかる。これが見事に全部 UNIX論文なのだ。もちろん論文性質もページ数も違うからこれだけで確定的なことはいえないが「日常的に使っていたんだろうなぁ」という推測は成り立つだろう。じつはマキルロイ哲学とされている部分は “Style” であり “philosophy” の語は一切使われていないというのもちょっと面白いUNIX開発者たちがなぜ「哲学」という語を好んだか正確なところは判らないが,それまでにない新しい考え方に基づいた OS を開発しているという意識があれば,そういう言葉を選ぶのが自然時代だったことは間違いない。

UNIX認知され拡がっていく過程で「哲学」も知られるようになっていった。自分が好むものの良さを他人にも識ってもらいたい,あわよくば他人もそれを好むようになって欲しいという布教活動は今も昔を変らないわけで「哲学」はその便利なツールとなったわけだ。元記事ではガンカースの著作を「外部の人間が後から打ち立てた哲学」と表現しているが,そんなたいしたものではない。マキルロイ論文に影響を受けた布教のためのああい説教は到るところにあった。たとえば前掲の『Life with UNIX』にもしっかり Philosophy の項がある。また日本最初期の UNIX 解説本のひとつである村井純井上尚司・砂原秀樹『プロフェッショナル UNIX』(1986,アスキー)には冒頭次のような一節がある。

オペレーティングシステムは,コンピュータを使うものにとっての環境形成する基盤であるから,そのうえで生活する者の個性尊重し,より良い環境へと作り上げて行く課程を支援するような素材を提供するソフトウェアでなければならない。この主張こそが,UNIXオペレーティングシステムとしての個性ではないだろうか。

 

    プロフェッショナル UNIX村井純井上尚司・砂原秀樹,1986,アスキー)p 3.

「より良い環境へと作り上げて行く課程を支援するような素材を提供するソフトウェア」とはテキストを入出力フォーマットとする単機能コマンド群のことで,これらをパイプでつなげたりシェルスクリプトでまとめたりすることで「そのうえで生活する者の個性尊重し」た「より良い環境へと作り上げて行く」ということだ。こういった説教はありふれたものであった。たんにそれを「哲学」の語を用いて書籍にまとめたのが,たまたまガンカースだったというだけのことである

そしてじつは UNIX場合布教活動とはべつに「哲学」を広めなければならない切実な理由があった。これを説明するのは非常に面倒くさい。当時と今ではあまりにも環境が違うのだが,その違いが判らないと切実さが伝わらないからだ。マア頑張ってみよう。

UNIX の利用環境

UNIXPDP というミニコンピュータミニコン)上に開発された。このミニコンを使うためには専用の部屋に行く必要がある。その部屋は,もちろん場所によって違うわけだが,マアおおよそ学校教室くらいの大きさだ。長机が何列か並んでおり,そのうえにはブラウン管ディスプレイキーボードを備えた機器が等間隔に置かれている。壁際にはプリンタが何台かあるだろう。通っていた学校コンピュータ室などと呼ばれる部屋があったならそれを思い浮かべればだいたい合ってる。ただし置かれている機器コンピュータではなくコンピュータ接続するための端末装置ターミナル)だ。端末装置キーボードで打った文字コンピュータに送られコンピュータが表示した文字がそのディスプレイに表示される。現在 UnixOSCLI を使うときターミナルとか xterm という名のアプリケーションを用いるがこれらは端末装置エミュレータで,もともとは実体のある装置だったわけだ。

さてコンピュータ室にたいていは隣接するかたちでマシンルームなどと呼ばれる六畳くらいの部屋がある。窓ガラスで仕切られたこの部屋には箪笥洗濯機くらいの大きさの装置が何台か置かれている。これがコンピュータ本体だ。もっとコンピュータが何台もあるわけではない。この箪笥CPU でそっちの洗濯機ハードディスク,あの机に置かれているタイプライタ管理コンソールといった具合に何台かある装置全部で一台のコンピュータになる。どこが〝ミニ〟だと突っ込みたくなるかもしれないが「六畳で収まるなんて,なんてミニ!」という時代お話だ。

端末装置それぞれからUSB のご先祖様の)RS-232 という規格のアオダイショウみたいなケーブルが伸び,マシンルームに置かれたターミナルマルチプレクサと呼ばれるスーツケースに台数分のアオダイショウが刺さってコンピュータとの通信を行う。コンピュータと多数の端末装置を含めたこれら全体をサイトと呼び,root 権限を持って管理業務を行う人をシステム管理者あるいはスーパーユーザと呼んだ。

結構上手に説明できたと思うのだが雰囲気は伝わっただろうか。ここで重要なのは一台のコンピュータを数十人が一斉に使っていたという事実だ。洗濯機とかアオダイショウとかは,マアどうでもいい。

自由不安定OS

当時の UNIX評価一言で表すと〝自由不安定OS〟となる。メーカお仕着せではなく自分好みの「より良い環境」を作りあげる自由さらに他のメインフレームミニコンOS に比べると一般ユーザ権限でできることが圧倒的に多かった。そしてその代償が不安定さ。今では考えられないが UNIX のその不安定さゆえにプロOS ではないと考える向きは多かったし「でも UNIX ってすぐ落ちるじゃん」というのは UNIX アンチ定番ディスりだった。UNIX の落とし方,みたいな情報がなんとなく廻ってきたものだ。

こういった雰囲気を鮮やかに伝えてくれるのが,高野豊『root から / へのメッセージ』(1991,アスキー)だ。当時アスキーが発行していた雑誌UNIX MAGAZINE』に連載されていた氏のエッセイ1986年11月から1988年10月掲載分までをまとめた書籍である。著者の高野氏は勤務先の松下電器1980年ごろから UNIX サイトスーパーユーザを務めており,日本では最古参の一人である。この本の中で高野氏は繰返し UNIX自由さと不安定さに言及している。すこし長くなるが,その中の一つを引用しよう。

CPU は,システムにとって重要な共有資源であるが,この CPU実質的に停めてしまうことが UNIXはいとも簡単にできる。たとえば,cc コマンド10個くらい同時に走らせてみたらよい。VAX-11/780 といえども,同時に実行できるコンパイルはせいぜい3つか4つである。それ以上実行することも当然可能ではあるが,他に与える影響が無視できなくなる。つまり,てきめんに viカーソルが動かなくなる。あるいは,すこし大きめなディレクトリ上での ls コマンドの出力が表示されるまでに煙草を1本吸い終えてしまったり,タイムアウトログインが撥ねつけられたりといったバカげた現象が起きだすのである。こういった状態になると,UNIX破壊されたに等しい。真夜中,独りで VAX を占有して使っているのなら何をやろうとかまわない。しかし,20人30人と多数の人間が使っているとき勝手をやられると非常に困るのである当人仕事が遅れるのは自業自得だとしても,そのとばっちりで他のエディタまで止まってしまうと,もはやどの仕事も進行しなくなる。

ディスクについても同様なことがいえる。UNIX では,ファイルシステムを使いはたすまで大きなファイル自由に作ることができる。したがって,自分プロセスがいったいどのくらいの容量のファイルを作り出すのか見当もつけられないようなアマチュアが使うと悲惨なことになる。ディスクを使いはたすと,コンソールタイプライターにエラーメッセージが出力されるが,夜中にそれが発生して,コンソールタイプライターが一晩中エラーメッセージを打ち続け,朝マシンルームに行ってみると紙を一箱打ち尽くしてしまい,ピーピーと悲しげな声を上げて人を呼んでいた光景を私は何度も見てきた。こうなると,それをしでかした本人のプロセスは当然のこととしても,同じディスクで走っている他のプロセスも先に進めなくなってしまう。すこしでも負荷を夜間にまわそうとする善意は逆転してしまい,わずかでも仕事を先に進めようとする意図完璧に打ち砕かれてしまうのである

 

    root から / へのメッセージ高野豊,1991,アスキー)pp16-17.

そして,こうした不安定さが「哲学」を必要としたのだ。自分が利用しているサイトに「cc コマンド10個くらい同時に走らせ」たり「自分プロセスがいったいどのくらいの容量のファイルを作り出すのか見当もつけられないようなアマチュア」がいるとその累は自分にも及んでしまう。だからサイト利用者全員に UNIX設計基本的な考え方を理解してもらうことが,自分のために必要だった。UNIX伝道がより苛烈だった理由ひとつがここにあるのだ。

ミニコン UNIX終焉

ミニコン上で誕生した UNIX は 4.3BSD(1986)で最高潮を迎える。注意したいのはミニコン時代UNIX は Research UNIXCSRG BSD みたいな区別をせずにまとめて UNIX として扱われていたことだ。実際『プロフェッショナル UNIX』も『root から〜』も UNIX記述されてはいるが実際には BSD を扱っている。べつに当時の人が無知だったわけではない。なにしろ BSD を利用するためにはまず AT&T から UNIXライセンスを購入し,そのうえでカリフォルニア大学バークレー校(UCB)から BSD を入手しなければならなかったからその関係は当然広く知られていた。ベル研発明された UNIX を外部の人たちも含めみんなで改良し,それら全体が UNIX であるという考え方が自然だっただけである。『Life with UNIX』のような英語の文献によく登場する “Berkeley UNIX” という言い回しが当時の気分をよく表している。UNIX vs BSD みたいな捉え方は法廷闘争を経た90年代以降の感覚だ。

もっともそういう70年代風味の牧歌的風景ミニコン世界限定の話であった。BSDのものミニコンのものしかなかったが,そのコードを受け継いだ BSDUnixAT&T推し進める System V などがワークステーション市場舞台80年代中盤から激しく覇権を争うようになる。いわゆる Unix 戦争で,PCUnix であるマイクロソフトXENIX も当然参戦した。ミニコン世界牧歌的だったのは,ぶっちゃけていえば先のない技術だったからだ。ただ Unix 戦争あくまでも標準という聖杯を争う戦いであり,AT&TBSDUnixSun Microsystems が共同で System V Release 4.0 (SVR4) を作りあげたように後の法廷闘争とは趣が違う。

こうしたミニコン UNIX からワークステーション Unix への転変は Unixのもの文化にも変化をもたらした。まず激しい競争Unix の高機能化を加速した。商品として判りやす惹句が「あれもできます,これもできますなのは誰もが知っている。もちろん安定性を増すために quota のような利用者自由制限する機能も含まれていた。またワークステーション Unix現在UnixOS と同様同時に一人が使うものであり前述の布教必要性は大幅に減じた。達人たちのみの楽園から万人に開かれた道具に変ったのだ。こういった変化を体感したければ『root から〜』と水越賢治『スーパーユーザの日々』(1993,オーム社)を読み比べてみるといい。『スーパーユーザの日々』はワークステーション Unixシステム管理入門書だ。この本ではたんに知識を羅列するかわりに架空ソフトウェアハウス(開発会社)を舞台新卒社員が先輩社員からシステム管理を学ぶという体裁をとっており,そのおかげで架空の話とはいえ90年代前半の雰囲気が堪能できる。出版年でいえば『root から〜』と二年しか違わない『スーパーユーザの日々』の落差は “dog year” と称された当時の激烈な変化まで体感できるだろう。

UNIX 哲学背骨

当時はよくいわれたのに今やほとんど聞かれなくなったものがある。マキルロイ論文結論部分に書かれたそれは,1973年出版されたイギリス経済学者エルンストシューマッハー著作題名で,中学生英語力があれば十分に理解できる平明な一文だ。

Small is beautiful.

マキルロイは『人月神話』を引いて一定留保をつけてはいものの,これが UNIX 哲学背骨であることに違いはない。機能をありったけ詰め込もうとして失敗した “kitchen-in-a-sink” な MULTI•csアンチテーゼである UNI•x にとって,これ以上のスローガンがあるだろうか?

ひるがえって現在UnixOS をみれば,ブクブクと肥え太ったシステムコール,全容を俯瞰するだけでも一苦労するライブラリインターフェイス,一生使うことのないオプションスイッチまみれのコマンド群。UNIX仮想敵とした OSのものだ。そのことについてとくになにも思わない。ハードウェアは長足の進歩を遂げ,コンピュータの応用範囲は途方もなく拡がった。UNIX が変らなければたんに打ち棄てられ,歴史書を飾る一項目になっただけだ。ただ現在UNIX 哲学」を語るならそうした背景は理解していなければならないし,どれだけ繊細な注意を払ったところで〝つまみ食い〟になってしまうことは自覚すべきだ。

2022-07-17

統一教会イベント映像配信に堂々と出演している日本人たち簡易まとめ(2022年7月中旬時点)

2022年7月中旬時点での情報公式Youtubeチャンネル公式サイトtv.peacelink.live上で探した際に見つけやすい形で堂々と出演していた日本人たちをリストアップ。そのため精度が高い情報ではない。

https://www.youtube.com/channel/UCrgyZY2ywXsTWjzAWKnjEcg

https://tv.peacelink.live/home

安倍晋三

2021年9月12日THINK TANK 2022 希望前進大会」にてビデオ演説2022年2月13日ワールドサミット2022・韓半島平和サミット」にて書面演説https://anond.hatelabo.jp/20220713090656

伊達忠一(前参議院議長)

イベント出演時には(安倍晋三ほどではないが)日本代表VIP(2番手?)として扱われている。紹介時の肩書きは「第31日本参議院議長」。出演回数は3回以上。

出演映像

韓半島平和サミット開幕式(出演部分だけを切り抜いた公式動画) https://www.youtube.com/watch?v=fIsTxkGlo6g

[World summit] 월드서밋 2020 KINTEX 다테 추이치 (Hon. Chuichi Date 伊達 忠一)일본 전 참의원 의장 세계평화정상연합 총회 (ISCP) 연설

[World summit] 월드서밋 2020 KINTEX 다테 추이치 (Hon. Chuichi Date 伊達 忠一)일본 전 참의원 의장 환영만찬 연설

原田義昭(前前環境大臣)

イベント出演時には(安倍晋三ほどではないが)日本代表VIP(3番手?)として扱われている。紹介時の肩書きは「第26代日本環境大臣」。出演回数は2回以上。関連組織世界平和議員連合(IAPP)」の議員連盟会長でもある。

出演映像

韓半島平和サミット開幕式(出演部分だけを切り抜いた公式動画) https://www.youtube.com/watch?v=OwYAuMQ752w

[第3回THINK TANK 2022 フォーラム] 日本専門家の質疑

高木宏壽(現衆議院議員)

韓国から日本への映像中継の進行役として登場。「日本国会議員です」と自己紹介している通り現衆議院議員。大物の現役政治家としては安倍晋三高木宏壽の二人だけ。

出演映像

韓半島平和サミット開幕式 https://www.youtube.com/watch?v=f2ricogBBbE&t=6906s

大野功統

紹介時の肩書きは「第70-71代防衛庁長官」。「小野義徳」という表記もあった。出演回数は3回以上。

出演映像

[第1回THINK TANK 2022 フォーラム] 日本専門家の質疑

[第4回THINK TANK 2022 フォーラム] 日本専門家の質疑

韓半島平和サミット開幕式の日本中継の後部で参席(発言無し)

穴見陽一

紹介時の肩書きは「衆議院議員」。

出演映像

[第2回THINK TANK 2022 フォーラム] 日本専門家の質疑

阿部信泰

紹介時の肩書きは「元国連軍担当事務次長」。出演回数は2回以上。

出演映像

[第1回THINK TANK 2022 フォーラム] 日本専門家の質疑

[第4回THINK TANK 2022 フォーラム] 日本専門家の質疑

香田洋二

紹介時の肩書きは「第36代自衛艦隊司令官」。出演回数は2回以上。

出演映像

[第2回THINK TANK 2022 フォーラム] 日本専門家の質疑

[第4回THINK TANK 2022 フォーラム] 日本専門家の質疑

上田秀明

紹介時の肩書きは「元駐オーストラリア大使」。

出演映像

[第1回THINK TANK 2022 フォーラム] 日本専門家の質疑

山口

紹介時の肩書きは「日本国際大学学長」。

出演映像

[第1回THINK TANK 2022 フォーラム] 日本専門家の質疑

開幕式の中継の後ろに並んでた人たち

「30人ほどの議員があつまっている」と紹介しており、中継映像内に10人ほどの議員っぽい人たちが映る。

柳本卓治松本文明小林興起。中継で映っていた人たちの残り6人ほどは名札も見えず誰なのか判別できなかった

石井幸孝

紹介時の肩書きは「九州旅客鉄道初代社長」。

出演映像

[World summit 2020] Mr. Yoshitaka Ishi_Former President, Kyushu Railway Company_세계평화경제인대회 (IAED)

野田順康

紹介時の肩書きは「西南学院大学法学部教授」。

出演映像

[第3回THINK TANK 2022 フォーラム] 日本専門家の質疑

西川吉光

紹介時の肩書きは「東洋大学名誉教授」。

出演映像

[第2回THINK TANK 2022 フォーラム] 日本専門家の質疑

[World summit] 월드서밋 2020 KINTEX_요시미츠 니시카와 (Yoshimitsu Nishikawa)일본도쿄대 글로벌·지역학부 교수 세계평화학술대회 (IAAP) 연설

第7回神統韓国平和フォーラム (2021.11.12)

その他(統一教会側っぽい人たち)

梶栗正義。紹介時の肩書きは「日本UPF議長」。

黒木正博。紹介時の肩書きは「世界日報社長」。

Yuya Watase (Executive Director of The Washington Times Japan)。

など

2022-07-15

4時間くらい悩みに悩みまくってコードめちゃくちゃ書き直して

最終的にわかった修正箇所が

data と date の書き間違いだった

2022-06-27

Core Keeper Dedicated Server を VPS 上に構築したときの手順メモ

Ubuntu 22.04 LTS x86_64 で構築。

CoreKeeper側で apt依存しているっぽいので、Ubuntu でやった方が楽だと思います

Tips

Ubuntu 20 TLS でやる場合、/home/steam/Steam/ が /home/steam/.steam/ になってたと思うので、環境に合わせて読み替えてください。

Install steamcmd dependent packages

dpkg --add-architecture i386
add-apt-repository multiverse
apt-get update
apt-get dist-upgrade
reboot

Create steamcmd User

useradd -m steam
passwd steam
gpasswd -a steam sudo

Steamcmd / Core Keeper Dedicated Server Install

sudo -u steam -s
cd
sudo apt install steamcmd
ln -s /usr/games/steamcmd steamcmd
./steamcmd +login anonymous +app_update 1007 +app_update 1963720 +quit

Run steamcmd (Install and Creating Core Keeper Dedicated Server system drectory )

cd ~/Steam/steamapps/common/Core\ Keeper\ Dedicated\ Server/
./_launch.sh

Press Ctrl + C for Stop Core Keeper Dedicated Server

World file migration (if there is an old file)

mkmir -p -m 775 /home/steam/.config/unity3d/Pugstorm/Core\ Keeper/DedicatedServer/worlds
chown steam:steam /home/steam/.config/unity3d/Pugstorm/Core\ Keeper/DedicatedServer/worlds

Copy old world file (0.world.gzip) to

/home/steam/.config/unity3d/Pugstorm/Core\ Keeper/DedicatedServer/worlds

Copy old setting file (*.json) to

/home/steam/.config/unity3d/Pugstorm/Core\ Keeper/DedicatedServer/

chmod 664 /home/steam/.config/unity3d/Pugstorm/Core\ Keeper/DedicatedServer/worlds/0.world.gzip
chmod 664 /home/steam/.config/unity3d/Pugstorm/Core\ Keeper/DedicatedServer/*.json

Backup setting

vi /etc/cron.hourly/corekeeper_backup

#!/bin/bash
cp -a /home/steam/.config/unity3d/Pugstorm/Core\ Keeper/DedicatedServer/worlds/0.world.gzip /home/steam/worldbackup/0.world.gzip.`date '+%Y%m%d%H%M%S'`
cp -a /home/steam/Steam/steamapps/common/Core\ Keeper\ Dedicated\ Server/CoreKeeperServerLog.txt /home/steam/worldbackup/CoreKeeperServerLog.txt.`date '+%Y%m%d%H%M%S'`

chmod 777 /etc/cron.hourly/corekeeper_backup

sudo -u steam -s
cd
mkdir worldbackup

Start Core Keeper Dedicated Server

sudo -u steam -s
cd ~/Steam/steamapps/common/Core\ Keeper\ Dedicated\ Server/
nohup ./_launch.sh
tail -f ~/Steam/steamapps/common/Core\ Keeper\ Dedicated\ Server/CoreKeeperServerLog.txt

サーバースペック

利用者問題か、サーバー問題かわかりませんが人数が10人超えると CPU4コア/メモリ4G/100Mbps で結構ラグかったです。

今は CPU6コア/メモリ8G/1000Mbps で動かしています

不具合 (2022/06/28時点)

6-8人以上で2-3時間サーバー動かしてると、Unityライブラリがsegfault起こして、Core Keeper Dedicated Server が落ちます

ログ取れたのでバグレポしましたが、改善するまでは不特定多数が好き勝手するサーバーみたいなのを長期運用するのは厳しいかなと思いますタイミングによってはアイテムロストしてしまうので。

遊びで使うなら、ウォッチドック的なサービスを入れて、落ちたら適宜起動しなおすみたいな対応をした方がよいと思います

2022-04-24

anond:20220423173601

・たま「むし」

斉藤和義「歩いて帰ろう」

DATE OF BIRTHSummer of Love

TMN「THE POINT OF LOVERS' NIGHT」

Access「Cosmic Runaway」

2022-04-17

フィンランドNATO加盟のタイムラグを無くすたった一つの冴えたやり方

フィンランドNATO加盟国宣戦布告、形だけの攻撃

NATO軍がフィンランド領内に侵入して無血占領

降伏or和平

講和条約北大西洋条約条約同時発効にする

 

フィンランドNATO加盟申請して効力が出る(集団防衛義務)までの間にロシア攻撃される可能性が危惧されているが、これは北大西洋条約1011条のため。

The North Atlantic Treaty

Article 10

 

The Parties may, by unanimous agreement, invite any other European State in a position to further the principles of this Treaty and to contribute to the security of the North Atlantic area to accede to this Treaty. Any State so invited may become a Party to the Treaty by depositing its instrument of accession with the Government of the United States of America. The Government of the United States of America will inform each of the Parties of the deposit of each such instrument of accession.

 

第十条

締約国は、この条約原則を促進し、かつ、北大西洋地域安全に貢献する地位にある他のヨーロッパの国に対し、この条約に加入するよう全員一致の合意により招請することができる。このようにして招請された国は、その加入書をアメリカ合衆国政府寄託することによつてこの条約締約国となることができる。アメリカ合衆国政府は、その加入書の寄託を各締約国通報する。

Article 11

This Treaty shall be ratified and its provisions carried out by the Parties in accordance with their respective constitutional processes. The instruments of ratification shall be deposited as soon as possible with the Government of the United States of America, which will notify all the other signatories of each deposit. The Treaty shall enter into force between the States which have ratified it as soon as the ratifications of the majority of the signatories, including the ratifications of Belgium, Canada, France, Luxembourg, the Netherlands, the United Kingdom and the United States, have been deposited and shall come into effect with respect to other States on the date of the deposit of their ratifications.

第十一条

締約国は、各自憲法上の手続に従つて、この条約批准し、その規定実施しなければならない。批准書は、できる限りすみやかにアメリカ合衆国政府寄託するものとし、同政府は、その寄託を他のすべての署名国に通告する。この条約は、ベルギーカナダフランスルクセンブルグオランダ連合王国及び合衆国批准書を含む署名国の過半数批准書が寄託された時に、この条約批准した国の間で効力を生じ、その他の国については、その批准書の寄託の日に効力を生ずる。

まり、加盟希望国が加盟できるのは既加盟国招聘により、その招聘は既加盟国の全員一致が原則

からロシアには緊張を高めるために国境侵犯して紛争を起こし紛争国にしてしまうという手がある。

またロシアは各国の極右を手先にしていて彼等はプーチンロシア利益自国孤立して得られる利益の為に動く。反国際主義だがロシアは別なのだな。仏の大統領選次位のルペンもこれに含まれる。更にルペンNATO離脱派だ。

過去中欧加盟では加盟には結構プロセスを踏んでいて、希望国は根回し外交平和維持軍への派兵等の域外活動に参加したりした上で全員一致の承認を得ている。

なのでロシア対立状態にあるフィンランドの加盟は難航するしその間にロシアが何するか判らなくて危険

だったら冒頭みたいな無茶しないと紛争に持ち込まれちゃうわけよ。

このアイデアだったらある日いきなりNATO軍が領内に居るから手を出せないし講和と同時に軍事同盟加盟は不自然じゃない。

フィンランド人の血が流れたらそれが原因で加盟も流れちゃうのだから無駄死にになってしまう。だからこのブリリアントアイデアしかないのだ。

 

ま~でもロシア歴史的に、多方面で利の無い戦争継続してたら内乱皇帝処刑される、臨時政府が打倒されるってのがパターンなのだが。動員せずに戦争じゃなくて特別軍事作戦と言ってるのもそのせいでしょ。

2022-01-21

ゴミドメイン

coinhive判決が出たことで今後こんなイタチごっこと戦う必要が出てきました

ありがとう最高裁ありがとう技術を守るために戦ってくれたエンジニア大先生!って言う人間がいるのが驚き

日本インターネットに対して汚点のような判例を残さずに済んだ事に心底安堵しています。」

「もしこれを許せば、今後の日本技術開発やプログラム開発は萎縮してしまって、諸外国ますます置いていかれることになってしまう。」

127.0.0.1 www.hostingcloud.racing

127.0.0.1 www.hashing.win

127.0.0.1 www.freecontent.date

127.0.0.1 www.freecontent.bid

127.0.0.1 www.freecontent.stream

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