Skip Navigation
Curious about the Zimaboard and CasaOs

I recently learned about a product called a Zimaboard, which to my understanding is like a raspberry pi, and the default OS on the listing says that it comes with CasaOs. Doing a quick search, I found the website and tried their demo, which had a very modern look with many popular apps available and so I got curious as to why this wasn't as popular as other server os.

I want to know if any of you had a go with any of these things and if you have some experiences or opinions regarding it.

It's very modern looking UI gives of "Apple" vibes which makes me trust things less, but that's just my caveman brain acting up, hence the reason I'm asking.

0
Force of habit
  • Another way to help people care about privacy is to tell them, "Imagine if all the things you watch on 'The Hub' got released and everyone from your workplace to your family knew"

  • Stupid parasite-infested parasite
  • mitochondria is the powerhouse of the cell

  • Splitters!
  • Knock off Mario brothers

  • How come Windows and macOS users don't have to enter their password every time they need administrator privileges?
  • It's not true admin privileges, windows won't let you delete system32 the normal way, Linux on the other hand will tell you good luck and bail as you delete everything

  • Shit...
  • Time to boot up the old windows 98 machine from the closet and start making my own modern app alternative.

  • My favorite graph
  • I honestly forgot about that despite it being big news here for like a week or two

  • If Windows XP was released in 2024
  • Clippy, now powered by chatgpt

  • Smoke Weiners Everyday!
  • WHY ARE YOU BUYING CLOTHES AT THE SOUP STORE!!!

  • Smoke Weiners Everyday!
  • What store are you in?

  • Smoke Weiners Everyday!
  • Go to the next aisle

  • Just use Firefox
  • I think it wanted to say "malware protection" but the lies got perfectly cut off

  • How do you even call that?
  • You need some uranium to cook it all the way

  • When you tell her you use Arch and she still has her clothes on
  • If they stare at you emotionlessly, they are a Gentoo user who is still compiling their response.

  • yes, do continue
  • Godzilla (2014) was pretty good, except for Muto having that electromagnetic pulse weapon. Why would a biological evolutionarily develop such a thing? It's useless against Godzilla.
  • I recently watched Godzilla Minus One, honestly I liked it more than all the newer Godzilla movies with other titans

  • Deleted
    *Permanently Deleted*
  • Apparently not, I'm not as chronically online so I'm like still in 2015 era, heck I recently ditched all my playlists and started listening to songs from 1960s like Elvis Presley

  • Deleted
    *Permanently Deleted*
  • Never heard of that subreddit, then again I wasn't on Reddit for long when the API migration began

  • Deleted
    *Permanently Deleted*
  • I identify as an attack helicopter, will AI figure that out?

  • Sure Firefox
  • Gotta own a data center for your 3 million tabs

  • Get rid of those angry, masculine mannerisms
  • I deleted 5 seconds after posting because it was stupid, I bet you are the only one who actually seen it from notifications or the like.

  • Why is zoom so insane when you double tap on images?

    When you click on an image and double tap to zoom, it zooms to the microscopic level or is it just me?

    11
    Opensource app for mapping ps4 controller to android

    I got a dualshock 4 controller for $10 that had pretty bad joystick shaking that I just opened up and cleaned really well, which (mostly) fixed it. I tried playing some games on PC, but I want to try some stuff on my phone now, couldn't find an app that wasn't crashing or that didn't require a mac/windows pc to work, so I want to see if someone out there knows of an app like that. My phone is a OnePlus 9 running android 14.

    If there is nothing good out there then it's cool, just wanted to try for fun and I know asking on forums is better than whatever some search optimized article or a 5-year-old reddit post can offer.

    3
    Need help finding case thumb screws

    I got a Corsair 5000D airflow case from a friend for free but it is missing all the four screws that hold the side panels on the back. All the screws I can find on the internet are the short version that don't have enough reach.

    This screw is from my own PC case.

    Edit: image with the short version that I was talking about

    !

    17
    Looking for Notes App for Android & Linux

    I am trying to slowly de-Google-ify myself by moving to open source apps, I wanna ditch google notes and evernote. I tried obsidian, standard notes, and joplin, I liked using obsidian on PC and standard notes looks nice on android but obsidian you need to pay to have sync and standard notes doesn't do markdown unless you pay (are plugins only on PC???). Joplin has most features I need but I don't like how it looks/feels on android (haven't tried in PC yet)

    Basically what I want the most in a notes app is offline with sync capability for phone and PC, would be nice to make folders for notes like notepads on evernote, and md is a big plus but I can live without it. I would love if I could use something like proton drive for cloud sync and wouldn't mind paying for obsidian if it was cheaper cuz $8 per month is too much for my minimum pay and I didnt see any cheaper plans.

    EDIT: If no one has any better suggestions, I am thinking of trying to setup obsidian with syncthing.

    47
    I come to this community to seek help with my discord js bot and the cursed /command

    I am part of a team that runs a small wiki for a game 99% of the population never heard of (don't ask me what it is), so I wanted to make a discord bot that used our API to pull info quickly, how it works is you do /search name:[enter name of item] and you get a list of, at most, the top 5 search results with emojis at the bottom to react with, then the bot should spit out another embed message with item description and stats, etc. The issue is that for the life of me, I can't seem to make the bot recognize what emoji the user has selected, as it always just returns '0' emojis selected. I am noob at JS, plz help

    Here is what I got: `

    async execute(interaction) { const query = interaction.options.getString("name");

    let itemData;

    try { // Get data from api const itemAPIList = await fetch( the link for our api, not important q=${query} ).then((res) => res.json()); itemData = itemAPIList.data;

    const emojis = ["1️⃣", "2️⃣", "3️⃣", "4️⃣", "5️⃣"];

    // Check if itemData from api is not empty if (itemData.length > 0) { // Create the embed message const itemEmbed = new EmbedBuilder() .setColor(0x00ff80) .setDescription( "React with the corresponding emoji to select an item" ); // List out the top 5 results from api with an emoji next to it for (let i = 0; i < 5 && i < itemData.length; i++) { itemEmbed.addFields({ name: ${emojis[i]}: ${itemData[i].name}, value: " ", }); } // Sends the embedded message const sentItemList = await interaction .reply({ embeds: [itemEmbed], fetchReply: true, }) .then(async (itemListMsg) => { // Reacts to the message with correct number of emoji numbers for ( let i = 0; i < emojis.length && i < itemData.length; i++ ) { await itemListMsg.react(emojis[i]); }

    // Filter for checking if emoji and user are correct const collectorFilter = (reaction, user) => { return ( emojis.includes(reaction.emoji.name) && user.id === interaction.user.id ); };

    const collector = await itemListMsg.createReactionCollector({ filter: collectorFilter, time: 5000, });

    collector.on("collect", (reaction, user) => { console.log( Collected ${reaction.emoji.name} from ${user.tag} ); });

    collector.on("end", (collected) => { console.log(Collected ${collected.size} items); }); }); }

    `

    3
    Anyone try PXN V9 on linux berfore?

    Never played any racing sims before and thought to give it a try, I won a pxn v9 set off an auction for $35, but I can't seem to get it to work, the game I'm trying to play is RaceRoom. I am on Linux mint 21.2

    lsusb -t output:

    /: Bus 06.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/2p, 10000M /: Bus 05.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/4p, 480M |__ Port 2: Dev 2, If 0, Class=Human Interface Device, Driver=usbhid, 12M |__ Port 2: Dev 2, If 1, Class=Human Interface Device, Driver=usbhid, 12M /: Bus 04.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/2p, 10000M /: Bus 03.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/4p, 480M |__ Port 1: Dev 2, If 0, Class=Human Interface Device, Driver=usbhid, 12M |__ Port 1: Dev 2, If 1, Class=Human Interface Device, Driver=usbhid, 12M |__ Port 2: Dev 4, If 0, Class=Vendor Specific Class, Driver=, 12M /: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/4p, 10000M /: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/10p, 480M |__ Port 5: Dev 2, If 1, Class=Wireless, Driver=btusb, 480M |__ Port 5: Dev 2, If 2, Class=Wireless, Driver=, 480M |__ Port 5: Dev 2, If 0, Class=Wireless, Driver=btusb, 480M |__ Port 6: Dev 3, If 0, Class=Hub, Driver=hub/4p, 480M |__ Port 7: Dev 4, If 0, Class=Human Interface Device, Driver=usbhid, 12M

    2
    Good Game Cloner for android

    I would like to know if there is a good open source project that let's me run a copy of a game on my phone without crashing or bugging out after a day or two, nothing on the app store works well enough. I just want to enjoy multiple accounts on an old 32bit mmorpg from 2013-2014.

    11
    Shady_Shiroe Shady_Shiroe @lemmy.world

    I'm not based or up to date with times, an ignorant fool who lives on a tiny planet.

    Posts 82
    Comments 243