BROWSR-MTHRFCKR

BROWSR-MTHRFCKR

2180 bookmarks
Custom sorting
Writing a broken link checker in Swift to analyze my bookmarks
Writing a broken link checker in Swift to analyze my bookmarks
Having spent the past few months devoting a significant amount of time learning to code with Apples Swift, Im slowly becoming more and more confident in my abilities to implement ideas in code. Much like music production, the programming learning curve can be very steep at the start, but as...
·markjames.dev·
Writing a broken link checker in Swift to analyze my bookmarks
Broken Link Checker
Broken Link Checker
Easily check your website for broken and malicious links. Find and fix 404 errors, mistyped URLs, invalid SSL certificates, or links to questionable websites.
·drlinkcheck.com·
Broken Link Checker
Beauty link previews Microlink
Beauty link previews Microlink
Enter a URL, receive information. Normalize metadata. Get HTML markup. Take a screenshot. Identify tech stack. Generate a PDF. Automate web scraping. Run Lighthouse.
·microlink.io·
Beauty link previews Microlink
ospfranco/link-preview-js: Extract web links information: title, description, images, videos, etc. [via OpenGraph], runs on mobiles and node.
ospfranco/link-preview-js: Extract web links information: title, description, images, videos, etc. [via OpenGraph], runs on mobiles and node.
Extract web links information: title, description, images, videos, etc. [via OpenGraph], runs on mobiles and node. - ospfranco/link-preview-js: Extract web links information: title, description...
·github.com·
ospfranco/link-preview-js: Extract web links information: title, description, images, videos, etc. [via OpenGraph], runs on mobiles and node.
lycheeverse/lychee: Fast, async, stream-based link checker written in Rust. Finds broken URLs and mail addresses inside Markdown, HTML, reStructuredText, websites and more!
lycheeverse/lychee: Fast, async, stream-based link checker written in Rust. Finds broken URLs and mail addresses inside Markdown, HTML, reStructuredText, websites and more!
Fast, async, stream-based link checker written in Rust. Finds broken URLs and mail addresses inside Markdown, HTML, reStructuredText, websites and more! - lycheeverse/lychee: Fast, async, strea...
·github.com·
lycheeverse/lychee: Fast, async, stream-based link checker written in Rust. Finds broken URLs and mail addresses inside Markdown, HTML, reStructuredText, websites and more!
Library.one
Library.one
Library.one is an independent content aggregator, search engine, and link sharing platform.
·library.one·
Library.one
Free Broken Link Checking Tool
Free Broken Link Checking Tool
Check for broken links on your website with our free online tool. Sign up and schedule automatic checks to keep your website fresh and up to date.
·deadlinkchecker.com·
Free Broken Link Checking Tool
Fetching title...
Fetching title...
Extract and Visualize Data from URLs using Unfurl. Contribute to obsidianforensics/unfurl development by creating an account on GitHub.
·github.com·
Fetching title...
Check Preview
Check Preview
A Small website to check how Cards of your website looks when it get's shared via email or any social media
·checkpreview.vercel.app·
Check Preview
URL Parse API
URL Parse API
Query, validate and parse URLs into its components via the URL Parse API. Free of charge. Maintained by ex-Google engineer Fili.
·urlparse.com·
URL Parse API
AndrejGajdos/link-preview-generator: Get preview data (a title, description, image, domain name) from a url. Library uses puppeteer headless browser to scrape the web site.
AndrejGajdos/link-preview-generator: Get preview data (a title, description, image, domain name) from a url. Library uses puppeteer headless browser to scrape the web site.
Get preview data (a title, description, image, domain name) from a url. Library uses puppeteer headless browser to scrape the web site. - AndrejGajdos/link-preview-generator: Get preview data (a ti...
·github.com·
AndrejGajdos/link-preview-generator: Get preview data (a title, description, image, domain name) from a url. Library uses puppeteer headless browser to scrape the web site.
Katbin - atoyuxomuba
Katbin - atoyuxomuba
// ==UserScript== // @name MEGA.nz Ultimately Import // @name:zh-TW MEGA.nz Ultimately Import / // @name:zh-CN MEGA.nz Ultimately Import // @namespace methusela // @version 0.1 // @description Bypass import limit on Mega Web client & remove warning about the space usage // @author d0gkiller87 // @match chrome-extension://bigefpfhnfcobdlfbedofhhaibnlghod/* // @match http://mega.co.nz/* // @match http://mega.io/* // @match http://mega.is/* // @match http://mega.nz/* // @match https://mega.co.nz/* // @match https://mega.io/* // @match https://mega.is/* // @match https://mega.nz/* // @icon https://mega.nz/favicon.ico?v=3 // @run-at document-end // @grant none // ==/UserScript== (function() { 'use strict'; // Reference [Augular loaded detect]: https://stackoverflow.com/a/31970556/9182265 var initWatcher = setInterval(function () { if (window.MegaUtils) { clearInterval(initWatcher); hookImport(); hookFull(); console.info('FUNtions Hooked!'); } }, 500); })(); var hookImport = function () { MegaUtils.prototype.checkGoingOverStorageQuota = function(opSize) { var promise = new MegaPromise(); loadingDialog.pshow(); M.getStorageQuota() .always(function() { loadingDialog.phide(); }) .fail(promise.reject.bind(promise)) .done(function(data) { /* if (opSize === -1) { opSize = data.mstrg; } if (opSize data.mstrg - data.cstrg) { var options = {custom: 1, title: l[882], body: l[16927]}; M.showOverStorageQuota(data, options) .always(function() { promise.reject(); }); } else { */ promise.resolve(); }); return promise; }; } var hookFull = function () { FileManager.prototype.showOverStorageQuota = null; }
·katb.in·
Katbin - atoyuxomuba