@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4 5 6 7 8 9



Comments:

<0> near the water
<0> oh there's all kinds of weird stuff
<1> I DON'T UNDERSTAND
<2> hmmm
<0> ZOOM OUT
<1> Oh, way out there
<2> original buffalo wings restaurant
<1> Heh
<2> http://www.restaurantrow.com/ShowPics.cfm?Type=Menu&nCode=437324&code=859328&Byte=u&Number=1&Ext=gif&Name=Original%20Buffalo%20Wings&Word=menu&Count=2&state=CA
<1> There you go
<2> 13 or 26?
<0> and then go easter, on the other side of the river
<0> there's red and green stuff
<1> Fish ponds, maybe?
<1> Seems unlikely that they'd be chemical something or others
<1> The whole bay is like that



<1> Probably excess communism sloughing off into the sea
<0> lol
<1> Maybe soylent green
<1> What you really want to look for, noidea, are chicken fingers
<1> Then get honey mustard and hot sauce for dipping
<2> chilis
<2> actually, those have declined in goodness
<1> Really?
<1> I'll make a note of that
<2> anyway, off to see if I can find this place.
<1> Enjoy
<1> If the satellite had a better angle, we could read the restaurant signs on that major road
<1> Damned satellites
<1> Looks like a map from GTA San Andreas
<0> looks like big vats of jello
<1> You're still on about those, eh
<1> See if googlesightseeing.com knows
<0> i found a place where it looks like they 'dug into' them
<1> Hey, rdragon, I was right
<1> But the levees and the wetlands nearby, according to wildlife officials, are some of the last refuges for the California clapper rail and salt marsh harvest mouse, which are threatened with extinction.
<1> http://www.sfgate.com/cgi-bin/article.cgi?file=/chronicle/archive/2000/01/24/MN76982.DTL
<1> It's hippy ****
<3> what's a clapper rail
<1> 9 times out of 10 in San Francisco, the answer is hippy ****
<0> lol
<1> Probably some supposedly endangered snail or something
<1> Mussel or something
<0> neat
<1> The closer you get to Berkeley, the smaller the animal has to be to deserve miles of "protection"
<0> hehe
<1> http://www.sweetwater.org/habitat/clapper_rail.html
<1> I guess it's that little guy
<1> In Oregon you need a whole owl
<1> Yes, folks, birds can't live without a square mile of levee protected wetlands
<4> roffle
<1> So that noise you hear out your window every day is just a sad hippy lamenting the loss of our wildlife
<1> What they don't realize is that we constructed San Fransisco as a protected wetland for hippies
<3> moo
<1> This way we have no guilt over throwing them out of anywhere else
<1> Uh oh, Flynn got lasered into the game grid
<1> It's possible that Tron is singlehandedly responsible for setting back the world of computer programming by three years
<1> Mess with the MCP, get the horns
<5> in the compiler I use, ios::nocreate and ios::noreplace appear to be changed / removed ... anyone know where they are or how to perform those functions myself?
<0> maybe you should explain what you want to do
<0> those are nonportable, nonstandard things
<5> i didn't realize
<5> I just need to run a check to see if the file is already present
<0> well you might check boost::filesystem
<0> else it's OS specific
<5> hm
<3> wouldn't std::ifstream do the job?
<5> boost is a library right
<0> although you could call .open()
<0> and if that fails, the file doesn't exist
<3> std::ifstream in("filename"); if (in) {//yay}
<0> yeah, an ifstream
<5> cowmoo I'm using fstreams. there used to be flags ios::nocreate, etc.
<6> hey guys
<0> you don't need it
<3> me237: yes, listen to rdragon
<5> that's what I was hoping



<0> opening an input file requires that it exists
<7> yeah?
<0> 'used to be' ?
<0> there's only one version of the standard, so...
<5> well
<5> I've used one IDE that's used the same compiler for a long time
<5> and recent versions appear to adhere more closely to standard
<8> one would hope so
<8> what IDE had you been using?
<9> mornins
<2> well, that turned into an adventure.
<5> I use bloodshed dev-c++. I actually think the new versions are pretty good
<5> so, that didn't work
<5> if the file doesn't exist, opening it for input creates it
<0> are you sure?
<5> hang on multitaskign
<0> josuttis says it must exist
<2> I just went to get buffalo wings.
<2> I actually went to the grocery store first to get cash from the ATM
<2> I had just gotten cash when my friend called, he said his truck had broken down and he needed me to pick him up.
<5> rdragon no I think you're right...I've just gotta fix some code
<2> I drove down and picked him up off the frontage road, we went and got some food and he called tow trucks
<2> then I went back to wait at his truck with him for the tow truck.
<2> it turns out his truck actually died ON the highway
<2> so we jumped over the barricade and fence seperating the frontage road from the highway
<0> heh
<2> and walked down the shoulder in traffic to his truck
<2> and sat on there on his truck, on the shoulder, in the rain, waiting for the tow truck to show up
<2> some of the cars on the highway were coming uncomfortably close to hitting us.
<2> very narrow shoulder at this point, with a wall on the right
<2> only a foot or 2 from his truck to the white line
<2> cars were crossing the line as they came towards us.
<2> these idiots out here don't know how to drive straight.
<8> so what won't work?
<5> I got it. forgot to clear the state
<5> noidea128 where is that?
<0> clear the state?
<0> why does it need to be cleared?
<2> Highway 101 between San Francisco and San Jose
<2> it's a highway through a very urban part of the state.
<5> check for file opened for reading, if opened, quit, if not opened (ie fail set), open for writing
<8> me237 what are you really wanting to do?
<5> There's a lot of parts of the country where folks just cannot understand how to drive straight
<3> what?
<0> so you want to create it no matter what?
<5> vawjr I go tit
<5> *it
<3> me237: I'm not so sure..
<8> yeah, me neither
<5> rdragon I was opening a file for writing as long as it didn't already exist
<5> it works fine now
<3> ..
<0> can you give a bigger picture idea of what you're doing?
<5> that's pretty much it. I've been screwing around with file I/O and buffers for the past few days.
<8> that's a pretty unusual requirement
<5> My whole project was to make one handle that can write to console output (Windoze) or write to a file, depending on a selction state
<6> http://www.noidea128.org/sourcefiles/16152.html
<5> I had a hell of a time figuring out you can't set a buffer on a ofstream to an ostream
<6> this is my code for 1 cl*** that represents one time
<6> derived form another cl***
<6> this is mfc
<8> oh god, I hate MFC
<6> ya, I know
<6> :D
<8> me237 that's not true
<5> oh man. I just convinced myself to stop trying..
<5> how do you do it?
<10> anyone here familiar with opengl? I need a routine to randomly change the pen colour...I have one, its just not working
<6> here I'll tell you where the error was
<10> here:s what I have: http://pastebin.ca/48967
<5> I found how to set cout to write to a file, but I couldn't get an fstream handle to write to the console
<8> http://noidea128.org/sourcefiles/14475.html
<5> vawjr that's the file I found originally that gave me any clue what I was doing
<8> ah, then either you said it backwards above, or I read it backwards


Name:

Comments:

Please enter the result of the sum 63 + 46 (to avoid spam):






Return to #c++
or
Go to some related logs:

lizbjani
#c++
foxylove naked
#AllNiteCafe
#chatzone
#c++
GEORGE WASHINGTON CARVER ADVOCATED PLANTING PEANUTS AND SWEET POTATOES TO REPLAC
gentoo rtl8139D
lebaneses womans
Gaia microsiga



Home  |  disclaimer  |  contact  |  submit quotes