User pkaeding - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T15:58:56Z http://stackoverflow.com/feeds/user/4257 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/388201/how-can-i-prevent-gd-from-running-out-of-memory 1 How can I prevent GD from running out of memory? pkaeding 2008-12-23T04:49:49Z 2009-11-28T19:19:25Z <p>I'm not sure if memory is the culprit here. I am trying to instantiate a GD image from data in memory (it previously came from a database). I try a call like this:</p> <pre><code>my $image = GD::Image-&gt;new($image_data); </code></pre> <p><code>$image</code> comes back as <code>undef</code>. The POD for GD says that the constructor will return <code>undef</code> for cases of insufficient memory, so that's why I suspect memory.</p> <p>The image data is in PNG format. The same thing happens if I call newFromPngData.</p> <p>This works for very small images, like under 30K. However, slightly larger images, like ~70K will cause the problem. I wouldn't think that a 70K image should cause these problems, even after it is deflated.</p> <p>This script is running under CGI through Apache 2.0, on OS 10.4, if that matters at all.</p> <p>Are there any memory limitations imposed by Apache by default? Can they be increased?</p> <p>Thanks for any insight!</p> <p><strong>EDIT:</strong> For clarification, the GD::Image object never gets created, so clearing out the <code>$image_data</code> from memory isn't really an option.</p> http://stackoverflow.com/questions/1723287/calling-a-javascript-function-named-in-a-variable/1723428#1723428 1 Answer by pkaeding for Calling a JavaScript function named in a variable pkaeding 2009-11-12T16:16:39Z 2009-11-12T16:16:39Z <p>Definitely avoid using <code>eval</code> to do something like this, or you will open yourself to XSS (Cross-Site Scripting) vulnerabilities.</p> <p>For example, if you were to use the <code>eval</code> solutions proposed here, a nefarious user could send a link to their victim that looked like this:</p> <p><a href="http://yoursite.com/foo.html?func=function" rel="nofollow">http://yoursite.com/foo.html?func=function</a>(){alert('Im%20In%20Teh%20Codez');}</p> <p>And their javascript, not yours, would get executed. This code could do something far worse than just pop up an alert of course; it could steal cookies, send requests to your application, etc.</p> <p>So, make sure you never <code>eval</code> untrusted code that comes in from user input (and anything on the query string id considered user input). You could take user input as a key that will point to your function, but make sure that you don't execute anything if the string given doesn't match a key in your object. For example:</p> <pre><code>// set up the possible functions: var myFuncs = { func1: function () { alert('Function 1'); }, func2: function () { alert('Function 2'); }, func3: function () { alert('Function 3'); }, func4: function () { alert('Function 4'); }, func5: function () { alert('Function 5'); } }; // execute the one specified in the 'funcToRun' variable: myFuncs[funcToRun](); </code></pre> <p>This will fail if the <code>funcToRun</code> variable doesn't point to anything in the <code>myFuncs</code> object, but it won't execute any code.</p> http://stackoverflow.com/questions/1723282/how-should-i-display-this-background-using-css/1723315#1723315 0 Answer by pkaeding for How Should I Display This Background Using CSS? pkaeding 2009-11-12T16:02:31Z 2009-11-12T16:02:31Z <p>What if you applied the gradient background to the <code>html</code> element, and the repeating image to the <code>body</code> element? Does the repeating image have a transparent background, so the gradient will show through?</p> <p>I haven't tested this idea, and it may have issues with older versions of IE (which didn't handle transparency very well), but it may be worth investigating.</p> http://stackoverflow.com/questions/1645155/suggested-approaches-to-programmatically-make-and-record-a-voip-call 0 Suggested Approaches to programmatically make and record a VOIP call pkaeding 2009-10-29T17:00:19Z 2009-11-11T08:27:43Z <p>I want to write a program that will be able to call into my company's bi-weekly conference calls, and record the call, so it can then be made into a podcast.</p> <p>I am thinking of using Gizmo's SIP interface (and the fact that it allows you to make toll-free calls for free), but I am having trouble finding any example code (preferably in Java) that will be able to make an audio call, and get hold of the audio stream.</p> <p>I have seen plenty of SIP programming tutorials that deal with establishing a session, and then they seem to just do some hand waving, and say "here is where you can establish the audio connection" without actually doing it.</p> <p>I am experienced in Java, so I would prefer to use it, but other language suggestions are welcome as well.</p> <p>I have never written a VOIP application, so I'm not really sure where to start. Can anyone suggest a good library or other resource that would help me get started? </p> <p>Thanks!</p> http://stackoverflow.com/questions/1701803/possible-to-pass-variable-to-javascript-function-from-html-form-like-this/1701862#1701862 0 Answer by pkaeding for possible to pass variable to javascript function from html form like this? pkaeding 2009-11-09T15:43:57Z 2009-11-09T15:43:57Z <p>Sure, you can do this. What you are really doing here is creating a function on the fly. Your <code>jsFuction</code> executes when the page loads, not when the value changes. So, its return value should be a function--the function that you want to execute when the value changes. For example:</p> <pre><code>function jsFunction(number) { return function () { var currentValue = this.value; alert('I was given ' + number + ' and the current value is ' + currentValue); }; } </code></pre> http://stackoverflow.com/questions/1684247/javascript-for-vertical-text-scroll-breaking-page-layout/1684382#1684382 1 Answer by pkaeding for Javascript for vertical text scroll breaking page layout pkaeding 2009-11-05T23:26:36Z 2009-11-05T23:26:36Z <p>I couldn't find anything wrong in the problematic browsers you mentioned, but the HTML validation error is caused by the <code>language</code> attribute on the script tags. It is not needed. Try this instead:</p> <pre><code>&lt;script src="myvsbody.js" type="text/javascript"&gt;&lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1288856/what-is-involved-with-changing-attachmentfus-storage-scheme 0 What is involved with changing attachment_fu's storage scheme? pkaeding 2009-08-17T16:05:36Z 2009-11-03T20:02:21Z <p>I have a rails application that is using attachment_fu. Currently, it is using <code>:file_system</code> for storage, but I want to change it to <code>:s3</code>, to allow for better scaling as more files get uploaded.</p> <p>What is involved with this? I imagine that if I just switch the code to use <code>:s3</code>, all the old links will be broken. Do I need to just copy the existing files from the file system to S3? A google search hasn't turned up much on the topic.</p> <p>I would prefer to move the existing files over to S3, so everything is in the same place, but if necessary, the old files can stay where they are, as long as new ones go to S3.</p> <p><strong>EDIT:</strong> So, it is not as simple as copying over the files to S3; the URLs are created using a different scheme. When they are stored in <code>:file_system</code>, the files end up in places like /public/photos/0000/0001/file.name, but the same file in <code>:s3</code> might end up in 0/1/file.name. I think it is using the id something, and just padding it (or not) with zeros, but I'm not sure of that.</p> http://stackoverflow.com/questions/53081/html-meta-keyword-description-element-useful-or-not/53093#53093 4 Answer by pkaeding for HTML meta keyword/description element, useful or not? pkaeding 2008-09-09T22:59:08Z 2009-10-28T14:35:51Z <p>Google will use meta tags, but the description, to better summarize your site. They won't help to increase your page rank.</p> <p>See: <a href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=79812" rel="nofollow">http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=79812</a></p> <p><strong>EDIT</strong>: @Petr, are you sure that meta tags influence page rank? I am pretty sure that they don't, but if you have some references, I'd love to learn more about this. I have seen <a href="http://googlewebmastercentral.blogspot.com/2009/09/google-does-not-use-keywords-meta-tag.html" rel="nofollow">this</a>, from the Official Google Webmaster Central Blog, which is what leads me to believe that they don't:</p> <blockquote> <p>Even though we sometimes use the description meta tag for the snippets we show, we still don't use the description meta tag in our ranking.</p> </blockquote> http://stackoverflow.com/questions/1597055/how-to-count-rows-that-have-the-same-values-in-two-columns-sql 3 How to count rows that have the same values in two columns (SQL)? pkaeding 2009-10-20T20:19:31Z 2009-10-20T20:28:24Z <p>I am sure there must be a relatively straightforward way to do this, but it is escaping me at the moment. Suppose I have a SQL table like this:</p> <pre><code>+-----+-----+-----+-----+-----+ | A | B | C | D | E | +=====+=====+=====+=====+=====+ | 1 | 2 | 3 | foo | bar | &lt;&lt; 1,2 +-----+-----+-----+-----+-----+ | 1 | 3 | 3 | biz | bar | &lt;&lt; 1,3 +-----+-----+-----+-----+-----+ | 1 | 2 | 4 | x | y | &lt;&lt; 1,2 +-----+-----+-----+-----+-----+ | 1 | 2 | 5 | foo | bar | &lt;&lt; 1,2 +-----+-----+-----+-----+-----+ | 4 | 2 | 3 | foo | bar | &lt;&lt; 4,2 +-----+-----+-----+-----+-----+ | 1 | 3 | 3 | foo | bar | &lt;&lt; 1,3 +-----+-----+-----+-----+-----+ </code></pre> <p>Now, I want to know how many times each combination of values for columns A and B appear, regardless of the other columns. So, in this example, I want an output something like this:</p> <pre><code>+-----+-----+-----+ | A | B |count| +=====+=====+=====+ | 1 | 2 | 3 | +-----+-----+-----+ | 1 | 3 | 2 | +-----+-----+-----+ | 4 | 2 | 1 | +-----+-----+-----+ </code></pre> <p>What would be the SQL to determine that? I feel like this must not be a very uncommon thing to want to do.</p> <p>Thanks!</p> http://stackoverflow.com/questions/580712/what-do-you-use-to-monitor-jscript-memory-usage-in-internet-explorer/1556053#1556053 0 Answer by pkaeding for What do you use to monitor jscript memory usage in Internet Explorer pkaeding 2009-10-12T18:09:50Z 2009-10-12T18:09:50Z <p>I have used <a href="http://outofhanwell.com/ieleak/index.php?title=Main%5FPage" rel="nofollow">Drip</a>, with pretty good results.</p> http://stackoverflow.com/questions/1539798/scraping-parsing-google-search-results-in-ruby/1539965#1539965 1 Answer by pkaeding for Scraping/Parsing Google search results in Ruby pkaeding 2009-10-08T19:36:49Z 2009-10-08T19:36:49Z <p>I'm unclear as to why you want to be screen scraping in the first place. Perhaps the REST search API would be more appropriate? It will return the results in JSON format, which will be much easier to parse, and save on bandwidth. For example, if your search was 'foo bar', you could just send a GET request to <a href="http://ajax.googleapis.com/ajax/services/search/web?v=1.0&amp;q=foo+bar" rel="nofollow">http://ajax.googleapis.com/ajax/services/search/web?v=1.0&amp;q=foo+bar</a> and handle the response.</p> <p>For more information, see this <a href="http://googlesystem.blogspot.com/2008/04/google-search-rest-api.html" rel="nofollow">blog post</a> or the <a href="http://code.google.com/apis/ajaxsearch/" rel="nofollow">official documentation</a>.</p> http://stackoverflow.com/questions/296020/how-can-i-lock-the-first-row-and-first-column-of-a-table-when-scrolling-possibly 3 How can I lock the first row and first column of a table when scrolling, possibly using javascript and CSS? pkaeding 2008-11-17T16:17:26Z 2009-10-07T19:26:58Z <p>How can I create a table that has its first row and first column both locked, as in Excel, when you activate 'freeze panes'? I need the table to both scroll horizontally and vertically (a lot of solutions for this exist, but only allow vertical scrolling).</p> <p>So, when you scroll down in the table, the first row will stay put, since it will have the column headings. This may end up being in a <code>thead</code>, or it may not, whatever makes the solution easier.</p> <p>When you scroll right, the first column stays put, since it holds the labels for the rows.</p> <p>I am pretty certain this is impossible with CSS alone, but can anyone point me toward a javascript solution? It needs to work in all major browsers.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/59561/what-tools-techniques-can-benefit-a-solo-developer/59612#59612 1 Answer by pkaeding for What tools/techniques can benefit a solo developer? pkaeding 2008-09-12T17:48:01Z 2009-10-06T21:32:47Z <p>I agree that you need to be able to block out some time to work on these larger projects. Pick a time in the day when your concentration is best (for me, it's the morning) and block out at least three hours to concentrate on these projects. It is important not to get distracted, since it can take a long time to get your mind wrapped around a problem and understand it. If something distracts you between that time that you get into the problem, and when you solve the problem, all that time will be wasted.</p> <p>If you have an office door, close it. If you don't, get some good noise-canceling headphones, and try to arrange your desk so you have a minimum number of visual distractions. Ask your coworkers not to disturb you during this time, unless there is some emergency, like an important server going down. Shut down your email client and IM client. Turn off your phone ringer, or send all calls to voice mail.</p> <p>As long as your coworkers understand your need for a solid block of concentration, this will work well. The last thing you need, though, is for them to feel like you are too important to be bothered by them.</p> http://stackoverflow.com/questions/1447474/philisophical-questions-about-test-driven-development/1447505#1447505 0 Answer by pkaeding for Philisophical Questions about Test-Driven Development pkaeding 2009-09-19T02:02:49Z 2009-09-19T02:02:49Z <p>As for the database angle, as Ngu Soon Hui mentioned, you should (IMHO) use something like <a href="http://www.dbunit.org/" rel="nofollow">DBUnit</a>, which will set up the database in a known configuration (so you can test for expected results) but it is using the real database that the real application will use.</p> <p>For large changes, I would recommend creating a branch, and allowing the tests to fail. This will give you a TODO list of areas that need to be changed, and it could be argued that this is where TDD really shines, even more than with the small, isolated functions.</p> http://stackoverflow.com/questions/1205033/ruby-on-rails-map-root-doesnt-seem-to-be-working 2 Ruby on Rails map.root doesn't seem to be working pkaeding 2009-07-30T07:44:46Z 2009-09-12T10:34:25Z <p>I am trying to get the root of my application to route to a default controller. From what I read, this should be possible with something like this at the bottom of my routes.rb file:</p> <pre><code>map.root :controller =&gt; 'albums' </code></pre> <p>or perhaps even:</p> <pre><code>map.home '', :controller =&gt; 'albums' </code></pre> <p>However, when I try navigating to <a href="http://myhost:8000/" rel="nofollow">http://myhost:8000/</a>, I just see the rails welcome page. I am restarting the application with the following command after making the change to routes.rb and before testing it:</p> <pre><code>sudo mongrel_cluster_ctl restart </code></pre> <p>Here is some more possibly pertinent environment information:</p> <pre><code>% rails -v Rails 2.3.3 % ruby -v ruby 1.8.7 (2008-08-11 patchlevel 72) [x86_64-linux] </code></pre> <p>I am sure I'm missing something simple, but I can't see what it is. Any ideas?</p> http://stackoverflow.com/questions/1396649/how-can-i-compare-two-revisions-in-git 0 How can I compare two revisions in git? pkaeding 2009-09-08T22:20:50Z 2009-09-09T05:58:38Z <p>I am using the eclipse plugin for Git on Mac OS 10.6, and I cannot figure out how to compare two version of a file. I can pull up the file's history, and see all of the commits, with their messages, but I can't figure out how to see what changed in each commit.</p> <p>This was very easy with subversion, and I'm sure its easy with Git, if you know where to look (but apparently, I don't).</p> <p>Any pointers would be greatly appreciated.</p> <p>To elaborate on my question, is there a way to access <code>git-diff</code> in the eclipse plugin?</p> http://stackoverflow.com/questions/1366052/is-it-possible-to-have-randomness-in-server-side-includes 0 Is it possible to have randomness in server-side includes? pkaeding 2009-09-02T06:07:34Z 2009-09-02T07:22:18Z <p>I want to introduce some random* behavior into an otherwise static html file. I want to experiment with two different advertising schemes, and I want to have the page erved randomly with either one or the other. It seems like overkill to use a scripting language to generate the whole thing, so I thought SSI would be ideal.</p> <p>I want to do something like this:</p> <pre><code>&lt;!--#if expr="shouldIdoA" --&gt; ... do A ... &lt;!--#else --&gt; ... do B ... &lt;!--#endif --&gt; </code></pre> <p>The part I am not sure about is how to decide between A or B.</p> <p><code>*</code> I really just want it to go one way about 50% of the time, and the other way about 50% of the time, so true randomness is not important. Even something as simple as deciding if the seconds part of the current time is even or odd would work for me.</p> http://stackoverflow.com/questions/1366052/is-it-possible-to-have-randomness-in-server-side-includes/1366262#1366262 1 Answer by pkaeding for Is it possible to have randomness in server-side includes? pkaeding 2009-09-02T07:22:18Z 2009-09-02T07:22:18Z <p>As I was writing the last part of my question, I got to thinking about how I could use the time to do what I needed. I came up with a workign solution which is by no means random, but it does serve up one ad or the other, in an even fashion.</p> <pre><code>&lt;!--#config timefmt='%S' --&gt; &lt;!--#if expr='$DATE_LOCAL &gt; 30' --&gt; ... do A ... &lt;!--#else --&gt; ... do B ... &lt;!--#endif --&gt; </code></pre> <p>So, this will serve up one version if we are in the first half of the minute, and the other version if we are in the second half of the minute.</p> <p>Please chime in if you know of any different/better way to do this!</p> http://stackoverflow.com/questions/1363040/how-can-i-be-sure-each-process-in-my-mongrelcluster-is-handling-requests 0 How can I be sure each process in my mongrel_cluster is handling requests? pkaeding 2009-09-01T15:17:10Z 2009-09-01T17:42:09Z <p>I have a rails application that takes a while to process certain requests (as it processes image uploads). I currently have three mongrel processes in a cluster, and I expect one of the other two to handle a second request if the first one is busy. </p> <p>However, this doesn't seem to be happening. If I watch the output from <code>top</code> on the server, I can tell when it is resizing an image, so if I try to hit the application with an easy request (which would normally finish quickly), it seems to wait until the long-running request in finished.</p> <p>When I look in the log/mongrel.xxxx.log files, all I see is the output from the application starting up. </p> <p>How can I verify which process is actually handling each request? </p> <p>Can I get them mongrels to log each request (even if it is just a timestamp, and something like 'GET /path/to/resource')?</p> <p>Any ideas why the cluster might not be sharing the load in the first place?</p> <p>The front-end web server is nginx, so maybe that is where I should be looking? The nginx access_log doesn't seem to have anything in it about where the request was proxied to.</p> http://stackoverflow.com/questions/1325348/mysql-error-query-was-empty-1065-on-simple-insert-statement 1 MySQL Error: Query was empty (1065) on simple INSERT statement pkaeding 2009-08-24T23:40:17Z 2009-08-25T21:42:38Z <p>I am trying to run a large script that creates a table, and then inserts almost 15,000 rows into it. The table gets created just fine, and then at the 833 INSERT, I get an error:</p> <pre><code>Error: Query was empty (1065) </code></pre> <p>Here is my 833rd INSERT statement (the one that is failing):</p> <pre><code>INSERT INTO CLASSCODE (CLASS_CODE, CLASS_CODE_NAME, RATE_GROUP, PROGRAM_NM, ST_CODE, EFF_DT, EXP_DT) VALUES (10255, "Funeral Directors - incl PL other than Crematory - 10255", 3, "Service", "AZ", 19980801, NULL); </code></pre> <p>I can't see any syntax errors or differences between this line, and one that works. FOr reference, here is an example of an INSERT statement that works just fine:</p> <pre><code>INSERT INTO CLASSCODE (CLASS_CODE, CLASS_CODE_NAME, RATE_GROUP, PROGRAM_NM, ST_CODE, EFF_DT, EXP_DT) VALUES (10425, "Frame Shop - Picture/Posters - 10425", 2, "Retail", "AZ", 19980801, NULL); </code></pre> <p>The part that puzzles me is that the error sounds like something that would happen if I was populating the new row using data from another SELECT statement, which was coming up empty. That is not the case, though, as my INSERT statements are all using static data.</p> <p>My table definition looks like this:</p> <pre><code>CREATE TABLE CLASSCODE ( CLASS_CODE INTEGER NOT NULL, CLASS_CODE_NAME VARCHAR(60) NOT NULL, RATE_GROUP SMALLINT NOT NULL, PROGRAM_NM VARCHAR(20) NOT NULL, ST_CODE CHAR(2), EFF_DT DATE, EXP_DT DATE) </code></pre> <p>I am running this script in the GUI MySQL Query Browser.</p> <p>Could it be something to do with the number of rows I'm trying to insert? Do I need to periodically commit? Is there something simple that I am just overlooking?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1060027/dbunit-did-not-find-column-mycol-for-schema-table-myschema-mytable-in-ca 0 DBUnit: Did not find column 'MYCOL' for <schema.table> 'MYSCHEMA .MYTABLE' in catalog 'MYDB' because names do not exactly match. pkaeding 2009-06-29T19:24:20Z 2009-08-21T08:08:21Z <p>I am having trouble creating an export of my database using an org.dbunit.database.QueryDataSet. When I call org.dbunit.dataset.xml.FlatXmlDataSet.write(IDataSet, OutputStream), I get the following stack trace:</p> <pre><code>java.lang.IllegalStateException: Did not find column 'MYCOL' for &lt;schema.table&gt; 'MYSCHEMA .MYTABLE' in catalog 'MYDB' because names do not exactly match. at org.dbunit.database.ResultSetTableMetaData.scrollTo(ResultSetTableMetaData.java:297) at org.dbunit.database.ResultSetTableMetaData.createColumnFromDbMetaData(ResultSetTableMetaData.java:262) at org.dbunit.database.ResultSetTableMetaData.createMetaData(ResultSetTableMetaData.java:154) at org.dbunit.database.ResultSetTableMetaData.createMetaData(ResultSetTableMetaData.java:131) at org.dbunit.database.ResultSetTableMetaData.&lt;init&gt;(ResultSetTableMetaData.java:97) at org.dbunit.database.AbstractResultSetTable.&lt;init&gt;(AbstractResultSetTable.java:84) at org.dbunit.database.AbstractResultSetTable.&lt;init&gt;(AbstractResultSetTable.java:63) at org.dbunit.database.ForwardOnlyResultSetTable.&lt;init&gt;(ForwardOnlyResultSetTable.java:65) at org.dbunit.database.CachedResultSetTableFactory.createTable(CachedResultSetTableFactory.java:52) at org.dbunit.database.AbstractDatabaseConnection.createQueryTable(AbstractDatabaseConnection.java:90) at org.dbunit.database.AbstractDatabaseConnection.createTable(AbstractDatabaseConnection.java:115) at org.dbunit.database.QueryTableIterator.getTable(QueryTableIterator.java:143) at org.dbunit.dataset.stream.DataSetProducerAdapter.produce(DataSetProducerAdapter.java:83) at org.dbunit.dataset.xml.FlatXmlWriter.write(FlatXmlWriter.java:124) at org.dbunit.dataset.xml.FlatXmlDataSet.write(FlatXmlDataSet.java:341) </code></pre> <p>In researching this, I saw that someone else had this problem back in February, and fixed it using a snapshot build of 2.4.4. I am using the regular release build of 2.4.4.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1203793/how-do-i-attach-to-skype-using-skype4java 1 How do I attach to Skype using Skype4Java? pkaeding 2009-07-30T00:19:11Z 2009-08-06T22:58:07Z <p>I am getting the following exception when trying to run the MakeCall example code:</p> <pre><code>com.skype.NotAttachedException at com.skype.Utils.convertToSkypeException(Utils.java:36) at com.skype.Skype.setDebug(Skype.java:116) at com.skype.sample.MakeCall.main(MakeCall.java:26) Caused by: com.skype.connector.NotAttachedException at com.skype.connector.Connector.assureAttached(Connector.java:580) at com.skype.connector.Connector.addConnectorListener(Connector.java:604) at com.skype.connector.Connector.addConnectorListener(Connector.java:591) at com.skype.connector.Connector.setDebug(Connector.java:209) at com.skype.Skype.setDebug(Skype.java:114) ... 1 more </code></pre> <p>Now, I have not provided any sort of API credentials, so I kind of expect it to fail. My question then, is how do I provide whatever credentials necessary to attach my connector? The documentation on Skype4Java seems pretty slim.</p> <p>After not getting any tips here, I have cross-posted this question on the <a href="http://forum.skype.com/index.php?showtopic=397881" rel="nofollow">Skype community foru</a>m as well.</p> http://stackoverflow.com/questions/1228833/sharing-a-java-synchronized-block-across-a-cluster-or-using-a-global-lock 2 Sharing a Java synchronized block across a cluster, or using a global lock? pkaeding 2009-08-04T17:25:17Z 2009-08-04T18:41:26Z <p>I have some code that I want to only allow access to by one thread. I know how to accomplish this using either <code>synchronized</code> blocks or methods, but will this work in a clustered environment?</p> <p>The target environment is WebSphere 6.0, with 2 nodes in the cluster.</p> <p>I have a feeling that <code>synchronized</code> won't work, since each instance of the application on each node will have its own JVM, right?</p> <p>What I am trying to do here is perform some updates to database records when the system is booted. It will look for any database records that are older that the version of the code, and perform specific tasks to update them. I only want one node to perform these upgrades, since I want to be sure that each work item is only upgraded once, and performance of these upgrades is not a big concern, since it only happens at application startup, and it only really does anything when the code has been changed since the last time it started up.</p> <p>The database is DB2v9, and I am accessing it directly via JNDI (no ORM layer).</p> <p>It has been suggested that a global lock might be the way to go here, but I'm not sure how to do that.</p> <p>Does anyone have any pointers in this arena?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1220585/where-do-you-keep-your-test-data-files/1220616#1220616 1 Answer by pkaeding for Where do you keep your test data files? pkaeding 2009-08-03T03:55:11Z 2009-08-03T03:55:11Z <p>I definitely think the test data should be versioned, in the same tree as the tests and source, so that it is easy to pull down the latest code and run the tests. I set up my trees like this:</p> <pre><code>trunk/ +- Source/ +- TestSource/ \- TestData/ </code></pre> <p>The tests then refer to ../TestData/myTestData.xml or whatever they need.</p> http://stackoverflow.com/questions/1208603/what-technologies-are-you-using-to-create-your-desktop-ui/1208742#1208742 0 Answer by pkaeding for What technologies are you using to create your desktop UI pkaeding 2009-07-30T19:19:55Z 2009-07-30T19:19:55Z <p>I haven't tried it yet, but <a href="http://javafx.com/" rel="nofollow">JavaFX</a> sounds pretty cool.</p> http://stackoverflow.com/questions/1110536/can-i-specify-which-vcs-module-or-adaptor-is-used-by-a-luntbuild-buiulder-or-sche 1 Can I specify which VCS module or adaptor is used by a Luntbuild buiulder or schedule? pkaeding 2009-07-10T16:20:18Z 2009-07-29T06:42:44Z <p>I have luntbuild set up and working great for my project, with several different builder schedules running on trunk. Now, I just created a branch, and I want to add at least one schedule (and corresponding builder, if necessary) to build that branch (I want the branch built separately from trunk).</p> <p>Is this possible? Some others in my company have just created separate projects in Luntbuild for their branches, but I feel like that might not be the ideal solution.</p> <p>So, to reiterate, I want to build this branch continuously. If I just add a second module to the current setup, it tries to build both trunk and the branch together. I want them build separately.</p> <p>Thanks for any insight!</p> <p><strong>EDIT</strong>: The bounty is about to end, and still no answers. I have worked around the original problem by creating a new project in LB, but I feel like there must be a better way.</p> http://stackoverflow.com/questions/843630/can-i-extend-functions-prototype-in-actionscript 0 Can I extend Function's prototype in ActionScript? pkaeding 2009-05-09T16:51:55Z 2009-07-28T23:00:01Z <p>I am trying to incorporate prototype.js's <code>bind()</code> function into my Flash component. I found <a href="http://jordan.broughs.net/archives/2007/11/resurrecting-actionscripts-delegate-for-function-binding-in-as3" rel="nofollow">this article</a> by Jordan Broughs, which gave me hope. He suggested using this code snippet:</p> <pre><code> Function.prototype.bind = function():Function { var __method:Function = this; var object:Object = arguments[0]; return function():void { __method.apply(object, arguments); } } </code></pre> <p>So, I put that in my class, outside of any methods or constructors. However, when I try to call bind() on a function, I get this compiler error:</p> <blockquote> <p>1061: Call to a possibly undefined method bind through a reference with static type Function.</p> </blockquote> <p>Any ideas?</p> http://stackoverflow.com/questions/1194216/what-do-you-do-when-your-team-leader-doesnt-know-something-simple/1194266#1194266 4 Answer by pkaeding for What do you do when your team leader doesn't know something simple? pkaeding 2009-07-28T13:57:40Z 2009-07-28T13:57:40Z <p>Does the IDE warn about this? That might be a good place to start, as it would be an outside influence saying that something is wrong.</p> <p>In the end, though, you need to pick your battles. I have been in similar situations, where teammates' sloppiness got on my nerves (I would define 'sloppiness' as this sort of thing, which doesn't break the code, but is just embarrassing to look at). I raised the issue, and tried to get them to fix it. In most cases, they say they agree with me, and perhaps fix that one occurrence, but then it happens again.</p> <p>In the end, I can to the realization that not everyone is as OCD about these types of things as I am, and my energy is better spent worrying about the functionality and maintainability of the code.</p> <p>The bigger problem, though, is his unwillingness to accept criticism. I would definitely bring that higher up the food chain, and if no one is responsive, look for another job.</p> http://stackoverflow.com/questions/1188524/what-is-the-maximum-length-a-url-can-be-to-be-opened-in-a-j2me-browser/1188646#1188646 0 Answer by pkaeding for What is the maximum length a URL can be to be opened in a J2ME browser? pkaeding 2009-07-27T14:54:28Z 2009-07-27T14:54:28Z <p>As @Stephen C pointed out, you can only count on the first 255 characters making it through. Can you modify your application to use a POST method instead? There is no limit to the amount of data that can be sent in a POST transaction.</p> http://stackoverflow.com/questions/1173311/is-there-javadoc-available-for-db2-drivers 0 Is there JavaDoc available for DB2 drivers? pkaeding 2009-07-23T17:34:00Z 2009-07-25T18:23:18Z <p>Is there anywhere I can point my IDE to and associate my DB2 driver (db2jcc.jar) to get the JavaDoc support? I looked through what is installed locally on my computer, and there doesn't seem to be anything. Is it available online at all?</p> http://stackoverflow.com/questions/1743901/other-forms-of-kluge/1743916#1743916 Comment by pkaeding on Other forms of "kluge"? pkaeding 2009-11-16T18:18:35Z 2009-11-16T18:18:35Z Agreed, but strictly speaking, your response should be a comment rather than an answer. http://stackoverflow.com/questions/1723282/how-should-i-display-this-background-using-css/1723315#1723315 Comment by pkaeding on How Should I Display This Background Using CSS? pkaeding 2009-11-12T17:27:13Z 2009-11-12T17:27:13Z Yes, I think that should work. make the div encapsulate all the content, and give it the repeating background. Let me know how it turns out, and don't forget to test in different browsers, since I suspect they may deal with this differently. http://stackoverflow.com/questions/1723287/calling-a-javascript-function-named-in-a-variable/1723417#1723417 Comment by pkaeding on Calling a JavaScript function named in a variable pkaeding 2009-11-12T16:18:08Z 2009-11-12T16:18:08Z The code you have there will work, but not for what the OP wants to do. I think the question is to take a string 'foo' and execute the function foo(). http://stackoverflow.com/questions/1723287/calling-a-javascript-function-named-in-a-variable/1723340#1723340 Comment by pkaeding on Calling a JavaScript function named in a variable pkaeding 2009-11-12T16:08:35Z 2009-11-12T16:08:35Z I agree, <code>eval()</code> should be avoided in this case, to avoid XSS issues. http://stackoverflow.com/questions/1684247/javascript-for-vertical-text-scroll-breaking-page-layout/1684382#1684382 Comment by pkaeding on Javascript for vertical text scroll breaking page layout pkaeding 2009-11-07T05:59:06Z 2009-11-07T05:59:06Z By the way, if you feel that this (or any) answer solves your problem, you may want to consider marking it as the 'accepted' answer, by clicking the check mark next to the answer. Thanks! http://stackoverflow.com/questions/1684247/javascript-for-vertical-text-scroll-breaking-page-layout/1684382#1684382 Comment by pkaeding on Javascript for vertical text scroll breaking page layout pkaeding 2009-11-06T00:22:21Z 2009-11-06T00:22:21Z Yeah, I am not sure why browser shots would show something different either, but it is possible that they aren't running the javascript, or something like that. There could be good security arguments for not running javascript in a setting like that. In any case, the virtual machines are a much more authentic representation of how your site will look &amp; function. http://stackoverflow.com/questions/1684247/javascript-for-vertical-text-scroll-breaking-page-layout Comment by pkaeding on Javascript for vertical text scroll breaking page layout pkaeding 2009-11-05T23:31:27Z 2009-11-05T23:31:27Z As an aside, I would suggest using virtual machines, rather than services like browsershots, to test cross-browser compatibility. THat way, you can actually interact with the site, instead of just look at it, which is critical for debugging javascript 'issues' with IE. Check out <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=21EABB90-958F-4B64-B5F1-73D0A413C8EF&amp;displaylang=en" rel="nofollow">microsoft.com/downloads/&hellip;</a> for virtual machines that run various versions of IE. http://stackoverflow.com/questions/1684247/javascript-for-vertical-text-scroll-breaking-page-layout Comment by pkaeding on Javascript for vertical text scroll breaking page layout pkaeding 2009-11-05T23:24:30Z 2009-11-05T23:24:30Z IE 7 looks fine too. http://stackoverflow.com/questions/1684247/javascript-for-vertical-text-scroll-breaking-page-layout Comment by pkaeding on Javascript for vertical text scroll breaking page layout pkaeding 2009-11-05T23:23:35Z 2009-11-05T23:23:35Z I just tried it in Opera 10 and IE 6, and it looked fine. I didn't see anything being repeated. Did you find a solution? http://stackoverflow.com/questions/1652804/how-to-analyze-evenness-oddness-of-numbers-in-java/1652831#1652831 Comment by pkaeding on How to analyze evenness/oddness of numbers in Java pkaeding 2009-10-30T23:52:06Z 2009-10-30T23:52:06Z How about this: oddcount += newnum1 mod 2; http://stackoverflow.com/questions/53081/html-meta-keyword-description-element-useful-or-not/53093#53093 Comment by pkaeding on HTML meta keyword/description element, useful or not? pkaeding 2009-10-28T14:36:56Z 2009-10-28T14:36:56Z @Petr, would you care to elaborate? I have edited my answer with more information as to why I thought that was not true. http://stackoverflow.com/questions/1597195/reward-for-editing-a-wiki-page/1597206#1597206 Comment by pkaeding on Reward for editing a wiki page pkaeding 2009-10-20T20:48:59Z 2009-10-20T20:48:59Z Agreed, you should think about how people will game the system to get points. Will they just go through adding whitespace, or swapping out words for synonyms? http://stackoverflow.com/questions/1597055/how-to-count-rows-that-have-the-same-values-in-two-columns-sql/1597089#1597089 Comment by pkaeding on How to count rows that have the same values in two columns (SQL)? pkaeding 2009-10-20T20:28:05Z 2009-10-20T20:28:05Z yes, there definitely seems to be a consensus! http://stackoverflow.com/questions/1583721/removing-css-style-for-element-by-id/1583837#1583837 Comment by pkaeding on removing css style for element by ID pkaeding 2009-10-18T02:42:10Z 2009-10-18T02:42:10Z +1 for a good answer to a confusing question http://stackoverflow.com/questions/1416688/how-to-create-similar-behavior-as-gmails-contact-manager/1516608#1516608 Comment by pkaeding on How to create similar behavior as Gmails Contact manager pkaeding 2009-10-12T18:06:36Z 2009-10-12T18:06:36Z I think the issue here is that a site like this is designed to use <i>humans</i> to help answer questions. A link to search results isn't very helpful. If you had listed books that you read, and you offered a few thoughts on them (eg, 'I liked this book because XXX, but it lacked in area YYY'), than that would be much more helpful. Anyone can type a query into a search engine, but search engines are notoriously bad at telling you if a thing is actually <i>good</i>