User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. ...
  12. 18
  13. 19
  14. 20
  15. 21

Posts by Merlin

  1. Merlin Houston
    This is truth I haven't used shampoo in years no either. In fact now that it's longer I use as little water as possible. Recently stopped with deodorant and although I do smell by the end of the day I just change shirts. I'm not going to put jedi heavy metals on my skin to just appease 'society', fortunately I work with foreigners so if somebody did notice they wouldn't care.

    The next step is cold showers. In the winter I've just been finishing on full cold instead of doing it the whole time. They are god like.
  2. Merlin Houston
    But muh chip and pin
  3. Merlin Houston
    Originally posted by HampTheToker Can you dual boot with Windows and share game files?

    Yeah generally just "respect Windows". Install it first, let it do it's thing, and linux dual boot can access it just fine. It's an NTFS file system as opposed to EXT, that should all be hidden/abstracted from the game itself.
  4. Merlin Houston
    Bill Krozby:
  5. Merlin Houston
    Psycho:
  6. Merlin Houston
    RisiR is literally Hitler
  7. Merlin Houston
    Originally posted by bling bling new youtubne downloder all the others got towed 4 idk reason

    Wut? install youtube-dl
  8. Merlin Houston
    Originally posted by Malice Imagine how good it would feel to just close your eyes and plow straight into a crowd. By committing to something that shows an absolute disbelief in this false reality you will be granted access to ultimate reality. Hasn't reality always felt "off" or "wrong" to you? This is how you break free!

    Especially if it's BLM. ...tbh I might hesitate... seeing as my car doesn't have one of them police gate bumper grills.

    https://www.youtube.com/watch?v=18q8lnpCPq4
  9. Merlin Houston
    This is now a Russian rap thread

    https://www.youtube.com/watch?v=IaNKPkbww4o
  10. Merlin Houston
    Originally posted by RisiR i still don't think that the whole mining system is a good idea when the thing you mine is nothing but an idea itself.

    +2 shekels
  11. Merlin Houston
    I like the future. Smells like money. Just imagine 2/3 of the world (nogs) don't have internet, it's going to be a shit show worse than grandpa forwarding "muh racist emails".
  12. Merlin Houston
    I try to drive on the road and some retard is walking in it so I pass extra close.
  13. Merlin Houston
    Originally posted by Sophie I just saw this today.

    I am not going to reinvent the wheel so here is a bash script i found on stackoverflow.


    #!/bin/bash

    file=`mktemp /tmp/duplicates.XXXXX` || { echo "Error creating tmp file"; exit 1; }
    find $1 -type f |sort > $file
    awk -F/ '{print tolower($NF)}' $file |
    uniq -c|
    awk '$1>1 { sub(/^[[:space:]]+[[:digit:]]+[[:space:]]+/,""); print }'|
    while read line;
    do grep -i "$line" $file;
    done

    rm $file

    Hey reinventing the wheel isn't a bad thing, this is actually an idea I got from /g/ awhile ago, but have yet to try my own. I guess this qualifies, was really thinking unique even if they have different names. I don't know if there's a good way of doing this without using a shitload of space.

    Originally posted by reject Can you write a script that when Bill Krozby logs in here it automatically redirects him to twink porn?

    Imblying his homepage isn't twink porn.
  14. Merlin Houston
    Originally posted by SCronaldo_J_Trump They could have gone way farther.

    Accoring to Uncle /pol/ they were going to murder him, but he escaped.
  15. Merlin Houston
    Originally posted by Sophie Yes because nestling quotes is cancer. Do you remember the quote pyramids from intosanc?
    yeah nested quotes are the worst, why would anyone want this?
  16. Merlin Houston
    Originally posted by Obongo if
    Originally posted by Obongo if
    Originally posted by Obongo if
    Originally posted by Obongo if
    Originally posted by Obongo if
    Originally posted by Obongo if
    [quote author=Obongo]
    if
    [quote author=Obongo]
    if
    [quote author=Obongo]
    Okie doke?

    [/quote]

    [/quote]

    [/quote]
  17. Merlin Houston
    Originally posted by SBTlauien Looks like Plone is downplaying it until they patch it.

    I wonder if it'll ever be legal to hack the FBI if the FBI hacks first. Like if I don't do anything illegal but get stuck with some of that FBI malware, I should be able to defend myself by hacking back.

    Laws are malleable, little people are always on the wrong side of the law.
  18. Merlin Houston
    Originally posted by SBTlauien I stopped doing Windows about three years ago. I use to occasionally boot up Windows 7 due to certain software only being available for Windows, and everytime I thought 'what a steamy pile of shit'. Linux > Windows for those that are more technical, but I guess for a typical user/gamer, Windows serves a purpose.

    I had always thought that…

    Windows == Business Use
    Linux == Technical Use
    Mac == Leisure/Hobby Use

    /thread
    7 is the new XP and companies that value intellectual property are not going to switch any time soon, and once they do it means there's a Windows version without all the telemetry bs.


    Originally posted by SCronaldo_J_Trump What do I gamer on.

    Rope.
  19. Merlin Houston
    Oh according to this that would only get you the first char from the string, so you'd only get "A" out of "AF_INET".
    https://www.gamedev.net/topic/585035-double-pointer-to-argv/

    The way you did it, argv[1] is the correct way to reference the whole string. When you create a socket I don't know if AF_INET is really a string that can be used the way you want.
  20. Merlin Houston
    Oh man I'm not good with C and it's been awhile, are you doing the Beej Networking book by chance?

    My guess is you aren't passing the data into socket() correctly, be it that it should be a value and you are giving a pointer or the other way around.

    As I understand argv is a double pointer (and an array is generally a pointer), so argv is an array of pointers. Then argv[1] is a pointer to the first arg. If you wanted a value you'd have to do "*argv[1]". Edit: the star in bold

    Be warned I'm very likely mistaken about some of that.

    https://stackoverflow.com/questions/1641957/is-an-array-name-a-pointer-in-c
    https://stackoverflow.com/questions/4475297/c-how-do-you-access-value-from-a-pointer-to-a-pointer-to-that-value
    https://stackoverflow.com/questions/5580761/why-use-double-pointer-or-why-use-pointers-to-pointers
  1. 1
  2. 2
  3. 3
  4. ...
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. ...
  12. 18
  13. 19
  14. 20
  15. 21
Jump to Top