Twitterの台詞セット、全部アカウント【Mark4】


株式投資 FX 日経225先物 仮想通貨
.
各指標の値を「(現在の値 - 過去の平均値)÷ 標準偏差」という計算式で変換しよう♪
単位が「倍」であっても、すべてが「平均からどれだけ離れているか」という共通の尺度に統一するんだ♪
https://pp.fx415.com/?p=46628

株式投資 話題株
.
ステラファーマ【4888】
.
◯今年、技術移転費用へ充てるローン1.39億円を実行したよ♪
◯資金使途がかなり明確なので、単なる資金繰り不安というより、供給体制の立て直しを優先している動きとして読む事ができるよ♪
https://note.com/fx415/n/n66a1540919b1

株式投資 デイトレ 長期投資
.
ハピネット【7552】
バンダイナムコグループの子会社で、「ゲーム」や「おもちゃ」を販売している会社だよ♪
.
ブログで上昇株予想を行い「全国ニュース」に取り上げられた株だよ♪
上昇株予想のお手本に使ってみてね♪
https://note.com/fx415/n/na37901b7e0c0

【躯体(くたい)とは?】
建築構造を支える骨組みにあたる部分のこと。
.
基礎、基礎ぐい、壁、柱、小屋組、土台、斜材(筋かいなど)、床版、屋根版または横架材(梁など)のこと。
.
マイホーム 住宅 建築 不動産


<!-- 改善されたコピーボタンのシステムのスクリプト(2026年2月18日_12時51分) -->
<script>
async function copyRichText(elementId, btn) {
  const node = document.getElementById(elementId);
  const originalText = btn.textContent; // 元のボタンの文字を保存

  // 成功/失敗時にボタンの文字を変えて戻す関数
  const updateButton = (msg) => {
    btn.textContent = msg;
    setTimeout(() => {
      btn.textContent = originalText;
    }, 1500);
  };

  try {
    // 【第1段階】 最新のClipboard APIを試す
    if (navigator.clipboard && navigator.clipboard.write) {
      const htmlBlob = new Blob([node.innerHTML], { type: 'text/html' });
      const textBlob = new Blob([node.innerText], { type: 'text/plain' });
      
      await navigator.clipboard.write([
        new ClipboardItem({
          'text/plain': textBlob,
          'text/html': htmlBlob
        })
      ]);
      updateButton('コピーしました');
    } else {
      // APIが使えない環境ならエラーを投げてcatchへ移動
      throw new Error('Clipboard API not supported');
    }

  } catch (err) {
    // 【第2段階】 エラーが出たら、昔ながらの方法(execCommand)で救済する
    console.warn('最新APIでのコピーに失敗しました。予備の方法を実行します:', err);

    try {
      const selection = window.getSelection();
      const range = document.createRange();
      
      selection.removeAllRanges();    // 選択範囲をクリア
      range.selectNodeContents(node); // 要素の中身を選択
      selection.addRange(range);      // 選択状態にする
      
      const successful = document.execCommand('copy'); // コピー実行
      selection.removeAllRanges();    // 選択解除

      if (successful) {
        updateButton('コピーしました');
      } else {
        updateButton('コピー失敗');
      }
    } catch (fallbackErr) {
      console.error('予備のコピー方法も失敗しました:', fallbackErr);
      updateButton('コピー失敗');
    }
  }
}
</script>
error: Alert: Content selection is disabled!!
タイトルとURLをコピーしました