This profile is from a federated server and may be incomplete. Browse more on the original instance.

tgxn,
@tgxn@lemmy.tgxn.net avatar

Hey, some of us are in our 30’s too!

tgxn,
@tgxn@lemmy.tgxn.net avatar

Have you heard of OwnTracks? It’s a self hosted google timeline alternative.

tgxn,
@tgxn@lemmy.tgxn.net avatar

I’m replying to your reply.

tgxn,
@tgxn@lemmy.tgxn.net avatar

While we’re at it, fuck Google.

tgxn,
@tgxn@lemmy.tgxn.net avatar

There are literally dozens of us! Dozens!

tgxn,
@tgxn@lemmy.tgxn.net avatar

I bet they program in HTML!

tgxn,
@tgxn@lemmy.tgxn.net avatar

I was here when time started.

tgxn,
@tgxn@lemmy.tgxn.net avatar

I like to use telnet

tgxn,
@tgxn@lemmy.tgxn.net avatar

Yeah, it’s very intentional, I’m from 420 years in the future. 🤣

tgxn,
@tgxn@lemmy.tgxn.net avatar

Wow that’s an odd bug! I’d report it to whatever client you’re using - my account creation date is set to the year 2443.

tgxn,
@tgxn@lemmy.tgxn.net avatar

Good content 👌💯💯💯

tgxn,
@tgxn@lemmy.tgxn.net avatar

100% this. Git is defacto for good reasons. 😂 Feel free to try the others out though 👍

tgxn,
@tgxn@lemmy.tgxn.net avatar

It’s pretty good though 😃😁

tgxn,
@tgxn@lemmy.tgxn.net avatar

Wrong way, down a one-way road! 🎶

Be careful, your understanding of incognito mode in Firefox may be wrong and that could be costing you

All the incognito browser windows share the same “session” in Firefox. So say you open an Incognito window to browse Facebook or something, then you open another Incognito window, this new incognito window is linked to the previous incognito window, meaning you are logged into Facebook at that new Incognito window as well....

tgxn,
@tgxn@lemmy.tgxn.net avatar

Firefox multi account containers.

tgxn,
@tgxn@lemmy.tgxn.net avatar

I am from the year 2443, just some casual time travelling. (and direct writes to PostgreSQL) Fun fact: my display name is also illegal, you can’t set it in the UI.

tgxn,
@tgxn@lemmy.tgxn.net avatar

I keep some on lemmyverse. Check menu -> network stats I should add some more…

tgxn,
@tgxn@lemmy.tgxn.net avatar

Very true, though as a moderator, I expect you’d need to validate the report is not reporting something that’s totally fine.

I’m not sure how to deal with this, perhaps I could read your user settings for blur_nsfw and apply that as the default? Or, perhaps a toggle setting that just turns media embeds on/off completely that defaults based on the same user-setting?

tgxn,
@tgxn@lemmy.tgxn.net avatar

Hehe, yeah I have done minimal testing as a community-moderator, I will focus some more time to make sure this also works as expected. As a community-only-moderator, you should still be able to call the APIs that return content reports, limited to your communities.

Edit: I’ve made a bug for myself to look at for validating everything still works as a community mod github.com/tgxn/lemmy-modder/issues/62

This tool lets you login as any account, and given the moderation APIs return content, then you’ll be able to see it in the UI. (so normal users would likely only be able to see the moderation log)

At the moment, there’s not really much benefit in running it locally, unless you want to be sure that your moderators are using an “approved version” or if (soon) I have to release a separate package for Lemmy 0.19. In future, I expect to be able to link into the Lemmy/Pictrs databases to get additional metrics/content that’s not available on the Lemmy API, but that’s a future problem :D

tgxn,
@tgxn@lemmy.tgxn.net avatar

No worries, I responded above that most of my testing has been done as a global admin, I need to do further testing to make sure everything is working for community-only mods. Happy for you to create a bug on the GitHub with information on what you’re seeing as a community-only mod :D

Edit: I’ve made a bug for myself to look at for validating everything still works as a community mod github.com/tgxn/lemmy-modder/issues/62 😁

tgxn,
@tgxn@lemmy.tgxn.net avatar

Yeah, I’ve experienced this. It’d be pretty easy to add a report-contains-word based filter for the images, but if content doesn’t match this then it’d still be an issue.

or make it a textbox where mods can enter words themselves I quite like this approach, maybe:

  • Setting "Display content preview for NSFW posts"
  • Setting "Hide content preview with reports containing "

I’ve created a bug for myself, github.com/tgxn/lemmy-modder/issues/63 If you wanted to add any additional information or track my progress. :D

I also want to add an in-app popup (with the image/website) when you click the content directly instead of navigating to the actual content in a new tab, so this could get combined to only show content on click (as a configuration, defaulted to only show on “expand”).

tgxn,
@tgxn@lemmy.tgxn.net avatar

The hosted version is using GitHub pages. I use Traefik for my version so don’t have nginx config. I can make task to have a look at this and create an example config, but no promises on when I can do that.

tgxn,
@tgxn@lemmy.tgxn.net avatar

Currently, it’s only storing your Lemmy JWT token (if you chose to save it) and your site/user data.

There’s not really much value in saving these since there’s no user configuration stuff yet, providing more of a risk if these tokens were leaked (potentially for global admins)

I was thinking of implementing a way to share data outside of Lemmy (for mod notes, ignored reports, user “Strikes”, and potentially user config). If this was not purely a frontend (and I had some kind of DB backend) then this would be less of a concern.

I didn’t really want to run a backend, since it would involve me storing data on users of the tool - But this would be an option for people that set this up in their local Docker.

tgxn,
@tgxn@lemmy.tgxn.net avatar

You could try something like this:


<span style="color:#323232;">http {
</span><span style="color:#323232;">    upstream modder {
</span><span style="color:#323232;">        server lemmy-modder:80;
</span><span style="color:#323232;">    }
</span><span style="color:#323232;">
</span><span style="color:#323232;">    server {
</span><span style="color:#323232;">        listen 81;
</span><span style="color:#323232;">
</span><span style="color:#323232;">        location ~ /myapp {
</span><span style="color:#323232;">            proxy_pass http://modder;
</span><span style="color:#323232;">        }
</span><span style="color:#323232;">    }
</span><span style="color:#323232;">}
</span>

let me know how you go.

tgxn,
@tgxn@lemmy.tgxn.net avatar

In what language is it written?

JS wtih React and MUI Joy

tgxn,
@tgxn@lemmy.tgxn.net avatar

Good point, I’ll do that soon. github.com/tgxn/lemmy-modder/issues/68

tgxn,
@tgxn@lemmy.tgxn.net avatar

I’d love to be able to have a modlog containing all the entries for a particular user, but the Lemmy API doesn’t currently support getting filtered results per user. 😔 I’ll have to make an issue for it and maybe an upstream one to add this to Lemmy…

tgxn,
@tgxn@lemmy.tgxn.net avatar

not yet, but improved sorting is on the cards.

the main issue is the lemmy api’s don’t support most of this, so it’ll have to be implemented locally. for example, ListPostReports only allows: community_id, limit, page, and unresolved_only as parameters: join-lemmy.org/api/…/ListPostReports.html

PR’s need to be submitted to Lemmy core to add this functionality, so for now I do a infinite load as you scroll.

tgxn,
@tgxn@lemmy.tgxn.net avatar

i was wrong - i should be able to do this actually 😅… the API seems to provide community and user id filters! I’ve made a backlog item github.com/tgxn/lemmy-modder/issues/75

tgxn,
@tgxn@lemmy.tgxn.net avatar

Yeah, Louis Rossmans new venture, seems pretty cool. Would be nice if it supported tubearchivist or peertube.

tgxn, (edited )
@tgxn@lemmy.tgxn.net avatar

I reckon “Device metrics” is more likely to be from Alexa devices; source; am AWS Dev and don’t see many of these

tgxn,
@tgxn@lemmy.tgxn.net avatar

Yeah I think we’re on the good lemmies 😁

tgxn,
@tgxn@lemmy.tgxn.net avatar

Interesting setup, mines very similar. Except with ZFS and no DMZ 😅 I’m thinking of setting up vlans for automation too, how do you handle updates and software downloads on that lan?

tgxn,
@tgxn@lemmy.tgxn.net avatar

Your did the math! 😁

tgxn,
@tgxn@lemmy.tgxn.net avatar

Cool cool cool, disabled watch history and cancelled YouTube premium. GG YouTube.

tgxn,
@tgxn@lemmy.tgxn.net avatar

“for no reason” is laughable. It’s a highly polished app that’s been in development for over 10 years.

tgxn,
@tgxn@lemmy.tgxn.net avatar

But it’s paid 😭 I spose I could try it for a month.

tgxn,
@tgxn@lemmy.tgxn.net avatar

I would buy a book that is just all of those posts! This is brilliant.

tgxn,
@tgxn@lemmy.tgxn.net avatar

Maybe they are trying to temporarily raise user numbers from people using 2,3,4 accounts to place pixels?

Also, I might join just to contribute to the eventual “fuck spez” movement. It’s not like I’ll stick around after the fun is over.

It could help with metrics pre-IPO though…

tgxn,
@tgxn@lemmy.tgxn.net avatar

I made a poc modder.lemmyverse.net tool that I’m hoping to expand on for Lemmy tooling 😄

tgxn,
@tgxn@lemmy.tgxn.net avatar

And federation, too! It’s pretty neat!

Issue with nsfw material in feed

So this post from lemmynsfw.com just popped up in my feed. It is not tagged as nsfw although it obviously is. I have tried attaching a screenshot but Jerboa throws an error. I have nsfw material turned off in my account settings, so this wouldn’t happen if the post would be tagged properly. I’m using Jerboa. I could just ban...

tgxn,
@tgxn@lemmy.tgxn.net avatar

What app are you using? Some recent update broke NSFW tags for a lot of people.

tgxn,
@tgxn@lemmy.tgxn.net avatar

Is it possible for an author to change the NSFW tag on a post after the fact? Maybe thats what happened, it’s explain the slow federation for the edit.

tgxn,
@tgxn@lemmy.tgxn.net avatar

Use a smaller instance. 😅 One that’s local to you ideally.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • uselessserver093
  • Food
  • aaaaaaacccccccce
  • test
  • CafeMeta
  • testmag
  • MUD
  • RhythmGameZone
  • RSS
  • dabs
  • KamenRider
  • TheResearchGuardian
  • KbinCafe
  • Socialism
  • oklahoma
  • SuperSentai
  • feritale
  • All magazines