diff --git a/README.md b/README.md index a6d1a37..5ef49d8 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ working across different projects via [VisualMode](https://www.visualmode.dev/). For a steady stream of TILs, [sign up for my newsletter](https://visualmode.kit.com/newsletter). -_1846 TILs and counting..._ +_1847 TILs and counting..._ See some of the other learning resources I work on: @@ -2119,6 +2119,7 @@ If you've learned something here, support my efforts writing daily TILs by - [Get Your Public IP Address](workflow/get-your-public-ip-address.md) - [Import A Github Project Into CodeSandbox](workflow/import-a-github-project-into-codesandbox.md) - [Interactively Kill A Process With fkill](workflow/interactively-kill-a-process-with-fkill.md) +- [Move YouTube Subtitles Out Of The Way](workflow/move-youtube-subtitles-out-of-the-way.md) - [Open Slack's Keyboard Shortcuts Reference Panel](workflow/open-slacks-keyboard-shortcuts-reference-panel.md) - [Pop Videos Out As Picture-in-Picture](workflow/pop-videos-out-as-picture-in-picture.md) - [Prune The Excess From node_modules](workflow/prune-the-excess-from-node-modules.md) diff --git a/workflow/move-youtube-subtitles-out-of-the-way.md b/workflow/move-youtube-subtitles-out-of-the-way.md new file mode 100644 index 0000000..95162c8 --- /dev/null +++ b/workflow/move-youtube-subtitles-out-of-the-way.md @@ -0,0 +1,17 @@ +# Move YouTube Subtitles Out Of The Way + +The thing about following along to any kind of programming tutorial on YouTube +is that current thing being typed, whether into the terminal or an editor, is +eventually going to be toward the bottom of the screen. If subtitles are +enabled, which they mostly are now that they can be auto-transcribed, then they +will appear on top of text being typed. + +It's nice having the subtitles, but not if they are constantly covering up the +current focal point of the video -- the latest line of code or command being +typed out. + +YouTube's web player allows you to grab and drag the subtitles anywhere within +the player. So, once they start being in the way, you can drag them up to the +top of the screen and continue to follow along. + +[source](https://bsky.app/profile/jbranchaud.bsky.social/post/3mrjd5xktqs2r)