User DanielHonig - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T19:27:01Zhttp://stackoverflow.com/feeds/user/18567http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1766067/what-is-the-most-useable-vi-vim-plugin-for-eclipse4What is the most useable VI/VIM plugin for eclipse?DanielHonig2009-11-19T19:52:02Z2009-11-19T20:14:58Z
<p>I used to be a huge fan of Intelli-J and there is a fantastic VI plugin for Idea. Now I'm shifting to the Spring Source Tool Suite for my primary IDE and need to find a VI plugin that will allow me to work just as effectively.</p>
<p>What plugin are people using?</p>
http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1735479#17354794Answer by DanielHonig for RegEx match open tags except XHTML self-contained tagsDanielHonig2009-11-14T20:24:42Z2009-11-14T20:24:42Z<p>I know Java isn't cool anymore, but if you want to use a really good library in Java, you might check into Tag soup which is built on top of Xerces. <a href="http://home.ccil.org/~cowan/XML/tagsoup/" rel="nofollow">http://home.ccil.org/~cowan/XML/tagsoup/</a></p>
http://stackoverflow.com/questions/122815/has-anbody-used-boo-and-can-you-comment-on-your-experiences2Has anbody used Boo and can you comment on your experiences?DanielHonig2008-09-23T18:26:14Z2009-11-07T00:00:31Z
<p>I'm looking for a groovy equivalent on .NET
<a href="http://boo.codehaus.org/" rel="nofollow">http://boo.codehaus.org/</a></p>
<p>So far Boo looks interesting, but it is statically typed, yet does include some of the metaprogramming features I'd be looking for.</p>
<p>Can anyone comment on the experience of using Boo and is it worth looking into for more than hobby purposes at a 1.0 Version? </p>
<p><em>Edit</em>: Changed BOO to Boo</p>
http://stackoverflow.com/questions/1570792/where-can-i-find-information-on-how-to-customize-the-user-registration-process-of0Where can I find information on how to customize the user registration process of Liferay + Sun Web Space PortalDanielHonig2009-10-15T07:25:56Z2009-10-20T18:01:19Z
<p>I need to quickly customize the user registration form of the liferay/web space portal? Have not found any direct information on this so would appreciate any tips.</p>
http://stackoverflow.com/questions/384764/dealing-with-anti-microsoft-trolls-on-the-internet/385564#38556411Answer by DanielHonig for Dealing with Anti-Microsoft Trolls on The InternetDanielHonig2008-12-22T04:32:36Z2009-09-15T20:02:29Z<p>There is a theory I once heard that the .NET programmer is the <a href="http://www.caffeinatedcoder.com/are-net-developers-the-american-tourists-of-the-software-industry/" rel="nofollow">American tourist</a> of programmers. Meaning that there is a perception in the market that the .NET programmer does not care about solutions that did not come from Microsoft. That if a solution is not the official M$ way, then it isn't any good. I know personally many devs that work in .NET who struggle to see the light beyond datatables and sql queries. Sure these are good solutions in some places but in other places an ORM framework or other tool that might come from the community may be a better fit...</p>
<p>But while the American Tourist idea of a .NET programmer might fit some individuals it certainly doesn't speak for everyone. What is now being called 'Alt.NET' is full of fresh ideas and innovations that are not directly from m$. I think you should like C#, it is a very good application language. In the past it was a mix of Helsberg's experiences with Delphi and Java but going forward I think you can see with Java 7, some influence from C# on Java.</p>
<p>I don't like the stereotyping and name calling that is so common place. I think if your dedicated to learning and furthering the craft of being a software professional the tools are less important. That is to say if my favorite language is groovy and your favorite language is C#, our similarities are much greater than our differences overall. Unfortunately, this kind of 'let's all sing kumbaya' thinking does not describe the reality of social sites.</p>
<p>I'm not sure how to address the negative mindset that is so pervasive across such sites, but I can definitely say that if your talented, dedicated to learning and the craft of building great software then that is all that should really matter in the free exchange of thoughts and ideas about software.</p>
http://stackoverflow.com/questions/490522/what-is-the-correct-way-to-restore-a-a-deleted-file-from-svn/1402160#14021600Answer by DanielHonig for What is the correct way to restore a a deleted file from SVN?DanielHonig2009-09-09T21:18:54Z2009-09-09T21:18:54Z<p>The easiest way I have been able to restore files and not lose revision history is using SVN copy, the merge example above to me seems like a more complex way to achieve the same thing. Why is there a need to merge when you simply want to restore a revision?</p>
<p>I use the following in this instance and it works quite well.</p>
<p>svn copy -m 'restoring file' -r <a href="http://from/file.cs" rel="nofollow">http://from/file.cs</a> <a href="http://pathTo/file.cs" rel="nofollow">http://pathTo/file.cs</a></p>
<p>I always seem to use svn copy as a server operation so not sure if it works with two working paths.</p>
http://stackoverflow.com/questions/645981/problem-with-imagetools-plugin-in-grails/1304443#13044430Answer by DanielHonig for Problem with ImageTools plugin in GrailsDanielHonig2009-08-20T07:06:01Z2009-08-20T07:06:01Z<p>I don't know what the plugin is really giving you over using JAI directly, IMHO it isn't doing much.</p>
<p>I use ImageMagick out of process for my image conversion and the results are superior to what can be done with JAI from what I have seen. Of course if your doing as much traffic as Amazon running out of process is not an option, however if you need to get to revenue as quickly as possible then you might want to consider what I've done. </p>
<p>I use apache-commons-exec to have a nice interface around handling opening an external process and reading data from std in and out. The only thing I'm using JAI for is to read the sizes of images.</p>
http://stackoverflow.com/questions/845881/what-are-best-practices-for-handling-wsiwyg-text-from-an-editor-such-as-the-yui-r0What are best practices for handling WsiWyg text from an editor such as the YUI Rich text editor?DanielHonig2009-05-10T19:01:39Z2009-08-12T07:33:31Z
<p>I'm looking for any experience someone can share regarding the usage of a rich text editor such as YUI's rich text editor. In particular I'm interested in how to deal with or prevent issues with</p>
<ol>
<li>Cross site scripting</li>
<li>Image or attachment handling</li>
</ol>
<p>Any similar questions you can provide links to or web articles would be appreciated.</p>
http://stackoverflow.com/questions/280148/how-do-you-counter-that-x-language-isnt-ready-for-banking-or-x-mission-criti1How do you counter that "X" language isn't ready for "Banking" or X mission critical app?DanielHonig2008-11-11T06:15:05Z2009-05-05T09:04:05Z
<p>So today I was explaining how Groovy uses the "Meta Object Protocol" or MOP to someone. More specifically I was explaining how Grails and GORM use the MOP to provide dynamic finders. The queston I got once the use of the MOP was sufficiently explained was, "Would you use that technology in banking?". My answer is why not? I've worked at many investment banks and just about all of them has some form of Perl or other scripting language in production doing important tasks. I know tons of hedge funds using Python, so why is it strange to be using something that implements the MOP? After all this concept came from Smalltalk, and I know there are definitely several mission critical apps in smalltalk....</p>
<p>My answer to using it was, that I would use it provided I had a talented team that understood the important of having good test coverage. However, even in a pure Java system we should probably have good test coverage, it is just that some larger institutions have been slow on the uptake with TDD and unit testing in general. </p>
http://stackoverflow.com/questions/752820/is-there-anything-as-good-as-toad-for-postgres-windows/753385#7533850Answer by DanielHonig for Is there anything as good as TOAD for Postgres (Windows)?DanielHonig2009-04-15T19:42:53Z2009-04-15T19:42:53Z<p>Navicat for PostgreSQL is working really well for me natively.
I set up phppgAdmin for the teams general use and it has been quite valuea
ble</p>
http://stackoverflow.com/questions/603283/what-is-the-best-java-image-processing-library-approach4What is the best java image processing library/approach?DanielHonig2009-03-02T17:47:43Z2009-03-13T15:54:06Z
<p>I am using both the JAI media apis and ImageMagick?</p>
<p>ImageMagick has some scalability issues and the JNI based JMagick isn't attractive either.
JAI has poor quality results when doing resizing operations compared to ImageMagick.</p>
<p>Does anyone know of any excellent tools either open source or commercial that are native java and deliver high quality results?</p>
http://stackoverflow.com/questions/621596/how-would-you-read-image-data-in-from-a-program-like-image-magick-in-java0How would you read image data in from a program like Image Magick In Java?DanielHonig2009-03-07T09:40:54Z2009-03-09T06:06:03Z
<p>I am working with ImageMagick and am wondering what the best way to read image data in from StdOut of the ImageMagick process.</p>
<p>I an invoking the command to the process like so:
/opt/local/bin/convert -resize 8000@ - -</p>
<p>and then piping a byte array to the process for processing. </p>
<p>what is the best way to read data from a process like this?</p>
http://stackoverflow.com/questions/621596/how-would-you-read-image-data-in-from-a-program-like-image-magick-in-java/625170#6251700Answer by DanielHonig for How would you read image data in from a program like Image Magick In Java?DanielHonig2009-03-09T06:06:03Z2009-03-09T06:06:03Z<p>Just want to post a code sample using ImageMagick via Apache commons exec for completeness</p>
<pre><code> try {
StringBuffer sb = new StringBuffer();
sb.append(this.validPathToImageMagickCommand);
sb.append('\u0020');
for (int i = 0; i < args.size(); i++) {
String s = args.get(i);
sb.append(s);
}
CommandLine cl = CommandLine.parse(sb.toString());
PumpStreamHandler pumpStreamHandler = new PumpStreamHandler(output, System.err, new ByteArrayInputStream(inputBytes));
byAs = new ByteArrayInputStream(inputBytes);
pumpStreamHandler.setProcessOutputStream(byAs);
DefaultExecutor executor = new DefaultExecutor();
executor.setStreamHandler(pumpStreamHandler);
int exitValue = executor.execute(cl);
outputBytes = output.toByteArray();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (byAs != null)
byAs.close();
if (output != null)
output.close();
} catch (IOException e) {
System.out.println(e);
}
}
</code></pre>
http://stackoverflow.com/questions/687/keyboard-for-programmers/281906#2819061Answer by DanielHonig for Keyboard for programmersDanielHonig2008-11-11T19:31:36Z2009-02-02T15:03:45Z<p>I am very happy with my Deck Legend</p>
<p><img src="http://www.deckkeyboards.com/catalog/images/ice_105_large.jpg" width="645"></p>
<p><a href="http://www.deckkeyboards.com/" rel="nofollow">http://www.deckkeyboards.com/</a></p>
http://stackoverflow.com/questions/447417/what-does-the-following-code-do-in-css0What does the following code do in CSS?DanielHonig2009-01-15T16:19:46Z2009-01-15T16:52:51Z
<p>I know nothing of CSS but am trying to figure out the meaning of this syntax:</p>
<pre><code>body {
margin: 0;
font-family: "Trebuchet MS", Helvetica;
background: #FFFFFF;
color: #FE6600;
overflow-x: hidden;
position: absolute;
margin: 0;
padding: 0;
left: 0;
top: 45px;
width: 100%;
min-height: 372px;
}
body > *:not(.toolbar) {
/*display: block;*/
position: absolute;
margin: 0;
padding: 0;
left: 0;
top: 45px;
width: 100%;
min-height: 372px;
}
</code></pre>
http://stackoverflow.com/questions/311939/apache-redirect-rule-always-fires-on-every-request0Apache Redirect Rule Always fires on every requestDanielHonig2008-11-23T00:13:47Z2008-12-01T01:34:33Z
<p>So the following rewrite rules always seem to fire. This has the effect of hiding another domain that I am hosting on the server?</p>
<p>I can't seem to figure out what's wrong and it is time to call in the experts:</p>
<pre><code>RewriteEngine on
RewriteCond %{HTTP_HOST} ^danielhonig.com
RewriteRule ^(.*)$ http://www.danielhonig.com/$1 [R=permanent,L]
RedirectMatch ^/$ http://www.danielhonig.com/gravl
Options None
</code></pre>
http://stackoverflow.com/questions/308915/why-are-circular-references-in-visual-studio-a-bad-practice/308945#308945-1Answer by DanielHonig for Why are circular references in Visual Studio a bad practice?DanielHonig2008-11-21T14:32:44Z2008-11-21T14:32:44Z<p>I'm pretty sure that isn't quite a correct answer @Selfinflicted. You are describing the algorithm of reference counting which is a very elementary way of performing garbage collection. Modern garbage collectors all are based on 'Mark and sweep'. You can read about it here <a href="http://www.brpreiss.com/books/opus5/html/page424.html" rel="nofollow">http://www.brpreiss.com/books/opus5/html/page424.html</a></p>
<p>Additionally Garbage collection varies, but .NET and Java use a generational garbage collection scheme:
<a href="http://www.csharphelp.com/archives2/archive297.html" rel="nofollow">http://www.csharphelp.com/archives2/archive297.html</a></p>
<p>Generational garbage collection expands on mark and sweep</p>
http://stackoverflow.com/questions/289361/in-java-how-do-you-check-to-see-if-a-function-returns-and-exact-negative-value0In java how do you check to see if a function returns and exact negative value? [closed]DanielHonig2008-11-14T06:25:04Z2008-11-14T06:35:48Z
<p>Can't believe I don't know the answer to this, but getting late and SO is my only hope of getting some decent sleep ;)</p>
<p>So far I know these are not it:
assert solver.solveArray(array3) == -1
assert solver.solveArray(array3) == (-1)</p>
http://stackoverflow.com/questions/289361/in-java-how-do-you-check-to-see-if-a-function-returns-and-exact-negative-value/289376#2893760Answer by DanielHonig for In java how do you check to see if a function returns and exact negative value?DanielHonig2008-11-14T06:35:48Z2008-11-14T06:35:48Z<p>My algorithm was fubar....
thanks for the help anyways</p>
http://stackoverflow.com/questions/280086/does-the-order-of-parameters-in-the-where-clause-affect-whether-a-table-uses-an-i4Does the order of parameters in the where clause affect whether a table uses an index?DanielHonig2008-11-11T05:19:24Z2008-11-11T10:35:15Z
<p>So I am wondering if there is a definitive answer to this question.<br />
Also, does it matter if the index is clustered vs. non-clustered.
Is it the same in all RDBMS implementations or is the exact behavior going to be proprietary?</p>
http://stackoverflow.com/questions/270651/what-guidelines-do-you-adhere-to-for-writing-good-logging-statements7What guidelines do you adhere to for writing good logging statementsDanielHonig2008-11-06T22:50:54Z2008-11-07T06:40:12Z
<p>I recently found a log statement in my projects codebase that says
"here i am with search parameter==>===========11/30/2008===1====00:00 AM"</p>
<p>what guidelines do you adhere to for writing good log messages in an application?</p>
http://stackoverflow.com/questions/265410/doing-a-generic-sqlquery-in-grails/266608#2666081Answer by DanielHonig for Doing a generic <sql:query> in GrailsDanielHonig2008-11-05T20:49:41Z2008-11-05T20:49:41Z<p>This question could be rephrased as, how do I write code like a naive ASP.NET developer?
(Not all ASP.NET developers are naive, some can be quite good)</p>
<ol>
<li>Any static method is available to you in a gsp page. You can use any MyDomain.findBy, list(), count you want from page scope.</li>
<li><p>You could also use a criteria query MyDomain.createCriteria()
You can then pass the result to a taglib.</p>
<p>But all of this seems to violate MVC principles. Your view should just be a view....</p></li>
</ol>
<p>What you asked really isn't idomatic to a grails application. I realize it is commonplace in the Microsoft world, execute a query, pass it to a datagrid....But there is no direct analouge in Grails and probably for good reason</p>
http://stackoverflow.com/questions/33744/is-scala-the-next-big-thing/260961#2609614Answer by DanielHonig for Is Scala the next big thing?DanielHonig2008-11-04T05:15:18Z2008-11-04T05:15:18Z<p>What about Erlang, Haskell and F#?</p>
<p>I don't ever see Haskell gaining wide spread adoption. However it is a very beautiful language to study for it's functional purity. Erlang strikes me as a more practical Haskell. With its combination of functional and imperative features combined with its robust mechanisms for distributed programming I can definetly see it being a language that gains popularity for its ability to handle highly distributed scenarios very well. One famous example of this is Facebook chat, where Erlang is used to power the chats. Erlangs background in telecomm has poised it to be uniquely suited for distributed problems. </p>
<p>F# I don't know enough about, but I'm already encountering it in job requirements. From this I garner what I think is writing on the wall. That now is the time to start understanding the functional way of programming. While it is definitely too early to tell what language will win the functional battle, I think that overall we can say that the functional paradigm is strongly gaining steam and those of us who like to think of ourselves as "Bleeding Edge" or at the top, need to understand the benefits that can be gained from functional programming. It will probably be a while before most of us are asked to build a solution in any of these languages, but if nothing else learning one of these languages will help you become a better programming in the imperative model.</p>
http://stackoverflow.com/questions/260903/object-modeling-references/260944#2609440Answer by DanielHonig for Object modeling referencesDanielHonig2008-11-04T05:03:19Z2008-11-04T05:03:19Z<p>You mentioned a prerequisite book, are you looking more on a technical angle or a general angle?</p>
<p>from a more technical angle I have to recommend craig larmans patterns book:
<a href="http://rads.stackoverflow.com/amzn/click/0131489062" rel="nofollow">http://www.amazon.com/Applying-UML-Patterns-Introduction-Object-Oriented/dp/0131489062/ref=sr_1_1/002-2801511-2159202?ie=UTF8&s=books&qid=1194351090&sr=1-1</a></p>
<p>from a more general angle I would recommend Scott Ambler's book the OO Primer
<a href="http://rads.stackoverflow.com/amzn/click/0131489062" rel="nofollow">http://www.amazon.com/Applying-UML-Patterns-Introduction-Object-Oriented/dp/0131489062/ref=sr_1_1/002-2801511-2159202?ie=UTF8&s=books&qid=1194351090&sr=1-1</a></p>
http://stackoverflow.com/questions/260889/canoo-webfunctionaltest-selenium-features-comparison/260904#2609042Answer by DanielHonig for Canoo WebFunctionalTest / Selenium, features comparisonDanielHonig2008-11-04T04:41:37Z2008-11-04T04:41:37Z<p>So I initially pursued Canoo as a direction for functional tests.
I ended up choosing Selenium as we saw that running selenium in browser
was a better fit for us than Canoo which uses HTTPUnit to run tests.</p>
<p>If you are running tests at build time with selenium you will need to
have the browser
software you wish to use on the build server. It is not possible for
us to test IE on our build
server for example....So we only run the tests in Firefox.</p>
<p>The killer feature for us was the Selenium IDE. We have folks using
the selenium IDE
who are not really developers which is a great help. The development team
works with them to make sure the tests are running properly.</p>
<p>Canoo has its own advantages that, A rather biased blog entry is here:
<a href="http://mguillem.wordpress.com/2007/10/29/webtest-vs-selenium-webtest-wins-13-5/" rel="nofollow">http://mguillem.wordpress.com/2007/10/29/webtest-vs-selenium-webtest-wins-13-5/</a></p>
<p>Note that in spite of all those things I still prefer Selenium...</p>
http://stackoverflow.com/questions/253796/how-would-you-maintain-legacy-applications/253829#2538291Answer by DanielHonig for How would you maintain legacy applicationsDanielHonig2008-10-31T15:01:31Z2008-10-31T15:01:31Z<p>sudo rm -rf /</p>
<p>But more seriously, I think it has to be evaluated. If the code continually is a source of requests for change and the changes are difficult then before long you have to consider if it is worth it to try and refactor/re-engineer the system into something more modern. Of course this isn't always practical, so you often end up with just a few people on the team who are responsible for maintaining the legacy parts. As much as possible, everyone on the team should be able to maintain all parts of the system......</p>
<p>One more thing that I think is important is to track the amount of time and effort that a team spends working on a legacy system doing maintenance/feature requests. These metrics can be convincing when evaluating the planning of a new effort to replace the legacy systems/components.</p>
http://stackoverflow.com/questions/215537/startup-deployment-architecture-running-glassfish-v3-prelude-without-apache1Startup Deployment Architecture- Running Glassfish V3 Prelude without Apache...DanielHonig2008-10-18T20:26:03Z2008-10-21T06:36:46Z
<p>So am I crazy for considering doing a beta/production release on Glassfish V3 Prelude?
Since all of my content is dynamic, I'm not even thinking of bothering to set up apache in front either. Doing so complicates the setup by requiring something like AJP or mod_jk and will not offer us much in terms of capability.</p>
<p>So there will be three war files on deployment.
3 JNDI data sources with about 90 connections parked, scaling up to 160 to a PGSQL datastore....</p>
<p>The three wars comprise a CMS system and a grails application?</p>
<p>Is my logic fatally flawed that I don't need to put apache in front of this setup?</p>
http://stackoverflow.com/questions/205324/which-db-should-i-select-if-performance-of-postgres-is-low/205363#2053634Answer by DanielHonig for which db should i select if performance of postgres is lowDanielHonig2008-10-15T16:15:35Z2008-10-15T16:15:35Z<p>Ithink your best choice is still PostgresSQL. Spend the time to make sure you have properly tuned your application. After your confident you have reached the limits of what can be done with tuning, start cacheing everything you can. After that, start think about moving to an asynchronous master slave setup...Also are you running OLAP type functionality on the same database your doing OLTP on?</p>
http://stackoverflow.com/questions/204139/how-is-spring-net-making-my-life-easier/204156#2041561Answer by DanielHonig for How is Spring.Net making my life easier?DanielHonig2008-10-15T09:29:06Z2008-10-15T09:29:06Z<p>If you don't understand, you might ought not use spring.....</p>
<p>But Spring.NET is a good framework. It is more than IoC, alot more....
If you don't understand dependency injection/IOC or Aspect Oriented Concepts, spring may not do too much for you and you might as well stick to service locator type things and explicit try/catch blocks all over your code....</p>
http://stackoverflow.com/questions/195101/running-a-web-app-in-grails-vs-django/195152#1951525Answer by DanielHonig for Running a web app in Grails vs DjangoDanielHonig2008-10-12T06:23:56Z2008-10-12T06:23:56Z<p>You can run grails in 256 megs of ram. Many members of the community are doing so. That being said I would say in either platform you want much more ram than that to make sure your performant. But I might also reccomend checking out www.linode.com. You can get quality hosting for a very reasonable cost and adding a bit of ram for grails will not break your budget. Also if your interested in cloud based solutions Morph is hosting grails apps.
<a href="http://developer.mor.ph/grails" rel="nofollow">http://developer.mor.ph/grails</a></p>
<p>I like Django, but I for the maturity of the platform and the amount of quality Java work out there in terms of libaries and frameworks I chose grails. In truth I think they are both good solutions but you cannot deny that your options are much greater with grails.</p>
http://stackoverflow.com/questions/1766067/what-is-the-most-useable-vi-vim-plugin-for-eclipse/1766207#1766207Comment by DanielHonig on What is the most useable VI/VIM plugin for eclipse?DanielHonig2009-11-19T20:25:12Z2009-11-19T20:25:12ZHave you tried any of the open source plugins?http://stackoverflow.com/questions/490522/what-is-the-correct-way-to-restore-a-a-deleted-file-from-svn/490528#490528Comment by DanielHonig on What is the correct way to restore a a deleted file from SVN?DanielHonig2009-09-09T21:21:01Z2009-09-09T21:21:01Zthis seems like a fair answer but not sure why SVN merge is justified over svn copy?http://stackoverflow.com/questions/845881/what-are-best-practices-for-handling-wsiwyg-text-from-an-editor-such-as-the-yui-r/1264750#1264750Comment by DanielHonig on What are best practices for handling WsiWyg text from an editor such as the YUI Rich text editor?DanielHonig2009-08-20T07:01:23Z2009-08-20T07:01:23ZI implemented antisamy and am looking at finishing a grails plugin for ithttp://stackoverflow.com/questions/75798/django-vs-grails-vs/460360#460360Comment by DanielHonig on Django -vs- Grails -vs- ???DanielHonig2009-06-19T19:09:55Z2009-06-19T19:09:55ZGroovy is not "Simpler" than Java. Such a statement means that you just haven't dug far enough in the language to realize its full potential and complexity.http://stackoverflow.com/questions/621596/how-would-you-read-image-data-in-from-a-program-like-image-magick-in-java/621606#621606Comment by DanielHonig on How would you read image data in from a program like Image Magick In Java?DanielHonig2009-03-07T21:42:55Z2009-03-07T21:42:55ZThanks, my problems were mostly between the chair and keyboard and due to hacking way too late in the night. However, your tip for Apache Exec paid off and improved the quality of the solution.
http://stackoverflow.com/questions/603283/what-is-the-best-java-image-processing-library-approach/603352#603352Comment by DanielHonig on What is the best java image processing library/approach?DanielHonig2009-03-03T06:48:43Z2009-03-03T06:48:43ZI am aware of processing, but are folks really using it in the, I'd like to go run X transformation on my library of X jpeg's sort of fashion?
http://stackoverflow.com/questions/260889/canoo-webfunctionaltest-selenium-features-comparison/260904#260904Comment by DanielHonig on Canoo WebFunctionalTest / Selenium, features comparisonDanielHonig2009-03-02T00:34:27Z2009-03-02T00:34:27ZSure there are alot of possibilities I've become aware of since writing that response 4 months agohttp://stackoverflow.com/questions/384764/dealing-with-anti-microsoft-trolls-on-the-internet/385528#385528Comment by DanielHonig on Dealing with Anti-Microsoft Trolls on The InternetDanielHonig2008-12-22T04:33:14Z2008-12-22T04:33:14Zwhy do microsoft and open source have to be mutually exclusive?http://stackoverflow.com/questions/311939/apache-redirect-rule-always-fires-on-every-request/311945#311945Comment by DanielHonig on Apache Redirect Rule Always fires on every requestDanielHonig2008-11-23T00:33:05Z2008-11-23T00:33:05ZTried putting them in location tags...This caused the site to redirect to the other domain all the time?http://stackoverflow.com/questions/280086/does-the-order-of-parameters-in-the-where-clause-affect-whether-a-table-uses-an-i/280090#280090Comment by DanielHonig on Does the order of parameters in the where clause affect whether a table uses an index?DanielHonig2008-11-11T05:57:47Z2008-11-11T05:57:47Z@Ned can you make any statements that are almost always true?
Such as the from clause or order by clause will always impact query performance?http://stackoverflow.com/questions/280086/does-the-order-of-parameters-in-the-where-clause-affect-whether-a-table-uses-an-i/280090#280090Comment by DanielHonig on Does the order of parameters in the where clause affect whether a table uses an index?DanielHonig2008-11-11T05:25:18Z2008-11-11T05:25:18ZThat's why I always would check the query plan in practice, however, how would you answer for an interview?http://stackoverflow.com/questions/215537/startup-deployment-architecture-running-glassfish-v3-prelude-without-apache/220977#220977Comment by DanielHonig on Startup Deployment Architecture- Running Glassfish V3 Prelude without Apache...DanielHonig2008-11-04T04:54:37Z2008-11-04T04:54:37ZYeah I was thinking along the same lines, but at the moment I don't have any content that isn't served from a Java web app and I could add forums from a java app as well....our cms has forums and the cms is in java, magnolia cms...http://stackoverflow.com/questions/215537/startup-deployment-architecture-running-glassfish-v3-prelude-without-apache/219143#219143Comment by DanielHonig on Startup Deployment Architecture- Running Glassfish V3 Prelude without Apache...DanielHonig2008-11-04T04:52:35Z2008-11-04T04:52:35Zyeah we have some features that will use Comet in the future. Less to worry about by deploying on the latest now is my reasoning.http://stackoverflow.com/questions/205324/which-db-should-i-select-if-performance-of-postgres-is-low/205361#205361Comment by DanielHonig on which db should i select if performance of postgres is lowDanielHonig2008-10-15T16:16:10Z2008-10-15T16:16:10ZWhat ODBMS solutions do you like? http://stackoverflow.com/questions/188843/what-techniques-do-you-use-when-you-are-designing-an-object-model-alone/189044#189044Comment by DanielHonig on What techniques do you use when you are designing an Object Model alone?DanielHonig2008-10-10T04:07:55Z2008-10-10T04:07:55Zbasically thats what I'm doing. However if you don't know rebbecca wirths-brock and CRC I reccomend checking it out. My question is about the limits of what you can do on your own and how to get beyond those?...but good answer nonetheless..... ;)