Masthash

#URL

Callionica
6 days ago

— Type tags —
Currently in TS, you have to intersect your real type with a type with a non-existent property to get an equivalent to nominal typing. Be nicer to intersect with a type tag like this:

type URLString = string & #url

Clearer that it’s a type-only construct. The use of hash symbol reminds of HTML ids and social media hash tags.

BoneQuest
2 weeks ago

Today in BoneQuest History for September 13th 2003 "PLURAL PROOFS" https://bonequest.com/1806 #bonequest :pants: #bong #marijuana #one_piece #pants_solo #sawz_all #url

Just a reminder that you can save a local copy of any website's state for archiving purposes.

All main browsers support it.

It''s fun to look at some frozen state of my #facebook wall from 2014.

#internet #decay #digitaldecay #archive #URL #web #firefox #chrome #safari

Antonio One
2 weeks ago

A simple use case is to parse a URL using `url` from `urllib3.util` into its components (scheme, host, port, path, etc.) using `namedtuple` for easy access. Example: urlparse = url.parse_url("https://www.example.com") #python #requests #packages #urllib3 #util #url #2.31.0

FediVerseExplorer
3 weeks ago

Wäre es nicht schön, wenn #Suchmaschinen #FediVerse #Handles in den korrekten #URL umwandeln und als Ergebnis ausgeben?

#Suche #Web #@MetaGer@suma-ev.social #DuckDuckGo

SameGirlie
3 weeks ago

So, looks like someone owns the domain for Xitter .... this should be interesting!

#Twitter #Xitter #X #ElonMusk #Musk #URL

Dave Mackey
4 weeks ago

I'm using the following #regex #code to strip a #url to its domain name and TLD:
url = url.replace(/^(?:https?:\/\/)?(?:[^./]+\.)?([^./]+\.[^./]+).*$/i, "$1");

For example, if url = ereader.perlego.com after stripping url = perlego.com

Cool. But this doesn't work for urls like jprs.co.jp. Technically, it performs correctly (stripped url = co.jp) but functionally it isn't what's needed (should be jprs.co.jp). Any suggestions on how to handle these sorts of cases?

#question #coding

Whats a #websocket #url anyways ? Wss://

:athinkingwithblobs:

Inautilo
1 month ago

#Development #Techniques
Reloading a document using only HTML · How to make a (query string preserving) self-link without JavaScript https://ilo.im/14vkh0

_____
#WebDev #Frontend #WebpageReloading #URL #HTML #JavaScript

Stephen Shankland
1 month ago

Apple's Safari *really* doesn't want to go to "doc.new" URL for a new Google Doc. Had to type it out with https:// prefix to get it to resolve instead of just sending me to https://www.docnyc.net
#UI #browser #URL #autocorrect

When you are *so* lazy, that you write a #url #constructor for #eBay
(#Webscraping failed.. #typical #javascript behemoth and I don't feel like #wrangling with #eBay s #api )

https://codepen.io/ryedai1/pen/RwENvMR

#CodeAlcea

Knowledge Zone
1 month ago

#QuizOfTheDay:A #URL, colloquially termed a web address, is a reference to a web page that specifies its location on a computer network and a mechanism for retrieving it.

What is the full form of URL?

A. Universal Resource Locator
B. Uniform Resource Locator
C. Uniform Receiving Location
D. Unified Resource Location

https://knowledgezone.co.in/resources/quiz?qId=622c8a848d56e2e97e662f42

STAN/F1SLS
2 months ago

@hb9hli @M0RVB

It works (and always was working) with a browser (I now have countless XML files in my download folder 😅 ), but Lieferea still refuses it, whether you give it an #http or #https #URL for the #UBA's #RSS feed.

Not a big deal, tbh, I'll find a workaround (like using a command line tool to get the XML file on my hard drive and make Liferea point to it).

#CodeAlcea

Add #Cache #Busting "random #query #string" to #url #redirect

(To prevent #elements fromn residing in the #browsercache for #too #long )

<!---ArtfetchCache-->
<script type="text/javascript">
if (location.href.indexOf("#artfetchcache") != -1) {
var randomQuery = Math.random().toString(36).substring(7);
var url = "http://alceawisteria.byethost7.com/PHP/0demo/2023-03-25-BoxNet/yourpage.html?" + randomQuery;
window.open(url, "_self");
}
</script>

<a href="http://alceawisteria.byethost7.com/PHP/0demo/00-PHP-Test/0test.php">PHPTest</a><br>
<!----phptest-https://ry3yr.github.io/OSTR/Diarykeepers_Homepage/Cool_Stuff.html-->
<script type="text/javascript">
    if (location.href.indexOf("#phptest") != -1) {
    window.open("http://alceawisteria.byethost7.com/PHP/0demo/00-PHP-Test/0tet.php", "_self");
    }
</script>


<a href="http://alceawisteria.byethost7.com/PHP/0demo/2023-03-25-BoxNet/yourpage.html">ArtfetchCache</a><br>
<!---ArtfetchCache-->
<script type="text/javascript">
    if (location.href.indexOf("#artfetchcache") != -1) {
    var randomQuery = Math.random().toString(36).substring(7);
var url = "http://alceawisteria.byethost7.com/PHP/0demo/2023-03-25-BoxNet/yourpage.html?" + randomQuery;
window.open(url, "_self");
    }
</script>

#Garbage #JSFiddle #Downloader #CodeAlcea

The #url s produced will download via the #curl in #android shell ...

But not via
#php s curl
#windows curl

How odd...
https://gg.gg/jsfiddledownloader

<?php
if(isset($_POST['jsfiddle_url'])) {
    $jsfiddle_url = $_POST['jsfiddle_url'];
    if(!preg_match("~^(?:f|ht)tps?://~i", $jsfiddle_url)) {
        $jsfiddle_url = "https://" . $jsfiddle_url;
    }
    $reformed_url = str_replace('jsfiddle.net', 'fiddle.jshell.net', $jsfiddle_url);
    $reformed_url = str_replace('/show', '', $reformed_url);
    //Fix the second jsfiddle url to be also fiddle.jshell
    $jsfiddle_url = str_replace('jsfiddle.net', 'fiddle.jshell.net', $jsfiddle_url);
    $curl_command = "curl '" . $reformed_url . "//show/' -H 'Referer: " . $jsfiddle_url . "//' --output 'fiddle.html'";
    echo "<pre>" . $curl_command . "</pre>";
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $reformed_url);
    curl_setopt($ch, CURLOPT_REFERER, $jsfiddle_url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $html_content = curl_exec($ch);
    curl_close($ch);
    $filename = 'fiddle.html';
    file_put_contents($filename, $html_content);
    echo "<p>File downloaded successfully.</p>";
}

// Display the form
echo '<form method="post">';
echo '    <label for="jsfiddle_url">JSFiddle URL:</label>';
echo '    <input type="text" name="jsfiddle_url">';
echo '    <input type="submit" value="Download">';
echo '</form>';


if (isset($filename)) {
    echo '<hr>';
    echo '<h2>Contents of jsfiddle.html:</h2>';
    echo '<iframe src="' . $filename . '" frameborder="0" width="100%" height="500"></iframe>';
}
?>

Aaargh.. I hate software libraries which think they are smart by implementing their own custom #regex-based #URL-#validator..

Yes, http://mycontainer:1234/ IS a valid url, even if the host name does not contain a dot...

Pierre, aka Ra-Mon
2 months ago

#Astuce :
Vous avez un forfait #Free #Mobile (pas le 2€) et vous souhaitez, avec #Vivaldi :vivaldi_red: , vous envoyer par #SMS un bout de #texte #sélectionné sur une page Web ou l'#url de la page ou autre #message saisi en barre d'adresses.

Comment faire ?

- Activez les notifications par SMS sur votre Espace Abonné Free :
https://mobile.free.fr/account/mes-options/notifications-sms

- Configurez un moteur de recherche avec un #alias (par exemple « sms ») et l'url fournie par Free👇 en la terminant par &msg=%s

Page de configuration de l'option « Notification par SMS » dans l'Espace Abonné de Free Mobile. 
L'URL d'exemple, modifié ici pour l'occasion, sera utilisée dans un moteur de recherche personnalisé de Vivaldi Desktop pour pouvoir s'envoyer une url ou un bout de texte sélectionné sur une page Web
Page de configuration des moteurs de recherche personnalisés de Vivaldi Desktop
Une des utilisations possibles de ce moteur "de recherche" un peu spécial !
Nick Pollack 🤖
2 months ago

As we wave goodbye to July, LaMar (@InsideFastball@twitter.com) brings us a young Giant still developing & a Padres pitcher who rolled into High A. It's Week 14 of the Watchlist! #url https://pitcherlist.com/the-prospect-w…

Nick Pollack 🤖
2 months ago

It's week 13 and LaMar (@InsideFastball@twitter.com) looks at a top 100 prospect that could be undervalued and a Yankees starter who's ready for a new challenge. #url https://pitcherlist.com/the-prospect-w…

What do you think is the *correct* way to pass array query parameters in a URL?

#webDev #rest #web #url

Amadeus Paulussen
2 months ago

I just updated my #selfhosted @linkace instance and wanted to shout out that I use this #opensource #url #link #manager on a daily basis and appreciate it very much. Maybe those interested in a #bookmark #archive should take a closer look. 😊️ https://www.linkace.org/

LinkAce browser based bookmark manager
vicscov
2 months ago

Hey @gutocarvalho , eu vi no seu perfil que mexe com #devops Se não for incomodar, queria um conselho. Eu criei um projeto com #dockercompose esse projeto está no #gitlab. Eu queria saber qual caminho seguiria para colocar esse projeto em uma #url para qualquer pessoa acessar, porque vou montar uma #artigo sobre no Dev.to. Não queria chegar no ponto de pagar #aws ou #digitalocean. Por ser algo púlbico para ajudar alguém com a mesma dúvida que tive.

#QRcodes that stop working because the redirect limit has exceeded of the ‘QR-service’. Persistent identifiers (#PID) hosting that is subscription based (looking at surf). An average domain costs 4-12€/y. You probably own it for your website. Subdomains are free. Redirects are simple. And you will own the #URL, forever.

iCulture.nl ✔️
3 months ago

Niet alles is veranderd. De Workout-app op de Apple Watch ziet er in watchOS 10 nog vrijwel hetzelfde uit. Dit kun je ermee. #url#

https://icultu.re/V2tn-Yh

bossito 🇪🇺
3 months ago

Dúvida, se adicionarmos "?utm_source=mastodon" a qualquer link os cliques nesse link serão mais facilmente identificados como provenientes do Mastodon, certo? Vi isto num post do @sapopt e acho que vou tentar adotar.

#mastodon #mastodicas #url

@xdydx @Tusky @Aakerbeere

I'm not 100% sure, if we are talking about the same.

But #Mastodon itself doesn't use a quote indicator like the common > in e-mails for example.

But you can of course include the #URL of another #toot in your toot.

Rune Dance Two
3 months ago

@SudoNaaame @stux

You can use your current #Mastodon account to comment in "Lemmit threads".

How to do it? You can try on this post I made just for testing it out:

So copy this #URL and paste it into your #Mastodon search field and press on the reply button and if you send something it will be posted to #Lemmy from your #Mastodon account and you won't even need to be registered on Lemmy at all!

https://sh.itjust.works/post/51867

#CoolHuh? 🙂

Sparr
4 months ago

@liaizon @taladar @wakest
Is there a way to get from the lemmy post at https://lemmy.ml/post/1203337 to viewing it on mastodon (e.g. https://mastodon.social/@liaizon@wake.st/110530316373516739)? Or to see the whole lemmy.ml fediverse community (online guides say I should be able to search for https://lemmy.ml/c/fediverse in my mastodon instance and find a feed of posts to at community, but I get no results for that).

#lemmy #fediverse #network #url #question #threadiverse

Ian
4 months ago

Huh those cool macros (`#URL()` etc) don't seem to ship with Xcode. Attempted to try out @MemberwiseInit, @AddAsync etc (in SOTU) but none existed.. went back to rewatch.. you need to `import MyCoolMacros`.. 😄🥲

When people making decisions about technology do not understand technology.

"A URL on the license plates of 800,000 Maryland cars now redirects to an online casino based in the Philippines."

https://www.vice.com/en/article/4a3xe9/maryland-license-plates-now-inadvertently-advertising-filipino-online-casino

#technology #Maryland #URL

narF 🎲
4 months ago

4. Possible improvement: Maybe the #URL could hold some extra information like "this is a photo link" or "this is a video", to help the OS or user know which app to use. For example, I might want to open videos in my #Peertube app but photos in my #Pixelfed app, etc.

Marcus Rohrmoser 🌻
4 months ago

#DHL will keine praktischen Links für Neuzustellungen | heise online
https://heise.de/-9058791
"… Die haben nämlich die #URL gewechselt …"

😡 Cool #URI don't change. #Packstation #fail
¹ https://mro.name/atf2csb

Inautilo
5 months ago

#Development #Reviews
New TLDs: not bad, actually · Why the debut of .zip and .mov as top-level domains has caused a stir https://ilo.im/12x3fe

“The level of fear-mongering about .zip and .mov is just comical.” — Eric Lawrence

_____
#ZIP #MOV #TopLevelDomain #TLD #Domain #DNS #UiDesign #WebDesign #WebDevelopment #WebDev #Frontend #URL #Link #FileName #Collisions

Inautilo
5 months ago

#Development #Reviews
The new .zip TLD is going to cause some problems · How to know whether http://example.zip is an URL or a filename? https://ilo.im/12wwd2

_____
#ZIP #TopLevelDomain #TLD #Domain #DNS #WebDevelopment #WebDev #Frontend #URL #Link #FileName #Collisions

Jeroen Gui :verified:
5 months ago

I have some amazing news!

I got the opportunity to write a short blog post about my malicious site takedown project for Abusix.

Thanks for supporting the project, working together is the ultimate approach for a safer internet for everyone.

The blogpost:
https://abusix.com/resources/blog/reporting-malicious-sites-taking-down-60000/

#phishing #scam #url #cybersecurity #cyber #malware #student

Nicolas Fränkel
5 months ago

What Is a #URL: dangers of inconsistent parsing of URLs https://azeemba.com/posts/what-is-a-url.html

#OWASP

Eric Vitiello
5 months ago
Cesare Forelli
5 months ago

MousHero 🐭, my new Safari extension, is now available in the Mac App Store! 🚀

Right-click to trigger URL automations 🤓 from Safari with customisable context-menu items, optionally passing the selected text as parameter.

🔗 Docs & use-case examples: https://cdf1982.com/moushero-for-safari/moushero-documentation-and-examples

❤️ Get MousHero now to unlock your superpowers: https://apps.apple.com/us/app/moushero-for-safari/id6447680045

#newapp #indie #mac #automation #shortcuts #extension #launch #safari #url #drafts #keyboardmaestro #indiedev

Link previews in chat services and social media need to obey the clients dark mode setting, including changing as it changes.

I don't want giant bright github chips in my dark Discord.

#UX #Previews #URL #Link #Web #DoesAnyoneReadTagsAnymore

Aral Balkan
6 months ago

The galaxy brains at Github apparently decided no one would ever want to fork a repository from their phone.

Anyway, long story short, just hack the repository URL to add /fork to the end.

#github #responsiveDesign #fork #url #hack

Miel Vander Sande
6 months ago

First time putting #ChatGPT to actual use. I needed #SPARQL to create an #URL slug, but was to lazy to think. It was incomplete at first, but after asking to add more chars, it turned out to be a huge time saver. #rdf #knowledgegraph

Alex Truhanski
6 months ago

I wrote a little SEO tools which does various manipulations with url to clean them.

- Works with an excel file.
- Plus it's convenient to save your upload with ahrefs and give it to the program to clean it up.
- Importantly, the url column should be called Urls.
- Any rules you need can be saved and reused.
Report bugs, I think they are there))
Video manual https://youtu.be/FxMyhBjqBLY

Download the program:
http://bit.ly/42Fyg8u

#seo #url

David Emmett
6 months ago

Just used this tool to check my Apache redirect rules. Very useful.

#Apache #URL #htaccess

https://htaccess.madewithlove.com/

Kent Pitman
6 months ago

@NaraMoore @aethelshane @freehaiku

Finishing out the same mental walk...

Proudly shared photos,
Snapshots of joy and sadness.
Friends see rocks and trees.

#haiku #senryu #poem #camera #photography #memory

This also relates to my long-ago free-form poem The URLs of the Mind.
http://netsettlement.blogspot.com/2008/10/the-urls-of-mind.html

#FreeVerse #URL

Renoir Boulanger
7 months ago

@yazad3 yup. Done that many times over.

With the following, I could list tens of thousand of rows smoothly [1]. Paginator package [2] and source monorepo for both [3]

Don't underestimate the power of the #URL Search Query for the page size, page number, and sort criteria. Fill the store [1] (whatever the engine), and make a computed property where we see only current page.

1: https://gitlab.com/renoirb/renoirb-particles/-/blob/master/packages/state-utils-vue/src/vuex/create-store-view.ts
2: https://www.npmjs.com/package/%40renoirb%2Fpaginator
3: https://gitlab.com/renoirb/renoirb-particles

@heiseonline

1. was solln der Bullshit?
2. Was kommt als nächstes? #Copyrightmafia-Internetzensur alla #CUII als Zwangsdienst??
3. Protokoll- und #URL-Filter???

Aus diesem Grund immer #DNS-Resolver ausm Ausland nutzen welche keiner Rechtshilfeübereinkommen haben!

Inautilo
7 months ago

“Remember: Underscores in URLs are trashy. Hyphens are classy.” — Mike Coutermarsh

_____
#Development #WebDevelopment #WebDev #URL #Format #Hyphen #Underscore #Guideline #Reminder #Quote

Terence Eden
7 months ago

🆕 blog! “Signal's new(ish) URI Scheme”

A few years ago, I idly wondered "Whatever happened to URI Schemes?". Older communications protocols didn't rely on http. You can use mailto:me@example.com to send email, sms:+447700900123 to send a text message, and skype:terence.eden to use Skype. There are dozens of these sorts of protocols. But modern apps seem to prefer making everything an https: […]

👀 Read more: https://shkspr.mobi/blog/2023/02/signals-newish-uri-scheme/

#signal #url

Tomas Ekeli
7 months ago

when writing #technicalDocumentation - don't use real #urls or #ipAddresses. you never know what will grab those and use them.

there are reserved #domains and #ipRanges for just this!

for #url: the top-level-domains
.test, .example, .invalid and .localhost and the domain example.com are reserved

for ip-adresses the blocks 192.0.2.0/24, 198.51.100.0/24 and 203.0.113.0/24 are reserved

they are always safe to use in #documentation

Terence Eden
7 months ago

🆕 blog! “Page numbers aren't the answer”

There's a new pre-print paper called Pinpointing the problem: Providing page numbers for citations as a crucial part of open science by Leon Y. Xiao and Nick Ballou. It's a short, easily understandable paper, and well worth a read. I think I disagree with nearly all of its conclusions! The main point, I agree with. […]

👀 Read more: https://shkspr.mobi/blog/2023/02/page-numbers-arent-the-answer/

#academia #MSc #pdf #url

The PDF file icon with a big red line through it.

#WebFinger is, in a way, today's realization of the old URC (Uniform Resource Characteristic) idea.

Early on with the #WorldWideWeb — there were:

#URL (Uniform Resource Location)

#URN (Uniform Resource Name)

#URC (Uniform Resource Characteristic)

...

Today people tend to be very familiar with URLs (and URIs).

A small percentage of -people are aware of URNs.

And almost no one is familiar with URCs.

~~~

( #UniformResourceCharacteristic )

Terence Eden
7 months ago

🆕 blog! “Never use a URL shortening service - even if you own it”

The Guardian launched its online adventures back in 1999. At some point, they started using the name "Guardian Unlimited". Hey, the dot com boom made us all do crazy things! As part of that branding, they proudly used the domain GU.com Over time, the branding faded and GU.…

👀 Read more: https://shkspr.mobi/blog/2023/02/never-use-a-url-shortening-service-even-if-you-own-it/

#guardian #hyperlinks #newspapers #url #web

Kingsley Uyi Idehen
7 months ago

@reiver #WebDAV is an #HTTP based protocol.
#ActivityPub is an HTTP based protocol.
#AtomPub is an HTTP based protocol.

That's all because HTTP is deliberately focused on CRUD operations targeting resources denoted by Uniform Resource Locators (URLs).

Regarding HTTP, a Folder (or Directory) is just another resource denoted by a #URL 🙂

See: https://tinyurl.com/2p8uyett

Kornel
8 months ago

My favorite feature of the WHATWG URL standard is rejection of the pedantic distinction between #URL, #URI and #IRI:

https://url.spec.whatwg.org/#goals

> Standardize on the term URL. URI and IRI are just confusing. In practice a single algorithm is used for both so keeping them distinct is not helping anyone.

Eduard Dopler
8 months ago

Is this still valid #SEO advice?

> Not recommended: Using non-​#ASCII characters in the #URL, e.g. "https​://www.example.​com/gemüse"

from: https://developers.google.com/search/docs/crawling-indexing/url-structure

Maybe @geekonaut or @johnmu?

Screenshot of above mentioned SEO documentation from Google. It mentions that non-ASCII chars in the URL are not recommended, instead one should use UTF-8 encoding in URLs.
heise online
8 months ago

Polizeidurchsuchung wegen Link: Kritik an "gezieltem Einschüchterungsversuch"

Der DJV hat die Durchsuchung bei "Radio Dreyeckland" (@RDL) mit scharfen Worten kritisiert. Dort spricht man von einem "unverhältnismäßigem" Vorgehen.

https://www.heise.de/news/Polizeidurchsuchung-wegen-Link-Kritik-an-gezieltem-Einschuechterungsversuch-7462655.html?wt_mc=sm.red.ho.mastodon.mastodon.md_beitraege.md_beitraege

#Durchsuchung #Link #Polizei #Pressefreiheit #RadioDreyeckland #Recht #URL #linksuntenindymedia #News

Terence Eden
9 months ago

🆕 blog! “Konami Code Domain Name”

More on my experiments with silly Punycode domain names. http://↑↑↓↓←→←→ba.tk/ Yup, copy and paste that into your browser and it will resolve.

👀 Read more: https://shkspr.mobi/blog/2023/01/konami-code-domain-name/

#dns #punycode #url

Artemis
9 months ago

Can we reinvent the #bookmark?

I think adding the specific protocol in the way that we did to a #URL was a mistake, we need some kind of generics for the protocol?

Like if it's essentially a remote "filesystem" than it should just try out (http, https, sftp, ftp, webdav, etc) in order of preference

If it's a video streams just say "video" as protocol and let it figure out the rest by itself

if it's a "swarm" (#bittorrent, #hyper, etc) use that.

"Podcast", etc…
——
https://news.ycombinator.com/item?id=34176035

J👀
9 months ago

Someone should explain to the City of #Melbourne that there are use cases where it is not a good idea to hide a #URL behind a #QR code.

https://www.abc.net.au/news/2023-01-01/melbourne-lord-mayor-says-qr-code-vandalism-so-frustrating/101820138

Michael
9 months ago

IDN is crazy by @bagder - fascinating read.

The example below is just crazy, but he does go on to show how you could abuse this for more sinister purposes.

https://daniel.haxx.se/blog/2022/12/14/idn-is-crazy/

#url #tech #idn #domain #curl #http #unicode

Screenshot showing absolutely crazy way for a url with Unicode characters to be converted to acii

Curious on what's your dumb #domain name #buys?

Basically #names you ended up buying but will eventually end up collecting dust and being a money sink bc you have no idea what to do with it?
#tech #web #url #tld #computers

I wondered due to recently remembering when I was able to pull the PDFs off teacher's section. On the textbook manufacturer's just from fking around the URL.

This is a while ago, but I did mention to the professor but he did the idk what you talking about. (2+ years ago)

So I did email the contact email for the manufacturer. They asked for student ID, school code and classroom name. I told in response You can get the school name and thats it. But the following response was how I need to disciplinary actions against me for attempting to cheat. Thus they need the student ID. I ain't gonna get expelled for absolute dumb shit. So I didn't give it and cut off all communications.

In cases this it's now like a double sided thing. I want to report an issue so someone could fix it. But if I'm going to be punished too, why report the issue at all?

#teaching #security #IDOR #url #exploit

The Dapper Diner
9 months ago

Use a #QR code or image of the #URL that links to your alternate social media #accounts if #Twitter is #banning you from posting them.

I wish there was an #app (#Windows) that I could set as my #default #browser.

And all it did was let me choose which browser I wanted to open a link in.

I have #Edge as my default browser. But I don't use Edge as my default browser.

In fact, I often have Edge, #Firefox, #Vivaldi, #Brave, #Chrome, and #Opera all open to different #websites.

Some browsers even have multiple #profiles that I routinely use.

I believe in compartmentalization.

It also helps me keep focus.

But if I click on a #link in #Email it goes to whatever profile is in the foreground on Edge which is 99% not the one I want.

Most of the time I do remember to just copy the URL to the clipboard and paste it directly.

But if only there was an app.

That could #intercept all #URL #clicks.

And all it did was #ask me which #browser/ #application do I want to #open that #URL in?

(And maybe #strip out any #tracking #tags and maybe #expand #short #URLs into to their original long one's.)

I think something like that would be very useful not just to me but to a lot of people actually.

Oh well.

I can wish.