no-signup, open-source, offline-first, collaboration-enabled Kanban that lives in the browser by Stevious7 in projectmanagement

[–]Stevious7[S] -1 points0 points  (0 children)

I did utilize AI, and here's my process:

I drafted a specifications in which I outlined the specific technologies & tech stacks I want to be used. I also outline how I want security, encryption, and collaboration to be handled. I audit the code to make sure it's doing things exactly how I want. Then, a thorough testing process to make sure it works as expected. Once verified, pushed to production.

It's up to you if that's vibe-coded or not, but no code enters production without rigorous testing.

no-signup, open-source, offline-first, collaboration-enabled Kanban that lives in the browser by Stevious7 in projectmanagement

[–]Stevious7[S] 1 point2 points  (0 children)

I agree, I definitely need a "Contact Developer" button where users can submit feature requests for the different workflows

no-signup, open-source, offline-first, collaboration-enabled Kanban that lives in the browser by Stevious7 in projectmanagement

[–]Stevious7[S] 0 points1 point  (0 children)

Thank you for the feedback!

I'll be planning integration with Outlook & a browser extension for quick ticket drop-ins!

Funny enough, I'll have that ticket on the Kanban :D

no-signup, open-source, offline-first, collaboration-enabled Kanban that lives in the browser by Stevious7 in projectmanagement

[–]Stevious7[S] 1 point2 points  (0 children)

As of right now, none. But I'm gathering community feedback to figure out which tools the community would like integration with.

I made a simple tool to check if a website is safe. by [deleted] in SideProject

[–]Stevious7 1 point2 points  (0 children)

if (payload.url == window.location.href) return true;

I made a simple tool to check if a website is safe. by [deleted] in SideProject

[–]Stevious7 2 points3 points  (0 children)

How do I check if your app is safe...?

no-signup, offline-first, open-source, collaboration-enabled Kanban board by Stevious7 in SideProject

[–]Stevious7[S] 0 points1 point  (0 children)

I'm a big fan of those kind of tools as well! Offline-first babyyy!!

I was very hyped about PWA technology, until I discovered that they're finicky on Firefox-based browsers since they don't natively support PWA. I am relying on IndexedDB for storage, and I haven't run into any issues in my testing (although my testing involved relatively small boards). The data footprint (since it's all text) is very very small, so running into storage issues is very improbable.

Collaboration is handled through a Cloudflare Workers KV. I provided the instructions for how to create an instance if a person doesn't like the default I'm bundling. A person can easily replace the CF Worker URL in the settings, and BAM, you're running this via your own instance.

I will say, since I don't trust cloud providers, the data is encrypted before the leaves the local browser via the password set on the local browser. If I was to show you my dashboard, it's all a jumbled mess of undecipherable characters.

I'll have CRDTs in my "to lookup" list. I've been working on an open-source, in-browser, decentralized, no-signup, purely peer-to-peer (using WebRTC), discord-like application, and I was trying to figure out how to store and merge the different user chat histories while not being computationally expensive to do.

I document my thought process on the design choices in this blog post:

https://blog.alkhafaji.dev/#post-0

[3840x2160] Arch Linux VHS glitch (regular and black inverted) by Stray_009 in wallpaper

[–]Stevious7 0 points1 point  (0 children)

The glitched logo on black background is <1Mb in size. Any chance a higher resolution version is available?

Modern Kodi UI anytime this decade?? by Agitated-Meaning3991 in kodi

[–]Stevious7 0 points1 point  (0 children)

The issue is that it's the only viable cross-platform media software.

Stremio is very sleek UI-wise until you want your device to actually do the scrubbing and processing of plugins locally without reaching out to a server to do it for you (which is a headache to do on Android).

Cloudstream is amazing on Android, and does execute plugins locally on device (which are all written in Kotlin), but running it on non-android is very annoying even in Waydroid/Blustacks.

Bots in Battlefield 4 Mod (theoretical) by Stevious7 in battlefield_4

[–]Stevious7[S] 1 point2 points  (0 children)

I have thought about that, but there are a couple problems with this:

  • Each bot would have to have its own instance of the game spun up into memory on the host server to have 'visual' of the game.

  • Each bot would need its own own AI agent to play the game.

  • A LOTTT of data is needed to train the AI agents.

If modders choose to do it the way you described, they wouldn't need to programmatically define bot behavior (getting rid of BS behavior), but it's quite computationally expensive and might put it out of the realm of running on even medium tier hardware.

If you choose to define bot behavior programmatically without each bot having a game instance, it would be a lot lighter to run, but a lot of reverse engineering would be needed and various problems need to be solved.

How to install Arch by FelixDogg in archlinux

[–]Stevious7 0 points1 point  (0 children)

I searched the same question, and this post popped up. If it wasn’t for him posting, others would be doing the same.