Our new Indie Games subforum is now open for business in G&T. Go and check it out, you might land a code for a free game. If you're developing an indie game and want to post about it, follow these directions. If you don't, he'll break your legs! Hahaha! Seriously though.
Our rules have been updated and given their own forum. Go and look at them! They are nice, and there may be new ones that you didn't know about! Hooray for rules! Hooray for The System! Hooray for Conforming!
Debate and Discourse: AWESOME POST in "Sorry, You're Not A [Chat]er", by Proto
If that woman's cleavedge made one more person pick the game up off the shelf, it was a net positive for microprose. And to be blunt, if taking her top off could have increased sales enough to get a sequel, I'd endorse it 100000% because I like playing great games.
If that woman's cleavedge made one more person pick the game up off the shelf, it was a net positive for microprose. And to be blunt, if taking her top off could have increased sales enough to get a sequel, I'd endorse it 100000% because I like playing great games.
If that woman's cleavedge made one more person pick the game up off the shelf, it was a net positive for microprose. And to be blunt, if taking her top off could have increased sales enough to get a sequel, I'd endorse it 100000% because I like playing great games.
I am comforted by Richard Dawkins’ theory of memes. Those are mental units: thoughts, ideas, gestures, notions, songs, beliefs, rhymes, ideals, teachings, sayings, phrases, clichés that move from mind to mind as genes move from body to body. After a lifetime of writing, teaching, broadcasting and telling too many jokes, I will leave behind more memes than many. They will all also eventually die, but so it goes. - Roger Ebert, I Do Not Fear Death
People in D&D apparently use the word "like" way too much
Just like people.
I am comforted by Richard Dawkins’ theory of memes. Those are mental units: thoughts, ideas, gestures, notions, songs, beliefs, rhymes, ideals, teachings, sayings, phrases, clichés that move from mind to mind as genes move from body to body. After a lifetime of writing, teaching, broadcasting and telling too many jokes, I will leave behind more memes than many. They will all also eventually die, but so it goes. - Roger Ebert, I Do Not Fear Death
I wrote a pretty similar script, and if it's implemented the way I expect it is, it wouldn't work for you.
For those who care, it's almost certainly logging in as Proto either by HTML POSTing in his username and password, or by using his cookies as part of an LWP browser agent. I say almost certainly because this forum doesn't allow non-logged in people to search, and scraping the entire forum and then recompiling post histories would be way, way more effort than any sane person would put into this.
So the short answer is it probably will not become publicly available, and if it does, you will probably have to edit it.
I wrote a pretty similar script, and if it's implemented the way I expect it is, it wouldn't work for you.
For those who care, it's almost certainly logging in as Proto either by HTML POSTing in his username and password, or by using his cookies as part of an LWP browser agent. I say almost certainly because this forum doesn't allow non-logged in people to search, and scraping the entire forum and then recompiling post histories would be way, way more effort than any sane person would put into this.
So the short answer is it probably will not become publicly available, and if it does, you will probably have to edit it.
Tossrocktoo weird to livetoo rare to dieRegistered Userregular
I'd be interested in seeing the regexing / whatever used to extract just post content. I had a pretty inelegant solution, doing multiple passes after pulling stuff out from between matched tags
Something that actually built hash based objects out of the div styling would be pretty neat
I wrote a pretty similar script, and if it's implemented the way I expect it is, it wouldn't work for you.
For those who care, it's almost certainly logging in as Proto either by HTML POSTing in his username and password, or by using his cookies as part of an LWP browser agent. I say almost certainly because this forum doesn't allow non-logged in people to search, and scraping the entire forum and then recompiling post histories would be way, way more effort than any sane person would put into this.
So the short answer is it probably will not become publicly available, and if it does, you will probably have to edit it.
The way it works is that I run a search on the phorums for a person, have the page display as many results as possible, then save the html page to my HD. The script parses that file, nabs the post IDs of all the posts, then loops through all those IDs, grabbing the content from the distinct "post page" for each: http://forums.penny-arcade.com/showpost.php?p=7566164[/CODE]
Then it's a regex to wittle down the content to just the post, and HTML:: Parse to rip out the tags.
That part works ok, but isn't the most elegant solution (mangles a few things, misses others) and I need to clean up the results a bit.
With some work you could probably get the script to run the search part automatically. I don't think I'm gonna do that though.
Once I get the script cleaned up a bunch I'll post it. Should work fine for anyone at that point.[CODE]http://forums.penny-arcade.com/showpost.php?p=7566164[/CODE]
Then it's a regex to wittle down the content to just the post, and HTML:: Parse to rip out the tags.
That part works ok, but isn't the most elegant solution (mangles a few things, misses others) and I need to clean up the results a bit.
With some work you could probably get the script to run the search part automatically. I don't think I'm gonna do that though.
Once I get the script cleaned up a bunch I'll post it. Should work fine for anyone at that point.
and her knees up on the glove compartment
took out her barrettes and her hair spilled out like rootbeer
You tell us, we certainly weren't paying attention.
:^:
"Despite all the bitching, if Diablo 3 sucks, I will eat my own cock. Counter-claim: If Diablo 3 does not suck, I will have a list of whiners who need to eat cocks." - Zen Vulgarity
Yay for forum wars! They make awesome post threads even awesomer.
Also awesome: stereotyping groups of people and associating yourself with some sort of "team" that consists of a subforum on a website about comics about video games.
I'm on Team Username Doesn't Rhyme With Cock-Burn and I can tell you it's totally awesome not being associated with those other wankers. I hear tell they're unclean.
Riley: "You're a marsupial!"
Maddie: "I am not!"
Riley: "You're a marsupial!"
Maddie: "I am a placental mammal!"
I wrote a pretty similar script, and if it's implemented the way I expect it is, it wouldn't work for you.
For those who care, it's almost certainly logging in as Proto either by HTML POSTing in his username and password, or by using his cookies as part of an LWP browser agent. I say almost certainly because this forum doesn't allow non-logged in people to search, and scraping the entire forum and then recompiling post histories would be way, way more effort than any sane person would put into this.
So the short answer is it probably will not become publicly available, and if it does, you will probably have to edit it.
The way it works is that I run a search on the phorums for a person, have the page display as many results as possible, then save the html page to my HD. The script parses that file, nabs the post IDs of all the posts, then loops through all those IDs, grabbing the content from the distinct "post page" for each: http://forums.penny-arcade.com/showpost.php?p=7566164[/CODE]
Then it's a regex to wittle down the content to just the post, and HTML:: Parse to rip out the tags.
That part works ok, but isn't the most elegant solution (mangles a few things, misses others) and I need to clean up the results a bit.
With some work you could probably get the script to run the search part automatically. I don't think I'm gonna do that though.
Once I get the script cleaned up a bunch I'll post it. Should work fine for anyone at that point.[/QUOTE]
Ah. When you said that you had a script that did it, I assumed you meant it did the whole thing automatically. Doing the searches manually is a lot easier and more portable, I guess.[CODE]http://forums.penny-arcade.com/showpost.php?p=7566164[/CODE]
Then it's a regex to wittle down the content to just the post, and HTML:: Parse to rip out the tags.
That part works ok, but isn't the most elegant solution (mangles a few things, misses others) and I need to clean up the results a bit.
With some work you could probably get the script to run the search part automatically. I don't think I'm gonna do that though.
Once I get the script cleaned up a bunch I'll post it. Should work fine for anyone at that point.
Ah. When you said that you had a script that did it, I assumed you meant it did the whole thing automatically. Doing the searches manually is a lot easier and more portable, I guess.
Posts
Amazon wish list | My dumb deviantArt page | Steam Wishlist
Reason:
He totally does!
I thought you hated Portland.
If only we could make them think so easily.
like totally omg!
PSN ID : DetectiveOlivaw | TWITTER | SCREENED | STEAM ID | BUY SOME STUFF!
Just like people.
Ah. That makes more sense than what I had in mind.
I wrote a pretty similar script, and if it's implemented the way I expect it is, it wouldn't work for you.
For those who care, it's almost certainly logging in as Proto either by HTML POSTing in his username and password, or by using his cookies as part of an LWP browser agent. I say almost certainly because this forum doesn't allow non-logged in people to search, and scraping the entire forum and then recompiling post histories would be way, way more effort than any sane person would put into this.
So the short answer is it probably will not become publicly available, and if it does, you will probably have to edit it.
sooo... next week? two weeks?
Something that actually built hash based objects out of the div styling would be pretty neat
The way it works is that I run a search on the phorums for a person, have the page display as many results as possible, then save the html page to my HD. The script parses that file, nabs the post IDs of all the posts, then loops through all those IDs, grabbing the content from the distinct "post page" for each:
http://forums.penny-arcade.com/showpost.php?p=7566164[/CODE] Then it's a regex to wittle down the content to just the post, and HTML:: Parse to rip out the tags. That part works ok, but isn't the most elegant solution (mangles a few things, misses others) and I need to clean up the results a bit. With some work you could probably get the script to run the search part automatically. I don't think I'm gonna do that though. Once I get the script cleaned up a bunch I'll post it. Should work fine for anyone at that point.[CODE]http://forums.penny-arcade.com/showpost.php?p=7566164[/CODE]
Then it's a regex to wittle down the content to just the post, and HTML:: Parse to rip out the tags.
That part works ok, but isn't the most elegant solution (mangles a few things, misses others) and I need to clean up the results a bit.
With some work you could probably get the script to run the search part automatically. I don't think I'm gonna do that though.
Once I get the script cleaned up a bunch I'll post it. Should work fine for anyone at that point.
took out her barrettes and her hair spilled out like rootbeer
My would probably contain the word "man" in huge letters. And "like".
Also awesome: stereotyping groups of people and associating yourself with some sort of "team" that consists of a subforum on a website about comics about video games.
Maddie: "I am not!"
Riley: "You're a marsupial!"
Maddie: "I am a placental mammal!"
ruiners.
took out her barrettes and her hair spilled out like rootbeer
Ah. When you said that you had a script that did it, I assumed you meant it did the whole thing automatically. Doing the searches manually is a lot easier and more portable, I guess.
Free MMO Überlist
I'd like to see how big 'sniper' is.
Hey, I was just saying, but if you want to get offensive and tell everyone how much better you are, why not!
just because they made disparaging generalizations about a forum first and have it coming is no reason to get all... unkind!!!