Simple, straightforward way to turn newsletters into RSS feeds. No tech experience required:
If yall are like me, you probably aren't taking advantage of LLMs nearly as much as you could, and frankly, you should be force yourself to actively utilize LLMs more.
It needs to be said that as much as power users have curated and refined personal workflows for resolving work/life problems, that skillset has become damn-near obsolete overnight.
LLMs such mastery of large amounts of data, that it's inefficient and a disservice to your time to continue to do things the old way. It's akin to deciding to manually complete the same daily tasks instead of utilizing an already-written script/macro that does the same thing more efficiently. You are doing a disservice to your own time by continuing your old workflows simply because you personally created them.
From there, the only issue that remains is that a lot of the world is still wrapping our heads around the power of LLMs and don't utilize them as much as we could. For example, I realized today that I could be better served if I started my shopping first through an LLM, troubleshoot technical/code issues initially through LLMs and even tried to understand new concepts first via LLMs. Collectively, these three questions combined would've taken at least 30 minutes via browsing reddit threads, watching a YT explainer and sorting product types on Amazon.
Moving forward, I will try to resolve every issue via LLMs and then double back to regular search as a backup. here, I have to acknowledge how inefficient my old workflow used to be.
Sure, here is a list of bookmarklets from the mirrors below using the bookmarklet format you provided:
JavaScript
javascript:location.assign('https://cf.piped.video'+location.pathname+location.search+location.hash);
javascript:location.assign('https://vc.piped.video'+location.pathname+location.search+location.hash);
javascript:location.assign('https://re.piped.video'+location.pathname+location.search+location.hash);
javascript:location.assign('https://fl.piped.video'+location.pathname+location.search+location.hash);
javascript:location.assign('https://do.piped.video'+location.pathname+location.search+location.hash);
javascript:location.assign('https://nf.piped.video'+location.pathname+location.search+location.hash);
javascript:location.assign('https://az.piped.video'+location.pathname+location.search+location.hash);
To use these bookmarklets, simply drag and drop them into your browser's bookmarks bar. When you click on a bookmarklet, the video will switch to a new instance on the corresponding mirror.
Here are some additional tips for using these bookmarklets:
[LIST]
[*]You can also use these bookmarklets to switch instances of piped.video videos that are already playing.
[*]If you are experiencing buffer delays on all of your piped.video videos, you may want to try clearing your browser's cache and cookies.
[*]If you are still experiencing buffer delays, you may want to try using a different web browser.
[/LIST]
Sure, here is a single bookmarklet that randomly chooses from the mirror URLs in the list above:
```javascript
javascript:(function() {
var mirrors = ["https://cf.piped.video", "https://vc.piped.video", "https://re.piped.video", "https://fl.piped.video", "https://do.piped.video", "https://nf.piped.video", "https://az.piped.video"];
var randomMirror = mirrors[Math.floor(Math.random() * mirrors.length)];
location.assign(randomMirror + location.pathname + location.search + location.hash);
})();
```
To use this bookmarklet, simply drag and drop it into your browser's bookmarks bar. When you click on the bookmarklet, the video will switch to a new instance on a random mirror.
Here are some additional tips for using this bookmarklet:
* You can also use this bookmarklet to switch instances of piped.video videos that are already playing.
* If you are experiencing buffer delays on all of your piped.video videos, you may want to try clearing your browser's cache and cookies.
* If you are still experiencing buffer delays, you may want to try using a different web browser.
Appreciate it as always @bnewwhenever you experience buffer delays, use a different instance of piped youtube.
Code:Sure, here is a list of bookmarklets from the mirrors below using the bookmarklet format you provided: JavaScript javascript:location.assign('https://cf.piped.video'+location.pathname+location.search+location.hash); javascript:location.assign('https://vc.piped.video'+location.pathname+location.search+location.hash); javascript:location.assign('https://re.piped.video'+location.pathname+location.search+location.hash); javascript:location.assign('https://fl.piped.video'+location.pathname+location.search+location.hash); javascript:location.assign('https://do.piped.video'+location.pathname+location.search+location.hash); javascript:location.assign('https://nf.piped.video'+location.pathname+location.search+location.hash); javascript:location.assign('https://az.piped.video'+location.pathname+location.search+location.hash); To use these bookmarklets, simply drag and drop them into your browser's bookmarks bar. When you click on a bookmarklet, the video will switch to a new instance on the corresponding mirror. Here are some additional tips for using these bookmarklets: [LIST] [*]You can also use these bookmarklets to switch instances of piped.video videos that are already playing. [*]If you are experiencing buffer delays on all of your piped.video videos, you may want to try clearing your browser's cache and cookies. [*]If you are still experiencing buffer delays, you may want to try using a different web browser. [/LIST]
edit: i leveled up:
Code:Sure, here is a single bookmarklet that randomly chooses from the mirror URLs in the list above: ```javascript javascript:(function() { var mirrors = ["https://cf.piped.video", "https://vc.piped.video", "https://re.piped.video", "https://fl.piped.video", "https://do.piped.video", "https://nf.piped.video", "https://az.piped.video"]; var randomMirror = mirrors[Math.floor(Math.random() * mirrors.length)]; location.assign(randomMirror + location.pathname + location.search + location.hash); })(); ``` To use this bookmarklet, simply drag and drop it into your browser's bookmarks bar. When you click on the bookmarklet, the video will switch to a new instance on a random mirror. Here are some additional tips for using this bookmarklet: * You can also use this bookmarklet to switch instances of piped.video videos that are already playing. * If you are experiencing buffer delays on all of your piped.video videos, you may want to try clearing your browser's cache and cookies. * If you are still experiencing buffer delays, you may want to try using a different web browser.
Piped is another mirror you can add to the list
||accounts.google.com/gsi/client$script
just created a bookmarklet that will extract tiktok.com embed urls on thecoli, convert to proper url format and archive them on tik.fail website so that if tiktok video later gets deleted it might be recoverable.
Code:javascript: (function() { var tiktokUrls = []; var spans = document.querySelectorAll('span[data-s9e-mediaembed-iframe]'); for (var i = 0; i < spans.length; i++) { var span = spans[i]; var data = JSON.parse(span.getAttribute('data-s9e-mediaembed-iframe')); if (data[5].indexOf('\/\/www.tiktok.com\/embed\/') === 0) { var url = 'https:' + data[5]; if (tiktokUrls.indexOf(url) === -1) { tiktokUrls.push(url); } } } for (var i = 0; i < tiktokUrls.length; i++) { window.open('https://tik.fail/?url=' + tiktokUrls[i]); } })();
or
javascript: (function() { var tiktokUrls = []; var spans = document.querySelectorAll('span[data-s9e-mediaembed-iframe]'); for (var i = 0; i < spans.length; i++) { var span = spans[i]; var data = JSON.parse(span.getAttribute('data-s9e-mediaembed-iframe')); if (data[5].indexOf('\/\/www.tiktok.com\/embed\/') === 0) { var url = 'https:' + data[5]; if (tiktokUrls.indexOf(url) === -1) { tiktokUrls.push(url); } } } for (var i = 0; i < tiktokUrls.length; i++) { window.open('https://tik.fail/?url=' + tiktokUrls[i]); }})();
it took me about 6-8 minutes and 2 attempts using bing chat which also uses gpt-4
This updated version of the bookmarklet uses the indexOf method to check if a TikTok URL is already in the tiktokUrls array before adding it. This ensures that there are no duplicate TikTok URLs in the array, so only unique TikTok URLs will be opened in new tabs.
You can use this updated bookmarklet in the same way as the previous one: by creating a new bookmark and pasting the above code into the URL field. Then, when you’re on a page with TikTok URLs, you can click the bookmark to run the bookmarklet and open the unique TikTok URLs in new tabs.
you have to allow popups on thecoli.com so that it'll archive more than one url.
my 1st prompt was.
write a bookmarketlet that extractswww.tiktok.com
urls from the html source page and looks similar to this "\/\/"\/\/www.tiktok.com\/embed\/7189755478090566917" and convert to a the properly formatted url"https://www.tiktok.com/embed/7189755478090566917"
. the tiktok url ID will always be unique digits such as "7189755478090566917" is in the example url i provided. the bookmarklet must should usejavascript:void(window.open('https://tik.fail/?url=' + document.location.href));
so that it inserts found tiktok urls likejavascript:void(window.open('https://tik.fail/?url=https://www.tiktok.com/embed/7189755478090566917' + document.location.href));
source page examples are below
<span data-s9e-mediaembed="tiktok" style="width:340px"><span style="padding-bottom:205.882353%"><span data-s9e-mediaembed-iframe='["allowfullscreen","","scrolling","no","src","\/\/www.tiktok.com\/embed\/7189755478090566917"]'></span></span></span><br />
<span data-s9e-mediaembed="tiktok" style="width:340px"><span style="padding-bottom:205.882353%"><span data-s9e-mediaembed-iframe='["allowfullscreen","","scrolling","no","src","\/\/www.tiktok.com\/embed\/7242633306418728219"]'></span></span></span><br />
<span data-s9e-mediaembed="tiktok" style="width:340px"><span style="padding-bottom:205.882353%"><span data-s9e-mediaembed-iframe='["allowfullscreen","","scrolling","no","src","\/\/www.tiktok.com\/embed\/7265074208890228001"]'></span></span></span><br />
<br />
<span data-s9e-mediaembed="tiktok" style="width:340px"><span style="padding-bottom:205.882353%"><span data-s9e-mediaembed-iframe='["allowfullscreen","","scrolling","no","src","\/\/www.tiktok.com\/embed\/7257913645940739355"]'></span></span></span><br />
<br />
and then i just asked it to remove duplicate urls to avoid links that posters Quote.
edit:
more AI help
Prompt: write easy instructions to add a bookmarklet to the browser toolbar.
Sure! Here are the easy instructions to add a bookmarklet to your browser toolbar:
That’s it! You can now use your bookmarklet by clicking on it in your browser toolbar whenever you want to run it.
- Open your web browser and go to the Bookmarks menu. In most browsers, this can be found by clicking on the Menu button (usually represented by three horizontal lines or dots) in the top-right corner of the window, and then selecting Bookmarks from the drop-down menu.
- In the Bookmarks menu, select Bookmark Manager or Show All Bookmarks. This will open a new tab or window with your bookmarks.
- In the Bookmark Manager, click on the Organize or Add New Bookmark button, and then select Add Page or New Bookmark from the drop-down menu.
- In the New Bookmark dialog box, enter a name for your bookmarklet in the Name field, and paste the bookmarklet code into the URL field.
- Click on the Save or Add button to save your new bookmarklet.
- Your new bookmarklet should now appear in your bookmarks. To add it to your browser toolbar, simply drag and drop it from the Bookmark Manager onto your toolbar.
DescriptionHotKeysList is a simple tool for Windows that displays the list of hot keys that are currently registered on your system. You can use this tool to easily determine which hot keys on your system are available to use.System RequirementsThis utility works on any version of Windows, starting from Windows 2000 and up to Windows 8. Both 32-bit and 64-bit systems are supported. |
Hot Key : (.*)$(?:\r+\n+.+){6}(\r\n){2}.*=?
\1
Hot Key : Alt+Ctrl+Delete
Alt : *
Ctrl : *
Shift :
Windows Key :
Key : Delete
==================================================
==================================================
Hot Key : Alt+Ctrl+F11
Alt : *
Ctrl : *
Shift :
Windows Key :
Key : F11
==================================================
==================================================
Hot Key : Alt+Ctrl+F12
Alt : *
Ctrl : *
Shift :
Windows Key :
Key : F12
==================================================
==================================================
Hot Key : Alt+Ctrl+F8
Alt : *
Ctrl : *
Shift :
Windows Key :
Key : F8
==================================================
==================================================
Hot Key : Alt+Ctrl+M
Alt : *
Ctrl : *
Shift :
Windows Key :
Key : M
==================================================
==================================================
==================================================
Alt+Ctrl+Delete
Alt+Ctrl+F11
Alt+Ctrl+F12
Alt+Ctrl+F8
Alt+Ctrl+M
Alt+F4
Alt+Print Screen
Alt+Shift+Windows Key+F21
Alt+Windows Key+0