Zeus

joined 2 years ago
MODERATOR OF
[–] Zeus@lemmy.world 7 points 2 years ago* (last edited 2 years ago)

the "risk" of false positives comes down to the consequence. if the consequence is being stuck in the slammer, don't use ai. if the consequence is you can't upload the image unless you manually appeal, or even maybe have to use an external image host; i think ai is fine

edit: ah bugger, wrong acct. ah well

(please tag @zeus@lemm.ee if you want me to see your response)

[–] Zeus@lemmy.world 1 points 2 years ago
[–] Zeus@lemmy.world 1 points 2 years ago (2 children)

hello avaddonlfc!

thank you

[–] Zeus@lemmy.world 2 points 2 years ago

yeah, i liked the soft & friendly kde cursors.

not sure about the colours either, but that might be because they've changed from the portal colours to the portal beta colours. i never thought of them as portal themed before, but now i can't unsee it

[–] Zeus@lemmy.world 4 points 2 years ago

bangs are invaluable, and the main reason i stick with ddg. having !w and !pcgw just instantly take me to the right page is great

[–] Zeus@lemmy.world 0 points 2 years ago* (last edited 2 years ago) (8 children)

i just use them for fun things. i've never "written a short description of myself", just put something that makes you giggle

[–] Zeus@lemmy.world 23 points 2 years ago* (last edited 2 years ago) (1 children)
[–] Zeus@lemmy.world 3 points 2 years ago (1 children)

as a way to search inside communities: https://www.search-lemmy.com/ is in early development but it works surprisingly well usually

4
submitted 2 years ago* (last edited 2 years ago) by Zeus@lemmy.world to c/lemmyworld@lemmy.world
 

i find it annoying to have to manually change urls to subscribe to a community outside lemmy.world, so i wrote a bookmarklet to quickly switch to the lemmy.world instance

to use, just drag the following code to your bookmarks bar (name it whatever you like), then click it when you want to use it

javascript:(function() {const myInst="lemmy.world";let currUrl=window.location.toString().split("/");let currInst=currUrl[2];currUrl[2]=myInst;let newUrl=currUrl.join("/")+"@"+currInst;window.location=newUrl;})();

readable version:

javascript:(
	function() {
		// make sure to change this if using on a different instance
		const myInst="lemmy.world";
		let currUrl=window.location.toString().split("/");
		let currInst=currUrl[2];
		currUrl[2]=myInst;
		let newUrl=currUrl.join("/")+"@"+currInst;
		window.location=newUrl;
	})
()
view more: next ›