@# Quotes DB     useful, funny, interesting





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



Comments:

<0> its hard
<0> tho
<1> it would take me a cpl of hours to check where it goes and test it etc, then ship the applet back to you. If I did it it would be as a kindness, there is no chance I'll have a cpl of hours to concentrate for at least 2 weeks, at which point my g/f will be distracting :)
<1> I'm currently moving continents
<1> again :(
<0> to where?
<1> Europe, Ireland (back home)
<1> currently in the us
<0> ok
<0> i'm in canada
<1> which state/province ?
<0> qc
<0> quebec
<1> if you are a native french speaker your written english is great
<0> yes I'm a native french speaker :P
<0> thank you



<1> cool, wish my french was p***able
<0> you're from ireland?
<1> I know a few phrases and words same in german
<0> you'r irish
<0> which one
<1> I grew up in the uk, but I live in Ireland, just here on a work ***ignment, was for 18 months but I'm cutting it short at 14
<1> I'm English
<1> but Ireland is home
<0> ok I see
<1> I'm in AZ, so expecting to be cold next week
<0> what is your job?
<0> AZ?
<1> Arizona, Pheonix
<1> it was 107F today
<0> its hot
<1> about 42C
<0> Normally, in canada, we work with degrees celcius lol
<1> 30 is hot in British Isles, 35 is a mega heat wave, 39 is max temp and people die
<0> yes 42 with humidex?
<1> I do cold in C and heat in F (due to being here)
<1> it's monsoon at the moment so humid is 30%
<1> in May it was 6%
<1> after 40 it only differs in broil or boil :)
<0> yes
<0> canada is hot too
<1> I see hot summers very cold winters
<1> winter here is lovely
<0> you do have snow in your native town?
<0> what temperature is at, in winter?
<1> 5 as a rare low and 20 to 22 in the day
<0> celcius?
<1> we get snow on the se coast of england and in dublin, but it never stays long and not often more than a few cm, mayb twice a winter
<1> yes C
<0> ok
<1> freezing in pheonix is only in the kitchen :)
<0> lool
<0> sometimes I'm cold cuz of the air conditionner
<1> can happen here
<1> big a/c bills in the summer
<0> lool
<0> what is your job consist to?
<1> I'm a data systems architect, in the semiconductor industry
<0> okk
<0> nice job
<1> it's tough, but fun a lot of the time
<0> It's well paid, isn't it?
<1> not bad now I'm staff level :)
<0> ok lucky
<1> corp is about to down size, so we'll see what happens
<1> ta
<0> ok
<0> hi Ob1kanami
<0> hi Vetox
<2> Hi. Has somebody used jGoodies with images? sample? page? any thing.
<0> I wish I can help you
<2> ?
<0> Vetox do you code java?
<2> Yes, i do
<0> Vetox, I need a little help to put a picture in background. Do you think you can help me. I will give you money or I will give you webhosting + domain
<0> if your too busy, I wish you can do it later. In your spare time
<2> Look in google... there are a lot of samples



<0> Vetox, I dont code java at all
<0> lets trade plz :p just a picture in background
<2> In a html page?
<0> in java
<1> [06:10] <1> background of what?
<1> [06:13] <0> applet java
<0> yes
<0> its a chat
<3> hi, i have a question.
<3> can you put an import of a lib into a condition?
<3> and if you can, how do you?
<3> the problem is, sometimes the lib will not be available, so he may not be loaded
<4> anyone know of any other java channels i can scope out?
<5> the import doesnt load the lib, unless u ask it to
<3> so when you do import blablabla and the lib isn't there, he will not fail to compile then??
<5> yes it will fail to compile
<5> but i won't fail to run if the lib is not there
<5> unless u use it
<3> wait, i'm not following, he will fail to compile if i do an import blabla.sdfq?
<3> but will not fail to run?
<3> ?
<5> when u compile
<5> the compiler must ensure ure using an existing method, with existing parameter
<5> p***ing them in right order, etc
<3> so how can i make hem not fail to compile then?
<3> the problem is, on some machines i will not the right to use certain libs
<3> so i thought ok, i'll put the import into a condition, but that doesn't really work
<5> mm, as far as i know, there no such thing
<3> damned :s
<3> thx for the help aliveuser
<5> ure welcome
<6> cn plez someone help pe ........using im new bii in irc
<6> i want to know how to share files in irc
<7> :|
<3> lol :d
<3> 8)
<8> Hi... how do I configure LOG4J to log on a different appenders?
<8> Example logger1 -> should log on logger1.log
<8> and logger2.info("Something") -> should log it in logger2.log
<8> ?
<9> no clue, don't crosspost. it leads to being kicked from channels.
<9> hi lion
<10> Hoi Clackwell
<8> ah all right
<10> google on the other hand... Its obvious not a native Java product, but http://logging.apache.org/log4j/docs/documentation.html should do the trick.
<10> Looks to me that this isn't even a specific log4j task. You'll have to pick a cl*** and define it as logger. If that will be the cl*** handleing the logs my ***umption would be that you'll have to use that cl*** to do the things you want. So create 2 Logger instances and voila.
<11> why does FileInputStream say it cannot find the file specified, even though the file is present in the same package?
<10> Probably because the same package doesn't automaticly imply the same directory.
<11> it's in the same directory too (+:
<10> and how did you define the inputstream ?
<11> new FileInputStream("path");
<10> and the file is named path? Then that explains it, try specifying the full path instead.
<11> right from root?
<10> depends.
<12> relative paths in an application are defined from the directory it was launched. for container-managed environments, like servlets, it's completely diffrent though
<11> wlfshmn, it's in an application. i want to load a set of properties
<12> and these properties are on the filesystem, or embedded in the jar?
<11> embedded in the jar
<12> there you go them. fileinputstream is tring to read from the filesystem
<11> ugh ...
<10> so like I said; not in the same directory.
<11> i'm trying getResource***tream, someone advised it would work better, but that doesn't compile
<12> use getCl***.getResoruce***tream
<11> och
<12> Well, it's the right way, and it's been availible since 1.1, so it's unlikely not to be around
<12> I'm unsure where those resource paths are relative though, but I would expect they are all relative to the root of the content (thus, absolute in a way)
<11> ooh got it
<11> i thought it's a static method. thanks (+:
<11> worked (+: thanks
<13> morning
<10> Hi jottinger. Bye jottinger :-) /me is off to install App Server on clientplace.
<13> woo
<13> which one?


Name:

Comments:

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






Return to #java
or
Go to some related logs:

#chatzone
Hot Angelia Jollie
#linux
#skype
cheechy girls
#MissKitten
Leoo cservice
#mirc
#AllNiteCafe
wine ole error 80004001 fix



Home  |  disclaimer  |  contact  |  submit quotes