User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 45
  6. 46
  7. 47
  8. 48
  9. 49
  10. 50
  11. ...
  12. 169
  13. 170
  14. 171
  15. 172

Thanked Posts by Lanny

  1. Lanny Bird of Courage
    Originally posted by gadzooks Imagine being yourself as a kid and finding out that shit like this is what you have to look forward to?

    Young me would have been hyped lol.
    The following users say it would be alright if the author of this post didn't die in a fire!
  2. Lanny Bird of Courage
    Originally posted by HTS Pretty sure he means Far Cry: Instincts. Which was a fantastic game, and to this day is still one of my fave Far Cry games. And yeah, I had an OG Xbox. I even bought a copy of Steel Battalion with the full fucking Mech controller set up once, but it was used and I couldn't get it to run. That sucked.

    Looking back on it though the only games that actually stick out are like… Fable: The Lost Chapters and Halo 1 and 2.

    Oh right, instincts. Primal was that more recent one with dinos. Yeah, that game was dank, it also captured the "fight for your life, become a jungle dwelling murder machine" kind of thing that made 3 good.
    The following users say it would be alright if the author of this post didn't die in a fire!
  3. Lanny Bird of Courage
    I had one for a while. Farcry: Primal on it was really good and I loved the matrix game too.
    The following users say it would be alright if the author of this post didn't die in a fire!
  4. Lanny Bird of Courage
    cruizing down the coast, getting strangled by a scarf. Arioerotic asphyxiation is my fetish.
    The following users say it would be alright if the author of this post didn't die in a fire!
  5. Lanny Bird of Courage
    real high level artistry going on here. I like the rat sucking my dick. An accurate representation of the behind the scenes of NiS
    The following users say it would be alright if the author of this post didn't die in a fire!
  6. Lanny Bird of Courage
    The DBZ Avatar was too sexy, someone needed to stop her reign of terror
    The following users say it would be alright if the author of this post didn't die in a fire!
  7. Lanny Bird of Courage
    I don't really do windows programming but this:


    def _get_Count(self, this, pcount):
    if not pcount:
    return E_POINTER
    pcount[0] = len(self.collection)
    return S_OK


    looks very strange to me and would be considered non-idiomatic, at least in just normal old python. Functions taking lists and mutating them is... undesirable, although sometimes necessary for performance reasons. Taking a ref type argument (like a list), mutating a single element in it (constant time) then returning a status code is wrong unless it's necessary to play with C integration or maybe the win32 API. It's a very C way of doing things just because of the way that language is designed. If you're the only one calling this method then you could return the count and raise an exception in the error case.

    Originally posted by Sophie Ok is this retarded?


    def collect(self):
    outfile = open("data.txt", "a")
    outfile.write("\n")
    outfile.write("-"*15)
    outfile.write("\n")
    outfile.write(self.tracked_string_concat)

    with ZipFile("data.zip", "w") as zip:
    zip.write(outfile)
    outfile.close()


    This isn't retarded but you don't need to write out the "data.txt" file and worry about the locking/releasing that comes with that (e.g. in this case if zip.write() throws outfile won't be closed).

    Instead I would write it like:


    def collect(self):
    # create zipped file contents
    contents = "\n%s\n%s" % ('-'*15, self.tracked_string_concat)

    with ZipFile("data.zip", "w") as zip:
    zip.writestr('data.txt', contents)


    This way you never have to dump the content to disk just to read it back into memory to zip it and you don't have to manage the 'data.txt' file.
    The following users say it would be alright if the author of this post didn't die in a fire!
  8. Lanny Bird of Courage
    My internal monologue is pretty close to how I post here, I probably have less of a "enhancement" here than anywhere else and there's stupid shit I'd post here that I probably wouldn't bring up even with close friends.

    I'm not really convinced that means I'm "more myself" here rather than anywhere else. I think the ways you choose to conduct yourself are a real part of your identity, not some mere transient mask you wear which has no relation to yourself. Like I'd swear here but not around academic peers, but that doesn't mean I'm somehow being "unauthentic" in that context, I just have a different relationship there than I have with the ragtag band of misfits I've been posting and shittalking and arguing with since middle school.

    And it's not like this is the one magical place that's absent of social norms, nowhere is like that. With your closest friends, or the most obscure pseudonymous shitposting community, there's still social standards, you still enhancement yourself in that environment, there's still subjects or behaviors which are taboo. Every now and then someone rolls into the community that you can just feel doesn't fit, something about them doesn't quite mesh with the group dynamic here, even though most people hate each other, they don't even fall into that framework of hate and are actually banished to a much colder hell than being called out, they're just ignored, no one can relate to them enough to even include them even in the social rituals of mockery. There is no "version of yourself" that's most authentic, we're simply the synthesis of all the various ways we choose to be.
    The following users say it would be alright if the author of this post didn't die in a fire!
  9. Lanny Bird of Courage
    Call in and tell them you lost your phone and need to go replace it.
    The following users say it would be alright if the author of this post didn't die in a fire!
  10. Lanny Bird of Courage
    "It's a religious holiday where I don't wear clothes and have to maintain an erection all day"
    The following users say it would be alright if the author of this post didn't die in a fire!
  11. Lanny Bird of Courage
    PM deletion makes sense. I have some code sitting around for it but I need to finish it. The caveat is deleting a PM obviously won't delete it from someone else's sent directory, and all the PMs are sitting in the daily/weekly backups so deleting them doesn't do much to protect you from them glowinthedarks.

    Originally posted by DontTellEm I wonder why lanny didn't make PMs deletable? Creep move.

    fuck you, I give zero fucks about your opinion you fucking creepoid. But the reason is that the PM system, although actually relatively clean, was like the first thing I added after standing up the site and migrating and it had to be built relatively quickly
    The following users say it would be alright if the author of this post didn't die in a fire!
  12. Lanny Bird of Courage
    Originally posted by WellHung Absolutely. Technically, is that considered scavenging, or eating live prey?

    It's only eating live prey if the the egg is in the third trimester and has a detectable heartbeat
    The following users say it would be alright if the author of this post didn't die in a fire!
  13. Lanny Bird of Courage
    10/10 thread
    The following users say it would be alright if the author of this post didn't die in a fire!
  14. Lanny Bird of Courage
    dude.... BIRDS!!!
    The following users say it would be alright if the author of this post didn't die in a fire!
  15. Lanny Bird of Courage
    Originally posted by mmQ Hwhat is rose ? I have a coworker named Rose I suspect you arent drinking her juices?

    France actually mandated more parents name their children "Rose" so that they could milk them for vaginal juices and sell more rosé to the world
    The following users say it would be alright if the author of this post didn't die in a fire!
  16. Lanny Bird of Courage
    Whisper "kill yourself" under your breath when a customer is explaining their problem on the phone then politely be like "go on sir" when they ask you to repeat yourself.
    The following users say it would be alright if the author of this post didn't die in a fire!
  17. Lanny Bird of Courage


    Beer and oatmeal together form a healthy breakfast and are a cornerstone of a well balanced diet
    The following users say it would be alright if the author of this post didn't die in a fire!
  18. Lanny Bird of Courage
    I go fishing for big cocked studs awwwww yeah
    The following users say it would be alright if the author of this post didn't die in a fire!
  19. Lanny Bird of Courage
    fuck your corn dogs

    meat is murder

    I'll batter and dry my penis tho and you can apply CONDOM-ents to it any time you like bby
    The following users say it would be alright if the author of this post didn't die in a fire!
  20. Lanny Bird of Courage
    effective at giving me a hardon maybe
    The following users say it would be alright if the author of this post didn't die in a fire!
  1. 1
  2. 2
  3. 3
  4. ...
  5. 45
  6. 46
  7. 47
  8. 48
  9. 49
  10. 50
  11. ...
  12. 169
  13. 170
  14. 171
  15. 172
Jump to Top