taaz

joined 2 years ago
[–] taaz@biglemmowski.win 5 points 1 month ago

For cli oriented folks, ncdu is a great cli alternative of QDirStat

[–] taaz@biglemmowski.win 3 points 2 months ago

They might try anyway or push the egg outside, we had a weird case of finding multiple cracked pidgeon eggs in front of our high-rise apartment over the last few weeks.
Could be a different species doing it though, not a pidgeon nerd lol

[–] taaz@biglemmowski.win 21 points 2 months ago (1 children)

Yeah Nick (the guy behind this) is one of a kind (in a good way) lol

Also recommend checking out this demo of NotCurses https://www.youtube.com/watch?v=cYhZ7myXyyg it's great

[–] taaz@biglemmowski.win 4 points 2 months ago

It's okay-ish with stable volume enabled in the yt player.

[–] taaz@biglemmowski.win 4 points 2 months ago

I've always used just Green With Envy but this seems just a bit more polished and active, nice

[–] taaz@biglemmowski.win 15 points 2 months ago* (last edited 2 months ago)

Is this a try at some joke I dont get? Flared != flat?

This is what flared usually looks like

[–] taaz@biglemmowski.win 2 points 3 months ago (1 children)

Usually did WH stuff (solo, then for a long time with a corp), with some NPSI at the end before I stopped playing.

Null is probably my least tried content (well except for roams), usually because it seemed like you have to be very involved - I like more of laid-back, relaxed playstyle, make some money, brawl it out - loose money, repeat.

[–] taaz@biglemmowski.win 2 points 3 months ago* (last edited 3 months ago)

Not a frontend dev but whenever I need to make something web, I just use Bootstrap. I believe that was the way to do web UIs after jQuery and before all the big frameworks.
So, maybe look into bootstrap guides? It's basically html+css+js with premade goodies (at least it was last time I had to do web stuff).

[–] taaz@biglemmowski.win 3 points 3 months ago (1 children)

Not gonna lie, this is tempting.

I have "just" two 27"s where one is primary (240hz) im front of me and other is a secondary on the right side for stuff like discord or documentation etc.

Though I am very unsure about the curve. My primary is curved and it kind of sucks for media.

Also how do you game on something like this?

[–] taaz@biglemmowski.win 5 points 3 months ago* (last edited 3 months ago)

My instance is close to two years old now, and on average has had about 2 MAU, with no (local) communities.

Currently we have about 700 active federated communities (that had any federated activity within last month), out of 900.[^1]

The on-disk size of both lemmy and pict-rs database[^2]

postgres@postgres:~$ pwd
/var/lib/postgresql
postgres@postgres:~$ du -sh data/
31G	data/

I use pict-rs with S3 provider and the bucket size is currently at 22.82 GB (read: external network storage, this is probably mostly just thumbnails[^3]).

So in total there is almost 54GBs spent just for lemmy.

So assuming you have 100G remaining after system stuff and dedicate that box only to lemmy (and pict-rs media files) and use it mostly for yourself [^4], you should be alright for about 3-4 years (assuming that I am gaining about 27GBs total per year and that you will federate with a similar amount of a similarly active communities).

If you offload media storage to a hosted S3 bucket[^5] then you should be good for a lot longer as you will only need space for the postgres databases.

[^1]: The rest is either dead (instance gone) or no one is subscribed to them anymore (as such my instance is not getting any new content from there: neither posts nor comments or votes)

[^2]: Postgres itself reports about 2G less, don't really know why but I am guessing it has something to do with the filesystem being btrfs

[^3]: Edit: I currently do not use the "privacy" mode of pict-rs where it proxies all content (so that a bad guy can't post an image link to his server and unmask users IPs), this would increase the S3 size and slightly postgres size.

[^4]: You should use Lemmy Subscriber Bot to automatically federate little bit of random communities so that public All feed is not exact copy (minus NSFW comms) of whatever you as the only user subscribe to.

[^5]: Though keep in mind that S3 buckets eventually cost some money too, for example Cloudflare R2 charges $0.015 per 1GB, above the first 10GBs.

[–] taaz@biglemmowski.win 6 points 3 months ago* (last edited 3 months ago) (2 children)

Usually, you would use a formatter anyway - it's good to know the standard way but for day to day coding I just have a shortcut bound that runs ruff format (you can even have it done automatically on file save).

 

For me, the most interesting point was the short mention of open sourcing Factorio (around 2:40). Kovarex seems to be very much open to the idea, he mentions that (as an approximation) maybe two years after the DLC after things calm down ...

 

Small disclaimer this is from the txt log which is not exactly complete, there are few pixels missing here and there.

One second of the video is about 30 minutes of drawing (one frame contains 1 minute of drawing, 30 frames per second)

Also a little bit of bragging - couldn't resist the challenge and got this all glued together in Python! Which is obviously a valid tool for this considering the rich data processing ecosystem.
Well maybe except the video generation part... definitely except the video generation - Pyav - bindings for ffmpeg, are really badly documented, luckily they have at least good enough examples.

The short story of how:

  • little bit of python script to convert the txt log into csv
  • from csv to pandas, there I made a few cleaning passes to get the "format" just right (mainly dealing with the mod_fill action)
  • pyav, ffmpeg and the world of video - oh boy:
    • for each one minute of drawing data
    • replay them over the canvas (numpy RGB array)
    • embed/copy the canvas into the video frame (another ndarray)
    • (add the timestamp above the canvas - cv2)
    • invoke pyav magic to mux/append it into the video
    • hope that your numpy array slices, splices, "broadcasts", pyav codec options and stream configurations are correct. Otherwise, watch as you end up with 1GB+ of mp4 file - 3 hours to watch whole (1s/30fps) with really bad resolution or inverted/wrong colors:)

If anyone wants to tweak this or has ideas how to make this better just hit me up. Can also put the code somewhere if wanted.

What a wild ride ha!

 

cross-posted from: https://biglemmowski.win/post/1465956

If you are using https://github.com/wereii/lemmy-thumbnail-cleaner please stop and disable it as soon as possible.

We have found a security issue that allows any user to make LTC delete any locally hosted image.

I will be posting more details soon and editing this to include the information.

E: https://github.com/wereii/lemmy-thumbnail-cleaner/issues/10

79
submitted 1 year ago* (last edited 1 year ago) by taaz@biglemmowski.win to c/lemmy@lemmy.ml
 

If you are using https://github.com/wereii/lemmy-thumbnail-cleaner please stop and disable it as soon as possible.

We have found a security issue that allows any user to make LTC delete any locally hosted image.

I will be posting more details soon and editing this to include the information.

E: More information here https://github.com/wereii/lemmy-thumbnail-cleaner/issues/10

 

So, finished RoW, I did not read the halfs (yet?) Edgedencer & Dawnshard - instead I cheated a bit and looked up the summary for these (Dawnshard mainly) as I was too hungry for more "spice" of the SA story so I wanted to continue with next SA book straight away. I did read all of the current Mistborn series we have before SA though about a year or something ago

So I do have some notion about the...shards, investiture and stuff but... I am still confused how the Cosmere magic works in general - I know that magic (Investiture) is different for each planet/system of the Cosmere and guessing it has something to do with the specific shards of that system... ?
⠀⠀

Well, if anyone wants to chime in with pointers I would be very thankful!
Meanwhile I will be scouring the wiki and WoBs to get a better picture.

 

The server does not even respond to pings but I can see some comments/posts from the instance made few days ago.

 

I think this should be seen by more people, it's also not just a US thing.

view more: ‹ prev next ›