<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>David Qiao&#039;s Blog &#187; David Qiao</title>
	<atom:link href="http://www.jidesoft.com/blog/author/david/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jidesoft.com/blog</link>
	<description>Love being a Swing developer</description>
	<lastBuildDate>Wed, 18 Jan 2012 21:00:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Analysing code size using JIDE TreeMap</title>
		<link>http://www.jidesoft.com/blog/2012/01/18/analysing-code-size-using-jide-treemap/</link>
		<comments>http://www.jidesoft.com/blog/2012/01/18/analysing-code-size-using-jide-treemap/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 20:53:00 +0000</pubDate>
		<dc:creator>David Qiao</dc:creator>
				<category><![CDATA[JIDE]]></category>
		<category><![CDATA[treemap]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://www.jidesoft.com/blog/?p=161</guid>
		<description><![CDATA[One of the visualization techniques that people ignored is the treemap. A lot of our customers used our group table or pivot grid to display the data. What you don&#8217;t know is the same data can also be visualized in a treemap. And it will be more effective for your users to find out what [...]]]></description>
			<content:encoded><![CDATA[<p>One of the visualization techniques that people ignored is the treemap. A lot of our customers used our group table or pivot grid to display the data. What you don&#8217;t know is the same data can also be visualized in a treemap. And it will be more effective for your users to find out what they want to know.</p>
<p>Today I will do some code analysis on JIDE jars using Classycle (http://classycle.sourceforge.net/) and JIDE TreeMap. See below. Click on it to see a larger picture.</p>
<p style="text-align: center;"><a href="http://www.jidesoft.com/images/code-analysis.png"><img class="aligncenter" title="Code Analysis on JIDE jars" src="http://www.jidesoft.com/images/code-analysis.png" alt="" width="500" height="300" /></a></p>
<p>Some interesting facts:<br />
1. The largest class is <strong>DefaultDockingManager</strong> (which is the largest individual rectangle)<br />
2. The largest package is <strong>com.jidesoft.grid</strong> (which is the first/largest block)<br />
3. The most used class (inside JIDE classes) is <strong>JideSwingUtilities</strong>, not surprise as it is a collection of many useful static methods. You can tell by the darkness of its red color<br />
4. Top five packages are <strong>com.jidesoft.grid, com.jidesoft.plaf, com.jidesoft.chart, com.jidesoft.swing and com.jidesoft.combobox</strong> (the first five blocks).<br />
5. The largest product is<strong> JIDE Grids</strong>. It&#8217;s com.jidesoft.grid is already the largest by itself but JIDE Grids is much bigger as it spans several packages &#8211; com.jidesoft.grid, com.jidesoft.combobox, com.jidesoft.list, com.jidesoft.filter, etc.</p>
<p>As you can see, it is much easier than looking into a table to dig out these facts. I used the class size as the size measurement when drawing the treemap. That&#8217;s why most of the facts are related to the size. You can use other values to find out other interesting facts.</p>
<p>Take a look at some large tables in your application. Maybe you can use the treemap to visualize them too.</p>
<p>Here is the link to the treemap product page (<a href="http://www.jidesoft.com/products/treemap.htm">http://www.jidesoft.com/products/treemap.htm</a>). You can also run our webstart demo to see some treemaps in action <a href="http://www.jidesoft.com/products/1.4/jide_demo.jnlp">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jidesoft.com/blog/2012/01/18/analysing-code-size-using-jide-treemap/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A great enhancement to the CellStyle feature in JIDE Grids</title>
		<link>http://www.jidesoft.com/blog/2012/01/17/152/</link>
		<comments>http://www.jidesoft.com/blog/2012/01/17/152/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 06:55:32 +0000</pubDate>
		<dc:creator>David Qiao</dc:creator>
				<category><![CDATA[Java and Swing]]></category>
		<category><![CDATA[JIDE]]></category>
		<category><![CDATA[cellstyle]]></category>
		<category><![CDATA[jtable]]></category>

		<guid isPermaLink="false">http://www.jidesoft.com/blog/?p=152</guid>
		<description><![CDATA[A plain JTable is boring. People usually want to add some styles such as different colors, different fonts, nice little decorations to the JTable cells to make the table more interesting. Before using JIDE Grids, the only way to add styles is to use customized TableCellRenderers. For each unique style, create a TableCellRenderer and associate [...]]]></description>
			<content:encoded><![CDATA[<p>A plain JTable is boring. People usually want to add some styles such as different colors, different fonts, nice little decorations to the JTable cells to make the table more interesting. Before using JIDE Grids, the only way to add styles is to use customized TableCellRenderers. For each unique style, create a TableCellRenderer and associate it with the table cells either by either mapping it to a data type or override JTable&#8217;s getCellRenderer  method. For a table with a lot of unique styles, you will end up with a lot of customized cell renderers which is clearly not fun at all.</p>
<p>The CellStyle feature in JIDE Grids provides a hook into the cell renderer creation process. You use CellStyle to pass in some predefined styles, such as font, font style, background, foreground, border, alignments. If you are using a CellStyleTable or one of its subclasses, those styles will be applied to the renderer component before it is used to paint the cell. The DefaultTableCellRenderer is a JLabel. As long as you are okay to use JLabel to renderer the cell, the cell styles feature would work so that you don&#8217;t have to introduce customized cell renderers.</p>
<p>There are cases that JLabel can&#8217;t handle the painting of the cells. For example, a cell that renders a five-star rating. Clearly JLabel can&#8217;t handle it. And it sounds like for sure that you will have to create a customized renderer based on a five-star rating component. But we have another way to do it. Always keep in mind, JTable uses the renderer component to paint the cell. If we can find a way to use our own code to do the painting, we may not need a new cell renderer after all. That&#8217;s why we decide to bring the CellStyle feature to the next level by introducing CellPainter.</p>
<p>CellPainter is a simple interface like this.</p>
<div class="codecolorer-container java default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="java codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">interface</span> CellPainter <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">void</span> paint<span style="color: #009900;">&#40;</span><span style="color: #003399;">Graphics</span> g, <span style="color: #003399;">Component</span> component, <span style="color: #000066; font-weight: bold;">int</span> row, <span style="color: #000066; font-weight: bold;">int</span> column, <span style="color: #003399;">Rectangle</span> cellRect, <span style="color: #003399;">Object</span> value<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
<span style="color: #009900;">&#125;</span></div></div>
<p>We introduced two types of CellPainters to the CellStyleTable. One is the OverlayCellPainter, the other is the UnderlayCellPainter. We paint the cell in three steps. First, the lower layer, which is painted before the cell content, paints using the underlay CellPainter specified in the CellStyle. The second step is the to paint the cell content using the renderer component, as the table does right now. The last step is to paint using the overlay CellPainter after the cell content is painted. By leveraging this three-step painting, we make a lot of features possible.</p>
<p>The demo below shows both cell painters. The underlay painter is used for the &#8220;Last&#8221; column. It paints a gradient bar based on the value. The length of the bar matches the value. The color of bar is also changed based on the range of the value. You can paint the five-star rating using this painter too.</p>
<p>The overlay painter can be used to paint something that is over the cell value, i.e., to indicate the value is abnormal, invalid, or should be emphasized etc. You can see the column &#8220;Volume&#8221; having such an overlay painter where we randomly paint an icon for some cells as an overlay. In the JIDE Common Layer, we have Overlay component which can place an overlay component over another component. It is perfect for JTextField, JComboBox etc. small component to show a validation error. However it is so useful in the case of JTable cells. The CellStyle overlay painter feature is here to fill in the gap. You can now easily display validation errors using this new feature.</p>
<p><img class="aligncenter" title="Cell Overlay and Underlay" src="http://www.jidesoft.com/images/cell-overlay-underlay.png" alt="" width="944" height="477" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jidesoft.com/blog/2012/01/17/152/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Alphanum Sorting</title>
		<link>http://www.jidesoft.com/blog/2011/12/07/alphanum-sorting/</link>
		<comments>http://www.jidesoft.com/blog/2011/12/07/alphanum-sorting/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 22:19:12 +0000</pubDate>
		<dc:creator>David Qiao</dc:creator>
				<category><![CDATA[Java and Swing]]></category>
		<category><![CDATA[JIDE]]></category>
		<category><![CDATA[alphanum]]></category>
		<category><![CDATA[sorting]]></category>
		<category><![CDATA[swing]]></category>

		<guid isPermaLink="false">http://www.jidesoft.com/blog/?p=139</guid>
		<description><![CDATA[While working on an issue related to the file encoding, I am trying to adjust the file encoding settings in IntelliJ IDEA. I noticed something not quite right about the sort order of the encodings. Naturally the ISO-8859-2 to ISO-8859-10 should appear before ISO-8859-13 and -15. UTF-8 should also appear before UTF-16 and UTF-32. Clearly IntelliJ [...]]]></description>
			<content:encoded><![CDATA[<p>While working on an issue related to the file encoding, I am trying to adjust the file encoding settings in IntelliJ IDEA. I noticed something not quite right about the sort order of the encodings. Naturally the ISO-8859-2 to ISO-8859-10 should appear before ISO-8859-13 and -15. UTF-8 should also appear before UTF-16 and UTF-32. Clearly IntelliJ is doing a straight alphabetic sorting.</p>
<p><a href="http://www.jidesoft.com/blog/wp-content/uploads/2011/12/idea-encoding.png"><img class="size-full wp-image-140 alignnone" title="idea-encoding" src="http://www.jidesoft.com/blog/wp-content/uploads/2011/12/idea-encoding.png" alt="" width="584" height="301" /></a></p>
<p><a style="text-align: left;" href="http://www.jidesoft.com/blog/wp-content/uploads/2011/12/idea-encoding-21.png"><img class="alignnone size-full wp-image-142" title="idea-encoding-2" src="http://www.jidesoft.com/blog/wp-content/uploads/2011/12/idea-encoding-21.png" alt="" width="579" height="176" /></a></p>
<div style="text-align: left;">We actually resolved this issue a while ago in the open source JIDE Common Layer. There is a comparator called AlphanumComparator under jidesoft.comparator package. (courtesy to David Koelle). As long as you use this comparator, it will sort the strings with numbers correctly according to what users would expect. See below. The list on the left is the straight alphabetic sorting. The list on the right is using the alphanum sorting.</div>
<div style="text-align: left;"><a href="http://www.jidesoft.com/blog/wp-content/uploads/2011/12/alphanum.png"><img class="alignnone size-full wp-image-143" title="alphanum" src="http://www.jidesoft.com/blog/wp-content/uploads/2011/12/alphanum.png" alt="" width="264" height="327" /></a></div>
<div style="text-align: left;">If you are using SortableComboBoxModel or SortableListModel, you can simply call the code below to enable the alphanum sorting.</div>
<div style="text-align: left;">
<pre>  sortableComboBoxModel.setComparatorContext(AlphanumComparator.CONTEXT);</pre>
<pre>and</pre>
<pre>  sortableListModel.setComparatorContext(AlphanumComparator.CONTEXT);</pre>
</div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jidesoft.com/blog/2011/12/07/alphanum-sorting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ExpandedTip &#8211; A must-have feature for your JTree and JList</title>
		<link>http://www.jidesoft.com/blog/2011/11/23/expanded-tip/</link>
		<comments>http://www.jidesoft.com/blog/2011/11/23/expanded-tip/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 06:57:38 +0000</pubDate>
		<dc:creator>David Qiao</dc:creator>
				<category><![CDATA[Java and Swing]]></category>
		<category><![CDATA[JIDE]]></category>
		<category><![CDATA[java swing tip]]></category>

		<guid isPermaLink="false">http://www.jidesoft.com/blog/?p=133</guid>
		<description><![CDATA[When I started to use IntelliJ IDEA back in 2002, I noticed two simple but neat UI features. The first one is the Searchable feature (type and search in a list or a tree or a table), an idea that we shamelessly copied (and enhanced), and several years ago made part of the open source [...]]]></description>
			<content:encoded><![CDATA[<p>When I started to use IntelliJ IDEA back in 2002, I noticed two simple but neat UI features.</p>
<p>The first one is the Searchable feature (type and search in a list or a tree or a table), an idea that we shamelessly copied (and enhanced), and several years ago made part of the open source JIDE Common Layer. See below.</p>
<p><img class="alignnone" title="searchable list" src="http://www.jidesoft.com/images/searchable-list.png" alt="searchable list" width="260" height="228" /></p>
<p>The second feature is where tree nodes or list rows expand to a tool-tip when the text is wider than the scroll pane. We finally implemented this feature by leveraging some source code from the IDEA community edition which was open sourced under Apache license. We implemented TreeExpandedTip, ListExpandedTip and TableExpandedTip to support JTree, JList and JTable respectively. In order to make this feature easier to use, we completely changed the API and also enhanced it so that it can handle any component inside a JScrollPane. In the new ExpandedTipDemo, you will find a demo to show a whole image as an expanded tip.</p>
<p><img class="alignnone" title="ExpandedTip" src="http://www.jidesoft.com/images/expanded-tip.png" alt="expanded tip" width="932" height="267" /></p>
<p>The newsletter stops right here. But I would like to discuss in a little more detail.</p>
<p><strong>Why the expanded tip feature is important?</strong></p>
<p>I love IntelliJ IDEA. If there weren&#8217;t IDEA, I probably won&#8217;t be here making JIDE components. I am not kidding. I still remembered how happy I was when someone referred it to me back in 2001. Half an year later, I found JIDE using IDEA as my only Java IDE. Sometimes I asked me why I love IntelliJ IDEA so much. One of the reasons is probably IDEA&#8217;s usability is great, much better than that of NB or Eclipse. The two features I mentioned above are such examples.</p>
<p>Does your application have a JList or JTree that have many rows (say more than 20) but you didn&#8217;t bother in implementing the Searchable feature? If the answer is yes, it means you didn&#8217;t put in enough attention to your application&#8217;s usability. Your users will suffer from your ignorance as they will have to scroll up and down in tons of items to find the item they are looking for.</p>
<p>The same argument is there for the expanded tip. When a user can&#8217;t see the whole node, he/she has to move the mouse all the way to the bottom horizontal scroll bar, drag it to see the rest of the content, and probably need to drag back again in order to expand/collapse the tree node. The trouble could easily be avoid by using the expanded tip feature. Your users will surely appreciate if you can pay attention to those usability details.</p>
<p>The action item for you today is to find all your JList, JTree and JTable in your application and install the ExpanedTip. Just one line: ExpandedTipUtils.install(a JList/JTree/JTable). Let&#8217;s see how your user will love it.</p>
<p><strong>What&#8217;s next?</strong></p>
<p>I think the feature is fully implemented for the JList and JTree. However it is still half done for the JTable. There are two parts to show clipped content in a JTable &#8211; the cell level and the row level. As you can see in the screenshot above, we implemented at the row level. User still can&#8217;t see the full content of the cell (such as AMER INTL&#8230;). Our suggestion right now is to show the full content of the cell using a regular tooltip. It can done by setting the tooltip for the cell renderer component. See below. However I still hope we could implement the expanded tip to cover the extra effort.</p>
<p><img class="alignnone" title="expanded-tip with tooltip" src="http://www.jidesoft.com/images/expanded-tip-with-tooltip.png" alt="expanded-tip with tooltip" width="435" height="128" /></p>
<p>Note: The ExpandedTip is available since JIDE 3.3.0 release. It is part of the JIDE Components product. You can a <a href="http://www.jidesoft.com/products/download.htm">webstart demo</a> at here to see it in action.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jidesoft.com/blog/2011/11/23/expanded-tip/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Meet our first JavaFX component</title>
		<link>http://www.jidesoft.com/blog/2011/10/04/meet-our-first-javafx-component/</link>
		<comments>http://www.jidesoft.com/blog/2011/10/04/meet-our-first-javafx-component/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 18:43:14 +0000</pubDate>
		<dc:creator>David Qiao</dc:creator>
				<category><![CDATA[JavaFX]]></category>
		<category><![CDATA[JIDE]]></category>
		<category><![CDATA[javafx rangeslider]]></category>

		<guid isPermaLink="false">http://www.jidesoft.com/blog/?p=118</guid>
		<description><![CDATA[Now the JavaFX 2.0 is formally released, we will start to roll out some JavaFX components. Our first component is RangeSlider. The Swing RangeSlider is available in the open source JIDE Common Layer (http://jide-oss.java.net). Now we got one for JavaFX. RangeSlider is a slider that has two thumbs. So instead of choosing one value, it [...]]]></description>
			<content:encoded><![CDATA[<p>Now the JavaFX 2.0 is formally released, we will start to roll out some JavaFX components. Our first component is RangeSlider. The Swing RangeSlider is available in the open source JIDE Common Layer (http://jide-oss.java.net). Now we got one for JavaFX. RangeSlider is a slider that has two thumbs. So instead of choosing one value, it can choose two values to form a range.</p>
<p><a href="http://www.jidesoft.com/blog/wp-content/uploads/2011/10/RangeSlider.png"><img class="size-full wp-image-119 alignnone" title="RangeSlider" src="http://www.jidesoft.com/blog/wp-content/uploads/2011/10/RangeSlider.png" alt="" width="659" height="546" /></a></p>
<p>&nbsp;</p>
<p>We will call this project JideFx as I announced one year ago on JavaOne2010. The binary jar is at <a href="http://www.jidesoft.com/jidefx/downloads/jidefx-0.1-SNAPSHOT.jar">http://www.jidesoft.com/jidefx/downloads/jidefx-0.1-SNAPSHOT.jar</a>. Before we decide the licensing terms for it, it is free to use without any obligation.</p>
<p>Here is how you use it.</p>
<pre>RangeSlider rangeSlider = new RangeSlider(0, 100, 10, 90);
rangeSlider.setStyle("-fx-skin: \"com.jidefx.scene.control.skin.RangeSliderSkin\"");</pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jidesoft.com/blog/2011/10/04/meet-our-first-javafx-component/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Having Fun with StyledLabel</title>
		<link>http://www.jidesoft.com/blog/2011/09/10/styledlabel/</link>
		<comments>http://www.jidesoft.com/blog/2011/09/10/styledlabel/#comments</comments>
		<pubDate>Sat, 10 Sep 2011 19:07:12 +0000</pubDate>
		<dc:creator>David Qiao</dc:creator>
				<category><![CDATA[Java and Swing]]></category>
		<category><![CDATA[JIDE]]></category>

		<guid isPermaLink="false">http://www.jidesoft.com/blog/?p=94</guid>
		<description><![CDATA[I’ll start with a question. Using Java Swing, how do you implement something like these? &#160; All three examples are very common in a real application. The first one is to show a ™ trademark sign next to Java. It is the same thing for a ® (registered trademark) sign. The second one is a [...]]]></description>
			<content:encoded><![CDATA[<p>I’ll start with a question. Using Java Swing, how do you implement something like these?</p>
<p><a href="http://www.jidesoft.com/blog/wp-content/uploads/2011/09/styledlabel.png"><img class="aligncenter size-full wp-image-101" title="styledlabel" src="http://www.jidesoft.com/blog/wp-content/uploads/2011/09/styledlabel.png" alt="" width="202" height="28" /></a></p>
<p>&nbsp;</p>
<p>All three examples are very common in a real application.</p>
<ol>
<li>The first one is to show a ™ trademark sign next to Java. It is the same thing for a ® (registered trademark) sign.</li>
<li>The second one is a math formula.</li>
<li>The third one indicates the text has an error.</li>
</ol>
<p>We want to use both the red color and a waved underline to indicate the error. Keep in mind, from accessibility point of view, only the red color is not enough because of color blindness.</p>
<p>Please continue reading the rest of the article at <a title="StyledLabel" href="http://www.jidesoft.com/articles/StyledLabel.pdf">http://www.jidesoft.com/articles/StyledLabel.pdf</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jidesoft.com/blog/2011/09/10/styledlabel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slides for JavaOne 2010 &#8211; The Merging Point of Android and Swing</title>
		<link>http://www.jidesoft.com/blog/2010/09/23/slides-for-javaone-2010-the-merging-point-of-android-and-swing/</link>
		<comments>http://www.jidesoft.com/blog/2010/09/23/slides-for-javaone-2010-the-merging-point-of-android-and-swing/#comments</comments>
		<pubDate>Thu, 23 Sep 2010 19:23:48 +0000</pubDate>
		<dc:creator>David Qiao</dc:creator>
				<category><![CDATA[Java and Swing]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.jidesoft.com/blog/?p=87</guid>
		<description><![CDATA[Thanks everyone for coming to my session today. As promised, I attached the slides I used in the session below. The source code will be available next week. The Merging Point of Android and Swing (PowerPoint) The Merging Point of Android and Swing (PDF)]]></description>
			<content:encoded><![CDATA[<p>Thanks everyone for coming to my session today. As promised, I attached the slides I used in the session below. The source code will be available next week.</p>
<p><a href="http://www.jidesoft.com/blog/wp-content/uploads/2010/09/The-Merging-Point.pptx">The Merging Point of Android and Swing (PowerPoint)</a></p>
<p><a href="http://www.jidesoft.com/blog/wp-content/uploads/2010/09/The-Merging-Point.pdf">The Merging Point of Android and Swing (PDF)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jidesoft.com/blog/2010/09/23/slides-for-javaone-2010-the-merging-point-of-android-and-swing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search &#8220;everything&#8221;</title>
		<link>http://www.jidesoft.com/blog/2009/07/17/search-everything/</link>
		<comments>http://www.jidesoft.com/blog/2009/07/17/search-everything/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 18:55:01 +0000</pubDate>
		<dc:creator>David Qiao</dc:creator>
				<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://www.jidesoft.com/blog/?p=83</guid>
		<description><![CDATA[Not sure how many of you are annoyed by the slowness of Vista. One of the main reasons for the slowness is its constantly background indexing. You see a &#8220;green ribbon of death&#8221; on explorer&#8217;s address bar? That&#8217;s the result of the indexing. On one of my HP desktop, when it is indexing, it is [...]]]></description>
			<content:encoded><![CDATA[<p>Not sure how many of you are annoyed by the slowness of Vista. One of the main reasons for the slowness is its constantly background indexing. You see a &#8220;green ribbon of death&#8221; on explorer&#8217;s address bar? That&#8217;s the result of the indexing. On one of my HP desktop, when it is indexing, it is so slow that I have to quit using it till several hours later. The solution is to simply turn off the indexing completely by right clicking on the drive in the explorer, select &#8220;Properties&#8221; then uncheck the &#8220;Index this drive for faster searching&#8221;. Make sure in the next message box, you select &#8220;apply changes to subfolders and files&#8221;. It will take a while for this operation to complete but after that, your Vista will be super fast. Open explorer window is instant. Some people even suggest to turn off the &#8220;Window Search&#8221; service. But I still need it to search my outlook emails so I didn&#8217;t do that. So far I didn&#8217;t notice any slowness because of this.</p>
<p>But without the indexing, what if I want to locate  a file? Get this &#8220;everything&#8221; from <a href="http://www.voidtools.com/">http://www.voidtools.com/</a>. Merely 340k download size, totally amazing. It took just 3 minutes to index my whole disk and after that the search for a file name is instant <img src='http://www.jidesoft.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.jidesoft.com/blog/2009/07/17/search-everything/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing MarqueePane component to the open source JIDE Common Layer</title>
		<link>http://www.jidesoft.com/blog/2009/06/18/introduce-marqueepane-component-to-open-source-jide-common-layer/</link>
		<comments>http://www.jidesoft.com/blog/2009/06/18/introduce-marqueepane-component-to-open-source-jide-common-layer/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 17:00:35 +0000</pubDate>
		<dc:creator>David Qiao</dc:creator>
				<category><![CDATA[Java and Swing]]></category>
		<category><![CDATA[JIDE]]></category>

		<guid isPermaLink="false">http://www.jidesoft.com/blog/?p=79</guid>
		<description><![CDATA[In the 2.6.6 release, we introduced a small cool component called MarqueePane to JIDE Common Layer. It is open source so please fee free to give it a try. You can use it to auto-scroll any component. It is perfect for use cases such as an auto-scrolling stock tick display or an auto-fliping status, You can run webstart demo to see [...]]]></description>
			<content:encoded><![CDATA[<p>In the 2.6.6 release, we introduced a small cool component called MarqueePane to JIDE Common Layer. It is open source so please fee free to give it a try. You can use it to auto-scroll any component. It is perfect for use cases such as an auto-scrolling stock tick display or an auto-fliping status, You can run <a href="http://jidesoft.com/products/1.4/jide_demo.jnlp">webstart demo</a> to see MarqueePane in action.</p>
<p><a href="http://www.jidesoft.com/blog/wp-content/uploads/2009/06/marquee.png"><img class="aligncenter size-full wp-image-80" title="MarqueePane" src="http://www.jidesoft.com/blog/wp-content/uploads/2009/06/marquee.png" alt="MarqueePane" width="265" height="94" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jidesoft.com/blog/2009/06/18/introduce-marqueepane-component-to-open-source-jide-common-layer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boot camp freezing issue solved</title>
		<link>http://www.jidesoft.com/blog/2009/06/17/boot_camp_freezing_issue_solved/</link>
		<comments>http://www.jidesoft.com/blog/2009/06/17/boot_camp_freezing_issue_solved/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 01:36:06 +0000</pubDate>
		<dc:creator>David Qiao</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.jidesoft.com/blog/?p=75</guid>
		<description><![CDATA[It is a very busy day while we tried to patch JIDE 2.6.6 release to resolve the serious issue with the latest Apple JDK update. Along the line of Apple, I had a very bad experience with Apple technical support in the last few days. While I was enjoying the new MacBook Pro and said [...]]]></description>
			<content:encoded><![CDATA[<p>It is a very busy day while we tried to patch JIDE 2.6.6 release to resolve the serious issue with the latest Apple JDK update.</p>
<p>Along the line of Apple, I had a very bad experience with Apple technical support in the last few days. While I was enjoying the new MacBook Pro and said all kinds of good things about Apple during JavaOne, one problem was bothering me. I had to use Vista through boot camp on this laptop once in a while since some software applications only run on Vista. However the Vista keeps freezing randomly. After it is frozen, there is nothing you can do except doing a hard reboot. It happens several times a day and there is no clue when it will happen or which application caused it.</p>
<p>After a brief google, I gave up so I called Apple technical support. Their answer was simply &#8220;contract Microsoft&#8221;. From years of experience, I knew it was not an issue with Vista. It is either hardware issue (memory especially) or a hardware driver issue. Since all hardware drivers I am using are from a CD included in the MBP box so I claimed to the support ladies that Apple should provide support for it, not Microsoft. I called three times in two days. One lady simply hang up on me. The last lady directs me to a so-called Apple expert. I am surprised how arrogant he is. His name is Sean and he said &#8220;contact Microsoft and that&#8217;s the final answer&#8221; even after I pointed out to him that there are many other people reported the same issues all over the internet.</p>
<p>Totally frustated, I googled deeper and finally found this post below. Following that post, I believe it solved the freezing issue as it doesn&#8217;t freeze for several days. It is a driver issue with Nvidia. I included the post below just in case you had the same issue.</p>
<p><a href="http://www.ocztechnologyforum.com/forum/showthread.php?t=54536">http://www.ocztechnologyforum.com/forum/showthread.php?t=54536</a></p>
<p>As I said, I am not alone on this issue. It is a very common issue and Apple technical support should be aware of it and take supporting boot camp with Vista seriously. Afterall, Mac only has less than 10% market share.</p>
<p>Apple, you disappointed me!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jidesoft.com/blog/2009/06/17/boot_camp_freezing_issue_solved/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

