@# 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> yes, a lot of junk, best to use the cygwin setup program
<1> Blech
<1> Morons
<1> I don't see why people think SVN is better than CVS
<0> atomic commits/better directory handling is about it
<0> everything else is annoying
<2> ug
<0> from the dorky broken locking with the error message that tells you to just run svn cleanup to the partially-but-slightly-different cvs command replacements
<2> well ill try it
<2> tx
<3> RndPkt: do you CVS is better than SVN?
<1> Hawson: in terms of running a server and rational client support, by far.
<3> you put the lime in the coconut...
<4> If I have two partitions, one swap and the main /... and my / is mounted as read only...am I able to remotely ssh into my box or no?



<5> If your sshd is started, I believe it should work.
<4> Milamber: Will it start with a read only file system?
<4> on a _typical_ install
<4> Does it need to write the pid file, or is that not necessary for it to start?
<5> Try it and see? :P
<5> Not sure if it'll balk on such things.
<5> If you can't use whatever startup script is usually used, try and simply start it manually.
<4> This is remotely though
<6> did you accidentally remount / ro
<6> or what
<6> i mean..
<6> it shouldn't really finish booting if it's ro :P
<5> Not sure what the point of your last sentence is. :P
<6> me?
<5> No, not you. ;P
<6> (hibtw)
<5> (heyyou)
<6> how'd the job thing end up
<6> you left the place you just went to right? :)
<5> Smoking is now banned from bars and restaurants since today, both in Ontario and Quebec. Pretty darn cool.
<6> bah
<5> tchang: Yeah, 5 months. :) The new place isnt bad. Not amazing or anything, but up to now, I could probly stay here 1-2 yrs, or something.
<5> Haha.
<6> from restaurants sure
<6> but a bar?
<5> Obviously, I don't mind. Going out for a drink, coming home, NOT smelly. *cheer*
<6> hahaha
<6> i'm allergic to alcohol
<6> so i don't generally go for a drink
<5> Seriously though, for people that work in bars and such, I think it's also very cool.
<7> Now if they would ban fast food and coffee shops..
<8> frozen food sales would go thru the roof
<9> why would you want coffee shops banned?
<9> is that inclusive of the small coffee shops? or just the big chains?
<7> coffee is a drug that doesn't make the opposite *** more attractive
<8> but it does help jump start rounds 2-4 of good morning it's the weekend ***
<10> what rationale is there for banning coffee shops?
<10> grr
<6> anyone work with alteons before?
<10> this moron from apple was trying to talk me into reinstalling os x from scratch when in the end all i needed to do was delete ~/Library/Safari/History.plist
<11> actual employee?
<12> hello
<10> an applecare person
<12> I got into a pissing match with UUNet employee #1 and founder of Juno and did not even know it :-/
<12> s/founder/CTO/
<11> bet he didn't realize who he was duelling with either
<12> his protein folding program end node response was 3 usecs longer than expected
<12> he says its network, I say its the PCI-X bus and/or linux kernel
<12> hullo Figz
<13> i've noticed, the more rightious people pretend to be, the dirtier they really are
<12> denial is always inversely proportional to reality
<14> tpb owns!
<15> what is tpb?
<14> you awake already pbug?
<15> it's actaully pretty late here..
<15> 9:45 AM
<14> its 3:46 AM here
<15> my alarm clocks goes off at 8AM every day.. but I rarely make it



<14> tpb = trailer park boys
<15> oh
<16> Studying up on ethereal... Can ethereal only monitor the interface to a system ethereal is running on? Or can I use ethereal to monitor my routers interface (wrt54gs running linux openwrt)
<15> linjack: perhaps ethereal isn't the right tool?
<15> unless you can ssh in and export X11 to your X server
<15> tcpdump is text based btw
<16> yeah I am tryig to figure out a way to monitor traffic and collect info on my home based router
<16> The router runs a modified version of linux so I want hoping to do some packet collections with something like ethereal
<15> like I said..
<16> but if I understand it correctly, ethereal only collects from the local machine
<15> you can create dumpfiles (pcap dumpfile) with tcpdump and then move the files over to the host that runs ethereal
<15> and ANALyze
<16> true much more labor intensive but true.
<15> there is really no way around this, unless you create a program that transfers the dump in real time over the network to the host that has ethereal running..
<16> is there a way to monitor specific ports using snmp and collect traffic that way?
<15> hrmm weird..
<15> my energy consumption is higher than average..
<15> and I don't recall turning any new devices on...
<15> hrmm in fact I turned my laptop off
<15> very odd very odd.. the LCD screen must **** a lot of energy
<15> compared to the LCD on the ibook
<17> a good way to match if a varible has digits or letters in a shell script is?
<11> do you want exclusivity?
<11> ie, var="foo#bar" <- should that fail?
<17> ok, if the variable comes with clean variable that only contains digits "987645" it shall p*** but if it comes with "t134" or "387T2483T" or something like that it shall stop . different values in the varible all the time.
<17> aha found something here
<11> you mean you found your answer?
<11> if expr "X$var" : '^X[0-9][0-9]*$' ;then echo $var is clean ;fi
<11> should do.. there's a bunch of options..
<11> if echo "$var" |grep '^[0-9][0-9]*$' > /dev/null ; then echo $var is clean ;fi
<11> should put the > /dev/null on expr too
<15> hehe hey! yeah man!
<11> ROCKZIDATIN
<15> figz: did you see the 10 picture line up of people who ruined edmonton after the game?
<11> scoobie snacks for everyone
<11> pbug, nopers
<17> isdigit () # Tests whether *entire string* is numerical.
<17> { # In other words, tests for integer variable.
<17> [ $# -eq 1 ] || return $FAILURE
<17> case $1 in
<17> *[!0-9]*|"") return $FAILURE;;
<17> *) return $SUCCESS;;
<17> esac
<17> }
<17> that one works
<15> http://www.police.edmonton.ab.ca/Pages/Media/frameset.htm
<15> they look german...
<11> evils0n, tidy
<11> looks like it came out of an rc file :)
<15> I like how #8 looks
<15> evel destructor
<11> can't quite read #7's T shirt.. even after some unsharp mask..
<15> yeah.. I was wondering what it says too
<11> I remember vancouver had a minor riot when it lost the stanley cup.. geeze that was ages ago.
<11> something you're smart
<11> something you're really
<11> UGLY
<15> yeah
<15> keep thinking you're smart because you're really ugly or something
<17> buttugly
<17> so ugly that not even his mother dare to look at him
<15> uhm..
<15> are you supposed to lose your sense of balance when you're insane?
<11> pbug, not unless the insanity manifests by turning in circles chasing a tail that isn't three
<15> hrmm.. maybe I'm sitting down too much
<15> it's like I feel drunk walking aruond the apartment :)
<15> felt like that for a few days nwo
<11> personally I think your mental instability is considerably overstated :P
<15> everyone in that line up looks a little high or drunk or something..
<11> put in double blind tests roughly half of psychiatrists diagnose the others as mentally ill.. should say something
<11> pbug, they're sports freaks.. of course they're drunk and violent
<11> see.. they should be trekkies instead
<11> you don't see trekkies going on drunken riots..
<15> worf would make a good rioter


Name:

Comments:

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






Return to #unixhelp
or
Go to some related logs:

#firebird
#beginner
#beginner
loadin.exe
nifskope on linux
#windows
#politics
#computers
prescott bush relatives germany
#delphi



Home  |  disclaimer  |  contact  |  submit quotes