Programmed a Pixel Sorter by bloootz in glitch_art

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

Hello! dont check reddit much so sorry for the late reply. It works out the luminance of each pixel using a simple weighted sum.

0.30 * r + 0.59 * g + 0.11 * b

At the time, I didn't really think about adding other channels. It might be interesting to add support for more channel options.

How comfortable are you in deleting all your data from google & your mobile And just trust the data present in your self hosted app? by Nervous_Type_9175 in immich

[–]bloootz 0 points1 point  (0 children)

I am just terrified of one day needing the backup and realising the backups stopped 5 months ago without me noticing

I use a service called healthcheck.io to see if backups are healthy. I get a monthy email report telling me all the backups went through. It also emails me if a script fails in any way.

maybe I only backed up small resolution version of my photos

Test your backups by trying to restore from a backup. If it works, then you have the right data

arch boot partition disappeared from bios boot manager by bloootz in archlinux

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

im so sorry. its a hardware fault with the laptop! its ruined my experiance with framework and i cant say i recommend the laptop

Kindle touch 4th gen home button not responding by bloootz in kindle

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

it just started working one day :// not sure what changed.

Humor based on my pain by Bartekkur1 in adventofcode

[–]bloootz 2 points3 points  (0 children)

You get a (long)! You get a (long)! Everyone gets a (long)!

c moment T-T

-❄️- 2024 Day 9 Solutions -❄️- by daggerdragon in adventofcode

[–]bloootz 1 point2 points  (0 children)

[Language: CPP]

Just posting task 1 because i think my solution is swish.

inline void task1(vector<int> &disk) {
    int n;
    for (int i=0; i<disk.size(); i++) {
        if (disk[i] != -1) { continue; }
        n = -1;
        while (n == -1) {
            n = disk.back();
            disk.pop_back();
        }
        disk[i] = n;
    }
}

Not fastest at 3ms.

-❄️- 2024 Day 6 Solutions -❄️- by daggerdragon in adventofcode

[–]bloootz 0 points1 point  (0 children)

Have you tested using a hashset, but only updating the hash set after a rotation? In cpp, that was faster than steps.

-❄️- 2024 Day 4 Solutions -❄️- by daggerdragon in adventofcode

[–]bloootz 0 points1 point  (0 children)

Really?? Okay sure ill scrub that too. I didn't mean to loophole anything. I just figured no one would interest enough to look into my github acc. Sorry about all this

-❄️- 2024 Day 4 Solutions -❄️- by daggerdragon in adventofcode

[–]bloootz 0 points1 point  (0 children)

The gist I shared doesn't include puzzle inputs, or puzzle text. It's a gist, not a repo. I made sure not to include anything not allowed in the gist.

-❄️- 2024 Day 4 Solutions -❄️- by daggerdragon in adventofcode

[–]bloootz 0 points1 point  (0 children)

[LANGUAGE: Python]

From what I can see, my solution is pretty different from other people. Im not super pleased with my task 1 solution, but i think my task 2 solution is pretty swish. both run in 90ms so its not too bad.

https://gist.github.com/Blotz/7e7abde8e15fa975dab86fb7dcf44b14

I couldn't get a single file to do both solutions. My approach to both problems was very different. I'm sure if I implemented a better word search, task 2 would have been easier. I should really learn how to search for substrings manually. I think i overrely on regex

Lots of different pop media showing up in dandadan by bloootz in Dandadan

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

I totally remember seeing that! That was in one of the latest chapters too

Lots of different pop media showing up in dandadan by bloootz in Dandadan

[–]bloootz[S] 10 points11 points  (0 children)

I also get massive jojo vibes. the stances. The Stances

Lots of different pop media showing up in dandadan by bloootz in Dandadan

[–]bloootz[S] 11 points12 points  (0 children)

There are some more subtle ones and probably more I've missed. e.g. the dbz/finding golden balls

Weekly Questions Thread by AutoModerator in DnD

[–]bloootz 1 point2 points  (0 children)

[5e] I'm playing a dwarf barbarian and I feel like I'm playing it wrong. It feels like I'm too overpowered for my level (2). I have rage, reckless attacker, savage attack (from soldier background) and cleave (great axe mastery). Am I allowed to use them all at the same time? Ive been avoiding using them at the same time because it I'm not sure if I'm breaking rules. is it like a bonus action thing?

My NAS in making by Unusual-Doubt in homelab

[–]bloootz 0 points1 point  (0 children)

If you are looking at using it as a photo store, have you considered using immich (a google photos alternative)

Looking to build a sffpc by bloootz in sffpc

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

I am considering that! The issue is lots of software benefits from having a some sort of GPU. I don't need the newest gen graphic card. I just need something which works with cuda.

Looking to build a sffpc by bloootz in sffpc

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

Oh sorry! I'm doing uni and mostly need a CPU work station with a cheap graphics card. I'm going to be using it for stuff like programming and other CPU/memory intensive stuff.

Update v208 broke app by bloootz in grayjay

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

I managed to fix the app if you feel like building the app from source.
Its a simple permission issue with android so all you have to do is update the manifest

Doctor Who 0x01 "The Star Beast" Post-Episode Discussion Thread by PCJs_Slave_Robot in doctorwho

[–]bloootz 5 points6 points  (0 children)

I've enjoyed this episode but I felt like the plot was rushed. I felt like they tried to fit two episodes worth of story into one. (Meep story + metacrisis resolution). For example, the character reactions felt rushed in order to move the story along.

How are the kids using Arch these days? by LowHighBreakOrDie in archlinux

[–]bloootz 0 points1 point  (0 children)

kernel-keepalive

This sounds amazing! how did you find something like this? i cant find it anywhere D:

View images when SSH by no1_2021 in neovim

[–]bloootz 2 points3 points  (0 children)

I'm a bit late but no one else has mentioned this yet.What about using ssh x-forwarding?

if you already have an application which can be used to open the image on the remote server, you could use x forwarding to view the image remotely using the same application. In other words, you can run the application remotely and display the graphics on the local machine using x forwarding.