@# 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 10 11 12 13 14 15 16 17 18 19 20 21 22



Comments:

<0> given the writing about all the deities, they all seem to behave like a bunch of 5 year old children
<1> Yeah FKnight` damn it.
<2> it'd probably be like a kid with a new toy
<0> the norse and greek gods
<2> oh yeah, this is cool.
<2> can't get enough
<3> Jet yeah
<0> christian god
<3> And dude
<0> all of them
<2> 2 weeks later, Bored now. and forgets about it
<3> God was on Earth for THIRTY-THREE YEARS
<3> and he didn't WRITE ANYTHING DOWN
<3> can you blame people for not believing ?
<3> can He ?
<3> Where's Jesus's gospel ?



<3> The Gospel According to Jesus Christ, Son of God.
<3> Esq.
<4> when would u notice a difference when using a dvi cable over a vga?
<2> her0in---: porn
<5> he didn't get a gospel of his own. but if he comes back today, he might get a blog.
<4> porn eh
<0> Jesus would have an RSS feed
<2> if he came back today, he'd end up locked in a mental institution somewhere
<0> and maybe even a podcast
<3> I should put up a blog and claim to be Jesus.
<3> I'll post Judgements
<3> on people
<3> Condemn people to hell and ****
<1> And end every broadcast with, "Can you believe this ****? **** this."
<6> ahahaha
<0> "I'm seriously thinking about another flood"
<3> Jet hahaha
<0> "cause you people are a bunch of ****UPS!"
<2> hahaha
<3> "I know I promised"
<3> "But, Jesus Christ, man"
<1> "...but I already promised. So it'll have to be FIRE biatches! HAHAHAHAHHA"
<0> haha
<3> if I were God, a comet would strike
<0> Ya, erase the first 2000 years
<0> do-over
<3> reinstall
<1> He'd better hurry the **** up. We'll have it figured out how to stop those, too.
<3> SD70MAC yeah
<2> format planet: /s
<0> ya, that's the deal with free will
<3> eventually it'll be us vs. God
<0> yup
<1> Zeus is probably looking down at all the christian and islamic churches and going, "wtf?"
<3> hahahah
<7> dont you hate when someone writes such a horrible skin for something, you wind up hacking it up so much that it eliminates the idea of an upgrade without diffs
<3> "I leave for five minute"
<3> *minutes
<2> is that dumb topic still up there?
<7> si, senor
<5> heh, which one?
<2> was the bill gates one
<2> the latest
<0> anita can't reply
<0> if you're using the website
<2> I was. but you can
<2> :)
<0> oh
<3> speaking of taxes
<3> I should get church status
<3> I wonder how hard that is
<8> you can always add me to your congregation, FK
<8> chuch of the bag of pot?
<0> she says "tell him yes"
<0> I think
<2> wear black and fondle some kids. shouldn't be that hard
<3> you can smoke pot on Federal property
<3> there are no federal laws on posession
<9> Could anybody tell me how to write a batch file (or similiar) that would merge two files together?
<8> going to a college party
<8> the starbucks girls invited me



<9> I want to take a.txt and add it to lines 100+ of b.txt
<9> overwritting what's currently on those lines
<0> `Spike: copy /b file1+file2 file3
<8> they start partying at 11 p.m.
<8> wtf
<8> that's late
<2> file1 not found
<2> ;)
<0> `Spike: you can't do merge files like that using cmd
<1> You're not just old, you're Uncle Jesse old.
<9> Darn, what's the easiest way to automate the process then?
<9> i figured a little batch file would do it
<9> Two ascii files
<0> you can copy them together using what I said with copy /b, but you can't merge the contents of file2 100 lines into file1
<11> I've got a funny KERNEL_DATA_INPAGE_ERROR BSOD I'm trying to sort out. memtest and hard drive scans check out okay. CPU stress tests check out okay. I want to run a general system stress test (memory, disks, cpu, etc). Any suggestiosn?
<9> How does it merge them?
<9> One after the other?
<3> type file1.txt > newfile.txt
<3> type file2.txt >> newfile.txt
<3> type ****s
<3> cat is better
<0> `Spike: it just makes a binary copy of the contents of both files into the third
<3> cat you can do 'cat file1.txt file2.txt file3.txt > newfile.txt`
<0> so the last byte of file 1 is immediately before the first byte of file 2
<0> if those files are videos or something, then you end up with a mess that doesn't do what you want
<3> I don't think you can merge binary files
<0> copy /b
<3> but would they work ?
<0> copy /b file1+file2 file3
<0> not video or MP3 or anything
<11> Sorry about that. Firefox isn't the most stable lately
<0> but it'll copy them binary accurate
<9> i'm copying txt files though
<9> he
<9> heh
<0> doesn't matter
<0> txt files are just binary
<0> copy /b guarantees binary accuracy
<0> without any CMD localization **** for ASCII or anything ****ing with them
<9> i really need it to skip the first 100 liens and then start writing though
<9> is there a way to cp the first 100 lines out of a file?
<0> then you need something smarter than 'type' or 'copy /b'
<9> i could take the 100 lines, put it elsewhere, then merge the new file with the first 100 lines
<9> heh
<0> `Spike: Ultraedit, highlight the first 100 lines
<0> edit > copy
<9> gotta be automated though
<0> create a new file, edit > Paste
<9> it has to run every hour
<9> if i had to remember to do it, it'd prolly happen twice a day
<0> then you need something smarter than CMD
<9> lol
<0> Perl, Monad, WSH
<11> Spike - you need perl or cygwin to do some fancier scripts if you want to automate it. Otherwise, just get a text editor.
<0> and you'll need some programming ability
<9> haven't any real programming ability
<0> then have someone write it, or learn
<9> a simple batch script would prolly do wouldn't it?
<9> or is batch only cmd stuff
<11> Hard to get away without any programming ability in this day and age. You may as well start now rather than later.
<0> no, a simple batch file won't do it
<0> there is no facility in the WIndows command line environment to read 100 lines from a file
<0> and copy them to the end of another file
<9> is there to read the first 100 lines from a file?
<9> how about to erase a file after one hundred lines
<11> You could download head.exe - there are unix utilities that are compiled for windows.
<9> i gotta stick with stuff that everyone will have on their computers though
<9> i need to run it at as part of a network login script
<12> CANT YOU HEAR ME KNOCKIN
<2> LOS ANGELES - A judge has issued a temporary restraining order requiring David H***elhoff to stay away from his estranged wife, according to court papers unsealed this week
<11> Use at your own risk, but notice that head.exe is available at http://www.textpad.com/pl/add-ons/index.html and can extract the top XY lines of a text file.
<2> heh


Name:

Comments:

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






Return to #windows
or
Go to some related logs:

use char* a in C
SATA II IC7
taois temple in cebu
*battleship scharnhorst radar*
nupe ferrari
scaren server
#eggy
Participants must first reach [155,155], then [325,270].
#gamedev
#photoshop



Home  |  disclaimer  |  contact  |  submit quotes