woah holy shit a bio?

  • 3 Posts
  • 315 Comments
Joined 1 year ago
cake
Cake day: June 30th, 2023

help-circle







  • Of course it’s theatre. The GOP won’t approve it. The show now is to prove how ALL of the GOP is both complicit in corruption AND traitors. This is what we call a link. Something people have to actively work around in their heads.

    If they vote GOP, they now vote for people who are ok with children hospitals being bombed by the Russian military. If they vote GOP now, they are OK with the fact that the wealthy can make donations for or against ANYTHING they want - including dismantling their entire life because of something they didn’t think about before. The rest of us always knew it, but they had done a better job of hiding it.

    Now it’s out there. Now there is a link. Now you have to say “I am ok with being a traitor for a party that doesn’t have my best interests in mind.”

    So yeah it’s theatre. It’d be pretty stupid to not make this big.





  • Instead of just getting the down votes, I’ll explain why that wouldnt work.

    1. The AI itself cannot decompile it without the same tools I would use. The AI would then end up with the same starting spot I have.
    2. Current LLMs do not know how to interpret code logic, and would likely make mistakes in Syscalls, register addresses, and instructions.
    3. Assembly languages themselves have nothing further than instruction sets. I’m sure there are ways to organize it in the super rare case of actually writing assembly, but not to the effect of object oriented or functional programming.

    Lastly, other comments have pointed out decompiled code is extremely expensive to analyze. The output from whatever we decompile would easily exceed the input limits for all existing LLMs.


  • Variable names, class names, package structure, method names, etc. won’t normally be maintained in the disassembled code. They are meaningless to the CPU, and just a series of memory addresses. In cases where you have method names being mentioned, it’s likely a syscall, and it’s calling a method from an existing library. I’m not familiar with VB, but at least in .Net and .Net Framework, this would be something like the System.Collections.Generic providing the implementation for List<string> and when .Sort() is called, it makes the syscall to that compiled .dll.