woah holy shit a bio?

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

help-circle








  • Edit: I was off by a big order of magnitude, see my reply to this comments reply.

    No. You are also forgetting the density of the sun increases with depth. For instance, if it’s heading for the core - the solar core is about 155g/cm^3. Where as earth is 5.5g/cm3.

    Essentially, going 0.9C is going to impact the sun, and we can say the incoming earth object is going to classically hit with 4.9*10^24 J.

    At this size and and energy, we compare it to the rest energy of the entire sun (this isn’t how we would actually do it) but the sun has a total resting mass energy equivalence of like 1.8x10^41 J.

    The energy of the earth like object impacting the sun is 0.000000000000000027%.

    The sun effectively doesn’t even know it happened.




  • My ex wife prefered snap chat.

    So you know, I just happened to get traumatized by another dudes dick in my wife’s phone after her nude photos I’ve never seen. I don’t know who he was other than her admitting it was a guy she cheated on me with 5 years ago.

    No I’m not over it. Its been over a year, and because of the toxic nature of our relationship I don’t have confidence to go out there and meet other people. It’s fine, I’m fine. I’ve got video games and a shower to cry in.

    But fuck smartphones. I hate this goddamn technology more than I hate my ex.


  • My parents didn’t let my brother or I have nerf guns or the good 90s super soakers.

    As an adult with my own son, I can confirm we enjoy some nerf guns, but those are pretty meh compared to the non-nerf-brand Darth blasters they have now.

    We got 10 shot semi-auto blasters, we got 6-shot pull back revolvers, a giant ass automatic yellow machine gun, we got two fully automatic (and loud as fuck) 20 dart blaster rifle things, and he got a fully automatic mini gun dart blaster from Santa.

    My ex hates nerf blasters with a passion, and I still haven’t gotten those back at my place yet



  • 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.