[-] interdimensionalmeme@lemmy.ml 1 points 1 day ago* (last edited 1 day ago)

Whatever is trending Anti-AI AI slop is extremely trendy and always the same 5 talking points

[-] interdimensionalmeme@lemmy.ml -2 points 1 day ago

This isn't different than people shitposting hurricane flooding memes.

Although this has anti petrol flavour underneath

[-] interdimensionalmeme@lemmy.ml 2 points 2 days ago

This ends with Microsoft pluton

[-] interdimensionalmeme@lemmy.ml 2 points 2 days ago

Sure but they use a 5$ door hinge instead of a 3$ one and that makes all the difference

[-] interdimensionalmeme@lemmy.ml 2 points 2 days ago

What I mean is you participated in the military, therefore more likely to have skewed values in favour of "extended" srlf defense. Because the whole military justifies its endless butchery on rights of self defense and their ceaseless expansion.

[-] interdimensionalmeme@lemmy.ml 2 points 2 days ago

Well he has a VA rating. Turning human bodies into rotting meat piles is his way of life.

[-] interdimensionalmeme@lemmy.ml 2 points 4 days ago* (last edited 4 days ago)

OK let's try.

Zionist are blood thirsty monster

Hamas are terrorists

Hezbollah has no dicks left (wore pager in front) And no one in america who isn't a vile glowie, can put these shitholes countries on the map

And none, NONE of us gives the slightest wind of a fart about anyone in the mideast.

Stop Zogging our governments for goddamned free bombs, you fucking bunch of revolting murdereous assholes.

That should do it ! Text me if you can still read this in a week.

[-] interdimensionalmeme@lemmy.ml 5 points 4 days ago

30 terabyte of Rick Astley per second should do nicely.

[-] interdimensionalmeme@lemmy.ml 9 points 4 days ago

What would these busybodies do with their free time then and how would they obtain a sense of self worth ? They can't quit, deleting other people from the internet is their whole life.

[-] interdimensionalmeme@lemmy.ml 16 points 4 days ago* (last edited 4 days ago)

How did these people have "text editor wars" and yet failed to deliver a text editor half as good as microsoft's edit.com ?

I'm sorry nano, you're think you're hot ?

But you put search on CTRL+W !!!

Do you know how stupid that is ?

Just go and try that in your browser ...

20
submitted 5 months ago* (last edited 5 months ago) by interdimensionalmeme@lemmy.ml to c/firefox@lemmy.ml

And I really mean move, not copy.

The difference between copy and move is that copy... copies, but move dies copy->verify->delete original, in a single operation of the user.

Preferably, that is reliable. Meaning it checks the bookmarks have been successfully created before closing the related tab.

Also it should be clear what bookmark folder it is going to put the tabs in.

Because the current bookmark manager, it is easy to end up dumping all your tabs in the parent folder of tge destination you indented.

Or end up creating an extra child folder inside your intended destination bookmark folder

Would also be nice to have quality of life features, such as a default bookmark folder.

The option to put the bookmarks in a folder named with today's date.

Maybe an option to specify a default destination bookmarks folder on a per site domain basis

57

Either pxe netboot or usb or installable. Immuttable or not. Ramfs. With a host selector or fully auto login ?

Ultra light 16 to 128mb storage 64-128mb ram. Or "full sized"

And lastly, something like that, but that would run on a proxmox host.

18

The select-after-closing-current addon is a way to pullout a random tab out of a window, which will not change the tab that was visible in that window.

However, what it does is any closed tab, it will select the previously seen tab no matter what.

The reason for my question, I would like to know if it is possible for the add-on to have a different behaviour for closed tabs from pulled out tabs.

I wish, when I close a tab, to always select the tab to the right. But when I pullout a tab, I wish to always see the tab that was visible before the pullout.

13

And I'm curious if I could map my keys to make Freecad work this way. I don't know how many of the these tools don't exist in Freecad, but if I could one to one make a keybind that works for me, I might start using it instead of sketchup 8

But mostly, this is the because general CAD community on lemmy and I wanted to share, ciao!

33

There used to be an addon, "Open tabs from clipboard URLs" but I can't seem to find it anymore.

The best I find now is, an addon that opens a box, then you paste your URLs in it, then you press a button.

That's not what I want. I want a toolbar button, I press it, the tabs open.

So that I can opens large blocks of URLs.

Also, I would like another addon which opens large blocks of URLs but does not load them immediately.

I have LoadOnSelect3 for this, but the problem with that one, is that it opens special moz:// pages until you load the tab. And that breaks searching and filtering tabs because the tab title and URL are not the real ones.

296
123
39

Tab Manager Plus Set to "Open in own tab by default" Set to "Dark mode" Set to "Vertical view" -- very important

You can live search your tab titles to select them

You can open all selected tabs in their own window

You can close selected tabs

You can "discard" tab contents (different from close, the tab is there but content is gone)

You can highlight/select duplicate tabs

You can hide not selected tabs

You can pin selected tabs (unfortunately, they still only appear on the one window they are pinned to, they just get pinned to the left of the tab bar)

You can drag and drop selected tabs to another window of your choice, both the representation of that window in the TMP tab, but also into the other firefox window itself. That means, drag and drop from here, is the same as pulling out a tab out of a normal firefox window !

Cannot search text inside of tabs, especially not sleeping tabs

Sometimes I press the TMP button and I just get a bluegreen screen, doesn't work until I close many windows and tabs

I would prefer real dark mode with my preferred colours

I would like to easily drop&close tabs into bookmark folders reliably !

-2

However, I will keep you guys around, for now ...

14

Finally got a 3d printer, but the first thing I wanted to print... the model is 400$usd. It's a piece of machinery I repair at work. I just wanted to print it as a decoration for my toolbox but that is almost week's wages after taxes for me so :( Maybe I can find it on the high seas ?

-12
33

Hi, So, I wipe all cookies on every restart of firefox by default.

However, there are a very very few cookies I would like to restore. And only to certain multi-account containers

They are the session cookie to the few websites I login to. Because I'm annoyed to have to login again on every reboot.

But I still want to wipe every other cookies they store.

I tried to make a bookmarklet that can save the session cookie

Example this

javascript:(function() {     function getCookie(name) {         var value = "; " + document.cookie;         var parts = value.split("; " + name + "=");         if (parts.length == 2) return parts.pop().split(";").shift();     }     var cookieValue = getCookie('session_id');     if (cookieValue) {         var data = new Blob([`session_id=${cookieValue}`], {type: 'text/plain'});         var a = document.createElement('a');         a.style.display = 'none';         document.body.appendChild(a);         var url = window.URL.createObjectURL(data);         a.href = url;         a.download = 'session_id.txt';         a.click();         window.URL.revokeObjectURL(url);     } else {         alert('Cookie "session_id" does not exist.');     } })();

Unfortunately, unlike regular cookies, this doesn't work and it returns the cookie doesn't exist.

I would have made another bookmarklet which create a cookie from the file.

What I really need is an addon that lets me specify which cookies to save and restory, in which multi-account container

view more: ‹ prev next ›

interdimensionalmeme

joined 2 years ago