0 Followers
0 Following
1 Posts

Friendly neighbourhood mod. (he/him)

Canadian, eh. 🇨🇦

(Most active in EDT/EST timezone.)

🐘: @[email protected]

Matrix: @alexpostfacto:matrix.org

‘X’ Rebrand Gets Twitter Blocked Under Indonesia Porn Laws

https://geddit.social/post/363294

‘X’ Rebrand Gets Twitter Blocked Under Indonesia Porn Laws - Geddit

[x-posted] You should know: You can post comments to Peertube videos as a Lemmy user

https://geddit.social/post/263047

[x-posted] You should know: You can post comments to Peertube videos as a Lemmy user - Geddit

Actors set to strike after talks with major studios and streaming services fail

https://geddit.social/post/232445

Actors set to strike after talks with major studios and streaming services fail - Geddit

Windows 95, 98, and other decrepit versions can grab online updates again

https://geddit.social/post/229930

Windows 95, 98, and other decrepit versions can grab online updates again - Geddit

Google is OK with Play Store apps selling NFTs now

https://geddit.social/post/227814

Google is OK with Play Store apps selling NFTs now - Geddit

Tesla reportedly suspected Musk was using company funds to build a literal glass house

https://geddit.social/post/227007

Tesla reportedly suspected Musk was using company funds to build a literal glass house - Geddit

You know what they say about people in glass houses, right?

A Tampermonkey script that displays your “karma” score next to your user name

https://geddit.social/post/129047

A Tampermonkey script that displays your “karma” score next to your user name - Geddit

Crossgeposted from: https://feddit.de/post/1185964 [https://feddit.de/post/1185964] Please excuse my sub-par JavaScript, I am a backend dev. All you need to do is paste this into Tampermonkey and enter your username and your instance url (on two locations). This is not showing other users’ scores and it doesn’t make your score visible to anyone else than yourself. So no need for karma farming. This is just for fun. // ==UserScript== // @name Lemmy score // @namespace http://tampermonkey.net/ // @version 0.1 // @description Shows your total post/comment score at the top right. // @author You // @match ENTER INSTANCE URL HERE (leave the asterisk after the URL)* // @icon https://www.google.com/s2/favicons?sz=64&domain=feddit.de // @grant none // @run-at document-idle // ==/UserScript== (function() { 'use strict'; var USERNAME = "ENTER USERNAME HERE"; var INSTANCE_URL = "ENTER INSTANCE URL HERE"; var totalScore = 0; var currentPage = 1; function postResult() { var navbar = document.getElementsByClassName("collapse navbar-collapse")[0]; console.log(navbar); var ul = document.createElement("ul"); ul.className = "navbar-nav"; ul.id = "karma-ul"; var li = document.createElement("li"); li.id = "karma-li"; li.className = "nav-item"; li.innerHTML = '<div id="karma-div">' + totalScore + '</div>' navbar.appendChild(ul); ul.appendChild(li); } function callPage() { var userRequest = new XMLHttpRequest(); userRequest.onreadystatechange = function () { if (this.readyState == 4) { if (this.status == 200 ) { var res = JSON.parse(this.responseText); if (res.posts.length==0 && res.comments.length==0) { postResult(); } else { totalScore += res.posts.map(x => x.counts.score).reduce((partialSum, a) => partialSum + a, 0); totalScore += res.comments.map(x => x.counts.score).reduce((partialSum, a) => partialSum + a, 0); currentPage++; callPage(); } } } } userRequest.open("GET", INSTANCE_URL + "/api/v3/user?username=" + USERNAME + "&limit=50&page=" + currentPage, true); userRequest.send(); } setTimeout(callPage, 200); })();

[x-posted] Sync for Lemmy signup is now open

https://geddit.social/post/128724

[x-posted] Sync for Lemmy signup is now open - Geddit

>As mentioned before I’m aiming to have something ready in the next 6 weeks ish. >Register your email to get notified when the app is ready to launch!

[cross-posted] LemmyTools - Userscript - 0.1.2 - Released!

https://geddit.social/post/127972

[cross-posted] LemmyTools - Userscript - 0.1.2 - Released! - Geddit

Cross-posted from: https://sh.itjust.works/post/582598 [https://sh.itjust.works/post/582598] ##### LemmyTools 0.1.2 New for 0.1.2: * Auto-Expand and Click&Drag to expand lemmy images! * Hide Lemmy Sidebars - More space for images on feed * Auto unblur NSFW images option * Option to enable old.Reddit (from https://github.com/soundjester/lemmy_monkey [https://github.com/soundjester/lemmy_monkey]) - Thank you! * Hover to activate lemmy Toolbar * Significant UI changes * Reworked easy button for offsite Fixes * Fix for ‘#’ breaking easy subscribe button * Fix for script breaking other sites due to poor isLemmy implementation. * Fixed memory allocation issue with eventHandlers * Various UI bug fixes (not showing all communities, settings menu display, etc…) Script Features: * Adds “Easy Subscribe” button to remote instance communities. * Adds a collapsible sidebar on the side of screen that shows a searchable list of your subscribed communities. * Adds link back to home instance and a community browser. * Adds an options menu to configure LemmyTools settings. Feature for future releases: * When off site collect a list of communities and display in sidebar for easy subscription. (beginning implementation 0.1.2) * Create communities grouping function. * Sort sub list by recently visited * Create addon for firefox/chrome. Installation and Configuration: 1 - Browser must have a Userscript addon (Tampermonkey, Greasemonkey, Etc…). Tested with Greasemonkey. 2 - Download either the .JS file or install from greasyfork. [https://greasyfork.org/en/scripts/469169-lemmytools] 3 - Set home lemmy instance via options page once script is loaded (and manually edit the homeInstance variable for the offsite home instance fix. This script is all done by a complete amateur for fun. Enjoy and feel free to fork it! Get it here: Github [https://github.com/howdy-tsc/LemmyTools] or GreasyFork [https://greasyfork.org/en/scripts/469169-lemmytools] Please submit issues to the github for feature requests and problems: Github LemmyTools Issues [https://github.com/howdy-tsc/LemmyTools/issues] [https://thesimplecorner.org/pictrs/image/8b9d35f1-d43f-471b-afe1-ca9e05d5dfaf.png] [https://thesimplecorner.org/pictrs/image/3056092b-5880-45f7-abee-7df2eeae2290.png] [https://thesimplecorner.org/pictrs/image/8dcc8cfa-8dbb-42e8-a243-85d0e45bcc1e.png] [https://thesimplecorner.org/pictrs/image/3ed27b64-aa68-4d03-8a64-354f11632e5e.png]

[x-posted] UPDATED: There are now multiple iOS / Android apps in development for kbin & lemmy!

https://geddit.social/post/46798

[x-posted] UPDATED: There are now multiple iOS / Android apps in development for kbin & lemmy! - Geddit

The amount of apps being developed for iOS / Android is getting really crazy now and new apps keep popping up every day. Updated list below: * Artemis (iOS, Android, kbin, lemmy): link [https://kbin.social/m/ArtemisApp] * Memmy (iOS, lemmy): link [https://kbin.social/m/[email protected]] * Mlem (iOS, lemmy): link [https://kbin.social/m/[email protected]] * Morpha (iOS, lemmy): link [https://kbin.social/m/[email protected]] * Thunder (iOS, Android, lemmy): link [https://kbin.social/m/[email protected]] * Beyond (iOS, Android, lemmy): link [https://kbin.social/m/[email protected]/t/58630/I-am-working-on-a-new-lemmy-app-for-iOS] * Limbo (iOS, Android, lemmy): link [https://kbin.social/m/random/t/65515/Join-the-Limbo-for-Lemmy-beta-on-iOS] * Jerboa (Android, lemmy): link [https://github.com/dessalines/jerboa] * Slide (Android, lemmy): link [https://kbin.social/m/[email protected]/t/68111/To-anyone-that-misses-Reddit-Slide-I-may-have-a] * Sync (Android, lemmy): link [https://kbin.social/m/[email protected]] * Unnamed (kbin): link [https://kbin.social/m/kbin/p/512296/Decided-I-m-going-to-go-ahead-with-my-Kbin-mobile] Most apps on the list are lemmy apps, meaning they don’t work with kbin. Artemis is specifically designed to work with kbin, not sure if or when any of the other ones will go in that direction or become interoperable as there are some challenges with the kbin API at the moment. Having said that, a new API is in the works (https://codeberg.org/Kbin/kbin-core/pulls/357 [https://codeberg.org/Kbin/kbin-core/pulls/357]) so things should get better with time. Some of the apps are in very early stage of development so it may happen that they adjust OS availability and platform support. See info in table format with more details: https://beehaw.org/post/697419 [https://beehaw.org/post/697419]