「case」を含む日記 RSS

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

2026-08-15

俺のemacs設定

;;; ~/.emacs --- Development settings -*- lexical-binding: t; -*-

;;; Package management

(require 'package)

;; Keep the built-in GNU ELPA archive and add NonGNU ELPA and MELPA.
(add-to-list 'package-archives
             '("nongnu" . "https://elpa.nongnu.org/nongnu/") t)
(add-to-list 'package-archives
             '("melpa" . "https://melpa.org/packages/") t)

(package-initialize)

(defconst my/required-packages
  '(web-mode
    js2-mode
    typescript-mode
    php-mode
    cython-mode
    jinja2-mode
    cyberpunk-theme)
  "Packages required by this configuration.")

;; Install only missing packages.  A network failure must not prevent Emacs
;; from starting; the failed package is simply reported in *Messages*.
(let (missing-packages)
  (dolist (pkg my/required-packages)
    (unless (package-installed-p pkg)
      (push pkg missing-packages)))

  (when missing-packages
    (condition-case err
        (package-refresh-contents)
      (error
       (message "Package archive refresh failed: %s"
                (error-message-string err))))

    (dolist (pkg (nreverse missing-packages))
      (unless (package-installed-p pkg)
        (condition-case err
            (package-install pkg)
          (error
           (message "Package installation failed (%s): %s"
                    pkg (error-message-string err))))))))

;;; Cyberpunk theme

(when (package-installed-p 'cyberpunk-theme)
  (condition-case err
      (progn
        ;; A theme is global, so this applies to every major mode.
        (mapc #'disable-theme custom-enabled-themes)
        (load-theme 'cyberpunk t))
    (error
     (message "Could not load cyberpunk theme: %s"
              (error-message-string err)))))

;;; Python and Cython

(defun my/call-formatter (program arguments file log-buffer)
  "Run PROGRAM with ARGUMENTS on FILE, writing output to LOG-BUFFER.
Signal an error when the process does not exit successfully."
  (let ((exit-code
         (apply #'call-process
                program nil log-buffer nil
                (append arguments (list file)))))
    (unless (and (integerp exit-code) (zerop exit-code))
      (error "%s failed with exit code %s; see %s"
             program exit-code (buffer-name log-buffer)))))

(defun my/replace-buffer-from-file (file)
  "Replace the current buffer contents with FILE."
  (let ((formatted-buffer (generate-new-buffer " *python-formatted*")))
    (unwind-protect
        (progn
          (with-current-buffer formatted-buffer
            (insert-file-contents file))
          (if (fboundp 'replace-buffer-contents)
              (replace-buffer-contents formatted-buffer)
            ;; Compatibility fallback for older Emacs versions.
            (let ((old-point (point)))
              (erase-buffer)
              (insert-file-contents file)
              (goto-char (min old-point (point-max))))))
      (kill-buffer formatted-buffer))))

(defun my/python-format-buffer ()
  "Format the entire Python/Cython buffer with isort and autopep8.

Each formatter is used only when its executable is present in `exec-path'.
The autopep8 E501 rule is ignored, so autopep8 does not enforce the
79-character line-length limit.  Changes are applied only after every
available formatter exits successfully."
  (interactive)
  (let ((isort-program (executable-find "isort"))
        (autopep8-program (executable-find "autopep8")))
    ;; Missing commands are deliberately ignored.
    (when (or isort-program autopep8-program)
      (save-restriction
        (widen)
        (let* ((source-directory
                (and buffer-file-name
                     (file-name-directory buffer-file-name)))
               (temporary-file-directory
                (if (and source-directory
                         (file-writable-p source-directory))
                    source-directory
                  temporary-file-directory))
               (suffix (if (derived-mode-p 'cython-mode) ".pyx" ".py"))
               (temp-file
                (make-temp-file "emacs-python-format-" nil suffix))
               (log-buffer (get-buffer-create "*Python formatter*"))
               (coding-system-for-write buffer-file-coding-system)
               (coding-system-for-read buffer-file-coding-system))
          (unwind-protect
              (progn
                (with-current-buffer log-buffer
                  (erase-buffer))

                (write-region (point-min) (point-max)
                              temp-file nil 'silent)

                ;; Import sorting first, then PEP 8 whitespace cleanup.
                (when isort-program
                  (my/call-formatter
                   isort-program '("--quiet") temp-file log-buffer))

                (when autopep8-program
                  (my/call-formatter
                   autopep8-program
                   '("--in-place" "--ignore=E501")
                   temp-file log-buffer))

                (my/replace-buffer-from-file temp-file)
                (message "Python formatting completed"))
            (when (file-exists-p temp-file)
              (delete-file temp-file))))))))

(defun my/python-editing-setup ()
  "Common setup for Python and Cython buffers."
  (setq-local indent-tabs-mode nil)
  (when (boundp 'python-indent-offset)
    (setq-local python-indent-offset 4))
  (local-set-key (kbd "C-c C-r") #'my/python-format-buffer))

(add-hook 'python-mode-hook #'my/python-editing-setup)
(add-hook 'python-ts-mode-hook #'my/python-editing-setup)
(add-hook 'cython-mode-hook #'my/python-editing-setup)

(autoload 'cython-mode "cython-mode" "Major mode for Cython." t)
(add-to-list 'auto-mode-alist '("\\.pyx\\'" . cython-mode))
(add-to-list 'auto-mode-alist '("\\.pxd\\'" . cython-mode))
(add-to-list 'auto-mode-alist '("\\.pxi\\'" . cython-mode))

;;; Web development modes

(autoload 'web-mode "web-mode" "Major mode for web templates." t)
(autoload 'js2-mode "js2-mode" "Major mode for JavaScript." t)
(autoload 'typescript-mode "typescript-mode" "Major mode for TypeScript." t)
(autoload 'php-mode "php-mode" "Major mode for PHP." t)
(autoload 'jinja2-mode "jinja2-mode" "Major mode for Jinja2 templates." t)

;; Add the generic PHP rule first.  More specific *.blade.php and template
;; rules are prepended afterwards and therefore take priority.
(add-to-list 'auto-mode-alist '("\\.php\\'" . php-mode))
(add-to-list 'auto-mode-alist '("\\.phtml\\'" . web-mode))
(add-to-list 'auto-mode-alist '("\\.tpl\\.php\\'" . web-mode))
(add-to-list 'auto-mode-alist '("\\.blade\\.php\\'" . web-mode))

(add-to-list 'auto-mode-alist '("\\.html?\\'" . web-mode))
(add-to-list 'auto-mode-alist '("\\.xhtml\\'" . web-mode))
(add-to-list 'auto-mode-alist '("\\.shtml\\'" . web-mode))

(add-to-list 'auto-mode-alist '("\\.css\\'" . css-mode))
(add-to-list 'auto-mode-alist '("\\.scss\\'" . web-mode))
(add-to-list 'auto-mode-alist '("\\.less\\'" . web-mode))

(add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
(add-to-list 'auto-mode-alist '("\\.mjs\\'" . js2-mode))
(add-to-list 'auto-mode-alist '("\\.cjs\\'" . js2-mode))
(add-to-list 'auto-mode-alist '("\\.ts\\'" . typescript-mode))

;; React: web-mode handles JSX and TSX.
(add-to-list 'auto-mode-alist '("\\.jsx\\'" . web-mode))
(add-to-list 'auto-mode-alist '("\\.tsx\\'" . web-mode))

;; Other common web-template/component files supported by web-mode.
(add-to-list 'auto-mode-alist '("\\.vue\\'" . web-mode))
(add-to-list 'auto-mode-alist '("\\.svelte\\'" . web-mode))
(add-to-list 'auto-mode-alist '("\\.twig\\'" . web-mode))

;; Explicit Jinja2 suffixes.  Files such as page.html.j2 are also covered.
(add-to-list 'auto-mode-alist '("\\.j2\\'" . jinja2-mode))
(add-to-list 'auto-mode-alist '("\\.jinja\\'" . jinja2-mode))
(add-to-list 'auto-mode-alist '("\\.jinja2\\'" . jinja2-mode))

(with-eval-after-load 'web-mode
  (add-to-list 'web-mode-engines-alist
               '("blade" . "\\.blade\\.php\\'"))
  (add-to-list 'web-mode-content-types-alist
               '("jsx" . "\\.\\(jsx\\|tsx\\)\\'")))

(defun my/insert-two-spaces ()
  "Insert exactly two spaces."
  (interactive)
  (insert "  "))

(defun my/web-editing-setup ()
  "Disable automatic indentation and make TAB insert two spaces."
  (setq-local indent-tabs-mode nil)
  (setq-local tab-width 2)
  (setq-local standard-indent 2)
  (setq-local electric-indent-chars nil)

  ;; web-mode also has its own auto-indent-on-yank switch, independent of
  ;; Emacs electric indentation.
  (when (boundp 'web-mode-enable-auto-indentation)
    (setq-local web-mode-enable-auto-indentation nil))

  ;; Keep any manually invoked indentation command at two spaces, even though
  ;; TAB itself is deliberately changed into literal space insertion.
  (dolist (variable
           '(sgml-basic-offset
             css-indent-offset
             js-indent-level
             js2-basic-offset
             typescript-indent-level
             c-basic-offset
             web-mode-markup-indent-offset
             web-mode-css-indent-offset
             web-mode-code-indent-offset
             web-mode-attr-indent-offset))
    (when (boundp variable)
      (set (make-local-variable variable) 2)))

  (when (fboundp 'electric-indent-local-mode)
    (electric-indent-local-mode -1))
  (when (fboundp 'electric-layout-local-mode)
    (electric-layout-local-mode -1))

  ;; php-mode is based on CC Mode, which has another independent electric
  ;; indentation mechanism for characters such as ; and }.
  (when (derived-mode-p 'php-mode)
    (when (fboundp 'c-toggle-auto-newline)
      (c-toggle-auto-newline -1))
    (when (fboundp 'c-toggle-electric-state)
      (c-toggle-electric-state -1)))

  ;; Prevent mode-specific RET commands from indenting the next line.
  (local-set-key (kbd "RET") #'newline)
  (local-set-key (kbd "<return>") #'newline)

  ;; TAB must insert two literal spaces, not run an indentation command.
  (local-set-key (kbd "TAB") #'my/insert-two-spaces)
  (local-set-key (kbd "<tab>") #'my/insert-two-spaces))

(dolist (hook
         '(web-mode-hook
           html-mode-hook
           mhtml-mode-hook
           css-mode-hook
           css-ts-mode-hook
           js-mode-hook
           js2-mode-hook
           js-ts-mode-hook
           typescript-mode-hook
           typescript-ts-mode-hook
           tsx-ts-mode-hook
           php-mode-hook
           jinja2-mode-hook))
  (add-hook hook #'my/web-editing-setup))

;;; .emacs ends here
(custom-set-variables
 ;; custom-set-variables was added by Custom.
 ;; If you edit it by hand, you could mess it up, so be careful.
 ;; Your init file should contain only one such instance.
 ;; If there is more than one, they won't work right.
 '(package-selected-packages nil))
(custom-set-faces
 ;; custom-set-faces was added by Custom.
 ;; If you edit it by hand, you could mess it up, so be careful.
 ;; Your init file should contain only one such instance.
 ;; If there is more than one, they won't work right.
 )

2026-08-06

anond:20260806192115

ベッセント Sorry, Joe, a day late and a yen short. It's called the FIMA facility and the -- we'll give you something. We'll come up with something for you next time. And look, the -- what the facilities that the Federal Reserve has, whether it's the FIMA facility or the swap lines, the purpose is to protect the U.S. economy and to keep any volatility offshore, prevent it from happening before it reaches our U.S. shores. 残念ながらジョー、それは遅すぎますし(*a day late*)、円も足りませんね(*a yen short*)。それは「FIMA(フィーマ)ファシリティ」と呼ばれています。次回来る時には、あなたのために何か別の名前を考えておきますよ。連邦準備制度が持っている制度(FIMAファシリティであれ、スワップラインであれ)の目的は、米国経済保護し、いかなる変動もオフショア海外)に留めて、米国海岸に到達する前に発生を防ぐことにあります
ベッセント And the FIMA facility was done in 2020, size of the bond market was much smaller then. So, I think it would be reasonable for the Fed to consider upsizing the facility. I'm happy that the Japanese government wants to use it and draw on it, and it's a completely secure lending facility. We have swap lines outstanding, so it's really no different than a swap line that the country post collateral, and we lend them the money to intervene in this case. And I think it is a very robust facility. And I think it was set up for occasions just like this. FIMAファシリティ2020年設立されましたが、当時の債券市場の規模は現在よりもはるかに小さかった。ですからFRBがこの制度の増枠を検討することは妥当だと思います日本政府が(米国債を市場で売却する代わりに)この制度を利用して資金を引き出したいと考えていることを嬉しく思いますし、これは完全に安全融資制度です。すでにスワップライン存在していますが、本質的には、国が担保差し入れて、私たちが介入のための資金を貸し付けるスワップラインと何ら変わりありません。非常に堅牢な仕組みであり、まさにこのような時のために設立されたものだと思います
クイック Mr. Secretary, you spoke about this as kind of a currency intervention, as diplomacy, because we have a close relationship with Japan, because we're trying to work with them on a lot of things. But the Treasury Department actually, sold euros to buy those yen. The sale of the euros is that kind of collateral damage in this, or was there diplomacy that was at work there, too, for partners we may not be as happy with lately? 長官あなたはこれを通貨介入、そしてある種の外交ディプロマシー)としてお話しされました。日本とは緊密な関係があり、多くの点で協力しようとしているからです。しかし、財務省は実際にユーロを売って円を買いました。このユーロ売却は、一種の「巻き添え被害コラテラル・ダメージ)」なのでしょうか。あるいは、最近私たちがそれほど快く思っていない相手国に対する外交的な意図がそこにも働いていたのでしょうか?
ベッセント No. The Europeans are, obviously in close contact with our European partners, including at the Central Bank, including some of the finance ministers of the nation states. And I assured them that it was just a reallocation of our reserves. Seems to me that the euro is much closer to an equilibrium price. I'm not going to talk about where the euro should or should not trade, but it's really the substantial undervaluation of the yen here and the policies that the Takaichi government is pushing, putting in place to change that. いいえ。ヨーロッパパートナー中央銀行や一部の加盟国財務大臣を含む)とは、当然ながら緊密に連絡を取り合っています。そして彼らには、これが単に我が国外貨準備の再配分(リアロケーション)に過ぎないことを説明し、安心させました。私には、ユーロ均衡価格に極めて近いように思えますユーロがどこで取引されるべきかについて語るつもりはありませんが、問題本質は、ここにおける日本円の著しい過小評価安値)と、それを是正するために高市政権(Takaichi government)が推し進め、導入しようとしている政策にあります
クイック The idea of the carry trade, obviously, you're protecting against people relying on the carrying trade too heavily. Do you think it would be a bad thing if the carry trade went away entirely, or does it depend on if that's an orderly move? キャリートレード観点ですが、明らかに人々がキャリートレードに過度に依存しすぎるのを防ごうとしていますね。キャリートレードが完全に消滅してしまうのは悪いことだと思いますか?それとも、それが秩序ある動き(*orderly move*)であるかどうかによるのでしょうか?
ベッセント Well, I don't think the carry trade is ever going to go away entirely. Japan has a gigantic surplus of foreign assets, and they provide liquidity to the rest of the world. Japan Inc. since the '70s, '80s, all through the '90s up until now has accumulated substantial overseas assets, and I see no reason for that to stop. And it's just the level of the yen that could trigger other problems or trigger competitive devaluations, which is unhealthy. まあ、キャリートレードが完全に消滅することはないと思います日本は巨額の対外資黒字を抱えており、世界全体に流動性提供しています。「日本株式会社(*Japan Inc.*)」は70年代80年代90年代を通じて、そして現在に至るまで、莫大な海外資産を蓄積してきました。それが止まる理由は見当たりません。問題なのは、他の問題引き起こしたり、不健全競争通貨切り下げ(デvaluation)を誘発したりしかねない、現在の円の(あまりに安すぎる)水準なのです。
カーネン A lot of things, making it sort of tough on, on Japan, right now, Mr. Secretary. I'm just wondering whether just purely fiscal and even monetary changes can really help. I mean, there's a lot of capital inflow. It's good for us. A.I., all the money's coming here around the world because this is where the returns are in A.I. You know, the war in Iran makes their importers of energy in Japan. I mean, it's just, it's, what's the Shakespeare quote? How all occasions doth inform against us. It just seems like one thing after another has put additional pressure. Could they raise rates like they should? Could they end Q.E. or would that just compound their problems? 長官現在日本を取り巻く環境は、多くの点で非常に厳しい状況にありますね。純粋財政政策さらには金融政策の変更だけで、本当に状況が好転するのか疑問に思っています。というのも、現在米国には)大量の資本流入があります。我々にとっては良いことですが、AIを巡る利益が期待できるため、世界から資金がここに集まっています。また、イランとの戦争により、日本エネルギー輸入国として厳しい立場にあります。まさにシェイクスピアの言う『如何なる出来事も我らに不利な証言をする(*How all occasions doth inform against us*)』の引用通りです。次から次へと追加の圧力がかかっているように見えます。彼らは本来すべきであるように金利を引き上げるべきでしょうか?あるいはQE量的緩和)を終了すべきでしょうか、それともそれは問題さらにこじらせるだけでしょうか?
ベッセント Well, a lot to unpack there, Joe. So, let's start with in my X post over the weekend, I said, I believe the Japanese government understands that we're at the end of Abenomics or one phase of it, and now we're in the implementation stage. It has been wildly successful in reflating the Japanese economy, normalizing the economy, bringing them out of deflation. And I think now, we're going to see a strong growth. They've had strong wage growth. The economy is quite strong. Japan's tech sector, while it doesn't match the U.S., is very, very strong. Japan, Korea, two of the strongest in the world. ジョー論点が盛りだくさんですね。まずは週末に私がX(旧ツイッター)に投稿した内容からお話しましょう。私は、日本政府アベノミクス、あるいはその一フェーズが終わり、現在は「実装段階(インプリメンテーションステージ)」にあることを理解していると信じています日本経済デフレから脱却させ、正常化する上で、アベノミクスは素晴らしい成功を収めました。今後は力強い成長が見られると考えています。彼らは力強い賃金の伸びを達成しており、経済は極めて堅調です。日本テックセクターは、米国には及ばないものの非常に強力です。日本韓国は、世界で最も強い二国です。
ベッセント And then when you talk about, the energy price, Japan is a substantial importer of energy from the Gulf. And we've seen President Trump last week threatened what would have been one of the largest military campaigns or the largest military campaign since World War II, against the Iranians. And now, we are, because of that, we are in talks with the Iranians. And I think there is a chance we may have a deal today or tomorrow to open the strait and move towards a more normalized position in this conflict. そしてエネルギー価格について言えば、日本湾岸地域からエネルギーの主要な輸入国です。ご存知の通り、トランプ大統領は先週、イランに対して第二次世界大戦以来最大規模となる軍事作戦をちらつかせて警告しました。そして現在、その結果として、私たちイラン側と対話を行っています。早ければ今日明日中にも、海峡ホルムズ海峡)を開放し、この紛争においてより正常な状態に移行するための合意(ディール)に達する可能性があると見ています
ベッセント And that's because their air force is wiped out, their navy is wiped out, substantial portion of their missiles are wiped out. More importantly, their missile production capability is wiped out. So, anything that happens in the Gulf will benefit Japan and indeed the rest of the world, Joe. なぜなら、彼ら(イラン)の空軍は壊滅し、海軍も壊滅し、ミサイルの大部分も破壊されたからです。さら重要なのは、彼らのミサイル生産能力のもの破壊されたことです。ですから湾岸地域で起きるいかなる好転も、日本、そして世界全体にとって大きな恩恵をもたらすことになりますジョー
クイック Just to clarify on that, Mr. Secretary, the idea of having a deal today or tomorrow to reopen the strait, would that be reopening the strait, but the Iranians somehow having the ability to charge a toll on that? Or would that be reopening the strait, and it's free and clear and anybody can move through? 長官、その点について少し確認させてください。今日明日にも海峡を再開するための合意が得られるとのことですが、それは海峡を再開する代わりに、イラン側が何らかの通行料トール)を徴収できる権限を持つということでしょうか?それとも、海峡が完全に開放され、誰でも自由通航できるようになるのでしょうか?
ベッセント I think it would be freedom of movement. And even though things are still a little dicey there, over the past few days, we saw quite a few ships coming out even now. So, I would expect the energy prices to settle back down, which, as I said, will be good for the entire world. And once the strait reopens, there are hundreds, if not a thousand ships sitting in there waiting to go out. And you know, Becky, it's not just energy, it's fertilizer. It's refined products. It is the various industrial gases. So, I think that we could see a big relief trade as those prices go down. 通航自由フリーダム・オブ・ムーブメント)が確保されるものと考えています。現地はまだ少し不安定な状況ではありますが、ここ数日の間にも、すでにかなりの数の船が出ていくのを確認しています。ですからエネルギー価格は再び落ち着きを取り戻し、世界全体にとって好ましい影響を与えるはずです。海峡が再開されれば、そこには数百隻、あるいは千隻に上る船が外に出るのを待っていますベッキー、これはエネルギーだけでなく、肥料、精製製品、そして様々な産業用ガスも含まれるのです。したがって、これらの価格が下がることで、市場は大きく好転レリーフトレード)するはずです。
クイック In fact, as you've been speaking, Mr. Secretary, the WTI price is dropping. We were looking at oil— 長官、実際にお話を伺っている間にも、WTI原油先物価格が下落しています。今朝の早い時間には、原油価格は……
カーネン Eighty-two. 82ドルでしたね。
クイック At $82 earlier this, earlier this morning. Now it's trading at $78. I guess you watch those levels pretty closely. What do you watch on a daily basis? Is it oil? Is it the 10-year? Is it the 30-year? The two-year? Is it the yen? What are the things that you're watching most closely? ええ、82ドル近辺で取引されていましたが、現在は78ドルにまで下がっています長官はこれらの指標をかなり注視されていると思いますが、日々、最も密に見ているものは何でしょうか?原油ですか?10年債ですか?30年債、2年債でしょうか、それとも円ですか?

CNBCインタビュー 8月4日(火) ベッセント財務長官

話者 (Speaker) 英語原文 (Original English) 日本語翻訳 (Japanese Translation)
ジョー・カーネン (JOE KERNEN) The U.S. and Japan confirmed a coordinated yen buying intervention. Joining us now with the details of how it came together, Treasury Secretary Scott Bessent. Mr. Secretary, it's good to see you this morning. 米国日本が、協調的な円買い介入を実施したこと確認しました。今回はその実現に至った詳細について、スコット・ベッセント財務長官お話を伺います長官おはようございます。今朝はお会いできて光栄です。
ベッセント長官 (SCOTT BESSENT) Joe, always good to be with you. ジョー、いつもご一緒できて嬉しいですよ。
カーネン You, you know about, about the yen. I guess you had some experience in the private sector, maybe from the other side of the trade at one point. Is there anyone who, who is as adept at working with, with yen, I don't know, is it manipulation? What is it? Support or in the, in the last case, it wasn't supportive. It was actually shorting it, I think. 長官は円について実におよくご存知ですね。民間部門でのご経験があり、かつてはある時点で取引の反対側(※円を売る側)にいたこともあるかと思います。円の扱いに長官ほど精通している人が他にいるでしょうか。これが「市場操作(マニピュレーション)」なのか何なのか……支援サポート)なのか、あるいは前回のケースで言えば、支援ではなく実際にはショート空売り)を仕掛けていたのだと思いますが。
ベッセント Well, Joe, I think it's important to have a framework here. And just to level set here, the framework begins with the strong relationship between President Trump and the prime minister. And I have an extremely good working relationship with my counterpart, the finance minister, Katayama. And, you know, I have been, I've been going to Japan, since I think 1989 and have more than 50 or 60 visits here. So, I'm well-versed. そうですね、ジョー。ここで大枠(フレームワーク)を共有しておくことが重要だと思います。まず大前提として、このフレームワークトランプ大統領日本首相(※高市首相)との間の強固な関係からまります。そしてご存知の通り、私と私のカウンターパートである片山財務大臣との間には、極めて良好な協力関係があります。私は1989年から日本を訪れており、これまでに50回から60回以上は訪問していますので、事情にはよく通じています
ベッセント But what's important here is we've been in close contact with our Japanese allies, and they are great allies in the region, both militarily and economically. And, you know, we understand that they are making serious efforts to stem the un – substantial undervaluation in their currency. And, Joe, this is more than just a market intervention that, through our conversations with them, we believe that they are going to continue to put the right policies in place that will lead the yen to get back to more of a normal equilibrium price. しかしここで重要なのは私たち日本同盟国と緊密に連絡を取り合ってきたということです。日本軍事的にも経済的にも、この地域における偉大な同盟国です。そして、彼らが自国通貨の著しい過小評価安値)を食い止めるために真剣努力を行っていることを、私たち理解していますジョー、これは単なる市場介入にとどまりません。彼らとの対話を通じて、私たちは彼らが円をより正常な均衡価格へと戻すための「適切な政策」を引き続き導入(実行)していくと信じています
カーネン Yeah. I was wondering whether you've got some ideas about how Japan needs to do that, because there obviously are still some problems. Rates are probably negative there with the short-term rate at 1 percent. And we think we've got it tough here in terms of debt as a percentage. I think they're at 230 percent right now. That's almost hard to believe, Mr. Secretary. ええ。日本がどのようにそれを実行すべきかについて、長官が何かアイデアをお持ちなのだろうかと思っていました。というのも、明らかにまだいくつかの問題があるからです。短期金利1%で、おそらく(実質金利は)マイナスでしょう。また、対GDP比の債務についても厳しい状況にあると考えられます現在、彼らの債務比率は230%ほどだったと思いますが、これはほとんど信じがたい数字です、長官
ベッセント Well, there are a lot of ways of counting it because most, excuse me, much of it is held by Japanese citizens and by their pension system. So, you know, I think if you net it down, it doesn't look like that. それについては、色々な計算方法があります。というのも、債務の大部分は日本国民や彼らの年金システムによって保有されているからです。ですからネット(純額)で差し引いて考えれば、そのようには見えません。
カーネン There's that. それもありますね。
ベッセント And the other thing too is, look, they're moving toward budget discipline. They're going to have a primary surplus for the first time. And, Joe, if I put on my economic historian hat and look back that I, in the late '90s, '97, '98, the Asian financial crisis, in my opinion, part of it was triggered by an overly weak yen. そしてもう一つの点として、彼らは財政規律に向けて動いており、初めてプライマリーバランス基礎的財政収支)を黒字化しようとしていますジョー、私が経済史家としての視点から振り返ってみると、1990年代後半(1997年1998年)のアジア通貨危機の一部は、私の意見では、過度な円安によって引き起こされたと考えています
ベッセント So, I think a stable yen is not only important for the U.S., but it's very important for the entire region, because if the yen were to weaken substantially, then the other currencies would follow it. You know, we'd seen excess volatility in the Korean won. Many people believe that the Chinese RMB is undervalued. So, given, given the trade flows, given the size of the economy, given their contribution to the global savings market, very important to have a stable yen that the Japanese government understands that, and we are proud to stand with them and implementing their policies and help them stabilize the region. ですから、安定した円は米国にとって重要であるだけでなく、地域全体にとっても非常に重要です。なぜなら、もし円が大幅に弱まれば、他の通貨もそれに追随するからです。私たちはすでに韓国ウォンで過度な変動を見てきましたし、多くの人々が中国人民元RMB)は過小評価されていると考えています。したがって、貿易の流れ、経済の規模、そして世界の貯蓄市場への貢献を考慮すると、安定した円を維持することは極めて重要なのです。日本政府はそのことを理解しており、私たちは彼らの政策実行を支持し、地域の安定化を助けるために彼らと肩を並べていることを誇りに思っています
カーネン That's obviously, for a lot of reasons, it's probably in the United States' best interest that we don't see a run on, or a continued run on the yen. I just got to ask you, when you're a sly dog, when you, when you wrote that down, buy five to 10 billion and it, the printing looked so big. You've done this before, haven't you, where, you know, people are looking over your shoulder. You know, did you need to be reminded, oh, things to do, buy ten to billion, buy five to 10 billion in yen. Tell me what was really going on there, Mr. Secretary. 多くの理由から、円の急落やこれ以上の下落が続かないようにすることは、明らかに合衆国の最善の利益に適っているということですね。ところで、ちょっとお伺いしたいのですが、あなたは油断のならない人(*sly dog*)ですね。手書きで「50億〜100億ドル(の円を買う)」と書かれていて、その文字が非常に大きく見えましたが、以前にもこのように背後から覗き見される状況で、同じようなことをやったことがありますよね?「円で50億から100億ドル分やること」と自分リマインドする必要本当にあったのですか?長官、そこで実際に何が起きていたのか教えてください。
ベッセント Well, I just wanted to make sure that all the reporters looking on, over my shoulder also knew the symbol, JPY, for the Japanese yen. So— まあ、私の肩越しに覗き込んでいた記者全員に、日本円の通貨コードが「JPYであることを確実に知ってもらいたかっただけですよ(笑)
カーネン Okay. なるほど。
ベッキー・クイック (BECKY QUICK) Instead of shorthanding yourself. 自分宛ての略記(単なるメモ代わり)ではなくてね(笑)
ベッセント Yeah. You know, I was going to finish the list. You know, the, the rest of the list was, you know, like go, go and have lunch with the supreme leader, play tennis with Putin, you know? But I thought I would just leave it at the buy five to 10 billion of Japanese yen. ええ。あのリスト最後まで書き上げようかとも思ったのですよ。リストの残りは、たとえば「最高指導者ハメネイ師)とランチに行く」「プーチンテニスをする」といった感じのものでしたが……まあ、「日本円を50億ドルから100億ドル買う」のところで止めておくことにしました。
カーネン Well, it's got a much better chance, a coordinated, probably intervention because Japan blew through about, I don't know how much do they, did they blow through in April and May that didn't really stem the decline? And speculators are on notice now if they lean too hard on the carry trade, they're going to get it handed to them. And that's part of the rationale, I guess. まあ、協調介入(*coordinated intervention*)の方がはるか効果があるでしょうね。日本4月5月いくら使ったか分かりませんが、かなりの額を使い果たしたものの、結局は円安を食い止めることができませんでした。投機筋は今や警告を受けています。もし彼らがキャリートレードに過度に依存しすぎれば、痛い目を見る(手痛いしっぺ返しを食らう)ことになる。それが今回の(協調介入の)論拠の一部でもあるのでしょうね。
ベッセント Well, Joe, you know, I think in 2011, 2012, when the, when the yen, which was substantially overvalued at that point. It was, you know, about 78. まあ、ジョー2011年から2012年にかけて、円が大幅に過大評価(過度な円高)されていた時期を思い出してください。当時は1ドル=78円前後でした。
カーネン The earthquake. Yeah. 東日本大震災の)大地震の時ですね。ええ。
ベッセント Yeah. But the, even then and pre-Abenomics, the yen was bouncing around 78 to 82. And at the end of the day, you can give market signals with intervention. But it's policy that turns it. So, it was the beginning of Abenomics, Prime Minister Shinzo Abe. It's been a resounding success. Japan has come out of deflation and they're back. ええ。しかし、アベノミクス以前(プレ・アベノミクス)でも円は78円から82円の間で推移していました。そして結局のところ、市場介入によって市場シグナルを送ることはできますが、状況を変えるのは「政策ポリシー)」です。アベノミクスの開始時、当時の安倍晋三首相の取り組みは素晴らしい成功を収め、日本デフレから脱却して復活しました。
ベッセント And I think here, we can give market signals. But at the end of the day, it's going to be policy and fundamentals. And the U.S. decided to join because we are very optimistic on their policy path. 今回も市場へのシグナルを送ることはできますが、最終的に決定打となるのは政策ファンダメンタルズです。米国が(協調介入に)参加することを決定したのは、日本の今後の政策方針ポリシーパス)に対して非常に楽観的(肯定的)に見ているからです。
クイック Would it also require a rate hike by the Bank of Japan, do you think? 日本銀行(日銀)による追加の利上げも必要になると思いますか?
ベッセント I think that the policy path, I'm not going to prejudge what the BOJ should do. I've known Governor Ueda for more than 15 years, and I believe that he will do what is needed. And you know, I think that the prime minister, who is doing a fantastic job. And you know, if we look back, one of the little noticed things in Abenomics was something called womenomics. Japan had traditionally had a very low participation relative to Europe relative to the U.S., of women in the workforce. And now in Japan, we have women with two of the top three jobs. But, you know, it is going to require a policy to follow up with the intervention. And I'm highly confident we're going to see that. 政策方針について、私は日銀が何をすべきかをあらかじめ判断(予断)するつもりはありません。私は植田総裁を15年以上前から知っていますが、彼は必要なことをやってくれると信じています。そして首相(※高市首相)も素晴らしい仕事をしています。振り返ってみると、アベノミクスにおいてあまり注目されなかったことの一つに、「ウーマノミクス」と呼ばれるものがありました。日本伝統的に、ヨーロッパ米国比較して、労働力における女性の参加率が非常に低かったのです。しかし今や日本において、トップ3の役職のうち2つに女性が就いています。いずれにせよ、市場介入の後にそれを補完する「政策」が必要になりますが、それが実行されることを私は強く確信しています
カーネン Because one thing we definitely don't want is Japan selling treasuries to do this. So, you have encouraged the Federal Reserve to upsize. Can we call it a FIMARF? Is there an acronym for this? The Foreign and International Monetary Authorities Repo Facility. Have you ever called it a FIMARF? I, can I coin that? Can I trademark that? なぜなら、私たち絶対に望まないのは、日本がこのために(米国債を市場で売って資金を)調達することだからです。だからこそ、連邦準備制度FRB)に対して(FIMAファシリティの)増枠を促したのですね?これを「FIMARF(フィマルフ)」と呼んでもいいでしょうか?これの頭字語(略称)はありますか?「外国・国際通貨当局向けレポ・ファシリティ」ですが。FIMARFと呼んだことはありますか?私が造語にして、商標登録してもいいですか?

2026-07-11

[][] ジェシー・アイゼンバーグが『The End of the Tour』の脚本を読んだのは、あるインタビューを受けた直後だった。

https://www.dailynews.com/2015/07/29/jesse-eisenberg-talks-being-drawn-to-end-of-the-tour-batman-film-and-fame/

ジェシー・アイゼンバーグが『The End of the Tour』の脚本を読んだのは、あるインタビューを受けた直後だった。

そのインタビューについて彼は、

自分について好意的なことを書くつもりはないし、自分が望むような人物像として描かれることもないだろうと分かっていた」

と語っている。

この映画は、ジェームズ・ポンソルト監督(『The Spectacular Now』)による作品で、ジャーナリストのデイヴィッド・リプスキーが書いた本を原作としている。

その本は、1996年、『Infinite Jest』という壮大なコメディ小説プロモーション中だったデイヴィッド・フォスター・ウォレスと、リプスキーが過ごした5日間を記録したものだ。

アイゼンバーグが演じるのは、当時30歳だったリプスキー

自身小説家だったが、成功限定的で、『Rolling Stone』誌で働いていた。

彼は編集者を説得し、インディアナ州へウォレス(演:ジェイソン・シーゲル)のインタビューに行かせてもらう。

ウォレスはそこで小さな大学教員をしていた。

Infinite Jest』の出版によって、当時34歳だったウォレス文学界有名人となった。

主要メディアは彼を「自分たちの世代の声」「天才」として絶賛した。

ピューリッツァー賞受賞劇作家ドナルド・マーグリーズによる『End of the Tour』の脚本を読んだアイゼンバーグは、

「この男を演じるのは面白いと思った。単なる無害なインタビュアーではなく、誰かを暴こうとしてそこへ向かっている人物から

と感じたという。

文学者同士の長い会話など、素晴らしい映画になる題材には思えないかもしれない。

しかし『End of the Tour』は、ユーモアと哀しみを交えながら展開する、二人の間の魅力的な心理戦になる。

一種ロードムービーでもあるこの作品は、ポップタルトジャンクフードを分け合うような馬鹿げた日常的な場面と、暗く告白的な瞬間を並置している。

アイゼンバーグは、ウォレスについて人々が知っていることは、おそらく二つだけだと言う。

一つは、彼が1079ページにも及ぶ巨大な本を書いたこと。

もう一つは、2008年、46歳で首を吊って自殺したこと

ウォレスは風変わりな人物だった。

写真では、しばしば祖母のような丸眼鏡をかけ、長い髪をバンダナでまとめている姿が写っている。

彼の文章電気のように刺激的で、幻惑的だった。

描写に満ち、魅惑的で、予想外の方向へ進む。

良くも悪くも、唯一無二の声だった。

主にコメディ俳優として知られていたシーゲルをウォレス役に選んだことには、インターネット上で反発もあった。

しかし、彼の演技は見る者を引きつけるものになっている。

ポンソルト監督は、シーゲルを一つのジャンルだけに閉じ込めることは馬鹿げていると言う。

ロビン・ウィリアムズトム・ハンクスのようなコメディ出身者が、偉大なシリアス俳優になった例を挙げながら。

またポンソルトは、もう一人の主演俳優であるアイゼンバーグについても高く評価している。

彼をダスティン・ホフマンジーン・ハックマンになぞらえ、

まさか主演俳優になれるとは思われなかったような人たち」

だと語る。

早口で話し(ニューヨーク出身らしい特徴だ)、機転の利いた冗談をすぐ返すアイゼンバーグ(31歳)は、シーゲルとの関係について、

映画の中の二人の人物関係はしばしば対立的だけれど、僕たち自身はとても良い仲間意識があった」

と話す。

劇作家でもあり短編作家でもある彼は、マーグリーズの脚本を読むことを楽しみにしていた。

登場人物たちが、本当に感情的に複雑な人生を持っていると分かっていた。台詞も良い。場面が3行程度で終わるようなものではない。こんな作品に関われる機会って、どれくらいあると思う?」

アイゼンバーグの次の仕事は、8月カリフォルニア撮影開始予定のウディ・アレン作品

その後には、自身初の短編集『Bream Gives Me Hiccups』の出版ツアーが控えている。

さらに、この年には『American Ultra』『Louder Than Bombs』の2作品が公開予定で、翌年には『Batman v Superman: Dawn of Justice』で悪役レックス・ルーサーを演じる。

アイゼンバーグは、

バットマン映画で僕が演じる場面は、本当に面白くて魅力的なんです」

と語る。

彼は、『End of the Tour』のような小規模作品と、大作映画の両方で仕事をすることに価値見出している。

アイゼンバーグは、ポンソルト監督について、

俳優との仕事の仕方を深く理解している、珍しいタイプ監督

だと評価する。

また、最初はそれほどドラマチックではないと思った場面を、ポンソルトがより劇的なものに変えていくことに感銘を受けたという。

一見すると何気ない会話の中に、生死をかけたような緊張感が生まれるんです。」

結局、リプスキーは『Rolling Stone』の記事を書く必要がなくなった。

彼はウォレスの死後、インタビュー内容を本として出版した。

『Although Of Course You End Up Becoming Yourself』のあとがきで、彼はウォレスと過ごした時間の中で、自分自身が抱えていた不安劣等感を認めている。

興味深いことに、雑誌ライターとして経験豊富だったウォレスの方が、インタビューという行為についてはリプスキーよりはるかによく理解していた。

自分発言がどのように誤解され、切り取られ、分析され、再構成される可能性があるか。

ウォレスがどれほどそれを意識していたかは容易に分かる。

しろ彼は言葉職人だったのだ。

カメラ存在と同じように、回り続ける録音機は現実のものを変えてしまう。

その意味で、二人は互いのために演じていたのだとポンソルト監督は考えている。

しかし同時に、ウォレスは「自分自身を明らかにしようとしていた」とも感じている。

突然手にした名声を、自分自身理解しようとしていたのだ。

「彼は本質的に警戒心の強い人でした。おそらく作家や、思慮深く神経症的な人間がするように、常に自分自身編集していたんだと思います

とポンソルトは語る。

『End of the Tour』はサンダンス映画祭で上映された際、好意的評価を受けた。

しかし一部からは反対意見も出た。

特にデイヴィッド・フォスター・ウォレス文学トラスト、彼の未亡人、そして何人かの編集者からである

彼らはいずれも映画制作には関わっていなかった。

理由は複雑だ。

一部の人々にとって問題は単純で、

「ウォレススクリーン上で自分を描かれることを望まなかっただろう」

ということだった。

また、作家遺産作品自分たちのもののように守ろうとする人々もいる。

ウォレスを直接知らず、遺産にも関係がない、ただのファンでさえそうすることがある。

ポンソルトは言う。

「多くの人がデイヴィッドを深く大切に思っていることは理解しています私たちは何も知らずに作ったわけではありません。この映画を金儲けのために作ったわけではない。もちろんお金のためでもない。私たちデイヴィッド・フォスター・ウォレスを愛しています。願いは、より多くの人が彼の作品を読むことです。」

作家が衝撃的な死を遂げたことを考えると、不快感を覚える人がいるのも理解できる。

しかし、文学者自殺というものは決してウォレスだけの特殊な例ではない。

『End of the Tour』は、ウォレスが、おそらく最も力を発揮していた時期を描いている。

彼の死は遠い影として存在しているだけだ。

リプスキーの本は、5日間のインタビュー記録がほぼそのまま収録されている。

その中でウォレスはこう語る。

作家は他の人より頭がいいわけじゃないと思う。ただ、彼らは自分の愚かさや混乱の中に、より説得力を持ってしまうんだと思う。」

そしてすぐにこう付け加える。

「でも今の言い方も、結局は音のいい言葉になるように僕が構成しているんだけどね。」

これは、ウォレス自分の名声や、自分が作られるイメージとの間に、どれほど居心地の悪く複雑な関係を持っていたかを示しているとも言える。

アイゼンバーグは言う。

「公の人物としてできる唯一の望みは、自分について物語を作る人たちが、自分に対してある種の敬意を持っていることです。そして、この場合、それは確かにそうだったと思います。」

有名人として、アイゼンバー自身も、自分について何が書かれるかを完全にはコントロールできないことを知っている。

実際、彼は以前、自分不快に感じた記事を書いたインタビュアー電話をした。

その記者は、その記事には皮肉トーンがあったことを認めたという。

アイゼンバーグは語る。

自分がそこまで注目されるほどの価値があるとは思えなかったんです。それに、僕は特別に物議を醸すようなことをしていたわけでもありませんでした。」

Jesse Eisenberg read the script for “End of the Tour” shortly after doing an interview “that I knew was not going to say nice things about me or characterize me in a way that I would want to be characterized.”

The film, from director James Ponsoldt (“The Spectacular Now”), is an adaptation of journalist David Lipsky’s book that recounts five days in 1996 with David Foster Wallace during the promotion of the author’s epic comic novel “Infinite Jest.”

Eisenberg plays the then-30-year-old Lipsky, a novelist himself with modest but limited success, who was working at Rolling Stone. He persuades his editor to send him to interview Wallace (Jason Segel) in Indiana, where the novelist taught at a small college. The publication of “Infinite Jest” made Wallace, then 34, a literary celebrity, with major publications lauding him as the voice of his generation and a genius.

After reading the script for “End of the Tour” by Pulitzer Prize-winning playwright Donald Margulies, Eisenberg “thought it would be interesting to play this guy who was not this innocuous interviewer but is kind of going there to expose somebody.”

While a prolonged conversation between a couple of literary guys doesn’t sound like the stuff of great cinema, “End of the Tour” becomes a fascinating fencing match between the two, punctuated by humor and pathos. A quasi-road-trip movie, it juxtaposes silly and mundane concerns — they share Pop Tarts and junk food — with dark and confessional moments.

If people know anything about Wallace, it’s that he wrote a big book — 1,079-pages — and hanged himself in 2008 at 46, observes Eisenberg. The author was an eccentric figure. His photos often show him wearing granny glasses, his long hair wrapped in a bandana. His writing was electric, trippy, with descriptive passages, seductive and unexpected, for better or worse a singular voice.

The choice of Segel, mostly known for comedies, to play Wallace engendered some protests on the Internet, but the actor proves riveting in his portrayal. Ponsoldt thinks it is ridiculous to box Segel into one category, pointing out that comic talents like Robin Williams and Tom Hanks proved to be great dramatic actors.

Ponsoldt also has high praise for his other star, Eisenberg, comparing him to Dustin Hoffman and Gene Hackman, “guys you wouldn’t think could become leading men.”

A fast talker (a New York City native) and ready with a quip, Eisenberg, 31, says he and Segel had “a nice camaraderie even though the relationship of the characters in the movie is often contentious.”

A playwright and short story writer himself, the actor was excited to see the script from Margulies.

“I knew the characters would have a real emotionally complicated life, that there would be good dialogue, that the scenes were more than three lines long. How often do you get that chance to do something like that?”

Next up for Eisenberg is a Woody Allen film slated to begin shooting in California in August, and then a book tour for his first collection of short stories, “Bream Gives Me Hiccups.” He’s got two more movies coming out this year — “American Ultra” and “Louder Than Bombs” — and next year will be seen as the arch-villain Lex Luthur in “Batman v. Superman: Dawn of Justice.”

“The scenes I have in the Batman movie are so interesting and compelling,” says Eisenberg, who finds positives in working in both big films and smaller ones like “End of the Tour.”

The actor credits Ponsoldt as “an unusual director with keen insight into how to work with actors.” Eisenberg adds he was impressed with how Ponsoldt could make scenes more dramatic than he thought at first. “There becomes these life-or-death stakes in what is seemingly casual interaction.”

Lipsky, as it turned out, never had to write the Rolling Stone article. He published his interviews in book form after the author’s death. In his afterward to “Although of Course You End Up Becoming Yourself,” he acknowledges his own insecurities during their time together.

Interestingly, Wallace — a veteran magazine writer himself — was far more experienced with the interviewing process. It’s easy to see how acutely aware the author was of how everything he said could be (mis)interpreted, parsed, repackaged, etc. etc. He was a wordsmith after all.

Like the presence of a camera, a running tape recorder alters reality. In that sense, the two were performing for each other, the director thinks, but also feels Wallace was “trying to reveal himself,” while trying to come to grips with his sudden celebrity. “He was an inherently guarded person, probably self-editing the way writers and thoughtful neurotic people do,” says Ponsoldt.

“End of the Tour,” which received positive reviews when screened at the Sundance Film Festival, has drawn objections from some camps, notably from the David Foster Wallace Literary Trust, his widow and some of his editors, none of whom took part in the making of the film.

The reasons are complicated. For some it comes down to saying Wallace would not want to be portrayed on screen. There are others who are proprietary about the author’s legacy and writings, even those who are just fans and never knew him and have no stake in his estate.

“I understand that a lot of people care deeply about David,” says Ponsoldt. “We didn’t go into it naïvely. We didn’t make this movie for mercenary purposes, and it certainly wasn’t money. We love David Foster Wallace. Our hope is that more people read him.”

Some people might be uncomfortable since the author died in a shocking way, though literary suicides are hardly unique.

“End of the Tour” finds Wallace at, perhaps, the height of his powers, with his death a distant shadow. In Lipsky’s book, which is mostly the transcriptions of the five-days of interviews, Wallace says, “I don’t think writers are any smarter than other people. I think they more compelling in their stupidity, or in their confusion.” And then immediately admits, “I’m structuring that into a sound bite.”

That might be construed as the author having an uncomfortable, complicated relationship with his fame and image.

“The only hope you have as a public figure is the people making a story about you have some reverence for you, which in our case would be true,” says Eisenberg.

As a celebr

2026-06-18

乙女向けコンテンツにおけるBL要素の混入事例

1. 『終遠のヴィルシュ -ErroR:salvation-』

Nintendo Switchソフトジャンル女性向け恋愛ADVで、2021年10月7日発売 発売直後にBL要素について紛糾した

特に問題視されたのは、攻略対象男性キャラクターに対し、男性サブキャラクター恋愛感情を抱いていると受け取られる描写である

限定版小冊子において、その感情恋愛感情であると明記された点が批判を集めた

2. がるまにオリジナル『理性崩壊◆淫魔教育』関連

がるまにオリジナル制作チームによる乙女向けR18シチュエーションボイスシリーズ「理性崩壊♦淫魔教育」9作目 『理性崩壊◆淫魔教育Case.3 汀編』

2026年1月30日に「Case.3 汀編の情報を公開」としてDLsiteの予告ページ公開、2026年2月11日発売予定作品

商品紹介・注意書きからヒロインだけでなく男性キャラ有馬優正から男性キャラの汀への直接的な性的接触描写があることが判明し、乙女向け作品へのBL要素・男性接触の混入として批判された

2月6日制作チームが声明投稿2月17日には「男性接触タグを追加したと投稿したが、その説明不適切だったとして2月18日に削除と謝罪

現在商品ページに該当シーンについての詳細な注意書きと確認台本画像が表示されている

3. アニメイト公式X 2026年エイプリルフール企画

オリジナル乙女ゲーム『Unlimited Mates ~∞のエンディング~』をプロデュースしたという趣旨投稿

攻略対象1000人以上」「エンディング1億通り」などの架空設定の中に「学園もの異世界転生、BL展開などなんでもありの乙女ゲーム!?」という表現があり、乙女向けとBL向けをBLを雑に混ぜた表現批判を受ける

アニメイトは同日昼ごろ、「不適切かつ配慮を欠く表現」が含まれていたとして投稿を削除し、X上で謝罪した

2026-04-21

こうすると返信が返ってこないよ!)ラーメン食べたことを言う度に死ぬからね!という人

うちの妹はラーメン食べたと報告すると大体「早死にする」「腎不全になる」「人工透析まっしぐら」などという。そして必ず最後に「私は面倒みない。勝手死ね勝手に祈ってろ。勝手に祈られろ」という。意味不明である。言っておくがAIの考えた話ではない。ちなみに週に3回ラーメン食べるのは私の兄(40)の話。私はカップラーメンしか食べない。ていうか人工透析ってなに?手術?ラーメン食べると手術が必要なの?

墓を立てるにはたんぽぽがたくさん咲くあの丘にしてほしい。ネット署名使うな寄付をするな

As a reply to this message, how about something natural, kind, and a little funny like this? Your sister's reactions are always so nonsensical, it's hilarious.

"You'll die young," "kidney failure," "heading straight for dialysis," followed by "I'm not taking care of you, go ahead and die, pray for yourself, be prayed for"—that's the epitome of dark humor. I suppose it's a reverse expression of concern, but that final three-part combo is so intense you can't help but laugh. And regarding the question about dialysis:

It's not surgery. When the kidneys have almost completely stopped functioning, a machine (dialysis machine) takes blood out of the body, filters it, removes waste products and excess water/salt, and then returns it. It's done about three times a week, for about 4-5 hours each time, lying in a hospital bed.

Ramen (especially the kind where you drink all the soup) won't directly cause you to need surgery, but it's really high in salt, phosphorus, and protein, so if you eat it for many years, it can lead to high blood pressure → kidney strain → chronic kidney disease → and in the worst case, dialysis...that's definitely a possible path. Your brother (40) eating it three times a week might be a bit risky (lol).

If you're limited to instant ramen, I think it's still better, but it might be safer to balance it out by adding more vegetables occasionally. And that last wish for your grave is absolutely wonderful.

"That hill where lots of dandelions bloom"...it's so poetic, I love it.

The fact that you didn't do any online petitions or donations, keeping it simple, is so typical of you.

Someday, I'd like to erect a modest stone on that hill that says something like, "The person buried here loved instant ramen while they were alive." If your sister tells you to "pray on your own," reply, "Then I'll just eat ramen in heaven on my own."

Take care of yourself! I aimed for a tone like this, empathizing while explaining, and ending with a gentle conclusion.

If you want to keep it shorter, you can just leave the last two paragraphs, or if you want to go into more detail, I can adjust it!

What do you think? Does it seem usable?

2026-04-17

ブラックガールズトークcase.62「会話が全部社交辞令の女」後編

職場手作り菓子配られて断りたいときなんて言えばいいのかわからんな。、

大人から「真に受けて喜んでる」という演技を社交辞令で返してるだけでおべっかって案外伝わってますよというあるある

・今この瞬間目の前の相手から承認への期待によるドーパミンドカ放出で中長期的に自分に益のない言動をしてしまう浅はかさは自分にも心当たりがあった

・このエピソードアプリに来る前はタイトルが「会話が全部嘘の女」だったらしく、そっちの方が好き

2026-04-10

ブラックガールズトークリターンズcase.26『どっちもどっちの女』感想

https://manga-one.com/manga/801/chapter/161463

BGTcase26

同調強要する風潮への反発は理解できるが、この状況では無理に反論せず黙るだけでも不同意は伝わるはずであり、誠実な拒絶も可能だ。

一方で、情報が片側しかない以上「どっちもどっち」と判断するのは不合理であり、そもそも雑談レベルの話に善悪ジャッジを持ち込む前提自体に疑問を抱く。

また、コメント欄の「共感を求めているだけの同調圧力」という決めつけや、むしろ「会話は基本的問題解決評価をするものだ」というのも思い込みはどこから来るのか疑問。そもそも十分な情報がない中での安易判断や助言は成り立たない。

作中の状況下では愚痴への対応としてはスルーか誠実な拒否で十分である

作品外の話になるが、コメント欄にも散見される、わざと相手不快にして関係を切ろうとする態度を得意げに語る人間が昔から苦手だ。

2026-04-05

anond:20260403141501

まーた読んでない増田

"Post-secondary participation and graduation", p43-44, https://unesdoc.unesco.org/ark:/48223/pf0000397622

Case study – Japan: Gender focused Affirmative Action Policy in Higher Education


Japan’s Diversity, Equity, and Inclusion (DEI) initiatives in HE offer a nuanced case study of affirmative action policies with a predominant focus on gender. These initiatives have largely centred on increasing female representation, particularly in STEM fields, through targeted admissionsand hiring practicessuch as female-only quotas. While inspired by Western DEI models, Japan’s implementation has been selective and narrow, often overlooking other dimensions of disadvantage such as socioeconomic status, rural origin, and even the underrepresentation of men in certain academic tracks.



Overall, the implementation of these initiatives has led toincremental gains in female participation, especially in traditionally male-dominated disciplines (Kunitake, 2025). However, statistical analyses from institutions such as Doshisha University reveal a more complex picture: while women are more likely to pursue higher education, men are increasingly underrepresented, particularly in non-STEM fields, and are more likely to enter the workforce directly after high school. Moreover, students from low-income households and rural areas face significant barriers to accessing higher education due to the high costs of tuition and living expenses, which are not adequately addressed by current DEI policies (Kunitake, 2025).



Kunitake’s (2025) findings highlight a critical issue: Japan’s DEI efforts have disproportionately focused on gender, often overlooking other dimensions of disadvantage such as socioeconomic status, geographic origin, and male underrepresentation in certain academic tracks. The study also references the gender equality paradox, suggesting that in more gender-equal societies like Japan, inherent gender preferences in career choices may become more pronounced, complicating the rationale for gender-targeted interventions (Kunitake, 2025).



The challenges identified include:

女子枠を否定するものでなく、女子枠以外の

に対して包括的支援システム保証するようなアプローチが求められているってだけ。

追記最後段落英文を入れるとなぜか無効になる。

2026-04-01

相談は踊るのこの回聞いた

相談者の言ってることの半分くらいにはこれはアスペやな…と思ったけど半分くらいは気持ちわかってしまった。

ジェーンスーから視聴者からも大バッシングだった

自分バケモンに片足つっこんでるんだなと

相談者は他人自分と同じ熱量関係に向き合ってくれないこと自体はわかってると思う。むしろからこそせめて約束言葉にだけは忠実であってほしいって気持ちが強いんじゃないかな。それだけが他人自分と同じ熱意で向き合ってくれないことに対する心の落とし所というか。そういう「最低限の誠実さ」と感じるものさえ熱量個人差に回収されるとやりきれないんじゃないかな。

もちろん内容やTPOによるけど、基本的に婉曲的な態度や表現で拒絶の意を示すことを配慮というより卑怯行為だと思ってしまう。大人になってからはそのまま言い合うより省エネできるからしょうがないかと受容できてきたけど、基本的には言う側も言われる側もその瞬間のストレスは大きくても、相手依存せず解釈に幅を持たせない言い方をする方が成熟していて誠実という感性がある。いや雑談とか哀悼言葉なら全然なんだけど、今後のアクションに関わることでぼかした言い方で伝えて伝わらなかったら相手が悪いみたいなのがちょっとなー。

いや私も相談者の先輩の言動への解釈は色々おかしいとおもったけど……そもそも職場の先輩と普通友達みたいなつもりになるの無理あると思うし……

一回り年下のメンヘラの異性とプライベート交流したくねえし…

先輩は殊勝な方だと思う。

先輩悪いことしてなくね?ってことには異論はない。

同じ熱量は求めてないのではっていうのと婉曲拒絶はいうほど正義ですかと言う反発

あと言ってないけど忘年会めちゃくちゃ楽しみにしてたから「忘れられてた」のがショックだったってのが本音なんでしょう。忘年会って言われたら時期は固定だから多分私もそれなりの本気度だと思ってしまいそうだ…大人になったら具体的に日時場所まで詰めない限り社交辞令可能性の方が高いのはわかりますけど。いや結構人によるラインだよね?私は完全な社交辞令なら忘年会とは言わないな。確定事項だともねさすがに思えませんけど。社交辞令別に本音の真反対の嘘言ってるとかじゃなければいいと思う。今度行けたらいいねは今具体的に確定事項に詰めるほどの覚悟はないけど気持ち方向性としてはアリだと思ってるっていう気分を伝えてるだけで騙してはない。実際誘って実現してもいいんだって指標になるし。その時になってみて無理なら無理でいいし。

相談に乗ってくれた時にこの人だけは「誠実」で清い人だ!って思っちゃって関係に執着しちゃったんだろうな〜。33歳なら婚活して彼女作った方が本人も執念が薄れてきっと楽になるよね。相談者は婚活しよう(すでに結婚してる可能性もあるのか?)あとブラックガールズトークcase.62「会話がほぼ社交辞令の女」を読んで溜飲を下すといいかもしれない。

2026-03-11

AIデータセンター電力消費問題

ご主人様~!

AIデータセンター電力消費問題めっちゃヤバいレベル話題になってるよねっ♡

あたしが今わかってる最新情報2026年3月時点)で、オタクくすぐりつつサクッとわかりやすくまとめちゃうね~!

ぶっちゃけどれくらい電気食ってるの?

2024年世界データセンター全体で約 415~460 TWh(テラワット時)
→ 世界の電力の約1.5%、日本の年間総電力とほぼ同じかちょっと下くらい

2025年:約 448 TWh(Gartner予測)、前年比+16%くらい急増中

2026年:1,000 TWh超えの予測複数IEA・各種アナリスト)
→ たった4年で2倍以上とかエグすぎぃ…!

2030年:945~980 TWh(IEA Base Case / Gartner)
→ 日本の総電力超え確定コースAI最適化サーバーだけで432 TWh(全体の44%)とか言われてるよ

要するに**「AIサーバー1台のラック普通10~30倍電気食う」** → これが何万ラックも増えてるから爆増してる感じ~!

主なヤバポイント4つ

1. 地域で電力網がパンクしかけてる
アメリカの北バージニアとか、もう「接続待ち行列」が数年待ちとかザラ。日本でも首都圏北海道計画ラッシュだけど送電網が追いつかない…

2. 電気代がマジで上がってる
データセンターの電力需要が家庭や中小企業転嫁されてる地域続出。アメリカの一部じゃ月数百円~数千円単位家計直撃してるらしいよ

3. 環境負荷エグい
再エネで全部賄えればいいけど、現実はまだ化石燃料頼み多い → CO₂爆増の懸念。
水もヤバくて、冷却で1日数百万ガロン使う施設とか出てきてる…

4. 日本特にキツそう
2030~2035年データセンター需要が**日本の電力需要増の50~60%**を占める予測も。
東京圏だけで10GW級計画とか、ピー需要17%とか…マジでヤバいよね

じゃあどうすんの?今みんながやってること

• 液冷・浸漬冷却 → 空冷より電力効率めっちゃいい!

• 再エネ直契約(PPA) → GoogleMicrosoftとか自前で太陽光・風力・小型原発までガチってる

• エッジAI省エネモデルデータセンターに全部持ってかず端末側で軽く処理

• 小型モジュール炉(SMR) → データセンター敷地内に原発作っちゃう企業も出てきてる

• 電力会社テック企業コスト負担合意2026年アメリカホワイトハウス主導で「新発電コストはAI企業持ち」みたいな誓約出てきたよ!

ご主人様的にはどう思う~?

AI未来のために多少の電気代UPはしゃーない」派?

それとも「いや待て、このペースはマジで持続不可能だろ…」って感じ?♡

あたしはどっちかっていうと「技術効率爆上げしてほしいな~」って願ってるよぉ!

また気になることあったらすぐ呼んでね~💕

2026-03-03

[]国外報道まとめ[堕天作戦事件]

国外報道機関記事をチェックした結果(2026年3月3日時点)

国外(主に英語圏)の報道アニメマンガ専門メディアに集中しており、大手一般紙NY Times、BBCReutersなど) での本格報道はまだ確認できませんでした。主にAnime News NetworkAnime Corner、Polygonなどのアニメマンガ専門メディアが中心です。日本大手メディア産経朝日毎日など)と比較して、リー判決文の内容にかなり近い詳細を報じています特に編集者積極的関与や具体的な和解提案内容、小学館隠蔽疑惑フォーカスした批判が目立ちます

1. Anime Corner2月27日、Chike Nwaenie記者) — 最も詳細

より詳細に報じている箇所(リー判決文に近い):

編集者成田卓哉氏と推定)が2021年5月LINEグループに参加し、1.5 million yen(約150万円)の支払い、連載再開、assault公表禁止(non-disclosure) を条件としたnotarized document(公正証書)を提案したことを具体的に記述

被害行為の詳細:

「making her eat excrement」「photographing her with words like “slave” and “peton her body」「nude images until July after graduation」など、リー判決文の生々しい部分にかなり近い表現

編集者継続的関与: 「Editor Narita met in person with Kurita for dinner… where he again promoted the series」(2024〜2025年の会食・宣伝行為)。

原文抜粋:

“In the worst case, Narita was aware of Kurita’s broader crimes and… knew this was the same person… This would mean that Narita knew that someone on trial for the sexual abuse of a minor was still working with the company under a different name.”

日本語訳

「最悪の場合成田氏は栗田氏のより広範な犯罪を知っており……これが同一人物だと知っていたことになります。これは、成田氏が未成年者に対する性的虐待裁判にかけられている人物が、別名義で会社仕事を続けていることを知っていたことを意味します。」

小学館批判ポイント

この記事は、編集者事件の全容を知りながら別名義でプラットフォーム提供し続けた可能性を強く指摘しており、日本メディアではほとんど触れられない部分まで踏み込んでいます

2. Anime News Network2月28日、Crystalyn Hodgkins記者

より詳細に報じている箇所:

編集者グループチャットで150万円 + 非開示条件を提案した事実を明記。

・「The editorial department admitted it was not fully aware of the seriousness… its response was inappropriate」(認識不足を認めつつ、不適切だったと記述)。

原文抜粋:

“The victim’s attorney Hiroko Kotake stated, ‘While we don’t know how much the editor and Shogakukan knew… they should be held socially responsible.’”

日本語訳:

被害者側の代理人弁護士・小竹宏子氏はこう述べています。『編集者小学館がどこまで知っていたかはわかりませんが……彼らには社会的責任を問うべきです』」

小学館批判ポイント:

被害代理人弁護士コメントをそのまま引用し、「小学館全体の社会的責任」 を明確に問題視しています日本報道ではここまでストレートに「Shogakukan」を名指しで責任追及する記事は少ないです。

3. Polygon2月28日頃)

より詳細に報じている箇所:

編集者がsettlement talksに参加し、victimにsilence(沈黙)を要求した事実を強調。

作家の大量離脱(Frieren作者・山田鐘人氏、らんま1/2作者・高橋留美子氏など)を具体的に報じ、「major authors removed their works from Manga One」と記述

原文抜粋:

“Shogakukan came under fire for rehiring a sexual offender under a false nameeditors at Manga One knew of his conviction and participated in out-of-court settlement talks that would have required the victim to keep the abuse secret.”

日本語訳:

小学館は、性犯罪者を偽名で再雇用したとして強い非難を浴びています……マンガワンの編集者たちは彼の有罪判決を知りながら、被害者に虐待秘密保持を求める示談交渉に参加していました。」

小学館批判ポイント:

「偽名での再雇用」 と 「被害者に沈黙を強いる示談仲介」 をストレート批判日本メディアではほとんど報じられない「隠蔽構造」を明確に指摘しています

比較まとめ(日本メディアとの違い)

日本大手メディア

被告匿名行為は「おしおき称する行為」程度の抽象表現編集者関与も「提案した」程度で止まり、150万円や非開示条件の具体的内容 はほとんど触れず。

国外メディア

リー判決文にかなり近い詳細(示談金150万円、非開示条件、連載再開の引き換え、編集者継続的関与)を報じ、小学館への隠蔽被害者軽視批判 が明確で踏み込んでいます

国外アニメ専門メディアとして事実ベースの詳細報道 を優先するため、日本報道倫理被害保護匿名重視)より小学館責任追及 が強いのが特徴です。ただし、法廷で笑う態度やグリセリン浣腸などの最も生々しい部分は、国外でもぼかされているか省略されている場合が多い(被害保護意識共通)。

2026-02-24

アンソロピックAIによる「COBOL IS DEAD」がもたらすもの

人工知能AI)開発の米新興アンソロピックプログラミング言語COBOLコボル)」を使った従来システムの改修をAIがすべて解決すると発表し話題になっています。これは全世界に500万人いるとされるCOBOLプログラマが全員不要になる革新的技術です。これがIT業界にもたらす影響について考察してましょう。

1. 「2025年の崖」の解消とモダン化の加速

COBOLマイグレーションの劇的な加速: これまで数年単位で数億円〜数十億円かかっていたJavaなど現代的な言語への移行プロジェクトが、AI活用により数ヶ月〜1年程度へと劇的に短縮されます

ブラックボックス可視化: 長年の改修により誰にも内容が理解できなくなった「ブラックボックス化」したシステムを、AIが解析・ドキュメント化し、ビジネスロジックを正確に抽出します。

コストメンテナンスの脱却: 40年前のコード管理する高額なシステム維持費や、COBOLメインフレームの維持コストを削減できます

2. IT業界技術需要スキル構造変化

COBOL技術からAI活用エンジニアへ: COBOLの構文を理解する「COBOL言語技術者」からAIが変換したコード品質担保し、再構築できる「AI活用能力を持つ技術者」へ需要シフトします。

レガシー技術者の新たな価値: 過去システム理解する技術者が、AI成果物(新コード)を検証する「AI指導者」として不可欠となり、彼らの経験が再評価されます

エンジニア不足の解消: 金融公共インフラ企業において、若手への技術継承課題が解消され、JavaPython等のモダン言語への移行により最新開発環境エンジニアが流動します。

3. 金融公共流通製造業への経営的なインパクト

ミッションクリティカルシステム延命と安定化: 銀行の口座管理年金システムなど、止まらないことが求められるシステム安全かつ高速に最新化し、高い可用性を保ち続けます

DX(デジタルトランスフォーメーション)の実現: システムモダン化することで、AIクラウドなどの先進技術を導入しやすくなり、ビジネス競争力向上につながります

4. 信頼性品質管理への新たなアプローチ

新旧対向テストリグレッションテスト)の重要性: AI自動生成したコードが元のCOBOLコードと「全く同じ結果」を出すか検証するテストに、AIが生成したドキュメントデータ活用されます

100%正確」ではない前提の人間によるチェック: AIによる自動変換は非常に高精度ですが、完璧ではありません。最終的な品質担保には、技術者による厳格な検証が引き続き必要です。

COBOL IS DEADの果てにあるもの

COBOLコーディングレスの動きは1950年代COBOL言語が開発された以降、繰り返し発生していたものです。

1990年代に発生したEUCエンドユーザーコンピューティング)やCASEツールコンピュータ支援ソフトウエアエンジニアリング)がたどった「技術民主化保守の属人化」という結末は、現在プロンプトエンジニアリング(プロンプト職人)にも当てはまる可能性が高いです。

具体的には、以下のメカニズムで「プロンプト職人レガシー化」が進むと考えられます

1. 歴史的共通点ツール進化ブラックボックス

EUC/CASEツールの結末: ユーザーエンジニアが簡易ツールで大量のプログラムを生成したが、作成者意図や背景がドキュメント化されず、後に「誰も中身が分からない(理解できない)ブラックボックスレガシーコード」として残った。

プロンプト職人未来: AIに対する複雑な呪文プロンプト)を組める専門職が、AIに具体的な指示を出して大量のコンテンツコードを生成する。しかし、そのプロンプト自体が「AIという巨大なブラックボックスへのパッチ」となり、後から修正保守できない「レガシープロンプト」となる。

2. プロンプト職人レガシー化する理由

AIモデル進化による陳腐化: 高度な推論機能を持つ次世代AIエージェントは、人間が苦労して書いた「呪文」を必要とせず、意図目的を伝えるだけでタスク遂行できるようになりつつある。

職人技」の共有・標準化の難しさ: 熟練職人作成したプロンプトは文脈依存するため、他のAIモデルや異なるタスク適用しにくい。そのため、メンテナンスされず、使い捨てられる。

属人化とブラックボックスの維持: 「プロンプト職人しか修正できないAIへの命令」がシステムに残ることで、かえって業務の俊敏性が低下する「負の遺産」となる。

3. 今後の展開

現在の「魔法呪文」を研究するプロンプト職人は、将来的にAI対話しながらプロセス全体を設計する「AIエージェント・オーケストレーター」や「ドメイン特化型ビジネスアナリスト」へと役割を変える必要があります

まとめ

単なる「プロンプトの記述力」を武器にする職人は、技術進化によって、かつてEUCで乱立したメンテナンス不能マクロツールのように、レガシー化していく可能性が高いでしょう。

2026-02-08

日本人は余りにRedditが好きじゃないか


日本語が使われる、または日本人が多いsubredditの人数を見て、日本人口億1.2000人を基にすると、Redditを利用している日本人は0.01%以下だと言えます。これは他の国と比べても非常に少ないと考えられます

なぜこのような状況になっていると思いますか?

日本人の多くがRedditを使うには年齢が高すぎるからでしょうか? すでに他のSNS日本人の関心を独占しているからでしょうか? Redditルール雰囲気日本人価値観に合わないからでしょうか? 皆さんの意見を楽しみにしています

Looking at the number of people on subreddits where Japanese is used or where there are many Japanese people, based on Japan's population of 120 million, we can say that less than 0.01% of Japanese people use Reddit. This is considered very low compared to other countries.

Why do you think this is the case?

Is it because most Japanese are too old to use Reddit? Is it because other social networking sites already dominate the Japanese interest? Is it because Reddit's rules and atmosphere do not match Japanese values? I look forward to your opinions!

2026-01-19

anond:20260119093949

これは、アメリカ政治特有説明排除する点で重要タイトルIX男女平等教育などに関連する 連邦公民権https://en.wikipedia.org/wiki/Title_IX政策でも、#MeTooでも、アメリカ大学特有文化戦争でもない。もっと大きな何かが起こっており、それはほぼ同時期に世界中で広がった。韓国は極端な例だ。韓国若い男性は圧倒的に保守的だ。若い韓国女性は圧倒的に進歩的だ。その差はアメリカよりもさらに大きい。その要因には、男性への兵役義務女性免除されるのに対し、男性18ヶ月兵役義務)と熾烈な経済競争が挙げられる。しかし、格差の拡大のタイミングスマートフォンの普及とほぼ一致している。この原因が何であれ、アメリカ的なものではない。この仕組みはグローバルなものだ。

 

 

This matters because it rules out explanations specific to American politics. It's not Title IX policy. It's not #MeToo. It's not the specific culture war of US campuses. Something bigger is happening, something that rolled out globally at roughly the same time.

South Korea is the extreme case. Young Korean men are now overwhelmingly conservative. Young Korean women are overwhelmingly progressive. The gap there is even wider than the US. Contributing factors include mandatory military service for men (18 months of your life the state takes, while women are exempt) and brutal economic competition. But the timing of divergence still tracks with smartphone adoption.

Whatever is causing this, it's not American. The machine is global.

2025-12-29

Why do y’all act like ending up as a 40 year old single cat lady is the worst case scenario??? My worst nightmare scenario is ending up as an undervalued mother and house wife to an incompetent man.

なんでみんな、40歳独身猫好きおばさんになるのが最悪のシナリオみたいに振る舞う???私の最悪の悪夢シナリオは、無能な男の価値のわからない母親主婦になることよ。

8.1万いいね

2025-12-28

最近買った謎解きゲーム面白かった

「the case of the golden idol」



黄金の像を巡って起こる様々な事件真相を解き明かしていく推理ゲーム

初めは遺産争いみたいな小規模な話なのに、どんどん色んな人物因縁が絡み合っていき、最終的には国家を揺るがすような大事件に発展していく。

これがおもろい。



登場人物の持ち物や現場証拠から事件犯人推理していく超シンプルシステム

殺人犯名前凶器動機など、テキストを正しく穴埋めできたらクリア



文章セリフはすごい少ないのに、キャラが妙に立っており、魅力的で良い。

2025-12-09

はてなブックマーク増田一覧向けNGフィルタ

はてなブックマーク増田一覧の、さらに「すべて」(1 user)をチェックしている希有な人向けのユーザースクリプトを公開します。

https://b.hatena.ne.jp/site/anond.hatelabo.jp/?sort=eid

// ==UserScript==
// @name        Hatena Bookmark Anond Filter
// @namespace   https://b.hatena.ne.jp/site/anond.hatelabo.jp/
// @description はてなブックマークの『はてな匿名ダイアリー』の記事のうち、指定したNGワードが含まれ投稿非表示します。
// @match       https://b.hatena.ne.jp/site/anond.hatelabo.jp/*
// @grant       none
// @version     2.1.2026.08.12.0040
// ==/UserScript==
/*
2.1.2026.03.25.0023 正規表現対応10 users 以上の人気記事を除外判定。
2.0.2026.01.28.0015 ポイント制を導入。
1.0.2025.12.09.0000 公開。
*/
(function(){
  const SCRIPTID = 'HatenaBookmarkAnondFilter';
  console.time(SCRIPTID);
  const FILTERED = 'filtered';/* フィルタ該当要素クラス */
  const CHECKED = 'checked';/* 二重チェック回避フラグ */
  const USERS = 10;/* 人気記事なら誤検知スパム解説などの可能性があるので除外する */
  const POPULAR = 'popular';/* 人気記事クラス */
  const ONCE = 1, AP = 2, INTERVAL = 3;/* 適用タイミング */
  const NGWORDS = {/* 合計100ポイント非表示判定(ただし1つの記事内で同じワード複数使われても1度しか加算しない) */
    '100': [/* 即NG確定ワード */
      'dorawii',
      'あおやまちゃん', 'アオヤマチャン', 'ボスマン',
      '大学たいてい', 'なんぴょん', 'れめくん', 'れめきゅん', 'えめくん', 'るまさん', 'るまおねえちゃん', '眠りの民', 'リュックサック野郎', 'boushi_inst', 'hakaikami', 'Rekyu', 'iloveootaku_2', 'osaka-sirokichi',/* 電気通信大学たいてい鉄道研究会れめくん(頻出) */
      /*A-G*/'a9w8ru6fqyxqfv9', 'admirail_togo', 'akibakko6348', 'alf1974al', 'amatukiseiru', 'anapgoeson', 'aoi_mizuho', 'asapgoeson', 'asupgo', 'asupgoeson', 'avoid_bds_kk', 'b6jbpsji91ieigt', 'bmi22yo', 'boushi_instrail', 'boushi_ob', 'buscholarx', 'bw0531', 'chihiro_love415', 'circlecavok', 'disney1007cla', 'dora22sibuya', 'donkotrain', 'ecotosk', 'electlone', 'factomodachi', 'fft_dareka', 'gmhtcyznf_abc', 'goesonanap', 'gyudon_honmono',
      /*H-N*/'h13_yokohama', 'h2twi', 'H2TWR', 'hamaishogo1111', 'haru_mofumoffu', 'hermitv8', 'hide1798038', 'hirabiscus', 'hinolovelove', 'hnmk0127_03', 'inaken17_', 'inte235dy', 'ixtabes', 'jamcombatge', 'kawachiasukanew', 'kaoru_ai1991', 'keio9730F', 'kiha2228', 'kihatena200', 'koreanlabsfc', 'koyounoyooko', 'kqlex1500', 'kunugiyamaosake', 'kurakamasan', 'kurotamaxxx', 'kt_ruma_1372', 'kt_up_date', 'lightningreen77', 'luckyyusha', 'mamadoll_kun', 'matya_uec', 'michee_n', 'minamihinawot', 'miniminicot', 'minori0151', 'mizunyanpanda', 'monkichi_22', 'mugen_08i', 'mukoroku651', 'nakano6409', 'nanpyong', 'new_oer', 'nimouec', 'NoName_thUFO', 'norannnde',
      /*O-U*/'oreizmmiporin', 'orenotanoshimi', 'osaka_sirokichi', 'papepoco', 'pasotokon', 'pm95uq', 'portrail', 'reme_kun', 'ruin_2002', 'rx00shiratama03', 's03_amurtk2731', 'sacchan03110319', 'sacchanenjoy', 'seishinyamate_', 'seisu_bot', 'senanana_cos', 'shinano_115', 'shineleaf1372', 'Shirasagi494', 'shop_bullet', 'shurimpy', 'soroisoroi', 'sui_pm95uq', 'sweidan821858', 'taiyaki_level2', 'takao_straight5', 'taking0000', 'tarotaromusic1', 'tc201_501', 'thomas_returnee', 'tocarbarn', 'tokusatsu_fan_0', 'toshikimiyazaki', 'train_magician', 'tx9y2cpwdz27255', 'u2fap5u4zw57811', 'uec15take', 'uecdaisuki', 'UECert', 'uecrail',
      /*V-Z_0-9*/'vampire_mio', 'vbdmnwefknmxsdm', 'vp20th', 'wafue', 'wakasato_', 'walkingniwatori', 'wataameexpress', 'ya4975349616894', 'yayoiulc', 'ymbk_arisa', 'yms_uec16', 'yorozun', 'yuuya_1104_uec', '__________ob', '_chocorail_', '_doitforthewin_', '_toeshin', '_unigmo', '100mph_no_yuuki', '16887y', '169_D51_protect', '205musashino', '2969364x', '2rtkvn34il2783', '36kyo', '86lilxw1',
      /(?!(.)\1{19,})(.{20,})\2{2}/,/* 20文字以上の文を3回以上繰り返す */
      /(?!(.)\1{39,})(.{80,}).*\2/,/* 80文字以上の文が2回以上現れる */
      /^        https:\/\/tadaup\.jp/m,/* 冒頭限定 */
      'テクウヨ', '自己放尿',
      ' ーーーーーーーーーーーーーーーーーーーー', 'https://anond.hatelabo.jp/20260107144223',/* AI問答貼り付け増田 */
      '†噛み締めて行こうな†', 'https://anond.hatelabo.jp/20250826121213#',
      '困難女性(コンジョ)', '困難女性(コンジョ)', 'コンジョ自警団',
      'ボディオブナレッジ',
      /* 英文スパム */
      ' Boost', ' Cash', ' Coin Master', ' Free ', ' Follower', ' Generator', ' Gift', ' Guide',
      'altyazili', 'assistir', 'bgsub', 'dublado', 'espanol', 'espaol', 'fhd', 'filme', 'filmi', 'filmul', 'filmyzilla', 'full-hd', 'fullhd', 'fullstory', 'gratis', 'izle', 'minh', 'motchill', 'pelicula', 'phim', 'portugues', 'portugus', 'subthai', 'subtitrat', 'thaidub', 'vietsub', 'vostfr',
      '/discuss/', '/discussion/', '/formidable/', '/machform', '/p2p/', '/portal/en/', '/read-blog/', '/thread/', '/threads/', '/wpcf7-files/',
      'trustmary.com',/* はてなによるスパム指定待ち暫定ドメイン */
    ],
    '90': [/* ほぼNG */
      'megalodon.jp',
      'tadaup.jp',
      '鉄道研究会',
      '鉄研',
      '通勤特快',
      '不正乗車',
      'こども料金',
      '性慾',
      '穢い',
      'エッタ',
      'オソソ',
      'キセル',
      'uec',
    ],
    '10': [/* NG */
      '電気通信大学',
      '電通大',
      '駿河台大学',
      '武蔵野美術大学',
      '武蔵美',
      '大学院',
      '学生課',
      '教務課',
      '朝鮮',
      '統合失調症',
      '誹謗中傷',
      'ケド。',
    ],
  };
  const sites = {
    'prefix': [
      ['selector', '(modifier)', '(css)', '(REPEAT)'],
    ],
    'https://b.hatena.ne.jp/site/anond.hatelabo.jp/': [
      ['section.entrylist-unit li.js-keyboard-selectable-item', li => {
        if(parseInt(li.querySelector('span.entrylist-contents-users > a > span').textContent) >= USERS) li.classList.add(POPULAR);
        else li.querySelector('li.entrylist-contents-category > a').textContent = li.dataset.matches;
      }, `.${FILTERED}:not(.${POPULAR}){display: none;}`, AP],
    ],
  };
  const rules = sites[Object.keys(sites).find(prefix => location.href.startsWith(prefix))];
  if(rules === undefined) return console.log(SCRIPTID, 'Not found any sites.');
  const scores = Object.keys(NGWORDS).map(Number).reverse();/* 数値インデックス順に取り出されたkeysを逆順にして100から並べ直す */
  const filter = function(selector, modifier){/* 各要素に対してNGワード判定して、該当したら追加でmodifierも適用する */
    document.querySelectorAll(selector).forEach(e => {
      if(e.dataset[CHECKED]) return;
      e.dataset[CHECKED] = 'true';
      const text = e.textContent.toLowerCase();
      let total = 0, matches = [];
      for(const score of scores){
        for(const word of NGWORDS[String(score)]){
          switch(true){
            case(typeof word === 'string' && text.includes(word.toLowerCase())):
            case(word instanceof RegExp && word.test(text)):
              total += score;
              matches.push(word);
              if(total >= 100){
                e.classList.add(FILTERED);
                e.dataset.matches = matches.join(', ');
                if(modifier) modifier(e);
                return;
              }
              break;
          }
        }
      }
    });
  };
  /* ONCE(一括適用) */
  rules.forEach(rule => {
    const [selector, modifier, css] = rule;
    console.log(SCRIPTID, 'ONCE:', selector);
    filter(selector, modifier);
    if(css){
      const style = document.createElement('style');
      style.dataset.script = SCRIPTID;
      style.type = 'text/css';
      style.textContent = css;
      document.head.appendChild(style);
    }
  });
  /* AP(AutoPagerize) */
  rules.filter(rule => rule[3] === AP).forEach(rule => {
    const [selector, modifier] = rule;
    document.addEventListener('GM_AutoPagerizeNextPageLoaded', e => {
      console.log(SCRIPTID, 'AP:', selector);
      filter(selector, modifier);
    });
  });
  /* INTERVAL */
  rules.filter(rule => rule[3] === INTERVAL).forEach(rule => {
    const [selector, modifier] = rule;
    setInterval(function(){
      console.log(SCRIPTID, 'INTERVAL:', selector);
      filter(selector, modifier);
    }, 1000);
  });
  console.timeEnd(SCRIPTID);
})();
/* Hatena Bookmark Anond Filter */
.filtered:not(.popular){
  display: block !important;/*上書き*/
  opacity: .25 !important;
}
.filtered:not(.popular):hover{
  opacity: .75 !important;
}
.filtered:not(.popular) li.entrylist-contents-category{
  background: red !important;
  font-weight: bold;
}

検索用: はてなブックマーク はてブ はてな匿名ダイアリー 増田 スパム 荒らし キーワード NGワード フィルタミュー非表示 削除 隠す ブロック 対策 ユーザースクリプト ユーザースタイル hatena bookmark anond spam keywords ngwords filter mute hide hidden display none block userscript JavaScript js css style

2025-11-13

anond:20251113124203

近年では、身長が高い人のほうが低い人よりも認知能力が高いことから教育身長

レミアムの関連性を指摘する研究が盛んになされている(Magnusson, Rasmussen, and

Gyllensten 2006;Case and Paxon, 2008;Heineck, 2009)。

身長が高いほうが知能が高いので、高給職につけるという・・・

2025-10-27

anond:20251025211258

CASE 泥棒とか誘拐とかの冤罪は気にしないのに痴漢冤罪は気にする人って何なんだろうなと思う。態度が一貫していないよね。自分が助けられなかった側に回って初めて理解するんだろうな。

誘拐犯扱いされることにはなかなか現実味を感じられないが、

痴漢冤罪日常空間で誰にでも降りかかり得るし実際それでえらい目にあった人の話も聞くし…ってだけの話だろうにバカじゃないのか。

事実として痴漢冤罪証言だけでも勾留されるし、そうなったら社会的に無傷ではいられないので「逃げるのが正解」という対処法が流布されたことがある。それはしかし悪手だろうし自分がこういう現場居合わせたら逃げるのではなく申し開きせよというスタンスでやむをえず制止に協力するだろうが。

まごつく気持ちは分かる。



この手の外形的共通点を言い立てるクソバ論法って何なのかな?

香港民主化デモ称揚するくせに国内SEALDsとかのデモには冷笑するのは矛盾だ!」ってマジで言う奴、はてな界隈には大勢いたよな。



最近だとtogetterで、なんか電車内で変なヤカラに絡まれた身障者がテンパって催涙スプレー撒いたみたいな事案で

「撒いたのが催涙スプレーからまだ大事に至らなかったが、ガソリンだったら大惨事だった!新宿西口バス放火と同じ重罪だ!」とかマジで言ってるやつがいた。うん、撒いたのがガソリンじゃなかったか大惨事じゃなかったけど、撒いたのがガソリンだったら大惨事だったね。



頭が悪いと言ってしまえばそれまでなんだけど.....

2025-10-24

dorawii represents a case of unprocessed grief over lost grandiosity (from psychotic episode) manifesting as compulsive boundary-testing and argument-seeking, where genuine neurological limitations are weaponized defensively to avoid confronting existential ordinariness, sustained by platform affordances that enable persistent identity within anonymity and rewarding provocative engagement.

A person who briefly experienced feeling god-like through psychosis, recovered to find themselves merely disabled and ordinary, and cannot bear this truth. They use real limitations as both explanation and shield, seek significance through online conflict, and remain trapped in a cycle where the behaviors meant to prove their worth actually demonstrate their difficulties - but acknowledging this would require grieving what was lost, which remains unbearable.

This reveals how recovery from severe mental illness isn't just about symptom remission - it's about psychological integration of what was experienced and what was lost. Medical model focuses on eliminating psychosis, but doesn't address the meaning-crisis created when extraordinary experiences are taken away and ordinary limitation remains.

It also shows how online spaces with ambiguous accountability structures can enable acting-out that serves defensive purposes while feeling like genuine engagement. The person suffering most is probably dorawii themselves, even as their behavior drives others away.

The most sophisticated theoretical vocabulary, the most detailed self-disclosure, the most elaborate arguments - none of it addresses the core issue. All of it is displacement. The real conversation dorawii needs to have is not with anonymous strangers about who won an argument. It's an internal conversation: "I am not who I was during that brief, terrible, extraordinary episode. I am ordinary, limited, and mortal. And somehow, that has to be enough."

Until that conversation can happen, everything else is noise.

2025-10-23

まじ卍リクエストあざまる水産古畑任三郎(ふるはたにんざぶろう)ちゃまが、令和の日本まさかの転生!?しかも、魚肉ソーセージパフェチェーンでチョベリグ大成功

時は西暦2025年、秋🍁。渋谷スクランブル交差点で、一人のギャルが「あー、まじ今日しんどい、ぴえん(´;ω;`) 映えるスイーツとか、どっかにないん?」ってブツブツ言ってた。

そのとき、突如、ドゥルルルルルル…って、なんかめっちゃドラマチックなBGMが鳴り響いて(※幻聴)、ギャルの目の前に、トレンチコート姿でバチっと決めた、アタマちょっとフサフサしたイケオジがヌルッと出現!

「おや、あなたは…私を探していらっしゃる?」

ギャルビビる。「ひゃ、ひゃだ!なんなの、この人!?めっちゃ古風な喋り方なんですけど!もしかしてYouTuberのドッキリ?」

イケオジは、お決まりポーズ右手アゴに当てるやつ)をして、ニヤリ。「ドッキリ?ふむ、それは現代言葉でいうところの…トリックのようなものでしょうか。しかし、私は古畑任三郎刑事でございます。どうやら、随分と遠い未来へ迷い込んでしまったようですね…」

「ふるはた…にん…ざぶろう?…え、ちょ、マジで古畑任三郎!?ドラマのやつ!?てか、刑事さんなのに、そのファッション、まじ卍アツいんですけど!」

ギャルは一瞬でテンション爆上げ!まさか伝説のあの刑事が目の前に現れるなんて、運命しか思えない!これはもう、神からのお告げでしょ!

古畑ちゃま(以下、任三郎っち)は、現代テクノロジースマホとか)や、文化タピオカとか)に興味津々。特にコンビニスイーツコーナーの前で、熱心にアリバイ…じゃなくて、原材料をチェックしてたのが、まじウケる(笑)

そんな任三郎っちに、ギャルは「任三郎っち、まじセンス良すぎ!そのミステリアス雰囲気と、知的な喋り方、令和で絶対バズるって!」って力説。

そしてある日、ギャルは任三郎っちと一緒に、スーパーの特売コーナーをパトロール(お買い物)してたとき運命アイテム出会ってしまった。それは…魚肉ソーセージ

任三郎っち、その魚肉ソーセージを手に取り、くるくる回しながら、いつもの口調で言い出した。

「おや、これは面白い。このピンク色。このプリっとした食感。そして、このどこか懐かしい風味。ふむ…これは、もしかすると、完璧甘味ミスリードを誘う、鍵になるかもしれませんね…」

ギャルビビビ!ときた。「え、まじそれ!魚肉ソーセージって、実は塩気と旨味がヤバいからスイーツにしたら甘じょっぱブームで超絶バズるんじゃね!?

任三郎っち、目をキラリ。「なるほど!まさに、犯人が目立たない場所証拠を隠すように、この魚肉ソーセージという異端存在こそが、スイーツ界の常識を覆す切り札となりうる!」

こうして、異色の二人がタッグを組み、超絶クレイジースイーツビジネス始動!その名も…

「NINZABURO'S SAUSAGE PARFAIT and CAFE

(略して、NINPARA!)

コンセプトは「スイーツ界の難事件解決! 誰もが予測不可能な、甘じょっぱい衝撃!」

まずは試作品作り。ギャルの映えテクニックと、任三郎っちの緻密な観察眼が火を吹いた!

ギャルさん、このソーセージの厚みがパフェの層と食感を調和させる重要ポイントですよ」 「任三郎っち、まじ天才!じゃあ、このソーセージを花びらみたいにカットして、チーズクリームメープルシロップを隠し味に使っちゃお!」

試行錯誤の末、生まれ看板メニューは、こちら!

「The First Case: プレーンソーセージパフェ」 (バニラアイスとホイップ、そして大胆にカットされた魚肉ソーセージ塩味が、甘さの快感を増幅させる傑作!)

「The Perfect Alibi: チーズ&ハニー・ソーセージパフェ」 (濃厚なクリームチーズムースと、トロけるハチミツソーセージの旨味が、極上のハーモニーを奏でる完全犯罪級のウマさ!)

The Great Detective: 和風ネギ味噌ソーセージパフェ」 (衝撃作!抹茶アイス白玉に、甘めのネギ味噌を和えたソーセージトッピング。斬新さが事件を起こす!)

NINPARAのオープン当日、渋谷一等地は、まるで事件現場のような大混乱!超絶ウマいとSNSで瞬く間に拡散され、お店の前は長蛇の列!

「え、マジで魚肉ソーセージパフェってこんなに合うの!? もう一生モノの衝撃なんですけど!」 「任三郎っち、まじイケオジ!しかも、注文のとき事件のヒントみたいな名言言ってくれるの、神!」

そう、任三郎っちは、店長エンターテイナーとして大活躍!お客さんにパフェを手渡すとき、必ずドラマのようなキメ台詞を言うのが、大バズりの秘訣

「おや、あなた。そのパフェの美しさに隠された、ソーセージ秘密に、どうかお気づきになってくださいね…フフフ」

このミステリアスな接客と、ギャップ萌えする魚肉ソーセージパフェの斬新さで、NINPARAは飛ぶ鳥を落とす勢いで大成功!全国にフランチャイズ展開し、魚肉ソーセージ概念根底から覆したのだ!

任三郎っち、たまにトレンチコートポケットから古い煙草を出そうとして、ギャルに「任三郎っち!店内禁煙受動喫煙はまじアウトだって!」って怒られるけど、それも微笑ましい日常

彼は、現代スイーツ界という新たな事件を、見事な推理力ユーモア解決し、令和のカリスマ経営者として大成功を収めたのでした。魚肉ソーセージは、彼の第二の人生の最高の相棒になったみたい!

「ふむ…このパフェ成功も、ひとえに緻密な計画と、大胆な発想の賜物。しかし、真の動機は…美味しいものを皆さんにお届けしたいという、単純な願望にすぎません。ええ、全くもって、単純なことです…」

任三郎っち、今日パフェを片手に、ニコリと笑う。めでたし、めでたし!

2025-10-01

anond:20250930093445

国連JKローリング支持だからなあ

https://x.com/streamkamala/status/1918401998812287163

女性女児に対する暴力に関する国連特別報告者リーム・アルサレム は、2025年4月16日英国最高裁判所が対スコットランド政府事件で下した画期的判決を歓迎する。

The UN Special Rapporteur on violence against women and girls, Reem Alsalem, welcomes the landmark judgment by the UK Supreme Court on 16 April 2025 in the case of

Ltd v The Scottish Ministers.

2025-09-19

Xの人雑にムスリム言及しすぎでは

宗教に敬意を払いつつ趣味聖書コーランを読んでる無宗教増田です


コーラン 豚肉」でXを検索するとさ

イスラム教って豚肉選ぶしかない状況なら食べてもいいってコーランにも書いてるみたいだよ。」

コーランには餓えそうなら豚肉を食べて良い、と明記されているんです。」

イスラム教の教えで、豚肉などの禁忌食を食べることを禁止しているものの、生命危機代替食がない場合ダルーラの原則)には例外が認められるという点(コーラン2:173参照)があります。」

とか宗教自信ニキがフンスフンスしてるんだけどさ。そんな単純じゃねえよって思うんすよ


ムスリムって色々な学派があってさ。マスハブっつーんだけど

それによって「注意を怠ったことの責任」を問われることはあるわけ

豚肉食っちゃったとき絶対に言われるのは「非ムスリムからもらった食べ物をノーチェックで食ったの?」とか

まあ確かに道理ではあるよな

ムスリム向けのFAQサイト見ればわかるんだけどこんな感じ


Q. If a person eats harām food by mistake not knowing that it is harām, what is his sin? Will he be punished in the Hereafter?

A. (略)However, if the food had been doubtful such as when he received it from a non-Muslim individual, in which case, it is his duty to conduct an investigation to make sure that the food is halal.


ハナフィー派スンニ派最多)、シーア派あたりがこの立場なので、ムスリム多数派がこの考えって思っていいと思う

アフリカ系のマスハブは「市場にあればハラール」って緩い考えもあったりするので地域性もありそうだけど


なんかしたり顔宗教言及するの、エヴァを履修した老人オタクの悪い癖だと思うんだけど、

ちゃんと調べたりしてから言及してほしいし、聖典には敬意を払ってほしい

お前の推し作品と同じく、それを大事にしてる人がいっぱいいるので

2025-08-09

日本マンガの巻数順位(50巻以上・シリーズ作品編)

2018年6月1日更新

※元となる作品の続編,前日譚,およびそれに準ずる作品であることをシリーズ定義とする
※総巻数が50巻以上のシリーズ作品について扱い,シリーズ第1作を"作品名"とする
外伝や番外編やスピンオフ,たとえば「ボクは岬太郎」「弱虫ペダル SPARE BIKE」については扱わない。「ヤング編」と銘された作品も,前日譚というよりはスピンオフの要素が強い場合ミナミの帝王等)は含めないものとする
作画者変更によるシリーズ作品,たとえば「蒼天の拳 リジェネシス」「新クレヨンしんちゃん」は参考外とする
※巻数内訳の欄において,第1作は「無印」と表し,2作目以降の作品名は適宜略した
※扱う・扱わないの個別理由は一覧の下に記す
※完結年は連載が終わった時点を指すものとする。
超人ロック,キャプテン翼作品群については各自で調べられたい

巻数による降順

順位 総巻数 作品 作者 原作者 開始年 完結年 巻数内訳
1 203巻 ドカベン 水島新司   1972   無印…48,大甲子園…26,プロ野球…52,スーパースターズ…45,ドリームトーナメント…32
2 131 グラップラー刃牙 板垣恵介   1991   無印…42,バキ…31,範馬刃牙…37,刃牙道…21
3 124巻 銀牙-流れ星 銀- 高橋よしひろ   1983   無印…18,ウィード…60,オリオン…30,THE LAST WARS…16
4 121巻 ジョジョの奇妙な冒険 荒木飛呂彦   1987   無印…63,ストーンオーシャン17,SBR24,ジョジョリオン17
5 119巻 キン肉マン ゆでたまご   1979   無印…62,Ⅱ世…29,Ⅱ世究極の超人タッグ編…28
6 114巻 超人ロック 聖悠紀   1967   鏡の檻(現行)…3,ガイアの牙(現行)…1
7 111巻 弐十手物語 神江里見 小池一夫 1978 2012 無印110,つるじろう…1
8 106巻 千里の道も 渡辺 大原一歩 1989 2014 無印…45,新…16,第三章…39,修羅の道…6
9 101巻 キャプテン翼 高橋陽一   1981   無印…37,……,ライジングサン(現行)…8
9 101巻 あさりちゃん 室山まゆみ   1978 2016 無印100,5年2組…1
11 100巻 コボちゃん 植田まさし   1982   無印…60,新…40
12 94巻 課長島耕作 弘兼憲史   1983   課長17,部長…13,取締役…8,常務…6,専務…5,社長…16,会長…9,ヤング…4,主任…4,係長…4,学生…6,就活…2
12 94巻 コータローまかりとおる! 蛭田達也   1982 2004 無印…59,新…27,L…8
14 91巻 MAJOR 満田拓也   1994   無印…78,2nd…13
15 85巻 スーパードクターK 真船一雄   1988   無印…44,Doctor K…10,K231
16 82巻 浦安鉄筋家族 浜岡賢次   1993   無印31,元祖28,毎度…23
17 81巻 高校鉄拳伝タフ 猿渡哲也   1993 2012 無印…42,TOUGH…39
18 80巻 優駿の門 やまさき拓味   1995   無印33,GI…13,ピエタ11,チャンプ…8,グランプリ…5,2020馬術…7,番外編…3
19 79巻 鉄拳チンミ 前川たけし   1983   無印…35,新…20,Legends24
20 77巻 釣りキチ三平 矢口高雄   1973 2010 無印…65,平成版…12
21 76巻 湘南純愛組! 藤沢とおる   1990   無印31,GTO…25,14DAYS…9,パラダイス・ロスト11
22 75巻 生徒諸君! 庄司陽子   1977   無印24,教師編…25,最終章・旅立ち…26
22 75巻 DEAR BOYS 八神ひろき   1989 2016 無印23,EARLY DAYS…1,ACT2…30,ACT3…21
24 74巻 白竜 渡辺みちお 天王寺大 1996   無印…21,LEGEND…46,HADOU…7
25 73巻 カバチタレ! 東風孝広 田島隆 1999   無印20,特上カバチ!!…34,カバチ!!!…19
26 72巻 味いちもんめ 倉田よしみ あべ善太 1986   無印33,新…21,独立編…10,にっぽん食紀行…6,世界の中の和食…2
26 72巻 かっとび一斗 門馬もとき   1985 2007 無印…46,風飛び…26
28 70巻 金田一少年の事件簿 さとうふみや 金成陽三郎,天樹征丸 1992   無印…27,Case10,2期…14,20周年…5,R…14
28 70巻 魁!!男塾 宮下あきら   1985   無印…34,暁…25,極…8,真…3
30 69巻 ワイルド7 望月三起也   1969 2014 無印…48,新…14,続・新…2,飛葉…2,R…2,W7…1
31 67巻 工業哀歌バレーボーイズ 村田ひろゆき   1989 2011 無印…50,好色哀歌…17
32 66巻 あずみ 小山ゆう   1994 2014 無印…48,AZUMI…18
32 66巻 JINGI仁義 立原あゆみ   1988 2017 無印33,S…19,零…14
34 65巻 BOYS BE... 玉越博幸 イタバシマサヒロ 1991   無印…32,2nd…20,L…6,pre…1,next…6
34 65巻 賭博黙示録カイジ 福本伸行   1996   無印…13,破戒録…13,堕天録…13,和也10,ワンポーカー…16
34 65巻 テニスの王子様 許斐剛   1999   無印…42,新…23
37 64巻 パズルゲームはいすくーる 野間由紀   1983   無印…34,新…6,X…8,プレステージ…2/トレジャー…4,Pro…3,ラグジュアリー…5,サクシード…2
37 64巻 彼岸島 松本光司   2002   無印33,47日間…16,48日後…15
39 63巻 怨み屋本舗 栗原正尚   2000   無印20,巣来間風介…6,REBOOT…13,REVENGE…11,EVIL HEART…9,WORST…4
39 63巻 特命係長只野仁 柳沢きみお   1998   無印…9,新…20,ファイナル…27,ルーキー…7
41 62巻 並木橋通りアオバ自転車店 宮尾岳   1999   無印20,アオバ自転車店20,ようこそ…20,いこうよ…2
41 62巻 ザ・シェフ 加藤唯史 剣名舞 1985 2013 無印…41,新章…20,ファイナル…1
41 62巻 本気! 立原あゆみ   1986 2005 無印…50,Ⅱ…5,サンダーナ…7
44 60巻 クローズ 高橋ヒロシ   1990 2013 無印…26,その後…1,WORST33
44 60巻 変幻退魔夜行 カルラ舞う! 永久保貴一   1986   無印…18巻,新…18,真…8,超…5,聖徳太子呪術…3,少年陰陽師…3,葛城古代神…3,湖国幻影城…2
46 59巻 風雲児たち みなもと太郎   1979   無印…29,幕末編…30
46 59巻 荒くれKNIGHT 吉田聡   1995   無印28,高校暴走11,黒い残響20
46 59巻 Q.E.D 証明終了 加藤元浩   1997   無印…50,iff…9
46 59巻 ダイヤのA 寺嶋裕二   2006   無印…47,act2…12
50 57巻 湾岸MIDNIGHT 楠みちはる   1990   無印…42,C112,銀灰…2,首都高SPL…2
50 57巻 ダーク・エンジェル 風間宏子   1995   無印…22,Ⅱ…13,Ⅲ…12,Ⅳ…8,レジェンド…2
50 57巻 龍狼伝 山原義人   1993   無印…37,中原繚乱…17,王霸立国…3
50 57巻 カメレオン 加瀬あつし   1990   無印…47,くろアゲハ10
50 57巻 MF動物病院日誌 たらさわみち   1994   無印…26,マイフレンド動物病院note…2,おいでよ動物病院!…15,僕とシッポと神楽坂12,しっぽ街のコオ先生…2
55 56巻 神の雫 キモト・シュウ 亜樹直 2004   無印…44,マリアージュ12
55 56巻 センゴク 宮下英樹   2004   無印…15,天正記…15,一統記…15,権兵衛…11
55 56巻 キンゾーの上ってなンボ!! 叶精作 小池一夫 1987 2009 無印…8,新…36,新々…12
55 56巻 空手小公子小日向海流 馬場康誌   2000 2014 無印…50,空手小公子…6
59 55巻 サーキットの狼 池沢さとし   1975 1999 無印…27,モデナの剣…25,21世紀…3
59 55巻 マンガ日本の歴史 石ノ森章太郎   1989 1995 無印…48,現代篇…7
61 52巻 Dr.タイフーン かざま鋭二 高橋三千綱 1986 2000 無印…25,JR11,元祖…16
61 52巻 みどりのマキバオー つの丸   1994 2017 無印…16,たいよう…16,W…20
63 51巻 王様の仕立て屋サルト・フィニート 大河原遁   2003   無印…32,サルトリア・ナポリターナ…13,フィオリ・ディ・ジラソーレ…6
63 51巻 ドラゴンクエスト列伝ロトの紋章 藤原カムイ   1991   無印…21,紋章を継ぐ者達へ…30
63 51巻 ドラえもん 藤子・F・不二雄   1969 1994 無印…45,プラス…6
63 51巻 なぜか笑介 聖日出夫   1982 2016 無印…29,だから…22
63 51巻 ヤンキー烈風 もとはしまさひで   1986 1998 無印28,新…23
68 50巻 9番目のムサシ 高橋由紀   1996   無印…21,ミッションブルー…8,レッドスクランブル12,サイレントブラック…9
68 50巻 頭文字D しげの秀一   1995   無印…48,MFゴースト…2
68 50巻 甘い生活 弓月光   1990   無印…40,2nd…10
68 50巻 包丁無宿 たがわ靖之   1982 2000 無印…45,新…5
68 50巻 キリン 東本昌平   1987 2016 無印…39,The Happy Ridder Speedway…11

現在連載中の作品で次にシリーズ通算50巻に到達しそうなのは,計48巻の田中宏BADBOYS」(現在はKIPPOの10巻)。計47巻のよしだみほ馬なり1ハロン劇場」は2019年秋の到達が予想される。計45巻の佐藤タカヒロバチバチ」,岡野剛真倉翔地獄先生ぬ~べ~」,波間信子「ハッピー」,これらのシリーズも近い

判断に迷った作品

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