User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 123
  6. 124
  7. 125
  8. 126
  9. 127
  10. 128
  11. ...
  12. 638
  13. 639
  14. 640
  15. 641

Posts by gadzooks

  1. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Peace, Love, Unity, Respect.
  2. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    I'm finna jack off y'all down?
  3. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Originally posted by mmQ Is that an emoji of a faggot wearing a cowboy hat and DABBING

    Precisely.
  4. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
  5. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Is Clarissa still with you?
  6. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Originally posted by -SpectraL This is where I tell you I am studying reactions to missing words sentences.

    "in".
  7. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Originally posted by Mud Hole Mania How come Lanny f-il-ters the word F-il-ter and jedis but not the N word?

    He's clearly a racist white nationalist

  8. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Originally posted by Japan-Is-Eternal had I of not been a hikikomori I definitely would have been a school shooter

    Back in ~2001, I would likely have been voted most likely to shoot up a school.

    Some classmates used to joke about me being "that guy".

    I used to joke back, though.

    I'm kind of amazed no one reported me.

    It really was a different time, I'll give you that.
  9. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Only seven words in before the Columbine references...

    And, of course, the rest was utter drivel as well.

    I agree with the title and first seven words, though.
  10. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Originally posted by Star Trek VI: The Undiscovered Country Yeah it is, objectively.

    I mean sex drive is basically insanity.

    Imagine paying to stick your tongue in a stranger's vagina.

    I should be segregated.

    Kinda this, tho...

    Going back like ~10-15 years, I've been looking for a way to "shut off" sexual needs.

    As long as it's reversible and medically safe for the most part, I'd SO be down.

    Not too long ago I was actually about to buy some depo-provera off the dark net.

    It's birth control for women, but apparently is also used on sex offenders to reduce sex drive.

    I'd SO take a year's worth and just step my career/money game up, hit the gym (although that low T would kill much of my gains), and then stop taking it and be, like, the beta of all betas...

    But:
    1. It's hard to come by.
    2. I want to absolutely ensure no long-term damage.
  11. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Okay this might be my favorite of all your... whatever these are...
  12. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Originally posted by Period Blood You're not really engaged to Christina Ricci

    wut
  13. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Originally posted by Period Blood Mountains are actually old stumps!

  14. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Banned from Tinder?

    How does that even happen?

    I've never used Tinder before, so I don't even really know how it works.
  15. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Originally posted by park police related: https://io9.gizmodo.com/this-biohacker-used-eyedrops-to-give-himself-temporary-1694016390

  16. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Originally posted by park police I've never given anyone a thanks. Not even on zoklet.

    weird flex but okay
  17. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Originally posted by aldra is it just the acetone fumes that get you 'high'?

    To be honest, I don't even think straight up glue induces any kind of high/buzz. Or if it does, I've never experienced it first hand.

    That being said, I am a big fan of nitrous (N2O), and even amyl nitrite (although I haven't done it in well over a decade I'm pretty sure).

    I'd absolutely love to try huffing (diethyl) ether. I haven't yet, though. But one day...
  18. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    It's much better sniffed.
  19. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Not a lot of people are particularly proficient with assembly. I mean, I fucked around with it a bit a couple years ago simply as an educational exercise. It actually does serve a pretty strong educational purpose. When you realize that there are really only a couple dozen commands (pretty much all simple arithmetic at that), combined with some very simple branching ("GOTO", in a sense - AKA, "calling functions"), as well as ye olde hexadecimal memory storage (for assigning variables, and also constructing much more complex data structures)... It's kinda fascinating to just realize that's what all programming is reduced to once it's compiled.

    That being said, assembly still looks mostly like gibberish to me. I recognize the general structure, as well as the ol' "MOV x to y register" type stuff.

    Originally posted by Sophie This gave me the following as output.


    .file "example.c"
    .text
    .globl shellcode
    .data
    .align 32
    .type shellcode, @object
    .size shellcode, 413
    .LFB6:
    .cfi_startproc
    pushq %rbp
    .cfi_def_cfa_offset 16
    .cfi_offset 6, -16
    movq %rsp, %rbp
    .cfi_def_cfa_register 6
    subq $48, %rsp
    movl %edi, -36(%rbp)
    movq %rsi, -48(%rbp)
    movl $0, %r9d
    movl $0, %r8d


    Which i thought kind of looked like Asm, but the old shellcode from the C file looks all kinds of messed up. Not quite sure if that's how it's supposed to look. Because usually when i have a Binary Asm file it looks like below.


    xor eax,eax
    push eax
    push 0x22657841
    pop eax
    shr eax,0x08
    push eax
    mov eax,0x1d4f211f
    mov ebx,0x78614473
    xor eax,ebx

    All I can say is that that first bit of code looks exactly like the kind of assembly code I wrote when I was experimenting with it.

    The latter snippet is definitely different (to me).

    But it might just be that the exact same code can just be represented quite differently, depending on what stage of the compilation/assembly OR disassembly it is at.

    Your shellcode might be different from what you expect it to look like for that reason alone.

    BUT, you might want to make sure you're running things in a sandboxed environment during initial testing. I just know I wouldn't really 100% trust some straight hexadecimal code, even if it was produced via a relatively trusted pipeline.
  20. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    In all seriousness, I would be pretty hesitant myself about adopting a goat as a pet in an apartment situation.

    I've never owned a goat myself, but I simply imagine they need (or, at least, would really prefer) to have a sizeable plot of land to frolic around in.

    Also, one thing I will warn you about regarding new pet ownership in general, and especially when it is a more obscure pet (not the traditional cat or dog scenario), you may also want to consider just how much noise they might potentially make.

    One night, over a decade ago, after some heavy drinking and a bit of MDMA usage with a few friends, one of them finds a duck and decides to bring it back to my place. The thing simply would not shut up all night, and it not only kept me up, but I also got some major complaints from my landlord the next morning (it was a basement suite).
  1. 1
  2. 2
  3. 3
  4. ...
  5. 123
  6. 124
  7. 125
  8. 126
  9. 127
  10. 128
  11. ...
  12. 638
  13. 639
  14. 640
  15. 641
Jump to Top