User JK - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T05:02:45Z http://stackoverflow.com/feeds/user/16253 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1739622/is-there-a-size-limit-for-the-sql-text-in-a-peoplesoft-app-engine-sql-step-action 0 Is there a size limit for the SQL text in a PeopleSoft App Engine SQL Step/Action? JK 2009-11-16T01:36:50Z 2009-11-16T01:36:50Z <p>I'm getting the following error: AeSymResolveStatement [775] ... Meta-SQL error at or near position 34338 in statement (108,512). The SQL statement itself is over 40,000 chars long, hence the question.</p> <p>The DB is oracle. Running on Tools 8.49.24.</p> http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/85259#85259 197 Answer by JK for What's your favorite "programmer" cartoon? JK 2008-09-17T16:51:29Z 2009-04-19T12:30:02Z <p>I knew it was true. <a href="http://xkcd.com/224/" rel="nofollow" title="&quot;We lost the documentation on quantum mechanics. You'll have to decode the regexes yourself.&quot; ">XKCD #224</a></p> <p><img src="http://imgs.xkcd.com/comics/lisp.jpg" width="640" title="We lost the documentation on quantum mechanics. You'll have to decode the regexes yourself." /> </p> <p>"We lost the documentation on quantum mechanics. You'll have to decode the regexes yourself."</p> http://stackoverflow.com/questions/289502/did-you-ever-get-an-unexpected-answer-during-interview/518400#518400 2 Answer by JK for Did you ever get an unexpected answer during interview? JK 2009-02-05T23:03:24Z 2009-02-05T23:03:24Z <p>Not really an answer, and a long dead question, but anyway... I was once one of several people interviewing a candidate. It wasn't going very well for him, but not a complete disaster either. At one point during the interview, his phone rang.</p> <p>At this point, I kind of felt bad for him - he was obviously nervous and now had forgotten to turn off his ringer.</p> <p>What I didn't expect to happen was for him to TAKE THE CALL, speaking for several minutes. In a foreign language. My coworkers and I looked at each other incredulously.</p> <p>When he was finished on the phone, he simply hung it up and proceeded with the interview as if nothing out of the ordinary had happened.</p> <p>He didn't get the job.</p> http://stackoverflow.com/questions/513445/what-application-have-you-integrated-with-developed-on-that-you-would-intention/513518#513518 4 Answer by JK for What application have you integrated with/developed on - that you would intentionally leave off your resume JK 2009-02-04T21:49:28Z 2009-02-05T03:49:06Z <p>Do languages count? If so COBOL. It's insanely boring and (having it on your resume) makes people think you're old.</p> http://stackoverflow.com/questions/504508/using-sql-to-search-for-a-set-in-a-one-to-many-relationship/504600#504600 1 Answer by JK for Using SQL to search for a set in a one-to-many relationship JK 2009-02-02T19:45:17Z 2009-02-02T19:53:42Z <p>This is an old sql trick (works in Oracle, at least):</p> <pre><code>SELECT roleid FROM role_permission t1 WHERE NOT EXISTS ( (SELECT permissionid FROM role_permission t2 WHERE t2.roleid = t1.roleid MINUS SELECT permissionid FROM role_permission WHERE roleid = 'Admin') UNION (SELECT permissionid FROM role_permission t2 WHERE roleid = 'Admin' MINUS SELECT permissionid FROM role_permsission t2 WHERE t2.roleid = t1.roleid) ) </code></pre> <p>Also not validated. Red wine always sounds good.</p> http://stackoverflow.com/questions/287781/what-software-have-you-purchased-to-use-at-work-that-your-company-wouldnt-purch/288082#288082 1 Answer by JK for What software have you purchased to use at work, that your company wouldn't purchase? JK 2008-11-13T20:04:11Z 2008-11-13T20:04:11Z <p>UltraEdit. Lifetime license was woth every penny - I use it every day.</p> http://stackoverflow.com/questions/288007/oracle-sql-optimization-sql-query-taking-very-long-time/288073#288073 -1 Answer by JK for Oracle SQL Optimization: SQL Query taking very long time JK 2008-11-13T20:02:49Z 2008-11-13T20:02:49Z <p>Get rid of the DISTINCT.</p> http://stackoverflow.com/questions/231135/whats-the-cobol-bible/287988#287988 2 Answer by JK for What's the COBOL "Bible"? JK 2008-11-13T19:38:57Z 2008-11-13T19:38:57Z <p>I was born and raised on Stern and Stern's <em>Structured Cobol Programming</em>, but I don't know of its biblical significance. (it did teach me COBOL, however.)</p> http://stackoverflow.com/questions/122069/dealing-with-apathy/122092#122092 1 Answer by JK for Dealing with Apathy JK 2008-09-23T16:24:14Z 2008-09-23T16:24:14Z <p>You need to move in new directions and be self-motivaed. It's not going to come from outside of you. Find an old PC lying around and install some flavor of linux. Make it do something useful in your spare time.</p> <p>Or, take a vacation.</p> http://stackoverflow.com/questions/119707/what-is-the-biggest-drawback-of-your-favorite-database/122072#122072 1 Answer by JK for What is the biggest drawback of <your favorite database>? JK 2008-09-23T16:19:52Z 2008-09-23T16:19:52Z <p><strong>Database</strong> Oracle</p> <p><strong>Defect</strong> Did not handle long datatype well for too long</p> <p><strong>Description</strong></p> <p>Oracle only had the long datatype until 9i (I believe) at which point it was deprecated in favor of the LOBs. There is a ton of code out there, however, which still has longs and all of the related restrictions. The biggest of which was that each table could only have one long column and it had to be at the end of the columns. See <a href="http://arjudba.blogspot.com/2008/06/long-datatype-in-oracle.html" rel="nofollow">here</a> for a more exhaustive list of restricitons on the long. </p> http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/121516#121516 5 Answer by JK for What is the one programming skill you have always wanted to master but haven't had time? JK 2008-09-23T14:50:58Z 2008-09-23T14:50:58Z <p>Embarrassingly, really learning regular expressions.</p> http://stackoverflow.com/questions/116650/curl-equivalent-in-java 5 cURL equivalent in JAVA JK 2008-09-22T18:34:18Z 2008-09-22T21:48:47Z <p>I am tasked with writing an authentication component for an open source JAVA app. We have an in-house authentication widget that uses https. I have some example php code that accesses the widget which uses cURL to handle the transfer. </p> <p>My question is whether or not there is a port of cURL to JAVA, or better yet, what base package will get me close enough to handle the task? </p> <p><strong>Update</strong>:</p> <p>This is in a nutshell, the code I would like to replicate in JAVA:</p> <pre><code>$cp = curl_init(); $my_url = "https://" . AUTH_SERVER . "/auth/authenticate.asp?pt1=$uname&amp;pt2=$pass&amp;pt4=full"; curl_setopt($cp, CURLOPT_URL, $my_url); curl_setopt($cp, CURLOPT_RETURNTRANSFER, 1); $result = curl_exec($cp); curl_close($cp); </code></pre> <p><a href="http://stackoverflow.com/questions/116650/curl-equivalent-in-java#116725">Heath</a>, I think you're on the right track, I think I'm going to end up using HttpsURLConnection and then picking out what I need from the response.</p> http://stackoverflow.com/questions/116354/what-fun-things-do-you-do-to-release-stress-at-the-office/116379#116379 4 Answer by JK for What fun things do you do to release stress at the office? JK 2008-09-22T17:52:57Z 2008-09-22T17:52:57Z <p>Mercilessly tease the weakest among us.</p> http://stackoverflow.com/questions/14155/windows-based-text-editors/115788#115788 0 Answer by JK for Windows-based Text Editors JK 2008-09-22T16:06:56Z 2008-09-22T16:06:56Z <p>Column mode in UltraEdit is fantastic.</p> http://stackoverflow.com/questions/112028/what-was-the-biggest-lesson-you-learned-in-your-career-as-an-it-professional/115761#115761 0 Answer by JK for What was the biggest lesson you learned in your career as an IT professional? JK 2008-09-22T16:03:25Z 2008-09-22T16:03:25Z <p>You can never have enough clarification and detail with project requirements.</p> http://stackoverflow.com/questions/102265/are-peoplesoft-integration-broker-asynchronous-messages-fired-serially-on-the-rec/115641#115641 0 Answer by JK for Are PeopleSoft Integration Broker asynchronous messages fired serially on the receiving end? JK 2008-09-22T15:43:29Z 2008-09-22T15:43:29Z <p>Any luck with Global Support?</p> http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84826#84826 387 Answer by JK for What's your favorite "programmer" cartoon? JK 2008-09-17T16:01:36Z 2008-09-22T15:30:19Z <p><a href="http://xkcd.com/208/" rel="nofollow" title="&quot;Wait, forgot to escape a space. Wheeeeee[taptaptap]eeeeee.&quot;"><img src="http://imgs.xkcd.com/comics/regular_expressions.png" alt="alt text" title="&quot;Wait, forgot to escape a space. Wheeeeee[taptaptap]eeeeee.&quot;" /></a></p> http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/86217#86217 0 Answer by JK for Tracking down where disk space has gone on Linux? JK 2008-09-17T18:37:00Z 2008-09-17T18:37:00Z <p>I can't take credit for this, but I found it just yesterday:</p> <pre><code>$ find &lt;path&gt; -size +10000k -print0 | xargs -0 ls -l </code></pre> <p><a href="http://linuxandfriends.com/2008/09/10/how-to-find-large-files-in-linux-using-command-line/" rel="nofollow">link text</a></p> http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/84729#84729 29 Answer by JK for What's Your Motto As A Developer/Programmer? JK 2008-09-17T15:49:39Z 2008-09-17T15:49:39Z <p>“A designer knows he has achieved perfection not when there is nothing left to add, but when there is nothing left to take away.” —<em>Antoine De Saint-Exupery</em></p> http://stackoverflow.com/questions/262657/the-coolest-server-names/531417#531417 Comment by JK on The Coolest Server Names JK 2009-02-16T17:50:48Z 2009-02-16T17:50:48Z Rec for Cleveland reference. http://stackoverflow.com/questions/504508/using-sql-to-search-for-a-set-in-a-one-to-many-relationship/504600#504600 Comment by JK on Using SQL to search for a set in a one-to-many relationship JK 2009-02-02T20:19:01Z 2009-02-02T20:19:01Z Thanks. I like Mehrdad's solution as well. The advantage to this is that you don't need to know the number of permissions you are trying to match before hand, only the roleid that you are trying to match. The downsode is that it's fairly opaque. http://stackoverflow.com/questions/288007/oracle-sql-optimization-sql-query-taking-very-long-time/288073#288073 Comment by JK on Oracle SQL Optimization: SQL Query taking very long time JK 2008-11-14T18:23:28Z 2008-11-14T18:23:28Z See @jlrolin response above. http://stackoverflow.com/questions/102265/are-peoplesoft-integration-broker-asynchronous-messages-fired-serially-on-the-rec/115641#115641 Comment by JK on Are PeopleSoft Integration Broker asynchronous messages fired serially on the receiving end? JK 2008-09-22T18:55:48Z 2008-09-22T18:55:48Z Been there. Do you know if the financials group or the tools group looked at it? I'll ask around here, maybe try to get some other folks to join SO. http://stackoverflow.com/questions/102265/are-peoplesoft-integration-broker-asynchronous-messages-fired-serially-on-the-rec Comment by JK on Are PeopleSoft Integration Broker asynchronous messages fired serially on the receiving end? JK 2008-09-20T15:18:25Z 2008-09-20T15:18:25Z I'm assuming you opened a case with GSC? http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/85259#85259 Comment by JK on What's your favorite "programmer" cartoon? JK 2008-09-17T16:56:27Z 2008-09-17T16:56:27Z &quot;We lost the documentation on quantum mechanics. You'll have to decode the regexes yourself.&quot;