User miek - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T14:46:49Zhttp://stackoverflow.com/feeds/user/102170http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/28999/favorite-ide-feature/971114#9711141Answer by miek for Favorite IDE feature?miek2009-06-09T16:23:02Z2009-09-15T23:52:21Z<p>One of my favorites must be <em>being able to look up a specific file in a project by its name</em>.</p>
<p>When the project has a complex directory structure, it usually requires a bit of mouse+keyboard wizardry to navigate to the file you're after. The following prove themselves useful (on Mac OS X) each day:</p>
<ul>
<li>Cmd-Shift-N in <a href="http://en.wikipedia.org/wiki/IntelliJ%5FIDEA" rel="nofollow">IntelliJ IDEA</a> (Ctrl-Shift-N in Windows)</li>
<li>Ctrl-Shift-R/T ("Open resource or Open type") in Eclipse.</li>
</ul>
http://stackoverflow.com/questions/725546/portlet-jsr286-development-with-spring/1311404#13114040Answer by miek for portlet (jsr286) development with springmiek2009-08-21T11:22:47Z2009-08-21T11:22:47Z<p>I am just getting to know Portlet MVC with Spring 3.0 M4 and came across a <a href="http://www.salientpoint.com/blog/?p=384" rel="nofollow">modified PetPortlet sample</a> making use of Spring3 (JSR-286) features and annotations. While it is Mavenized and probably not directly deployable on Liferay, it still provides good examples. </p>
<p>Please comment should you happen to come across any others.</p>
http://stackoverflow.com/questions/1271334/liferay-portlets-on-grails-strengths-weaknesses1Liferay portlets on Grails, strengths + weaknesses?miek2009-08-13T11:14:06Z2009-08-18T22:54:21Z
<p>I'm interested in the possibility of developing <strong>Liferay</strong> portlets on Grails, using the <a href="http://grails.org/Portlets+Plugin" rel="nofollow">Grails Portlets plugin</a>. I reckon introducing a portlet framework (such as the Spring Portlet API) will make development faster and more comfortable, so being able to further add Groovy and Grails conventions to the mix sounds almost too good to be true. </p>
<p>I guess this combo is relatively new, since this far I've found no experiences on how well this works in practice, or of its potential pitfalls.</p>
<p>Any experiences, suggestions or warnings? I would greatly appreciate them.</p>
http://stackoverflow.com/questions/1067507/is-netbeans-6-7-incapable-of-debugging-groovy-closures-in-a-grails-application0Is Netbeans 6.7 incapable of debugging Groovy closures in a Grails application?miek2009-07-01T06:07:47Z2009-07-01T18:48:43Z
<p>It <a href="http://javasoapbox.blogspot.com/2009/06/whats-netbeans-67-got-for-groovy-and.html" rel="nofollow">seems to be possible</a> to debug Grails applications in the recently released Netbeans 6.7, even if not directly through the menus. However, is it really so, that it's still not possible to set breakpoints in closures, as hinted in this <a href="http://www.nabble.com/Debugging-Groovy-classes-in-NetBeans-td20653361.html" rel="nofollow">thread</a>?</p>
<p>I'm currently quite baffled by this, since I find it hard to believe they still haven't implemented proper debugging support. I am hoping to someone to prove me wrong.</p>
http://stackoverflow.com/questions/980623/itext-inserting-overlay-text-on-top-of-all-elements0iText - inserting overlay text on top of all elementsmiek2009-06-11T11:38:40Z2009-06-11T11:44:36Z
<p>Using the <a href="http://www.lowagie.com/iText/" rel="nofollow">iText PDF library</a>, is it possible to freely (like "position: absolute" in CSS) insert overlay text or other elements on page, so that it gets rendered on top of all existing elements?</p>
<p>Thanks for all the help and tips in advance.</p>
http://stackoverflow.com/questions/974304/append-a-jquery-element-to-a-string-that-contains-html/974339#974339-1Answer by miek for Append a jQuery element to a string that contains htmlmiek2009-06-10T08:33:59Z2009-06-10T08:40:19Z<p>How about trying with <code>jRow.html()</code>, like this?</p>
<pre><code>$('#tableId').append(jRow.html());
</code></pre>
<p>It should return you the actual HTML contents instead of the jQuery-wrapped element (jQuery object), which is probably what causes the problem, since append() expects to get a String to append.</p>
<ul>
<li><a
href="http://docs.jquery.com/Attributes/html" rel="nofollow">Attributes/html()</a></li>
<li><a
href="http://docs.jquery.com/Manipulation/append" rel="nofollow">Manipulation/append()</a></li>
</ul>
http://stackoverflow.com/questions/970133/externalizing-grails-datasource-configuration3Externalizing Grails Datasource configurationmiek2009-06-09T13:35:38Z2009-06-10T03:41:22Z
<p>Grails 1.x allows using external configuration files by setting the <strong>grails.config.locations</strong> directive. Is there a similar approach available for externalizing the database configuration in Datasource.groovy (without setting up JNDI)?</p>
<p>It would prove helpful to be able to configure DB credentials in a simple configuration file outside the application.</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/910793/php-detect-encoding-and-make-everything-utf-8/970538#9705384Answer by miek for PHP: Detect encoding and make everything UTF-8miek2009-06-09T14:54:40Z2009-06-09T15:05:52Z<p>This cheatsheet lists some common caveats related to UTF-8 handling in PHP:
<a href="http://developer.loftdigital.com/blog/php-utf-8-cheatsheet" rel="nofollow">http://developer.loftdigital.com/blog/php-utf-8-cheatsheet</a></p>
<p>This function detecting multibyte characters in a string might also prove helpful (<a href="http://www.unspecifiederror.net/2008/09/11/detecting-utf8-in-php-without-multibyte/" rel="nofollow">source</a>):</p>
<p><pre><code>
function detectUTF8($string)
{
return preg_match('%(?:
[\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
|\xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
|[\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
|\xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
|\xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
|[\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
|\xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
)+%xs',
$string);
}
</pre></code></p>
http://stackoverflow.com/questions/968494/avoiding-groovy-grails-internals-while-debugging-in-intellij-idea5Avoiding Groovy/Grails internals while debugging in IntelliJ Ideamiek2009-06-09T06:38:32Z2009-06-09T14:56:07Z
<p>I'm using IntelliJ Idea 8.1.2 for Grails development. The dynamic nature of Groovy is giving me a hard time debugging my code: I keep ending up in the internals of Groovy/Grails, i.e. CachedMethod, ExpandoMetaClass or the like.</p>
<p>Is there a way for example to tell the Idea debugger to completely skip the Groovy/Grails internals while debugging and only make steps in my own code? I did notice that there is a configuration option named "Do not step into specific Groovy classes" in Debugger > Groovy but so far I've noticed no difference.</p>
<p>If not, what is your workaround or how do you cope with the situation? Any help would be greatly appreciated.</p>
http://stackoverflow.com/questions/481541/utf-8-only-in-grails-database-tables/970396#9703960Answer by miek for UTF-8 only in Grails database tablesmiek2009-06-09T14:29:37Z2009-06-09T14:29:37Z<p>Most MySQL installations default to latin1, so if not instructed otherwise, the driver will go by the default values. It should suffice to prepend the charset directives in the connection URL, for example:</p>
<blockquote>
<p><code>jdbc:mysql://localhost/databaseName?useUnicode=yes&characterEncoding=UTF-8</code></p>
</blockquote>
<p>For this to work, the MySQL Connector JAR must be of version 5 (3.x will not work).</p>
<p>Source: <a href="http://dev.mysql.com/doc/refman/4.1/en/connector-j-reference-charsets.html" rel="nofollow">MySQL Reference manual: Using Character Sets and Unicode</a></p>
http://stackoverflow.com/questions/743262/showing-spinner-gif-in-ajax-call-on-loading-time-in-grails/835587#8355871Answer by miek for Showing spinner.gif in ajax call on loading time in grailsmiek2009-05-07T16:07:17Z2009-05-07T16:07:17Z<p>The same for jQuery (this was actually bundled in the Grails jQuery plugin):</p>
<pre><code>$(document).ready(function() {
$("#ajax-area").bind("ajaxSend", function() {
$(this).fadeIn();
}).bind("ajaxComplete", function() {
$(this).fadeOut();
}
);
</code></pre>
http://stackoverflow.com/questions/980623/itext-inserting-overlay-text-on-top-of-all-elements/980648#980648Comment by miek on iText - inserting overlay text on top of all elementsmiek2009-08-24T07:05:24Z2009-08-24T07:05:24ZThanks, will dig into that!http://stackoverflow.com/questions/1119692/is-spring-hard-compared-to-ruby-on-rails/1126616#1126616Comment by miek on Is Spring hard compared to Ruby on Rails?miek2009-08-21T12:10:39Z2009-08-21T12:10:39ZAgreed. http://stackoverflow.com/questions/138948/how-to-get-utf-8-working-in-java-webapps/138950#138950Comment by miek on How to get UTF-8 working in java webapps?miek2009-06-22T18:08:04Z2009-06-22T18:08:04ZWow. Such a nice summary, gonna store this for future reference. Thanks!http://stackoverflow.com/questions/979662/how-to-detect-pressing-enter-on-keyboard-using-jquery/979673#979673Comment by miek on How to detect pressing enter on keyboard using jquery?miek2009-06-11T06:59:06Z2009-06-11T06:59:06ZI would say only resorting to this article is a bit dangerous because instead of resorting to the jQuery keypress() event, they make their own browser checks, which kind of nullifies the whole idea of embracing a framework in the first place.http://stackoverflow.com/questions/979662/how-to-detect-pressing-enter-on-keyboard-using-jqueryComment by miek on How to detect pressing enter on keyboard using jquery?miek2009-06-11T06:54:59Z2009-06-11T06:54:59ZOne of the best things in Javascript frameworks is that they should be by default cross-browser compatible. They handle the browser compatibility checks so that the user doesn't have to. I haven't read the JQuery source code but I doubt the keypress functionality is any different in that sense.http://stackoverflow.com/questions/968494/avoiding-groovy-grails-internals-while-debugging-in-intellij-idea/970556#970556Comment by miek on Avoiding Groovy/Grails internals while debugging in IntelliJ Ideamiek2009-06-11T05:41:51Z2009-06-11T05:41:51ZMy current exclusion patterns are:
groovy.*;
org.codehaus.groovy.*;
org.springframerwork.*;
org.mortbay.* (for Jetty)http://stackoverflow.com/questions/974304/append-a-jquery-element-to-a-string-that-contains-html/974339#974339Comment by miek on Append a jQuery element to a string that contains htmlmiek2009-06-10T10:53:07Z2009-06-10T10:53:07ZOkay, thanks for the clarification! Glad you got it solved.http://stackoverflow.com/questions/974304/append-a-jquery-element-to-a-string-that-contains-html/974341#974341Comment by miek on Append a jQuery element to a string that contains htmlmiek2009-06-10T08:36:15Z2009-06-10T08:36:15ZI would guess he already has a table he's just manipulating rows in. But besides that, I absolutely agree :)http://stackoverflow.com/questions/974167/stackoverflow-reputation-system-xbox-gamers-in-staff/974184#974184Comment by miek on Stackoverflow reputation system: XBox gamers in staff?miek2009-06-10T07:52:02Z2009-06-10T07:52:02ZHaha, I knew it! Thanks for sharing :)
(I wonder where or how I should have posted this off-topick'r in the first place...)http://stackoverflow.com/questions/968494/avoiding-groovy-grails-internals-while-debugging-in-intellij-idea/970556#970556Comment by miek on Avoiding Groovy/Grails internals while debugging in IntelliJ Ideamiek2009-06-10T07:17:41Z2009-06-10T07:17:41ZI added 'groovy.*' and 'org.codehaus.groovy.*' and by a quick test it seems to work just the way I wanted it to. Thank you so much!http://stackoverflow.com/questions/970133/externalizing-grails-datasource-configuration/973375#973375Comment by miek on Externalizing Grails Datasource configurationmiek2009-06-10T07:11:26Z2009-06-10T07:11:26ZThis looks like just what I was after! Thank you for your clear and concise answer, John :)