Skip to content

Commit

Permalink
Fix: Tweetwidget
Browse files Browse the repository at this point in the history
  • Loading branch information
Hayao0819 committed Jul 8, 2024
1 parent 33dc793 commit 42bdbce
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions posts/20240106/github-account/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ draft: false

## 経緯

<Tweet id="1743100670507618308" />
<Tweet tweetId="1743100670507618308" />

このツイートをする5分ほど前から、スマホのGitHubアプリに大量のログインリクエストが表示されていることに気づきました。

急いでメールを確認すると、恐ろしいほどのログイン失敗の通知と詳細が送られていました。

<Tweet id="1743102325349339425" />
<Tweet tweetId="1743102325349339425" />

スペインやペルー、アメリカなどの場所から繰り返しログインを試行されており、おそらく攻撃者はTorを使っているのだと思われました。

Expand Down
2 changes: 1 addition & 1 deletion posts/20240113/genshin/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ tags:

[はるか昔](/blog/posts/20211031/genshin/)に原神の話題を出して以降、ブログで全く話題に上げてなかったなぁと思い投稿。

<Tweet id="1745028158972395652" />
<Tweet tweetId="1745028158972395652" />

最近はようやく前から大好きだった綾華を引くことができて非常に満足。稲妻は癖のこが多いので好き。

Expand Down
6 changes: 3 additions & 3 deletions posts/20240401/pc-98/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ publish: true

様々なケーブルやモニター、キーボードもセットになっていたものの、他の部員のミスでケーブル類を処分してしまい本体とキーボードのみ入手。

<Tweet id="1769363787566780636" />
<Tweet tweetId="1769363787566780636" />

モニターは電源を入れても起動しなかったので引き取りませんでした。

Expand All @@ -41,7 +41,7 @@ PC-9801シリーズは映像出力にかなり制限があります。4:3比率

端子も独自のものなので、VGAへの変換アダプタを探す必要がありました。

<Tweet id="1763895160579223586" />
<Tweet tweetId="1763895160579223586" />

運いつもお世話になっているPCプラスさんに譲ってもらい、変換アダプタを入手しました。

Expand All @@ -57,7 +57,7 @@ PC-98の頃にはマザーボードにBASICのインタプリタが内蔵され

ということで、BASICインタプリタです。

<Tweet id="1769347456779882704" />
<Tweet tweetId="1769347456779882704" />

流石に嬉しすぎました。

Expand Down
2 changes: 1 addition & 1 deletion posts/20240611/osint/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Discordのサーバ一覧をまとめている非公式なサイトのようで
"53" と塗装されている航空機の写真が撮影された日時を答えよ。
<hr />

<Tweet id="1767515646286549226" />
<Tweet tweetId="1767515646286549226" />

この問題は「3月12日 y-9 h-6」と検索すると以下のPDFが検索にヒットする。

Expand Down
2 changes: 1 addition & 1 deletion src/components/elements/Tweet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export type TweetProps = ComponentPropsWithoutRef<"div"> & LibTweetProps;
export default function Tweet({ tweetId, options, onLoad, renderError, ...props }: TweetProps) {
return (
<div {...props}>
<TweetWidget tweetId={tweetId} options={options} onLoad={onLoad} renderError={renderError} />;
<TweetWidget tweetId={tweetId} options={options} onLoad={onLoad} renderError={renderError} />
</div>
);
}

0 comments on commit 42bdbce

Please sign in to comment.