@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3



Comments:

<0> I use XP as a desktop (mainly) and Debian as a server/to do actual work
<1> i like it just not all the hardware issues i've seen..has made me leery
<0> yeah, maybe I've just been lucky that way
<2> anyway if not gentoo, i like ubuntu
<2> ubuntu is fine. and it is almost debian.
<1> ewww no X
<2> isnt it?
<0> I'll accept ubuntu
<0> I wouldn't use it, but it's okay...very nearly Debian
<2> ubuntu is what fedora should be
<1> if i'm going to run a server...it's going to be X server free
<0> oh, I wouldn't use ubuntu for a server
<0> it's okat for a desktop if you like gnome though
<2> if u like kde, kubuntu
<1> ubuntu is ok..i've used that but i'd still go with fedora
<0> gnome of course has a major design flaw



<0> it's not KDE :)
<2> if u like kde, kubuntu
<0> yeah, I looked at it. It's fine
<0> it's nearly Debian even
<0> but then, I already have Debian...why would I settle for nearly? :)
<2> hehehe
<2> dunno friend chose ubuntu for his private server
<0> the very best thing about debian...if at any time I'm not happy with it, I can get a full refund
<0> no questions asked
<0> money back
<1> i'm still seeing too many hardware issues with ubuntu like debian
<2> i thought it wasnt too good idea either, but he felt most comfortable with it
<2> so okey.
<2> i configured that ubuntu
<0> sabre: maybe I just don't buy the latest hardware often enough :)
<2> so far it works
<1> well you are as me...i still use windows for my desktop
<1> i have too
<0> ubuntu did get one thing majorly riht...no root account
<0> well, there is, but you know what I mean
<2> i dont see sudo stuff any more secure, mind u
<2> i'd guess it worse.
<1> i think it's worse
<1> you have to give the p***word more
<2> :::)
<0> sudo isn't for security as such...it's for audit, and for safety
<2> well with root you just worry about p***word
<0> and I can lock sudo down to only allow you to do some stuff as root
<2> with sudu you worry about every user's p***word, that has sudo rights
<2> root is root user is user
<2> sudo confuses this
<0> with root you worry about every user who has that p***word doing something to screw up....with sudo if they screw up, you know it was them and you can punish accordingly
<2> hehhe
<1> OK
<1> lol
<1> i'm steppin out
<0> sudo encourages you to run as root for single commands only, and not always
<0> anyway, this is way OT :)
<2> ok
<2> :)
<1> holy **** it's 4:30 anyway
<1> wtf am i doing here
<1> late
<3> morning talios
<3> !seen anthem
<4> mornin
<5> hey guys
<5> does anyone know what I need to download to start compiling and running my java. I tried the net beans from Sun but im having problems.
<6> mpxgold: the java jdk should be enough. http://java.sun.com/
<6> netbeans will also require the JDK.
<5> i got this jdk-1_5_0_07-nb-5_0-win-ml.exe
<6> that should be enough. Install it, make sure its ..\bin subdirectory is in your search path and you're good to go.
<6> in short; if you can open a dosbox and use "java -v" and see output you're good.
<6> err.. "java -version". then you're good to go.
<5> well i was able to compile a helloworld.java into helloworld.cl*** but when I use 'java helloworld' it says somthing about exception in thread
<6> mpxgold: then there's likely an issue with the program.
<6> be sure you used "java helloworld" and not "java helloworld.cl***". Also be sure the file has a public cl*** of "helloworld" (caSeS matter).
<6> http://java.sun.com/docs/books/tutorial/
<6> and there goes the undernut
<5> thanks alot Lion-0 its working now, i didnt know caps mattered x-)
<6> aaah ;-)



<6> mpxgold: no worries; its really a common mistake if you're used to Windows where it normally doesn't.
<5> one last thing, its going to be a pain that I have to place all my documents in the /bin dir, is there anyway I can make it so javac works from any dir?
<6> mpxgold: insert it in your windows searchpath
<6> mpxgold: from the top of my head (I don't use windows that much) control panel -> system -> advanced -> environment settings.
<6> bah.
<6> welcome back
<6> stupid undernut
<6> mpxgold: from the top of my head (I don't use windows that much) control panel -> system -> advanced -> environment settings.
<6> mpxgold: you'll need to add the directory to your searchpath
<7> Hi. Is there a way to find the eclipse "launch" script ? (yes, the run stuff).
<8> wondering if someone can help me out with an array question?
<8> When i p*** an array as a parameter for a method
<8> How do I keep the method from editing the array's original contents when i perform operations on it?
<9> grimpirate: you make a defensive copy
<8> how would I do that exactly?
<9> it means you define a new array in your method, and copy the content of the array you don't want altered into a new one, that you can alter if you want to
<8> I tried using the array.clone() technique
<8> which should do just that I believe, but it still edits the original
<10> hi MaggieL
<10> how's you?
<11> how can i change the color of the area visible under the rows of a jtable?
<11> anyone know how to disable the cell selection in a jtable. When i say cell selection i'm refering to the gray rectangle not the blue cell's background
<12> morning
<13> Hi, its me again *g* does anyone here have some link on how to write packages ?
<14> http://java.sun.com/tutorial/java/interpack/packages.html and some examples: http://javafaq.mine.nu/lookup?254
<13> Ah, an example from the good old Blackwell :) Nice, now i see why i couldn`t compile my example file.
<13> Thank you ricky_clarks .
<14> No problem.
<15> good morning
<16> hi room
<16> can anyone help me in a matter of dijkstra algorithm?
<14> zagreus: Ask the rest of your question.
<16> can I use a matrix for the weights?
<16> I thought it can be done but from what i've read on the internet it's done with all kind of hastMaps HashSet and other objects
<17> Well, Java doesn't really have a Matrix type.
<17> It has AffineTransform, but that's intended for graphics.
<17> You can make your own, but maybe the implementations that use HashMap etc., are using that to emulate matrices.
<2> type[][] is essentially matrix
<2> :)
<17> Yes, a dense matrix.
<16> but my question is if any of you seen the Djikstra algorithm using matrices
<16> because I wouldn't wanna go into the unknown
<16> :)
<17> I only learn the Dijkstra algorithm for a short time, I don't keep it in my head, as it's largely useless.
<17> If you ask me about beer, on the other hand..
<16> :))
<16> they invented the self cooling beer, by the way
<17> I know.
<17> -2.5C, Coors iirc.
<18> Anyone 'round?
<2> yes
<18> Umm..i need some help
<17> Ask the rest of your question.
<18> Woah!
<18> Seems like #cservice
<18> : )
<18> Anyway..
<18> haha..I'm a helper there..
<18> : )
<18> I need a javascript code to hav a crosshair instead of the default hand cursor when i rollover a link
<2> cservice is full of crap
<2> Kr|m|naL: this is NOT javascript, try #javascript
<18> Well..not for everyone wolfey
<18> O.o
<18> Aite mate..adios
<0> is there any collection cl*** that I can handily p*** an array to a constructor of?
<1> you can do toArrayList()
<17> Arrays.asList
<0> ah, thank you
<1> drr i was thinking other way around...toArray()
<17> Imaginary methods don't usually work.
<2> lol


Name:

Comments:

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






Return to #java
or
Go to some related logs:

nordicmafia codes
FLVPlayer_Progressive variables
juniour b
What figure sits on guard over the Great Pyramids ?
#mirc
#linux
undernet #c++ logs
mmm-hmmm wav
u.Torture
multigeeks



Home  |  disclaimer  |  contact  |  submit quotes