elvith
@elvith@feddit.org
- Comment on 2 days ago:
Yeah, but IIRC the definition of something is an official act is still ambivalent and thus open to interpretation by the court?
- Comment on 3 days ago:
Depends. Which president are we talking about?
- Comment on Microsoft is withdrawing support for older printers' drivers 3 days ago:
lp0 on fire
- Comment on it isn't 4 days ago:
If it fits, it sits
- Comment on 'What a great way to kill your community': Discord users are furious about its new age verification checks — and are now hunting for alternatives 1 week ago:
Im using SchildiChat on Android
- Comment on 1 week ago:
Although I cannot remember how to do it “correctly” I have a suspicion whats wrong with your post:
Mastodon just has a “text” for the post, some mentions and maybe media attached to it.
Lemmy also features a post title and an URL. IIRC the first paragraph of your post get converted to the title, the remainder is the post body (maybe you need to put the desired link second?!). I guess your text in the first paragraph is too long to fit in the title and the post is discarded.
Try something like this:
ICE Tucson, AZ - 2/7/26 Fascist paramilitary invaders deployed... Source: reddit.com/...
- Comment on 1 week ago:
IIRC you must be following the community with your Mastodon Account to be able to post there. At least that was the problem, when I tried it the last time.
- Comment on Spotify puts the brakes on Developer Mode with stricter API rules 1 week ago:
After the fiasco with kids and managed accounts (especially on Germany) and many discussions in the community about how to migrate to other services, I don’t like reading this headline
- Comment on The cat is not impressed 2 weeks ago:
Not now, Richard!
- Comment on VS Code for Linux may be secretly hoarding trashed files 2 weeks ago:
Help, how do I get out!!!
^/s^
- Comment on When you're smarter than the teacher that wrote the test 2 weeks ago:
Number, not digit. But I see what you mean.
- Comment on Long live the king 2 weeks ago:
Color? In my movies? That’s woke!
^/s^
- Comment on Notepad++ Hijacked by State-Sponsored Hackers 2 weeks ago:
From my understanding: Basically the attackers could reply to your version check request (usually done automatically) and tell N++ that there were a new version available. If you then approved the update dialogue, N++ would download and execute the binary from the update link that the server sent you. But this didn’t necessarily need to be a real update, it could have been any binary since neither the answer to the update check nor the download link were verified by N++
- Comment on Anyone? 3 weeks ago:
Wait until they decide to seize it
- Comment on ICE takes aim at data held by advertising and tech firms 3 weeks ago:
Everyone always complains how the Germans are so backwards and why most of them are “backwards” and insistent about having data protection and privacy rights.
Maybe, just maybe the US is starting to learn why we’re like this.ay, just maybe it’d been better to learn from our past than repeating it. But this way works, too, I guess?
- Comment on Microsoft CEO warns that we must 'do something useful' with AI or they'll lose 'social permission' to burn electricity on it 4 weeks ago:
In my pocket
- Comment on Nova Launcher gets a new owner and... ads 4 weeks ago:
I bought it back then in the Android… 2.x or 4.x days as the launcher on my phone sucked. Hadn’t much complaints about the stock launchers of my next few phones and forgot about it until I got a Pixel. Wow, the pixel launcher was a complete letdown. Especially the forced unremovable search bar that’s completely useless for me and takes up so much real estate on the screen. Then I couldn’t remove the at a glance widget either (IIRC a big back then, but… Yeah…). I get it, that it’s nice, but… Again: Too much real estate for a clock, a totally unreliable weather info (at least in my area?) and info about the currently playing song.
Searched launchers, remembered Nova and was surprised it was still around and had all the features I wanted. Bonus: it allows me to resize widgets.
I tried Octopi, when the owner change news for Nova hit, but was so used to having folders on the dock from my previous phones and Nova, that I couldn’t use it without that feature. So I tried lawnchair which is basically the pixel launcher but with exactly the features I missed in the original. I can get rid of spotlight and can get rid of the search bar. Widgets are resizable. Also the dock features folders. And I can control the grid size and adjust it to my liking.
Niagara was also recommended to me, but… IIRC in the end it felt to opinionated about the workflow and immediately lost me. Not what I’m looking for in a launcher. (Not saying it’s bad - just that it’s not for me).
- Comment on What next, power supply shortages? 5 weeks ago:
And my gaming porn rig!
- Comment on Microsoft Confirms Windows 11 January 2026 Update Issues, Releases Fixes 5 weeks ago:
Hey Copilot. Users are reporting errors with the latest patch we released. Among them are a problem with RDP credential prompts, hanging/not completing shutdown and long black screens on boot.
Oh, you’re right. That was my mistake. Let me develop, compile and deploy a new set of patches for you!
Thinking…
Changing shutdown.c… Changing random file.c… Introducing more bugs for a future fix…
- Comment on Such a dreamy guy 5 weeks ago:
Jizzizzippi?
- Comment on Microsoft Office has been renamed to “Microsoft 365 Copilot app” 1 month ago:
Pre AI: Hey, we have 5 billion subscribers to our office suite!
Start of AI: Hey, we have 5 billion subscribers to our office suite and 3 subscribers to our AI offering (currently in their free testing period, plans already precancelled)
Now: Hey, we have 5 billion subscribers to our AI services (that also features an office suite)
- Comment on We'll probably never see a Grand Theft Auto set in a futuristic city like GTA 2 because the team "hated it": "People didn’t connect with the game or its city" 1 month ago:
Imagine if Microsoft blocked games being released onto XBox if they don’t have a certain amount of AI generated assets and/or “live generated content”.
Shhhh! Don’t tell them this idea, please!
- Comment on Do Costcos usually have an ATM machine? 1 month ago:
I’ll check in with Redundancy Department of Redundancy Department then
- Comment on Silent Hill decompilation just surpased 80% 1 month ago:
Im inclined to answer with “Yesn’t”
Yes, the problem is readability. You can get “better” code of you know the exact tooling and settings for compilation, as you can then better guess what optimisations and tricks were used (by the compiler) and you may be able to “undo” them. There are so many places where this will only let you make guesses. You write a loop in your code, the compiler removes the loop and replaced it with another construct that may be a bit faster to execute, but may be way harder to understand - or tedious to change if you need to edit it especially if it’s not a simple change (character can now run faster!) but needs new functionality that would completely break this optimisation (but it’d be trivial to add in the original code).
Also all context is removed. You won’t work with code like this:
(Both pseudocode, not bothered to make a real example that maybe even compiles)
if keyPressed(MOVE_RIGHT){ player.speed = min(player.MAX_SPEED, player.speed + player.acceleration*frametime) } else{ player.speed = player.speed * player.MOVEMENT_DAMPENING * frametime }
You’d get something like this:
int *fi93836290= 0x7363728 int *fi22425 = &fi93836290+0x23 fi22425 = fun7362782(0x63627)? fun42638(...) //and so on
- Comment on Silent Hill decompilation just surpased 80% 1 month ago:
I don’t know.
The gist is… When you write a program/game/… You write source code and then compile it - that means translating the source code into machine readable code. While certain things do usually get lost in this process (e.g. function names, variable names, etc.) you can see the resulting machine code and make a valid assumption about how the original code looked like. This is not a 1:1 reconstruction, but will yield code that should compile to the (basically) same result as the original game.
If you hit a Jackpot, you find a version of the program/game that was used for testing. Those often contain many pieces of information that would otherwise be stripped from the end result (e.g. aforementioned variable names, function names and so on). If not, it’s a puzzle solved with guess work and experience.
If you know some specifics about the game (which language was it written in, what compiler was used in which version,…) you can get some better results, as you can take patterns in the machine code and translate them back into what the original code was probably looking like based on the tools used.
In the end it’s sadly almost everytime still a manual process in which you look at the resulting source code, make some educated guesses based on patterns that are usually used when programming and specific functions that are probably contained in a game and then check those assumptions by changing the code and see if your changes affect the part of the program you thought you were dealing with.
Say you assume a specific variable/value is the maximum walking speed of the character. Then you change it and try to play the game and see if you can walk faster now. If so, label this value accordingly and go on to the next unknown piece of the puzzle.
- Comment on Setting up VPS (finally) 2 months ago:
And don’t listen to the promises of big companies with billion-funds, they cook with water like the rest of us.
Oh, yeah, I remember when one of our super important core systems was migrated to SaaS. My system was interfacing with it, so I got notified about the migration to make a plan. I basically told them: “We’re using $API to connect to your system. Tell me the new hostnames and IP ranges and ports and I will configure the firewall on our end. Also, our connector for your migrated system will be deployed in $IP-range so please allow these inbound connections in your firewall.”
Half a year later I got a message: “Yeah, we just found out, that $SaaS-provider never configured the firewall after our tickets and everything is reachable from the public internet. We’re forcing them to lock down the system now. Can you please tell us again from where you connect to us?”
- Comment on Setting up VPS (finally) 2 months ago:
If you put any data anywhere, assume it will be contained in a breach in the future. Blue teaming is hard. You have to be perfect every time. Red teaming is easy. You just have to wait till the blue team makes a simple mistake…
Mails sent to a company? Their or your mail account will be breached one day.
Account details on a webpage? Their user database will be leaked.
Your cloud drive, ect.
Even your data on your NAS at home or on your PC could get accessed in one way or another, you’re just a zero day and an unfortunate click away from disaster.
On the upside, as long as you do not have a target on your back, patch your stuff in a timely manner and keep some hygiene in configs, secops … You should be fine, as most automated attacks aren’t that high level and target the low hanging fruits. But that doesn’t make you completely safe.
- Comment on big opportunity 2 months ago:
Whips! Traps! Big round boulders rolling in your direction trying to crush you! Nazis you can punch!
- Comment on xkcd #3182: Telescope Types 2 months ago:
Instructions unclear, drinking straw stuck in telescope.
- Comment on Never tried it but it sounds like fun 2 months ago:
There are 69 reasons why I don’t need a flexible spine.