Cynber
I’m working on open source projects :)
🔗 Links:
GitHub |
---|
🍪 Get me a cookie:
Go to Ko-fi | GitHub Sponsor |
---|
- 23 Posts
- 39 Comments
Cynber@lemmy.caOPto Open Source@lemmy.ml•FOSS Android apps that can view webpages offline?1·2 years agoThat would work
I’ll check it out
Cynber@lemmy.caOPto Open Source@lemmy.ml•FOSS Android apps that can view webpages offline?1·2 years agoThank you, I’ll try those
deleted by creator
Cynber@lemmy.cato Fediverse@kbin.social•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.1·2 years agoThat’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
Cynber@lemmy.caOPto Fediverse@lemmy.world•Simplest solution for fragmented communities: Redirect comments to one post (by asking or with new functionality)English01·2 years agoThis works for viewing all the comments so far, but it doesn’t solve the discussion aspect since commentors from each community won’t be seeing or responding to the other comments. This is a bigger issue with smaller communities, where they’d mostly be top level comments / chains with minimal depth from each smaller community. Yes you can see all the comments, but the discussion quality is poor.
It’s also not as helpful when the automation fails. Something I’ve found is that the ‘crosspost’ field starts to get crowded on posts that link to a popular website. Combining comment sections from ALL of those posts isn’t as useful as having some intentional action from the OP.
A key aspect about this proposal is that it requires the OP to do something. If it doesn’t make sense for a community (ex. different intents behind the Politics communities), then OP shouldn’t lock their post. If OP does it anyway, then you can downvote that post.
Cynber@lemmy.cato Open Source@lemmy.ml•Does anyone know any block staking game for Linux?1·2 years agoThis doesn’t answer the Linux part, but on FDroid there’s something similar as “Retro Stack”
Cynber@lemmy.caOPto Open Source@lemmy.ml•How to handle collaborators on an open source project?2·2 years agoThank 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@lemmy.caOPto Programming@programming.dev•How to handle collaborators on an open source project?2·2 years agoThis is very helpful, thank you! I’ll look into setting up more of that sometime
Cynber@lemmy.caOPto Programming@programming.dev•How to handle collaborators on an open source project?2·2 years agoGood to know, I’ll explore some more
Thank you!
Cynber@lemmy.caOPto Programming@programming.dev•How to handle collaborators on an open source project?2·2 years agoMakes sense, thank you!
Cynber@lemmy.cato Programming@programming.dev•I wrote hacky tampermonkey script to fix Lemmy instance links. Any advice?5·2 years agoSounds 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@lemmy.cato Programming@programming.dev•I wrote hacky tampermonkey script to fix Lemmy instance links. Any advice?9·2 years agoWe’re actually working on a browser extension for this! It currently supports both communities and posts
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.
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?
Cynber@lemmy.caOPto Technology@lemmy.ml•Instance Assistant v1.2.5 released: You can now generate posts for Lemmy/Kbin, search for posts, and redirect posts from foreign instances2·2 years agoThat sounds good, and it sounds easy enough to implement.
I’ve made the issue here: https://github.com/cynber/lemmy-instance-assistant/issues/45
I’ll get to it when I have time in the next few months, unless someone else gets to it first :)
Cynber@lemmy.caOPto You Should Know@lemmy.world•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)3·2 years agoFor sure, I’ll incorporate a TLDR in future posts :)
Cynber@lemmy.caOPto Technology@lemmy.world•Instance Assistant v1.2.5 released: You can now generate posts for Lemmy/Kbin, search for posts, and redirect posts from foreign instancesEnglish1·2 years agoGood 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)
I plan on experimenting with the suggestions posted here. That way I can narrow down where the problem is
The live website works on desktop and mobile. The offline folder works well on desktop, but it has issues on mobile, such as the search bar not working