@# Quotes DB     useful, funny, interesting





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



Comments:

<0> when I was supposed to meet with the manager (on-line via yahoo) he was offline
<1> I believe it, it's hard enough to get someone to do their **** face to face heh
<0> but another person in my company was chatting with him...
<0> so he had marked himselve invisible to ____
<1> are the overseas people usually part of a consulting house, or directly hired by the companies?
<0> I don't understand the question.
<1> are they employees of your company or independant subcontractors?
<0> they are contractors. who have their own staff.
<1> India?
<0> yes
<1> so I wonder, an independant company on the other side of the planet, with your company's intellectual property, what keeps them from exploiting that/
<0> the only way you should outsource to india... is to go to india with a team of managers and hire indians to work for you.
<1> selling to a competitor, or starting one even
<0> nothing stops them... cept the fear of retribution.
<0> programmers in the US have priced themselves out of the market... india didn't do that to them... they did it to themselves.
<2> there isn't anything wrong with programmer jobs in the us



<0> a bunch of companies believed if they jumped on the wave of this new market (computers/internet) they could get rich... and they were willing to pay big $$$ to get rich quickly...
<2> there is more work then qualified people available
<0> the think I find interesting is 'web programmers' get $10 per hour and 'application' developers get 3 to 20x as much...
<0> the thing
<2> a lot of companies are coming back to the us, because a lot of companies expect to get source with their purchased software, unfortunately, no one can read the source when getting it from india
<0> when you outsource to india... you are looking to save money... contracts often go to the lowest bidder... and you get back what you paid-in...
<2> yup
<2> thats why US companies are going for country coders
<0> and since you aren't there to supervise them... they hold you at bay claiming "internet was done"
<0> down
<0> back to our earlier discussion about nazi like tactics required to pry someon welfare rats *** off the couch...
<0> we have companies we pay by the job found... if they help a person find work... they get paid... if not they get a much smaller token payment to keep working to find them work...
<0> anyways...
<0> I also believe in retroactive abortion should be the right of every parent against their own kids.
<1> is it possible to do a "large icon" thing with a TMainMenu like the default Windows Start mentu?
<3> hi all
<3> did anyone use INDY 10 with ssl? (i need to retrieve data from https server)
<4> hey, i've just reinstalled system, and tried to run my application. it asks for qtintf70.dll, how can i build my exe, in a way, that it won't ask for this library?
<5> remove q* dpendencies (QT ones, for compatibility with linux) by pure windows ones
<4> Pixel_K, where should i do that?
<6> in your uses clause
<4> hmm
<4> i don't have any q* dependencies :)
<6> list all the uses of all your units, are you sure ?
<4> not in my .pas files :/
<4> maybe one of the components i've used has one ;/
<4> no, i don't have it in my units
<4> QDialogs yeah, one of the components uses it :/
<4> strange
<4> nevermind, but thx, i'll try to figure it out. maybe find another component
<4> thx pixel_k
<6> you're welcome
<7> aloha
<7> anybody been involved in setting up a lot of unit tests (delphi or other)
<7> god TFrame ****s so hard
<7> whoever designed it needs a kick in the ***
<3> hi all
<3> does anyone know how to connect to https (ssl) using indy 10 tidhttp?
<7> hey cyberk
<8> good mourning
<3> hi ki9a
<9> heya
<3> maybe u know.. i need to connect indy 10 tidhttp client to https server (ssl)
<9> so far so good
<9> whats the problem ?
<3> it doesnt connect.. and returns me all kind of different errors "timeout", "error connecting to SSL" stuff like that
<3> Error connecting with SSL to be more precise
<9> you have the required dlls ?
<3> yep
<3> otherwise it complains about the dlls :)
<3> SSL port is 443., right?
<9> yes
<3> Project Project1.exe raised exception cl*** EIdOSSLConnectError with message 'Error connecting with SSL.'.
<3> <<-- that the error i get
<9> weird
<9> should just work then yes.
<3> i do the following.. drop tidhttp on form, drop tidssliohandlersockeropenssl on form
<3> set iohandler of http to the sllhandler
<3> and try to get the page
<3> am i missing anything?
<9> change the url



<9> to https
<3> yep
<3> it is
<3> showmessage(IdHTTP1.get('https://www.neteller.com/gateway/netdirectv4.cfm'));
<9> a real certificate even
<9> cool
<9> yeah that should work.
<3> should :)
<3> maybe i am using wrong dlls?
<9> or indy10 doesn't work
<9> try it with synapse for a sc.
<10> sorry.. router failed :)
<10> brb
<11> back
<9> try with synapse
<9> for a sec
<11> ki9a, i dont have synapse
<11> i think i will try to use WinInet now...
<9> well you can download it
<9> else, wininet works too
<9> Rahly: next supernatural will have the saloon in it again
<8> OT: how to unpack filename.sea.hqx on W32?
<12> hello
<12> is anyone here running vista?
<13> heyt
<13> is there a way to change the pixel resolution of a form ?
<14> a pixel is a pixel... tho you can change the dpi of a form not that it does much of a diff
<13> hmmm
<13> but it will be a difference if you print right ?
<8> PixelsPerInch := 666; Scaled := True; Caption := 'Because I''m bad';
<8> no idea if this produce something useful
<13> does not look any different
<13> I want to capture the form to a TBitmap
<13> even if it is visible or not
<13> I got a function that lets me do this
<13> however
<14> you cant do that if the form is blocked by another window that area will be black
<13> I need to use scaleby() to increase the image
<8> check GetFormImage or PaintTo
<14> unless you enable transpancy of that window
<13> to get a 1:1 print
<14> that will force windows to repaint it
<13> hold on
<13> http://www.vkarlsen.no/pastebin/default.asp?id=7685
<13> this is the function I have
<13> it works even tho the form is visible or not
<13> but I want another solution other than that "scaleby" command to increase the size of my components
<13> ScaleBy(200,100); to set the size before I grab the image
<13> ScaleBy(100,200); to reset it
<13> but I dont want to do it like that, if it is possible somehoe to have the area 1016x648 or 648x1016
<13> cause this will look very huge on a standard users screen
<13> so is it no way possible to have a form that appear to have a object at 508x324 appear to be 1016x648 ?
<9> sysrpl: I am.
<8> whoever invented those stupid dvd boxes, should appear in tribunal :-/
<2> what boxes?
<8> big ones, made of weak plastic
<15> Rahly, does this tend to your "boobies"-fascination? http://www.b3ta.cr3ation.co.uk/data/jpg/fitra54.jpg (nsfw)
<9> Rahly: next supernatural they'll go back to that saloon
<2> figures
<2> ootje: for some reason that looks shopped
<9> and he's going to tell what he was about to say.
<2> ?
<9> you saw the last ep right ?
<2> what was the "last" episode?
<9> supernatural ?
<9> croatoan
<2> 9?
<9> think so yes.
<15> i think im a season behind in supernatural :p
<9> you like it ?
<9> ootje^
<15> yeah its nice
<9> a lot don't like


Name:

Comments:

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






Return to #delphi
or
Go to some related logs:

#gentoo
#computers
#beginner
boob.swf
voodoo3.cat
#winxp
#nhl
#beginner
#nhl
#beginner



Home  |  disclaimer  |  contact  |  submit quotes