Blog

Pixelfed leaks private posts from other Fediverse instances

Pixelfed leaks private posts from other Fediverse instances March 25, 2025 When following someone on a different server on the Fediverse, the remote server decides whether you are allowed to do so. This enables features like private accounts. Due to an implementation mistake, Pixelfed ignores this and allows anyone to follow even private accounts on other servers. When a legitimate user from a Pixelfed instance follows you on your locked fediverse account, anyone on that Pixelfed instance can read your private posts. You don’t need to be a Pixelfed user to be affected. Pixelfed admins should update to v1.12.5 ASAP,

Mini Cozy Room : Lo-Fi – Mini cozy room

Home Product Mini Cozy Room : Lo-Fi Decorate your own cozy workspace! 『Mini Cozy Room : Lo-Fi』 combines relaxing Lo-Fi music and room decoration into one productivity game. Cute avatars and pets will keep you company, while desktop Pomodoro timers, notes, and to-do lists boost your efficiency. Free Options Meet the team Show more Show more About this launch Mini Cozy Room : Lo-Fi Mini cozy room Follow 144 Points 6 Comments Mini Cozy Room : Lo-Fi by was hunted by in Games. Made by . Featured on March 27th, 2025. is rated 5/5 ★ by 1 user. This is

Converting arbitrarily large CSVs to Parquet with R

In this recent post, we have used Polars and DuckDB to convert a large CSV file to Parquet in steaming mode – and Python. Different people have contacted me and asked: “and in R?” Simple answer: We have DuckDB, and we have different Polars bindings. Here, we are using {polars} which is currently being overhauled into {neopandas}. So let’s not wait any longer! Run times are on a Windows system with an Intel i7-13700H CPU. Generate 2.2 GB csv file We use {data.table} to dump a randomly generated dataset with 100 Mio rows into a csv file. library(data.table) set.seed(1) n

changing the code on a cd-disk bought game

so im not really sure if this is the right place to ask this. if not, please say so, and if you know where to ask feel free to send me there. I recently bought an old school game (mijn dierenkliniek, a belgium/dutch game) that i played a lot during childhood. however, it seems like it has some bugs that i find really annoying. i am not an amazing programmer, but if the code isnt spaggethi coded i can usually read it and make tweaks. problem is, i have absolutely no clue how i can acces the code, let alone

Comprehensive Guide to Building a CI/CD Pipeline in AWS with GitHub

Introduction CI/CD (Continuous Integration/Continuous Delivery) pipelines are foundational to modern software development, enabling teams to automate building, testing, and deploying code. Benefits include: Faster Delivery: Automate repetitive tasks to release updates rapidly. Improved Quality: Catch bugs early with automated testing. Reduced Errors: Minimize manual intervention in deployments. Scalability: Easily adapt pipelines to handle growing workloads. Step 1: Prepare Sample Code Create a Simple Web Application Step 2 Push Code to GitHub Create a new repository on GitHub. Commit and push your code: git init git add README.md git commit -m "first commit" git branch -M main git remote add origin