[-] [email protected] 4 points 1 day ago* (last edited 1 day ago)

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.

40
submitted 1 day ago by [email protected] to c/[email protected]

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

[-] [email protected] 13 points 1 day ago

I want to comment more and more, but I need to stop myself half the time, because I know it doesn't add anything, not funny, or will just get hated on cuz I'm ignorant of most situations/people

[-] [email protected] 7 points 1 day ago

Forget "Netflix and Chill", it's "Gimp and Friends" now

[-] [email protected] 8 points 1 day ago

Man, I love BIG servers, I hate the power bill that comes with it.

Fine, my broke ass only has the budget for a few tiny computers anyway. I pick up too many hobbies with the excuse that it's a great skill for future sustainablity like self hosting, programming, 3d printing, and micro soldering.

[-] [email protected] 2 points 2 days ago* (last edited 2 days ago)

I nuked my system so many times, everything from not knowing what I was doing to using disk partion when tired and forgetting to select the usb.

Good thing my intro to Linux was through servers, I have a NAS with all my work files backed up as well as a second spare SSD that clones main SSD once a week.

[-] [email protected] 5 points 2 days ago

My mind is playing tricks on me, I keep seeing and unseeing a hair strand in his fingers.

[-] [email protected] 3 points 2 days ago

I'm not a terrorist, I'm a terrier-ist, I breed terrier dog. If not trained, an attack is imminent.

[-] [email protected] 10 points 3 days ago

I'm having flashbacks of... fades to black

Ralof: Hey, you. You’re finally awake. You were trying to cross the border, right? Walked right into that Imperial ambush, same as us, and that thief over there.

[-] [email protected] 19 points 4 days ago

Is this account a bot? Joined a day ago and posting same memes in multiple communities. I don't see for what reason someone would bot like this though.

OR maybe the user recently learned of Lemmy and is unloading memes, idk

[-] [email protected] 98 points 5 days ago

Without windows and macos, we would all be divided on what is the better distro, but thanks to shitty corpo trash, we can unite to hate them together. Fuck windows!

709
submitted 2 weeks ago by [email protected] to c/programmer_humor
6
submitted 2 weeks ago by [email protected] to c/[email protected]

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.

211
ʘ⁠‿⁠ʘ (lemmy.world)
submitted 1 month ago by [email protected] to c/[email protected]
228
submitted 1 month ago by [email protected] to c/[email protected]
40
submitted 2 months ago* (last edited 2 months ago) by [email protected] to c/[email protected]

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

530
submitted 2 months ago by [email protected] to c/[email protected]
787
Back for seconds? (lemmy.world)
submitted 2 months ago by [email protected] to c/[email protected]
581
Lurkers be like (lemmy.world)
submitted 3 months ago by [email protected] to c/[email protected]
75
submitted 4 months ago* (last edited 4 months ago) by [email protected] to c/[email protected]

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.

8
submitted 4 months ago* (last edited 4 months ago) by [email protected] to c/javascript

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`);
                    });
                });
        }

`

475
submitted 5 months ago by [email protected] to c/[email protected]
view more: next ›

Shady_Shiroe

joined 11 months ago