User yoliho - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T19:19:51Zhttp://stackoverflow.com/feeds/user/237http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/989865/whats-the-best-way-to-get-the-underlying-dom-element-by-id-in-jquery0What's the best way to get the underlying DOM element by ID in jQuery?yoliho2009-06-13T03:35:52Z2009-06-13T05:00:48Z
<p>This sounds like a really basic question. Let's say I have the following Form element </p>
<pre><code><select id="mySelect">
</code></pre>
<p>...</p>
<p>Using jQuery, let's say I want to get it by ID so I can directly access one of its attributes like selectedIndex. </p>
<p>I <strong>don't think</strong> I can use</p>
<pre><code>var selectedIndex = $("#mySelect").selectedIndex;
</code></pre>
<p>because the # selector returns an Array of Elements. If I wish to actually access the select DOM element, then I have to call</p>
<pre><code>var selectedIndex = $("#mySelect").get(0).selectedIndex;
</code></pre>
<p><strong>Is this correct?</strong> Is there a selector that will let me get directly to the DOM element without having to make an "extra call" to get(0)?</p>
<p>I ask because I'm coming from Prototype where I can just say:</p>
<pre><code>var selectedIndex = $('mySelect').selectedIndex;
</code></pre>
http://stackoverflow.com/questions/166014/what-is-your-experience-evaluation-of-tfs1What is your experience/evaluation of TFS?yoliho2008-10-03T07:38:49Z2008-10-24T13:46:08Z
<p>How do you like using TFS?</p>
<p>My company is rolling out TFS 2008. It integrates with our current IntelliJ IDEA.
We will be migrating from SVN.</p>
<p><strong>Is this going to make my life better?</strong></p>
http://stackoverflow.com/questions/112764/what-services-have-you-used-for-design-work-for-your-web-site-programming/114805#1148050Answer by yoliho for What services have you used for design work for your web site programming?yoliho2008-09-22T13:18:43Z2008-09-22T13:18:43Z<p>You can contract a designer using <a href="http://www.elance.com" rel="nofollow">Elance</a>. </p>
<p>You can find designers (and developers) at excellent rates. The site provides both portfolios and reviews for designers. Check out the designer's portfolio to get a sense of their style.</p>
<p>When working with designers, be very explicit about what you want in order to keep the amount of rework to a minimum.</p>
http://stackoverflow.com/questions/109383/how-to-sort-a-mapkey-value-on-the-values-in-java/109667#1096670Answer by yoliho for How to sort a Map<Key, Value> on the values in Java?yoliho2008-09-20T22:47:31Z2008-09-20T22:47:31Z<p>Use <strong><a href="http://java.sun.com/javase/6/docs/api/java/util/TreeMap.html" rel="nofollow">java.util.TreeMap</a></strong>.</p>
<p>"The map is sorted according to the natural ordering of its keys, or by a Comparator provided at map creation time, depending on which constructor is used."</p>
http://stackoverflow.com/questions/84564/which-java-web-framework-you-use-in-your-day-job/84821#848210Answer by yoliho for Which java web framework you use in your day job ?yoliho2008-09-17T16:01:01Z2008-09-17T16:01:01Z<p>We use Spring MVC. We use Spring Webflow on top of that if we have to implement certain "flows" or wizards. I'm pretty happy using that.</p>
http://stackoverflow.com/questions/68675/why-did-you-become-a-programmer/69361#693610Answer by yoliho for Why did you become a programmer?yoliho2008-09-16T04:21:31Z2008-09-16T04:21:31Z<p>Joining a startup was the "cool" thing to do when I graduated from college at the height of the dot-com boom. </p>
<p>Now if only I'd graduated a couple years earlier... ;)</p>
http://stackoverflow.com/questions/6988/how-can-i-explain-to-a-non-technical-person-what-i-do-for-a-living/36635#366351Answer by yoliho for How can I explain to a non-technical person what I do for a living?yoliho2008-08-31T04:36:01Z2008-08-31T04:36:01Z<p><em>I write software the world has never seen before</em></p>
http://stackoverflow.com/questions/35050/comparison-of-javascript-libraries/35081#350811Answer by yoliho for Comparison of Javascript librariesyoliho2008-08-29T19:15:17Z2008-08-29T19:15:17Z<p>I've been using <a href="http://www.prototypejs.org/" rel="nofollow">Prototype</a> + <a href="http://script.aculo.us/" rel="nofollow">Scriptaculous</a>. </p>
<p>They have good API documentation and work great for me! The biggest benefits are:</p>
<ul>
<li>Cleans up messy javascript code</li>
<li>Cross browser compatibility</li>
<li>Simplifies AJAX handling</li>
<li>Smooth UI effects</li>
</ul>
http://stackoverflow.com/questions/4432/csv-string-handling/17340#173402Answer by yoliho for CSV string handlingyoliho2008-08-20T02:14:42Z2008-08-20T02:14:42Z<p><strong>Why not use one of the open source CSV libraries out there?</strong></p>
<p>I know it sounds like overkill for something that appears so simple, but as you can tell by the comments and code snippets, there's more than meets the eye. In addition to handling full CSV compliance, you'll eventually want to handle both reading and writing CSVs... and you may want file manipulation.</p>
<p>I've used <a href="http://opencsv.sourceforge.net/" rel="nofollow">Open CSV</a> on one of my projects before (but there are plenty of others to choose from). It certainly made my life easier. ;)</p>
http://stackoverflow.com/questions/4121/team-coding-styles/4778#47780Answer by yoliho for [Team] Coding Stylesyoliho2008-08-07T14:36:13Z2008-08-07T14:36:13Z<p>Yes, the team I lead has a standard coding style. Our philosophy: <strong><em>When looking at code in the system, you shouldn't be able to tell who wrote it.</em></strong></p>
<p>I know that's impossible to achieve, but that's the <strong>ideal</strong> we strive for. </p>
<p><strong>Why is it important?</strong> Because having that level of consistency makes it easier to read and understand another person's code.</p>
<p>As for enforcement, certain IDEs do provide style guides/templates that you can customize. It's up to you how far you want to take that, but at a bare minimum you should standardize the tab spacing.</p>http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1785#178533Answer by yoliho for What is the single most influential book every programmer should read?yoliho2008-08-05T01:22:46Z2008-08-07T07:33:43Z<p>I have a different answer -- I really liked Joel's <a href="http://www.joelonsoftware.com/articles/BestSoftwareWriting.html" rel="nofollow"><strong>Best Software Writing I</strong></a>. </p>
<p>Maybe that's just me... but that collection opened my eyes to the "bigger picture" and inspired me to think of my programming as an art/craft.</p>http://stackoverflow.com/questions/2563/what-is-a-good-web-based-grid-that-accepts-excel-clipboard-data/2801#28011Answer by yoliho for What is a good web-based Grid that accepts Excel clipboard data?yoliho2008-08-05T20:27:23Z2008-08-05T20:27:23Z<p>I'm currently using <strong>dhtmlxGrid</strong> and we have the Excel copy/paste functionality working. dhtmlXGrid is the most full featured javascript grid package that I've found.</p>
<p>On their website, dhtmlXGrid claims to support <a href="http://dhtmlx.com/docs/products/docsExplorer/index.shtml?node=dhtmlxgrid&type=smpl" rel="nofollow">Clipboard functionality</a> in the Professional version. (However, I noticed the Sample on their site isn't working on my Firefox. EDIT: It's probably the permissions issue that Nathan mentioned.)</p>
<p>In any case, we had to do some extra work to get the exact Excel copy and paste functionality we wanted. We essentially had to override some of their functionality to get the desired behavior. Their support was pretty good in helping us come up with a solution.</p>
<p>So to answer your question, you should be able to get them to support copy and paste if you purchase the Professional version. I'm just warning you that it may take some additional work to fine tune that behavior. </p>
<p>Overall, I'm happy with dhtmlXGrid. We use a lot of their features. Their support is pretty good. They usually take one day to respond since they are in Europe (I think). And Javascript is by its very nature open source so I can always dive in when I need to. </p>http://stackoverflow.com/questions/687/keyboard-for-programmers/848#8486Answer by yoliho for Keyboard for programmersyoliho2008-08-03T21:51:03Z2008-08-03T21:51:03Z<p>I like the Microsoft Natural keyboards too -- splitting the keyboard down the middle may seem awkward at first, but once you get used to it, it just feels more... "natural".</p>
<p><b>But if your goal</b> is to "type bug-free code all by itself" then your IDE may have a much bigger impact on productivity. Choose an IDE that has excellent <b>code completion and refactoring</b> tools. If you're already locked into an IDE, then learn more of its features so you can squeeze more "juice" of it.</p>
<p>After all, why do the heavy lifting yourself when you have an IDE power tool? You shouldn't have to write any more template methods or manually code refactoring tasks that can be determined programmatically.</p>
<p>(Personally, I'm using IntelliJ IDEA right now. I really like its slick code completion and powerful refactoring capabilities.)</p>http://stackoverflow.com/questions/109383/how-to-sort-a-mapkey-value-on-the-values-in-java/109406#109406Comment by yoliho on How to sort a Map<Key, Value> on the values in Java?yoliho2008-09-21T15:38:06Z2008-09-21T15:38:06ZGood point... I didn't read the question carefully enough. You're right -- it's a strange problem.http://stackoverflow.com/questions/109383/how-to-sort-a-mapkey-value-on-the-values-in-java/109406#109406Comment by yoliho on How to sort a Map<Key, Value> on the values in Java?yoliho2008-09-21T04:23:04Z2008-09-21T04:23:04ZYou don't have to use the commons-collection. Java comes with its own java.util.TreeMap.