I’m working on open source projects :)

🔗 Links:

GitHubReddit🍪 Get me a cookie:

Go to Ko-fiGitHub Sponsor

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

Why does "hide read posts" apply to my own submitted posts?

It’s strange and unintuitive that my own submitted posts are hidden with this basic feature. Given the slow pace on some communities as Lemmy grows, it gets really repetitive without the ability to filter out read posts. On the other side though, the ability to review my posts and check back on them seems pretty basic as a...

cynber,
@cynber@lemmy.ca avatar

I think the issue here is

they don’t show up under “posts” on your own profile

It makes sense to hide read posts on the main feed, but not when you’re looking at a particular user?

[Request] Add 'Redirect to home instance in new tab' option to browser context menu

In navigating Lemmyverse for potential communities to subscribe to, it would be helpful to be able to redirect links to my home instance in a new tab to facilitate sorting through multiple communities at a time. Ideally, the option would be implemented with the ability to enable or disable either of the two context menu items to...

cynber,
@cynber@lemmy.ca avatar

Thank you for the suggestion! I’ll see about implementing this in a future version, unless someone else gets to it first

here is the issue I made: github.com/cynber/lemmy-instance-assistant/…/53

Please let me know if the issue is missing a part of your suggestion or if there was any misunderstanding

SamXavia, to fediverse
@SamXavia@kbin.social avatar

One of the main things I seem to notice on the Fediverse is that we don't have enough active users when it comes to answering questions as well as commenting.

cynber,
@cynber@lemmy.ca avatar

That’s a problem everywhere, but I’ve found that people are a lot better on here about downvotes?

On Reddit I’d see comments and questions with no replies and only downvotes. Here you’re a lot more likely to see responses

Simplest solution for fragmented communities: Redirect comments to one post (by asking or with new functionality)

EDIT: Thank you for all the great responses! I agree that a forced implementation is no longer the way to go. I’ve left the post as is, aside from this comment, in case anyone wanted to reference part of it. At this point, I think implementation 1 (Sincere Request) is the way to go if anything....

cynber,
@cynber@lemmy.ca avatar

this proposal would give more controls to the bigger communities

what are the concerns that come to mind?

I’d rather just have different communities

All the individual communities would continue to exist as they do right now. When it makes sense for a post to have a deeper discussion, users can lock and redirect accordingly

cynber,
@cynber@lemmy.ca avatar

I agree, instance assistant (our extension actually!) handles this, but it would be much better to have it exist natively.

cynber,
@cynber@lemmy.ca avatar

that’s fair :)

cynber,
@cynber@lemmy.ca avatar

Look, honestly: if you want Facebook ot Twitter, go back to them.

This post was to talk about the merits/drawbacks of a potential change, and the constructive comments on the post have been helpful for that. Some of the other ‘solutions’ that have been posted here feel even more antithetical to the idea of decentralization (ex. redirecting upvotes, having communities follow other communities) so I was looking for a compromise that would address some of the annoyances without making the site another centralized platform. The intent was to allow users to choose how they want to link cross posts together, rather than having the community (or an app/frontend) make the decision for them. We’ve also been seeing users naturally gravitate to a few instances/communities, so I was looking for ways to redirect some of that traffic back to lesser known spaces.

Regardless, I appreciate the comment. Reading the perspectives on this post helped me see how locking the post completely would cause more issues and annoyances than it would help with. A simple “we are discussing X over on this post, feel free to join” seems like the better compromise.

cynber,
@cynber@lemmy.ca avatar

Thank you!

Hope it helps :)

cynber,
@cynber@lemmy.ca avatar

Yep I think the defederation point is the big one which causes the idea to break down. I’ll edit the post to better reflect my thoughts now

Instance Assistant v1.2.6 is out - Redirect user profile pages

This is a very small update, but hopefully it’s helpful! As I mentioned in the last update, I’m a little tied up with other commitments right now, so I haven’t had a chance to implement the other features on the to-do list. This one was requested the other day, and it was simple to add since I could reuse a lot of existing...

cynber,
@cynber@lemmy.ca avatar

That’s a great point, and it was easy enough to add because it was very similar functionality. I just made a commit here.

I’ll upload version 1.2.6 tomorrow, and it should be approved and on the stores within a week or so. Thanks for the suggestion!

cynber,
@cynber@lemmy.ca avatar

This doesn’t answer the Linux part, but on FDroid there’s something similar as “Retro Stack”

How to check that an add-on doesn't spy on you ?

Many add-ons have somewhat spookiy authorisation requirements, such as “access all of your activity”. In many cases this is justified by it’s function, and of course there isn’t any problem with it as long as we’re sure all this data stays on your computer and isn’t shared with any remote server. How are we sure of...

cynber,
@cynber@lemmy.ca avatar

For smaller extensions, you can start by looking at the manifest.json as this file is the entry point. You can see which part of the code needs access to ‘everything’ and go from there.

developer.mozilla.org/en-US/docs/…/manifest.json

For example, with Instance Assistant for Lemmy, you need to give access to all sites because it needs to run on any Lemmy site and that’s not something you can hardcode in.

cynber,
@cynber@lemmy.ca avatar

Thank you for sharing! This is my first project like this so I’ve got lots to learn. I’m going to try and contribute to a few other ones so try and learn what it’s like

cynber,
@cynber@lemmy.ca avatar

Makes sense, thank you!

cynber,
@cynber@lemmy.ca avatar

Good to know, I’ll explore some more

Thank you!

cynber,
@cynber@lemmy.ca avatar

This is very helpful, thank you! I’ll look into setting up more of that sometime

cynber,
@cynber@lemmy.ca avatar

You could try from this

lemmy.world/post/1289432

Ideally try for a smaller size, else it takes time to load and wastes people’s data

cynber,
@cynber@lemmy.ca avatar

We’re actually working on a browser extension for this! It currently supports both communities and posts

!Instance_Assistant

We ran into the same issue, federated sites are hard to work with. Right now, the extension has it so that a user needs to right click on a link to be redirected. That way the user can choose which links get redirected, and there’s no chance of accidentally redirecting the wrong thing.

There are other solutions (using the API for example), but they seemed to slow the browser down too much. Another proposed feature that hasn’t been implemented yet was to redirect when holding down a key (when holding down “r”, try to redirect the link).

Feel free to take a look, try it, and you can totally contribute code. It’s all open source and we’ve tried to keep the code simple and easy to verify/contribute.

cynber,
@cynber@lemmy.ca avatar

Sounds good! This was my first dive into browser extensions as well. It’s not too bad once you go over the basics. If you give it a try, see the contributing page on the repo’s wiki for some resources on how to get started with browser extensions.

A super short summary is:

  • manifest.json is the entry point, it links to HTML files (which represent things like the popup, sidebar) and scripts (which do most of the work)
  • the background script runs all the time (see background.js), and the content scripts run on specific pages (ex. There’s one for Lemmy community pages, one for error pages)

If you DO give it a try, we were part way through migrating features from the LemmyTools userscript and that might be a good place to start. I wasn’t familiar with userscripts so I didn’t make much progress, and can’t get back to it for a little while. The issues page of the repo should have LemmyTools related features tagged. If any details are missing, let me know and I’ll add them in :)

cynber,
@cynber@lemmy.ca avatar

We actually have an extension for this, it’s one of the more popular extensions for Lemmy&Kbin, going by the counts on chrome/firefox stores:

!instance_assistant

It was originally made to solve this problem, but we’ve been adding other features as well. Right now you can redirect communities and posts, and redirect links by right clicking on them.

Let me know if it works, and also where it doesn’t so that we can improve it :)

cynber,
@cynber@lemmy.ca avatar

I personally find a lack of downvotes to be annoying and harmful. People don’t go through the trouble of reporting problem content, and it usually leads to poor quality inflammatory content rising to the top.

If you’re new and haven’t really set up yet, explore other instances. You can find one that aligns with what you want out of Lemmy without jumping through hoops.

If you have set up, there are account migration tools for you. They just aren’t perfect yet

cynber,
@cynber@lemmy.ca avatar

This is a bit of a tangent, but I’m curious who runs this website: www.edwaittimes.ca/WaitTimes.aspx

It’s always been slow for me, and it doesn’t feel that accessible (text is hard to read etc.). A quick upgrade and refresh might make it a lot smoother for people. If we wanted to go more fancy with it, it could have a dashboard page just for hospitals to display in their ERs, like they do (did?) at MSJ.

I know BC has a Github with open source projects, and this seems like a relatively simple upgrade if we knew what the API / data source was. I’m noticing some AJAX & jquery. Could something like Vue/Nuxt work as a replacement? The pages could be rendered server side, and then every 5 minutes it could be refreshed with the new data.

cynber,
@cynber@lemmy.ca avatar

I don’t have as much experience working with the stack, but from what I’ve read it seems like Rust is a pretty solid choice for the backend. It also seems like a lot of the upgrades people want are for the front end, so that’s what would benefit the most from being simpler.

Typescript makes sense, and a handful of frameworks have typescript support. Would anyone know more about the benefits of using Inferno over something like Vue/Nuxt or plain React?

Instance Assistant v1.2.5 released: You can now generate posts for Lemmy/Kbin, search for posts, and redirect posts from foreign instances

Hi everyone, I’m excited to announce one more release before I take a short break. I have some other stuff starting up, so I won’t be pushing out new features as fast, but I’ll still be around to manage the project. (more at the end)...

cynber,
@cynber@lemmy.ca avatar

Sorry to those that have already seen this. I’m trying to space out the posts so it’s not in a large clump in your feeds. People have different subscription lists, so I’m trying to reach those that haven’t seen it yet.

These are the last 4 posts :)

cynber,
@cynber@lemmy.ca avatar

There are a few userscripts out there which I could integrate into the extension. It depends on when this commit gets pushed into Lemmy core:

github.com/LemmyNet/lemmy/issues/2397

After that, it could still be useful if someone wanted to block it browser wide. At that point I’d check if people still want something like that.

cynber,
@cynber@lemmy.ca avatar

Hope it helps!

cynber,
@cynber@lemmy.ca avatar

Hope it works for you!

cynber,
@cynber@lemmy.ca avatar

That sounds good, and it sounds easy enough to implement.

I’ve made the issue here: github.com/cynber/lemmy-instance-assistant/…/45

I’ll get to it when I have time in the next few months, unless someone else gets to it first :)

Instance Assistant v1.2.5 released: You can now generate posts for Lemmy/Kbin, search for posts, and redirect posts from foreign instances

Hi everyone, I’m excited to announce one more release before I take a short break. I have some other stuff starting up, so I won’t be pushing out new features as fast, but I’ll still be around to manage the project. (more at the end)...

cynber,
@cynber@lemmy.ca avatar

Sorry to those that have already seen this. I’m trying to space out the posts so it’s not in a large clump in your feeds. People have different subscription lists, so I’m trying to reach those that haven’t seen it yet.

These are the last 4 posts :)

cynber,
@cynber@lemmy.ca avatar

Good to know, could you share what website you were trying to post from?

I think one thing I should implement is a little toast message that explains what went wrong (ex. No title contents found)

Instance Assistant v1.2.5 released: You can now generate posts for Lemmy/Kbin, search for posts, and redirect posts from foreign instances

Hi everyone, I’m excited to announce one more release before I take a short break. I have some other stuff starting up, so I won’t be pushing out new features as fast, but I’ll still be around to manage the project. (more at the end)...

cynber,
@cynber@lemmy.ca avatar

Sorry to those that have already seen this. I’m trying to space out the posts so it’s not in a large clump in your feeds. People have different subscription lists, so I’m trying to reach those that haven’t seen it yet.

These are the last 4 posts :)

YSK that You can now generate posts for Lemmy/Kbin, search for posts, and redirect posts from foreign instances (with Instance Assistant v1.2.5)

Why YSK: It’s a free and open source browser extension we have been working on, which might make it easier to use Lemmy & Kbin. This update in particular brings a few features that make the sites a lot easier to use, in particular the ability to jump from a post on one instance to the same post on another. Since the URL...

cynber,
@cynber@lemmy.ca avatar

That’s fair, I’ve posted here in the past but I’ll take it off my list moving forward. I think early on there wasn’t much content so it was ok, but now that the community is rolling it’s not that relevant

It’s good feedback!

cynber,
@cynber@lemmy.ca avatar

For sure, I’ll incorporate a TLDR in future posts :)

Instance Assistant v1.2.5 released: You can now generate posts for Lemmy/Kbin, search for posts, and redirect posts from foreign instances

Hi everyone, I’m excited to announce one more release before I take a short break. I have some other stuff starting up, so I won’t be pushing out new features as fast, but I’ll still be around to manage the project. (more at the end)...

cynber,
@cynber@lemmy.ca avatar

A few days late, but this is actually something I’ve been working on for Instance Assistant! I implemented a first attempt and released it this weekend. Let me know if it works for you :)

It should pop up in the sidebar of any post on a foreign instance. If it doesn’t load, you may need to refresh the page. That’s something I’m still working on because redirecting on a Lemmy site isn’t always detected as navigating to a new page.

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