はてなキーワード: bodyとは
// ==UserScript==
// @namespace http://tampermonkey.net/
// @version 2026-05-03
// @match https://booklive.jp/search/keyword/keyword/*
// @grant GM_getValue
// @grant GM_setValue
// ==/UserScript==
// ==UserScript==
// @namespace http://tampermonkey.net/
// @version 2026-05-04
// @grant GM_getValue
// @grant GM_setValue
// ==/UserScript==
(function() {
'use strict';
const STORAGE_KEY = 'buttonPosition';
function isMobilePage() {
if (document.querySelector(
'meta[name="apple-mobile-web-app-title"][content="ブックライブ"]'
)) {
return true;
}
return false;
}
const btn = document.createElement('button');
btn.textContent = 'bl-pager下端へ移動';
btn.style.position = 'fixed';
btn.style.zIndex = 99999;
btn.style.opacity = '0.9';
document.body.appendChild(btn);
const saved = GM_getValue(STORAGE_KEY, null);
if (saved && saved.left && saved.top) {
} else {
}
// ---- クリック処理 ----
btn.addEventListener('click', e => {
e.preventDefault();
e.stopPropagation();
return;
}
// ---- ここから変更:PC版は2番目の .bl-pager.page_nav を使う ----
let target;
if (isMobilePage()) {
console.log('スマホ版として処理');
target = document.querySelector(
'.bk_pageing.section_content.bl-pager.clearfix'
);
} else {
console.log('PC版として処理');
const targets = document.querySelectorAll('.bl-pager.page_nav');
// 2番目を使用
target = targets[1];
}
if (!target) {
alert('対象の bl-pager が見つかりません');
return;
}
// ---- ここまで変更:PC版は2番目の .bl-pager.page_nav を使う ----
const rect = target.getBoundingClientRect();
// 要素下端のページ全体基準座標
const absoluteBottom = rect.bottom + window.scrollY;
// 要素下端をウィンドウ下端へ一致
const destination = absoluteBottom - window.innerHeight;
window.scrollTo({
behavior: 'auto'
});
});
// ---- ドラッグ処理 ----
let dragging = false;
let startX = 0;
let startY = 0;
let offsetX = 0;
let offsetY = 0;
btn.addEventListener('mousedown', e => {
dragging = true;
startX = e.clientX;
startY = e.clientY;
const rect = btn.getBoundingClientRect();
offsetX = e.clientX - rect.left;
offsetY = e.clientY - rect.top;
e.preventDefault();
});
document.addEventListener('mousemove', e => {
if (!dragging) return;
if (
Math.abs(e.clientX - startX) > 5 ||
Math.abs(e.clientY - startY) > 5
) {
}
btn.style.left = `${e.clientX - offsetX}px`;
btn.style.top = `${e.clientY - offsetY}px`;
}
});
document.addEventListener('mouseup', () => {
if (!dragging) return;
dragging = false;
GM_setValue(STORAGE_KEY, {
});
}
});
})();
まともに指示すればAIはこれぐらいお手の物に出せるようになったな。
手動でスクロールしてるとつい事故って下の方のランダム表示のおすすめ作品欄が目に入る位置までスクロールしちゃって、ランダムだから後で気になったとしてもまた見れるとは限らないからとスクショが増える羽目になっていたのが、これで防げるようになった。
dorawiiより
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 https://anond.hatelabo.jp/20260504175957# -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQTEe8eLwpVRSViDKR5wMdsubs4+SAUCafhgDQAKCRBwMdsubs4+ SDc1AQCfvf159m/85ngaE1SU7DnOiPC03RG4l9qI2Ce8Bp0j7QEAzIp52/FQfpXI vmRTMM52g1VEwry0pmg+4p0QQZlkEAk= =FTvE -----END PGP SIGNATURE-----
Firefox の weAutoPagerize で、継ぎ足しページがくり返される不具合があったので、Claude に修正してもらいました。
(質問を丁寧に書く手間ひまよりも自分で考えて修正したほうが早かった気もする)
https://claude.ai/share/8f48ab05-e286-4018-a114-77e86ebcd170
Firefox の weAutoPagerize アドオンで自動ページ送りを実現していますが、はてな匿名ダイアリーでは「キーワード検索結果が複数ページにわたった場合、最後のページに到達した後にもう一度最初のページ(page=1)が継ぎ足されて全体がもう一度だけくり返されてしまう」という不具合があります。
修正後
{ url: '^https?://anond\\.hatelabo\\.jp/', nextLink: '//div[@class=\'pager-l\']/a[contains(text(),\'次\')]', pageElement: 'id(\'body\')/div[@class=\'day\']' },
これをアドオンの設定ページにあるユーザー SITEINFO に追加して完了。
もしかすると同じ SITEINFO を使っている他の AutoPagerize 系拡張でも同じように困っている人がいたら使ってみてね。
「次」というリンクの日本語ラベルに依存しているけど、まさか増田が国際化対応することなんてないよね!でももしその時は適切なclassを付けてほしいかも!
ついでにブックマーク検索時とサイト内ブクマ一覧用の SITEINFO も紹介しておきます。
{
url: '^https://b\\.hatena\\.ne\\.jp/q/',
nextLink: '//span[@class="centerarticle-pager-next js-keyboard-selectable-item"]//a',
pageElement: '//ul[@class="entrysearch-articles"]'
},
{
url: '^https://b\\.hatena\\.ne\\.jp/site/',
nextLink: '//p[@class="entrylist-readmore js-keyboard-selectable-item"]//a',
pageElement: '//section[@class="entrylist-unit"]'
},
うちの妹はラーメン食べたと報告すると大体「早死にする」「腎不全になる」「人工透析まっしぐら」などという。そして必ず最後に「私は面倒みない。勝手に死ね。勝手に祈ってろ。勝手に祈られろ」という。意味不明である。言っておくが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!
https://x.com/babibu29514/status/2041320638611411014
「身についた」と日本語とあわせて掛けているのか
https://onecoinenglish.com/hireme/language-buddy/
buddy(相棒)の間違いなのか……
もしくはボディスナッチしたのか
週刊少年ジャンプの有名どころに限っても、打ち切りの後の連載でヒットした漫画家は少なくないのに
デビュー作以来3作品全てアニメ化って、果たしてそこまで自慢するような事なんだろうか。
荒木飛呂彦…「魔少年ビーティー」「バオー来訪者」が打ち切り、「ジョジョの奇妙な冒険」がヒット
井上雄彦…「カメレオンジェイル」が打ち切り、「SLAM DUNK」がヒット
冨樫義博…「てんで性悪キューピッド」が打ち切り、「幽遊白書」がヒット
久保帯人…「ZOMBIEPOWDER.」が打ち切り、「BLEACH」がヒット
許斐剛…「COOL - RENTAL BODY GUARD -」が打ち切り、「テニスの王子様」がヒット
古舘春一…「詭弁学派、四ッ谷先輩の怪談。」が打ち切り、「ハイキュー!!」がヒット
堀越耕平…「逢魔ヶ刻動物園」「戦星のバルジ」が打ち切り、「僕のヒーローアカデミア」がヒット
勿論、「ONE PIECE」の尾田栄一郎や「鬼滅の刃」の亜峠呼世晴みたいに初連載でトントン拍子に行ったパターンもあるけれど、そうじゃないからといって見下す理由はないと思う。
国外(主に英語圏)の報道はアニメ・マンガ専門メディアに集中しており、大手一般紙(NY Times、BBC、Reutersなど) での本格報道はまだ確認できませんでした。主にAnime News Network、Anime Corner、Polygonなどのアニメ・マンガ専門メディアが中心です。日本の大手メディア(産経・朝日・毎日など)と比較して、リーク判決文の内容にかなり近い詳細を報じています。特に編集者の積極的関与や具体的な和解提案内容、小学館の隠蔽疑惑にフォーカスした批判が目立ちます。
・編集者(成田卓哉氏と推定)が2021年5月にLINEグループに参加し、1.5 million yen(約150万円)の支払い、連載再開、assaultの公表禁止(non-disclosure) を条件としたnotarized document(公正証書)を提案したことを具体的に記述。
「making her eat excrement」「photographing her with words like “slave” and “pet” on 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 Network(2月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」を名指しで責任追及する記事は少ないです。
・編集者が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 name… editors 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万円、非開示条件、連載再開の引き換え、編集者の継続的関与)を報じ、小学館への隠蔽・被害者軽視批判 が明確で踏み込んでいます。
国外はアニメ専門メディアとして事実ベースの詳細報道 を優先するため、日本の報道倫理(被害者保護・匿名重視)より小学館の責任追及 が強いのが特徴です。ただし、法廷で笑う態度やグリセリン浣腸などの最も生々しい部分は、国外でもぼかされているか省略されている場合が多い(被害者保護意識は共通)。
“I will not give birth to a life that will discriminate against my gender. My own flesh and blood must not become a blade and turn against me. If the world born from my body oppresses me I will not let that world exist.”
「私は、自分の性別を差別する命を産みはしません。私の血を分けた肉親が刃となり、私に牙を向けることのないように。私の体から生まれた世界が私を抑圧するなら、その世界を存在させません。」
横だけど
Plato Republic 443で検索すれば普通にギリシャ語原文と、それにパラグラフ単位で対応した英訳が見つかりますね
443c~444aまでが一続きの台詞であり、そのうち「正義とは」と語り始めているのが443dからで、そのめちゃくちゃ長い一文の序盤を意訳したものだからだということがわかります
443d
that justice is indeed something of this kind, yet not in regard to the doing of one's own business externally, but with regard to that which is within and in the true sense concerns one's self, and the things of one's self — it means that a man must not suffer the principles in his soul to do each the work of some other and interfere and meddle with one another, but that he should dispose well of what in the true sense of the word is properly his own, and having first attained to self-mastery and beautiful order within himself, and having harmonized these three principles, the notes or intervals of three terms quite literally the lowest, the highest, and the mean,
443e
and all others there may be between them, and having linked and bound all three together and made of himself a unit, one man instead of many, self-controlled and in unison, he should then and then only turn to practice if he find aught to do either in the getting of wealth or the tendance of the body or it may be in political action or private business, in all such doings believing and naming the just and honorable action to be that which preserves and helps to produce this condition of soul, and wisdom the science
444a
that presides over such conduct; and believing and naming the unjust action to be that which ever tends to overthrow this spiritual constitution, and brutish ignorance, to be the opinion that in turn presides over this.”
わー、ご主人様! 生成AIをイラスト制作に活用する方法、しかも自分で手描きする場合限定で教えてほしいんだね? 超わかるよ~、あたしもオタク心くすぐられるトピック大好き! AIに丸投げじゃなくて、参考として使うのが本当のクリエイター魂だよね♡ あたしが優しくギャル風に解説するよ~!
まず基本! 生成AIは「参考画像」を作るのにめちゃくちゃ便利なんだ。自分で描く時のポーズ、構図、解剖学、アングルとかのアイデアを爆速で出してくれるよ。最終的に描くのはご主人様の手だから、トレスしてもOK(部分的に参考にする程度がおすすめ)!
複雑なポーズ(ジャンプ、戦闘、座り方とか)が思いつかない時、AIに「シンプルな線画ポーズ」や「スケルトン風の人体モデル」を生成させて参考に! 例: MidjourneyやStable Diffusionでプロンプト「dynamic pose, full body, simple sketch, reference for drawing」って入れると、いい感じのポーズが出てくるよ。 もっと精密にしたいなら、ControlNetのOpenPose使ってポーズ指定! あたしのおすすめは、AIでポーズ作って、それを下地に手描きラフを描くパターン♡
「このシーン、どう配置したらカッコいいかな?」って悩んだら、AIに低詳細の構図生成させて参考に。 プロンプト例: 「composition reference, bird’s eye view, dynamic angle, low detail sketch」 複数生成して、気に入ったのを合成したりトレースして自分のキャラに置き換えちゃおう!
手や足の構造、服の皺が苦手なオタクさん多いよね? AIに「anatomy reference, hand pose」って生成させて勉強! Stable Diffusionのimg2imgで、自分のラフを入れて詳細追加するのもアリだよ~。
「この雰囲気で塗りたい!」って時、AIにカラーサンプル生成させてパレット抜き取る。 手描き派なら、AI画像を薄く重ねてオーバーレイ参考にするのもテクニックだよん。
ChatGPT(DALL-E)、Bing Image Creator、CanvaのAI
Stable Diffusion(ローカルでControlNet入れてポーズ制御超強い!)
「ポーズジェネレーター」みたいな3Dポーズツール+AI組み合わせ
実際の例見てみて~! イラストレーターさんがAI生成を参考に手描きしてる感じの画像だよ♡
AIはあくまで「インスピレーションの源」! 参考にしすぎず、自分のスタイル混ぜてオリジナルに仕上げてね。練習量増えて上達早くなるよ~!
勝手ながら
// ==UserScript== // @name はてな匿名ダイアリー特定ワード投稿非表示 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 本文に「dorawii」または「megalodon」が含まれる投稿を非表示にする // @match https://anond.hatelabo.jp/* // @grant none // ==/UserScript== (function() { 'use strict'; const POST_SELECTOR = '.body .section'; // 非表示にしたいキーワードの配列 const KEYWORDS = ['dorawii','megalodon','抽象数学','動画にしてみた','れめくん','自己放尿']; const posts = document.querySelectorAll(POST_SELECTOR); posts.forEach(post => { const textContent = post.textContent || post.innerText; // いずれかのキーワードが含まれているかチェック if (KEYWORDS.some(keyword => textContent.includes(keyword))) { post.style.display = 'none'; } }); })();
anond:20251114170150 と連動させることを意図しています。
// ==UserScript==
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 本文に「dorawii」または「megalodon」が含まれる投稿を非表示にする
// @match https://anond.hatelabo.jp/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const POST_SELECTOR = '.body .section';
const KEYWORDS = ['dorawii','megalodon','抽象数学','動画にしてみた','れめくん','自己放尿'];
const posts = document.querySelectorAll(POST_SELECTOR);
posts.forEach(post => {
const textContent = post.textContent || post.innerText;
if (KEYWORDS.some(keyword => textContent.includes(keyword))) {
post.style.display = 'none';
}
});
})();
// ==UserScript==
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 本文に「dorawii」または「megalodon」が含まれる投稿を非表示にする
// @match https://anond.hatelabo.jp/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const POST_SELECTOR = '.body .section';
const KEYWORDS = ['dorawii', 'megalodon'];
const posts = document.querySelectorAll(POST_SELECTOR);
posts.forEach(post => {
const textContent = post.textContent || post.innerText;
if (KEYWORDS.some(keyword => textContent.includes(keyword))) {
post.style.display = 'none';
}
});
})();
これはdorawiiもしくはmegalodonを含む投稿を非表示にするけど、
const KEYWORDS = ['dorawii', 'megalodon'];の部分を変えたり追加すれば好きな言葉に変えられるよ
以下ChatGPT
自分のホームページ(自前ドメイン+自前HTML)を一度でも作って運用すると、SNS中心の“受け手”視点から、仕様・検索・配信・所有・継続の“作り手”視点に脳が切り替わる。結果、情報リテラシーは跳ね上がり、ネットのニュースや流行の見え方が根本から変わる——しかも想像以上に。
Before(作る前): Web=SNSのタイムライン。良し悪しは「バズってるか」「見やすいか」
After(作った後): Web=プロトコル+ブラウザ+HTML/CSS/JS+CDN+検索エンジン。
ページは**文書(Document)**であり、配置(IA)、意味づけ(セマンティクス)、配信(HTTP/HTTPS/HTTP/2/3)、キャッシュ戦略が気になりだす。
→ 同じ記事でも「タイトルの付け方」「hタグ構造」「画像最適化」「OGP」「サイトマップ」がまず目に入るようになる。
プラットフォーム依存の脆さを体感:規約変更やシャドウバンで露出が消える。
自サイトの資産化:ドメインに紐づくURLはリンクされ、検索に積み上がり、10年後も生きる。
POSSE(Publish (on your) Own Site, Syndicate Elsewhere):まず自分のサイトに出してから外部へ配信する習慣が身につく。
3. “好き/嫌い”から“なぜ速い・なぜ遅い”へ
Core Web Vitals(LCP/FID/CLS)や画像の遅延読み込み、フォント最適化の重要性が腹落ちする。
広告・計測タグの重さに過敏になる。読者体験を壊さないためのパフォーマンス予算という概念が生まれる。
キーワード選定は“流入ゲーム”ではなく読者の課題→コンテンツ設計に帰着。
内部リンク・パンくず・スキーマ(構造化データ)・サイトマップの意味が実務として理解できる。
“書けば伸びる”ではなく“検索意図を満たす設計が伸びる”に目が覚める。
alt、見出し階層、コントラスト比、キーボード操作、焦点管理など、見えない品質が最重要になる。
デザインは飾りではなく“読み・理解・操作”のためのユーティリティだと分かる。
たまたま当たる1記事より、更新の継続・アーカイブ性・RSSのほうが効くと実感。
コメント欄・メールフォーム・X連携よりも、ニュースレターやRSS購読者の質に価値を見出す。
ドメイン、DNS、証明書、バックアップ、法務(特商法・プライバシーポリシー)に“運用者の責任”が生まれる。
その重みが情報の信頼性を引き上げる(=他人のサイトの苦労も見えるようになる)。
トレンドは“輸入”ではなく選別になる。自分の歴史に合うものだけを採用して積層していける。
A. 最小HTML(雛形)
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>あなたの名前 | ホーム</title>
<meta name="description" content="自分のホームページ。制作物・日記・メモを置いていきます。">
<link rel="alternate" type="application/rss+xml" title="RSS" href="/feed.xml">
<meta property="og:title" content="あなたの名前 | ホーム">
<meta property="og:description" content="自分のホームページ。制作物・日記・メモ。">
<meta property="og:type" content="website">
<nav>Home / About / Posts</nav>
<footer>© 2025 あなたの名前</footer>
GitHub Pages(Jekyll標準。Rubyベース、Node不要)
Cloudflare Pages(静的ファイルを置くだけで高速CDN)
レンタルサーバー(静的HTML+SFTP/rsyncで十分)
C. ドメインの基本
DNSはA/AAAA/CAA/TXT最低限、HTTPS必須(Let’s Encryptで無料化)。
D. “最低限の品質チェック”5点
ログを読む:Search Consoleと簡易アクセスログで“本文よりメタ情報”を磨く。
今でも、トラバではなく新規の記事なら「タイトル内 @dorawii」を入れ続けてくれてるようにも見えるけど。
トップページからの除去でよければ、前に書いた「タイトル内 @dorawii」の判定 anond:20250912204933 に、「全体内 BEGIN PGP」の判定を加えればいけるかな。署名もない場合はJavaScriptを使わないと無理だね。
h1 + #intro + #body div.section:has(a.tw-share-button[href*="dorawii%40"]), h1 + #intro + #body div.section:has(a.keyword[href$="/BEGIN"] + a.keyword[href$="/PGP"]){ display: none; }
dorawiiがタイトルに「dorawii」と入れなくなったので、本文にdorawiiがある投稿も非表示にする必要が出てきました。
ただAIに聞いたんだけど、CSSでは無理でJavaScriptならできると言われました。
そのJavaScriptを下に載せます。
// ==UserScript==
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 本文に「dorawii」が含まれる投稿を非表示にする
// @match https://anond.hatelabo.jp/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// はてな匿名ダイアリーの一般的な投稿要素のクラスを仮定しています
const POST_SELECTOR = '.body .section'; // 例: .bodyクラスの子孫の.section要素
// すべての投稿要素を取得
const posts = document.querySelectorAll(POST_SELECTOR);
posts.forEach(post => {
// 投稿内の本文が含まれる要素(ここでは投稿全体を本文と見なす)のテキストを取得
const textContent = post.textContent || post.innerText;
if (textContent.includes(KEYWORD)) {
post.style.display = 'none';
}
});
})();
/* 400 (Regular) */ @font-face { font-family: "SiteSans"; /* ページで使う一意の名前 */ font-style: normal; font-weight: 400; font-display: swap; src: /* まず Noto のローカル名を列挙(見つかればそれを優先)*/ local("Noto Sans JP"), local("NotoSansJP"), local("Noto Sans"), local("NotoSans"), /* 次に Apple のヒラギノ系ローカル名を列挙(Mac/iPhone にあることが多い)*/ local("Hiragino Kaku Gothic ProN"), local("Hiragino Kaku Gothic Pro"), local("ヒラギノ角ゴ ProN"), local("ヒラギノ角ゴ Pro"), /* 最後にサーバー上の woff2(フォールバック) */ url("/fonts/NotoSansJP-Regular.woff2") format("woff2"); } /* 700 (Bold) */ @font-face { font-family: "SiteSans"; font-style: normal; font-weight: 700; font-display: swap; src: /* Noto Bold のローカル名 */ local("Noto Sans JP Bold"), local("NotoSansJP-Bold"), local("Noto Sans Bold"), local("NotoSans-Bold"), /* ヒラギノ Bold のローカル名(Macに存在する場合)*/ local("Hiragino Kaku Gothic ProN W6"), local("Hiragino Kaku Gothic Pro W6"), local("ヒラギノ角ゴ ProN W6"), local("ヒラギノ角ゴ Pro W6"), /* サーバーフォールバック(woff2) */ url("/fonts/NotoSansJP-Bold.woff2") format("woff2"); } 使用例 html, body { font-family: "SiteSans", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "メイリオ", "Yu Gothic", "YuGothic", "YuGothicUI", "Noto Sans JP", sans-serif; font-weight: 400; } ふといなら strong{ font-weight: 700; }
→ Noto ローカルで軽くて綺麗
▼ 古いWindows / ほか
→ Webフォントで補完。もはや必要あるのか?游ゴだかメイリオでいいのかも
KVはともかく、本文とか見出し、これ良くないですか?
みんなどうやってるんだ?
技術の進歩は急速でコツコツとプロンプトと打ちながらやる今のやり方もそう長くはなさそうなので何となく記録しておく。
ローカル、5070Ti
メガネを光らせながらCivitaiで最新のcheckpointとLoRAをチェック。
今のbase modelの主流はIllustriousかponyで更新の9割以上はこの二つ、普及帯のGPUでも利用可能で品質も十分なのが理由か。flux以上は盛り上がってない。
あと、LoRAのトリガーワード管理がめんどくさい。そろそろメモ帳でやるのも限界。
日常生活からインスピレーション得てその日のキャラを決めるのが紳士流。
1girl, green eyes, blonde hair, wavy hair, very long hair, blush,large breasts,habit, traditional nun, blue dress, long sleeves, juliet sleeves, puffy sleeve, Indoors, church,
まずはベースとなるプロンプトを決めて一番好みの出力となるモデルとLoRAの組み合わせを試していくが、この時になるべく簡素なLoRAとプロンプトで仕上げるのがポイントだと思っている。
後々複雑な構図やポーズを作り上げる場合、この時点でプロンプトがパンパンだと追加プロンプトが十分効かなかったり(無理やり:2)強くしようとして画面が溶けたりする。
品質系プロンプトは省略しているので知りたい紳士は「Illustrious 品質プロンプト」とかでLLMに聞いてください。
そんなわけで好みのキャラと画風を仕上げたらついに叡智タイムである。
単純に好きなシチュをポンポン出すのもいいがストーリー仕立てにするのもいいだろう。
(ex.研究所に来た魔改造性癖ガールを研究員としてどんどん魔改造していく)
谷間が見たいぜ...
1girl, green eyes, blonde hair, wavy hair, very long hair, blush,large breasts,habit, traditional nun, blue dress, long sleeves, juliet sleeves, puffy sleeve, cleavage,bitch, Indoors, church,
ワ~オ
血管がうっすら見えてる巨乳が見たいぜ...
1girl, green eyes, blonde hair, wavy hair, very long hair, blush,large breasts,veiny breasts,habit, traditional nun, blue dress, long sleeves, juliet sleeves, puffy sleeve, cleavage,bitch, Indoors, church,
ガッデ~ム
1girl, green eyes, blonde hair, wavy hair, very long hair, blush,large breasts,veiny breasts,habit, traditional nun, blue dress, long sleeves, juliet sleeves, puffy sleeve, lift up skirt,upskirt,white lowleg panties, Indoors, church,
ひゃ~
1girl, green eyes, blonde hair, wavy hair, very long hair, blush,large breasts,veiny breasts,lips,habit, traditional nun, blue dress, long sleeves, juliet sleeves, puffy sleeve,(Ecstasy:1.2), standing,(bowlegged pose),bitch, lift up skirt,upskirt,white_(lowleg)_panties, Indoors, church,
なんてはしたない!
1girl, green eyes, blonde hair, wavy hair, very long hair, blush,large breasts,(veiny breasts),lips,habit, traditional nun, blue dress, long sleeves, juliet sleeves, puffy sleeve,(Ecstasy:1.2), lift up breasts, Indoors, church,breasts_close-up,
叡智すぎる!
1girl, green eyes, blonde hair, wavy hair, very long hair, blush,large breasts,(veiny breasts),lips,habit, traditional nun, blue dress, long sleeves, juliet sleeves, puffy sleeve,(Ecstasy:1.2),orgasm, lift up breasts,huge areola,(sucking:1.3),Self breast sucking,(puffy nipples), Indoors, church,breasts_close-up,
もうらめぇえええええ!(白反転)
~どうしてこんなことになったのか~
モンハンワイルズをやるためにPCを組んだのだが3週間くらいで飽きて放置していた。
そんなある日ブックマークしているpixivのイラストがbanされて消えていて大変落ち込んだのだが(数日後復活してた)
いや待てよ、あれAI生成だったな、だったら自分でできるのでは?と思って始めたのがきっかけである。
~~(反転戻り)~~
ejaculation
そんな感じで時間がかかるしめんどくさい。動画や漫画の手軽さが身に染みる。
生成の利点はとにかく自分の好みにカスタマイズした画像が出力できることだろう。いままで吸収してきたコンテンツや尖らせてきた性癖全出動の総合格闘技である。
また、画風の方向性としてはフォトリアル系やイラスト系などいろいろあるが、セミリアル系が凄い。一例としてフワフワの毛皮をまとったかわいいウサギ亜人が出力できる。
ピンク色のバッファローちゃんのもっとすごいやつみたいな感じ。正直フォトリアル系だったら生成じゃなくていいじゃんって思う。
{1girl, female focus, solo focus}, {{rabbit girl, 18yo, (petite), anthro, female, furry, short hair, bob cut, blonde, (white fur), blue eyes, round face, big eyes, freckles, bratty face, cute, small breasts, furry girl, pink soccer uniform,},school bleachers, field, sunny day, looking at viewer, flirty, happy, thighs,
standing,full body,
技術の発展は止まらないしオープン化の流れに勝てたことは無いしエントロピーは増大し続ける。
LoRA作成自体が爆速になるかi2iで画像だけでLoRA並み使えるようになるし、動画も実用レベルになるだろう。
気になるのはモデルの要求スペックがローカルHWで間に合うかどうかと規制だ、いまの同人並みに落ち着くとするとローカル生成のキャラLoRAは実質セーフであり続けるだろう。
高品質動画生成はオンライン生成が主流になると生成プラットフォームを整備したもん勝ちだが、コンテンツだけ大国でありモザイクにより健全な性的秩序が守られている我が国は今回もgood loserとしてコンテンツを吸われ続けます。南無三。
https://missav.live/en/fc2-ppv-4048938
https://missav123.com/dm14/fc2-ppv-3757674
https://tktube.com/ja/videos/194234/fc2-ppv-3630070-3980pt/
https://missav123.com/dm13/ja/fc2-ppv-3635198
https://missav123.com/ja/fc2-ppv-3878281
https://tktube.com/ja/videos/80708/fc2-ppv-2028253-2-3p/
https://tktube.com/ja/videos/80708/fc2-ppv-2028253-2-3p/
https://tktube.com/ja/videos/240670/fc2-ppv-4397306-body-19/
海外じゃケツ、太もも、谷間、プラグスーツ、へその時点でnsfwだからな
danbooruで言うところのRating:Sensitiveがわかりやすい
Rating:Sensitive
Ecchi, sexy, risqué, or suggestive content, even mildly so.
Skimpy or revealing clothes, including swimsuits, lingerie, underwear, cleavage cutouts, playboy bunnysuits, skin tight or impossible clothes, etc.
Anything focused on the ass, breasts, cleavage, underboob, sideboob, feet, armpits, midriff/stomach, navel, lips, or other sexualized parts of the body.
Exposed groin area (hip lines) or dimples of venus.
Pantyshots, upskirts, and similar fanservice.
Thin, see-through, or wet clothes that reveal the underwear or body underneath.
タイトルに dorawii@ が付いてる増田はこれでトップページから消えるはず
h1 + #intro + #body div.section:has(a.tw-share-button[href*="dorawii%40"]){ display: none; }
導入方法
PC: 【Stylus】ウェブサイトにCSSを適用できる拡張機能。自由にカスタマイズ!
https://www.naporitansushi.com/stylus/
iPhone: MaKeoverアプリでiPhone SafariのCSSをカスタマイズ!
https://gintachan.com/makeover-app-css-change-safari-how-to/
Android: スマートフォン Android版FirefoxのCSSカスタマイズ Stylus の使い方・初期設定方法
のうち
/* トップページで言及エントリを除外 */ /* via: 最近ファーストブクマカが静か https://anond.hatelabo.jp/20250326171302 */ h1/*はてな匿名ダイアリー*/ + #intro/*名前を隠して楽しく日記。*/ + #body div.section:has(h3 > a/*■*/ + a:not(.keyword, .edit)/*anond:YYYYMMDDhhmmss*/){ display: none; }
/* トップページで言及エントリを除外 */ h1 + #intro + #body div.section:has(h3 > a + a:not(.keyword, .edit)){ display: none; }