<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://devpinoy.org/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">Lamia&amp;#39;s Java Blog - A Pinoy Java Blog</title><subtitle type="html">Lamia&amp;#39;s Java Blog - A Pinoy Java Blog : Java Code, Java Tutorials, Java Tips</subtitle><id>http://devpinoy.org/blogs/lamia/atom.aspx</id><link rel="alternate" type="text/html" href="http://devpinoy.org/blogs/lamia/default.aspx" /><link rel="self" type="application/atom+xml" href="http://devpinoy.org/blogs/lamia/atom.aspx" /><generator uri="http://communityserver.org" version="4.1.31106.3070">Community Server</generator><updated>2010-03-08T19:17:00Z</updated><entry><title>Delete and Rename Folder Windows Batch Script</title><link rel="alternate" type="text/html" href="/blogs/lamia/archive/2010/08/11/delete-and-rename-batch-folder-script.aspx" /><id>/blogs/lamia/archive/2010/08/11/delete-and-rename-batch-folder-script.aspx</id><published>2010-08-11T08:51:00Z</published><updated>2010-08-11T08:51:00Z</updated><content type="html">I was doing a task and I noticed that I was repeatedly deleting and renaming a folder in windows. I&amp;#39;m running a process that makes a backup of a folder and then do some update on an existing one. Whenever I wanted to restore the original (backed-up) folder, I would delete the existing one and rename the original. I got a little tired and created a small batch file that would do this for me automatically. Here goes... IF EXIST &amp;quot;SomeFolder-Backup&amp;quot; GOTO DELETEANDRENAME EXIT :DELETEANDRENAME...(&lt;a href="http://devpinoy.org/blogs/lamia/archive/2010/08/11/delete-and-rename-batch-folder-script.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=36258" width="1" height="1"&gt;</content><author><name>lamia</name><uri>http://devpinoy.org/members/lamia/default.aspx</uri></author><category term="Microsoft Windows" scheme="http://devpinoy.org/blogs/lamia/archive/tags/Microsoft+Windows/default.aspx" /></entry><entry><title>5 Steps to Debugging Code</title><link rel="alternate" type="text/html" href="/blogs/lamia/archive/2010/08/08/4-steps-to-debugging-code.aspx" /><id>/blogs/lamia/archive/2010/08/08/4-steps-to-debugging-code.aspx</id><published>2010-08-08T07:20:00Z</published><updated>2010-08-08T07:20:00Z</updated><content type="html">Since I don&amp;#39;t have any code to post, I decided to share more of my experiences regarding software development in general. This is base on real world experience. Sometimes, I tend to go on and proceed with solving the problem without doing sufficient analysis. I think my experience doing maintenance work has helped me mature and be more analytic towards solving problems. 1. Find out what&amp;#39;s the problem - Find out what&amp;#39;s the problem first is the fundamental question asked in Math in grade...(&lt;a href="http://devpinoy.org/blogs/lamia/archive/2010/08/08/4-steps-to-debugging-code.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35856" width="1" height="1"&gt;</content><author><name>lamia</name><uri>http://devpinoy.org/members/lamia/default.aspx</uri></author><category term="Software Engineering" scheme="http://devpinoy.org/blogs/lamia/archive/tags/Software+Engineering/default.aspx" /></entry><entry><title>Visual Studio Debugging - How To Set a Breakpoint Condition</title><link rel="alternate" type="text/html" href="/blogs/lamia/archive/2010/05/31/visual-studio-putting-condition-on-your-breakpoint.aspx" /><id>/blogs/lamia/archive/2010/05/31/visual-studio-putting-condition-on-your-breakpoint.aspx</id><published>2010-05-31T05:20:00Z</published><updated>2010-05-31T05:20:00Z</updated><content type="html">Do you iterate through long for loops or while loops ? Tired of pressing F8 or F5 just until you meet a certain condition while debugging in Visual Studio ? I didn&amp;#39;t know that this was possible (haven&amp;#39;t tried in Eclipse) until a colleague told me How To Set a Breakpoint Condition in Visual Studio . How To Set a Breakpoint Condition in Visual Studio Let&amp;#39;s assume that you have the following set of code... The code below does nothing but to print names from an array of string. 1
2
3
4
5...(&lt;a href="http://devpinoy.org/blogs/lamia/archive/2010/05/31/visual-studio-putting-condition-on-your-breakpoint.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35796" width="1" height="1"&gt;</content><author><name>lamia</name><uri>http://devpinoy.org/members/lamia/default.aspx</uri></author><category term="Visual Studio" scheme="http://devpinoy.org/blogs/lamia/archive/tags/Visual+Studio/default.aspx" /><category term="Debugging" scheme="http://devpinoy.org/blogs/lamia/archive/tags/Debugging/default.aspx" /></entry><entry><title>Fixing The Favicon In Blogger</title><link rel="alternate" type="text/html" href="/blogs/lamia/archive/2010/05/20/fixing-the-favicon-in-blogger.aspx" /><id>/blogs/lamia/archive/2010/05/20/fixing-the-favicon-in-blogger.aspx</id><published>2010-05-20T22:53:00Z</published><updated>2010-05-20T22:53:00Z</updated><content type="html">I was working on my video game blog together with a graphic artist and I was trying to integrate the Favicon I asked of him. I had the basic code for the favicon which is &amp;lt; link href =&amp;#39;http://myimagehost/ myfavicon.png &amp;#39; rel = &amp;#39;shortcut icon&amp;#39; / &amp;gt; &amp;lt; link href =&amp;#39; http://myimagehost/ myfavicon.png &amp;#39; &amp;#39; rel = &amp;#39;icon&amp;#39; / &amp;gt; It appeared for a little while and then the old Blogger favicon re-appeared. I tried experimenting by putting my favicon code just before...(&lt;a href="http://devpinoy.org/blogs/lamia/archive/2010/05/20/fixing-the-favicon-in-blogger.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35945" width="1" height="1"&gt;</content><author><name>lamia</name><uri>http://devpinoy.org/members/lamia/default.aspx</uri></author><category term="HTML" scheme="http://devpinoy.org/blogs/lamia/archive/tags/HTML/default.aspx" /><category term="Blogger" scheme="http://devpinoy.org/blogs/lamia/archive/tags/Blogger/default.aspx" /></entry><entry><title>5 Common IT Outsourcing Mistakes Companies Make</title><link rel="alternate" type="text/html" href="/blogs/lamia/archive/2010/05/04/5-common-it-outsourcing-mistakes-companies-make.aspx" /><id>/blogs/lamia/archive/2010/05/04/5-common-it-outsourcing-mistakes-companies-make.aspx</id><published>2010-05-04T23:16:00Z</published><updated>2010-05-04T23:16:00Z</updated><content type="html">Here I list 5 Common IT Outsourcing Mistakes Companies Make and some ideas on how to prevent them. Theoretically, this can be applied on either end whether you&amp;#39;re onshore or offshore. These mistakes commonly result into software projects not being completed, projects being delayed or employees resigning due to misunderstanding. The following list doesn&amp;rsquo;t necessarily follow any order of importance. 1. Misaligned Expectations Expectations should be set from the start. The scope of work must...(&lt;a href="http://devpinoy.org/blogs/lamia/archive/2010/05/04/5-common-it-outsourcing-mistakes-companies-make.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35828" width="1" height="1"&gt;</content><author><name>lamia</name><uri>http://devpinoy.org/members/lamia/default.aspx</uri></author><category term="Career" scheme="http://devpinoy.org/blogs/lamia/archive/tags/Career/default.aspx" /><category term="IT Business" scheme="http://devpinoy.org/blogs/lamia/archive/tags/IT+Business/default.aspx" /><category term="IT Outsourcing" scheme="http://devpinoy.org/blogs/lamia/archive/tags/IT+Outsourcing/default.aspx" /></entry><entry><title>Facebook Tricks - Newline in Chat Window</title><link rel="alternate" type="text/html" href="/blogs/lamia/archive/2010/04/27/facebook-trick-newline-in-chat.aspx" /><id>/blogs/lamia/archive/2010/04/27/facebook-trick-newline-in-chat.aspx</id><published>2010-04-27T06:21:00Z</published><updated>2010-04-27T06:21:00Z</updated><content type="html">Once in a while we just discover simple things that fascinates us. Just accidentally discovered this while in the Facebook chat window press SHIFT + ENTER and you&amp;#39;ll be able to enter a &amp;quot;new line&amp;quot;. Useful if you&amp;#39;re trying to make use of your creative side. :)...(&lt;a href="http://devpinoy.org/blogs/lamia/archive/2010/04/27/facebook-trick-newline-in-chat.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35787" width="1" height="1"&gt;</content><author><name>lamia</name><uri>http://devpinoy.org/members/lamia/default.aspx</uri></author><category term="Technology" scheme="http://devpinoy.org/blogs/lamia/archive/tags/Technology/default.aspx" /></entry><entry><title>Good Coders Code, Great Coders Reuse</title><link rel="alternate" type="text/html" href="/blogs/lamia/archive/2010/04/26/good-coders-code-great-coders-reuse.aspx" /><id>/blogs/lamia/archive/2010/04/26/good-coders-code-great-coders-reuse.aspx</id><published>2010-04-26T05:31:00Z</published><updated>2010-04-26T05:31:00Z</updated><content type="html">Not sure where the saying &amp;quot;good coders code, great coders reuse&amp;quot; came from but I sure been doing a lot of copy-pasting throughout my 4+ year career. Web apps, mobile, games, blogger code, etc. All stuff that I&amp;#39;ve been doing, I&amp;#39;ve always been doing a lot of copy-pasting code. Yes, copy-pasting is code reuse. In fact, I rarely really encounter code reuse in object oriented programming... Unless I&amp;#39;m using a framework, I rarely even really extended a class and &amp;quot;reused&amp;quot;...(&lt;a href="http://devpinoy.org/blogs/lamia/archive/2010/04/26/good-coders-code-great-coders-reuse.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35729" width="1" height="1"&gt;</content><author><name>lamia</name><uri>http://devpinoy.org/members/lamia/default.aspx</uri></author><category term="Career" scheme="http://devpinoy.org/blogs/lamia/archive/tags/Career/default.aspx" /><category term="Software Engineering" scheme="http://devpinoy.org/blogs/lamia/archive/tags/Software+Engineering/default.aspx" /></entry><entry><title>The difference between == and equals() when used in java.lang.String for Java</title><link rel="alternate" type="text/html" href="/blogs/lamia/archive/2010/04/15/the-difference-between-and-equals-when-used-in-strings-for-java.aspx" /><id>/blogs/lamia/archive/2010/04/15/the-difference-between-and-equals-when-used-in-strings-for-java.aspx</id><published>2010-04-15T12:01:00Z</published><updated>2010-04-15T12:01:00Z</updated><content type="html">For students who would usually be taught C as their first programming language, a shift to Java could quickly make a confusion as they are crossing the boundaries between procedural and Object Oriented Programming. Both operators can be used in Java, in fact the second one is not called an operator but a method. == This is called the &amp;quot; Equal to &amp;quot; operator and is used to compare &amp;quot;primitive&amp;quot; types or check if you have equal object references(or do they refer to the same object in...(&lt;a href="http://devpinoy.org/blogs/lamia/archive/2010/04/15/the-difference-between-and-equals-when-used-in-strings-for-java.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35759" width="1" height="1"&gt;</content><author><name>lamia</name><uri>http://devpinoy.org/members/lamia/default.aspx</uri></author><category term="Java" scheme="http://devpinoy.org/blogs/lamia/archive/tags/Java/default.aspx" /><category term="Java Basic Tutorials" scheme="http://devpinoy.org/blogs/lamia/archive/tags/Java+Basic+Tutorials/default.aspx" /></entry><entry><title>A New Agenda</title><link rel="alternate" type="text/html" href="/blogs/lamia/archive/2010/04/15/a-new-agenda.aspx" /><id>/blogs/lamia/archive/2010/04/15/a-new-agenda.aspx</id><published>2010-04-15T11:51:00Z</published><updated>2010-04-15T11:51:00Z</updated><content type="html">Alright. So aside for some video tutorials I agreed to make with Keith, I decided to pickup some beginner, intermidate, or advanced questions I could find in any tech/programming forums and post the solution back here. Well, I&amp;#39;m getting a bit rusty after all... I&amp;#39;ll be focusing mainly, still with Java. But I&amp;#39;m currently gaining interest with android since it&amp;#39;s basically available more available to me, looks like Java (or is Java)....(&lt;a href="http://devpinoy.org/blogs/lamia/archive/2010/04/15/a-new-agenda.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35758" width="1" height="1"&gt;</content><author><name>lamia</name><uri>http://devpinoy.org/members/lamia/default.aspx</uri></author><category term="Java" scheme="http://devpinoy.org/blogs/lamia/archive/tags/Java/default.aspx" /><category term="PHP" scheme="http://devpinoy.org/blogs/lamia/archive/tags/PHP/default.aspx" /><category term="Technology" scheme="http://devpinoy.org/blogs/lamia/archive/tags/Technology/default.aspx" /></entry><entry><title>Pointing Your Domain to Your Blogger Blog and Resolving the Domain Masking Problem</title><link rel="alternate" type="text/html" href="/blogs/lamia/archive/2010/04/13/pointing-your-domain-to-your-blogger-blog-and-resolving-the-domain-masking-problem.aspx" /><id>/blogs/lamia/archive/2010/04/13/pointing-your-domain-to-your-blogger-blog-and-resolving-the-domain-masking-problem.aspx</id><published>2010-04-13T05:25:00Z</published><updated>2010-04-13T05:25:00Z</updated><content type="html">Alright, first off... The whole point of this post is to share how I resolved the &amp;quot;Masking&amp;quot; issue. I have reserved a domain, everypesocounts.com and had a blogger account. Problem was, I could forward from my .com to my blogger blog by forwarding and masking the URL, but the URL kept being the same even when you click on a hyperlink. I found it more effective to use the GoDaddy support help since I&amp;#39;m hosted with them. It&amp;#39;s probably faster than anything else you could find in google...(&lt;a href="http://devpinoy.org/blogs/lamia/archive/2010/04/13/pointing-your-domain-to-your-blogger-blog-and-resolving-the-domain-masking-problem.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35754" width="1" height="1"&gt;</content><author><name>lamia</name><uri>http://devpinoy.org/members/lamia/default.aspx</uri></author></entry><entry><title>How To Launch Explorer in The Current Directory You Are In, In the Command line</title><link rel="alternate" type="text/html" href="/blogs/lamia/archive/2010/04/13/how-to-launch-explorer-in-the-current-directory-you-are-in-in-the-command-line.aspx" /><id>/blogs/lamia/archive/2010/04/13/how-to-launch-explorer-in-the-current-directory-you-are-in-in-the-command-line.aspx</id><published>2010-04-13T05:09:00Z</published><updated>2010-04-13T05:09:00Z</updated><content type="html">Just discovered this trick today... 1. Say, you launched the command line by typing cmd in run 2. Try moving to the C:\Program Files directory, that would point you now to... C:\Program Files&amp;gt; 3. Now type, exporer . C:\Program Files&amp;gt; Explorer . This will launch Windows Explorer in the current directory you are in, in the command line. Might get useful to some people. :)...(&lt;a href="http://devpinoy.org/blogs/lamia/archive/2010/04/13/how-to-launch-explorer-in-the-current-directory-you-are-in-in-the-command-line.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35753" width="1" height="1"&gt;</content><author><name>lamia</name><uri>http://devpinoy.org/members/lamia/default.aspx</uri></author><category term="Microsoft Windows" scheme="http://devpinoy.org/blogs/lamia/archive/tags/Microsoft+Windows/default.aspx" /></entry><entry><title>Show Content Only On the Post Page in Blogger</title><link rel="alternate" type="text/html" href="/blogs/lamia/archive/2010/04/08/show-content-only-on-the-post-page-in-blogger.aspx" /><id>/blogs/lamia/archive/2010/04/08/show-content-only-on-the-post-page-in-blogger.aspx</id><published>2010-04-08T06:37:00Z</published><updated>2010-04-08T06:37:00Z</updated><content type="html">Or show Content when there is only one post. I&amp;#39;ve been fiddling with Blogger for a while now and studying how to code using the bloger tags. This took me a few weeks to figure out but finally, I guess I&amp;#39;m getting more comfortable with it. &amp;lt;b:if cond=&amp;#39;data:numPosts == 1&amp;#39;&amp;gt; &amp;lt;!-- PUT CONTENT HERE --&amp;gt; &amp;lt;/b:if&amp;gt; How is this used? This is used for example, you want to show a facebook &amp;quot;share this&amp;quot; content and only want to show that particular link or button when...(&lt;a href="http://devpinoy.org/blogs/lamia/archive/2010/04/08/show-content-only-on-the-post-page-in-blogger.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35740" width="1" height="1"&gt;</content><author><name>lamia</name><uri>http://devpinoy.org/members/lamia/default.aspx</uri></author></entry><entry><title>How to use Google Adsense with Devpinoy Community Server</title><link rel="alternate" type="text/html" href="/blogs/lamia/archive/2010/04/05/how-to-use-google-adsense-with-devpinoy-community-server.aspx" /><id>/blogs/lamia/archive/2010/04/05/how-to-use-google-adsense-with-devpinoy-community-server.aspx</id><published>2010-04-05T12:43:00Z</published><updated>2010-04-05T12:43:00Z</updated><content type="html">&lt;p&gt;This is for those who are dying to put google ads on their blog here (like myself). This is not a hack and I think Keith would agree that this is legitimate. Hopefully, this would allow you to focus on your blogging. :)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Let&amp;#39;s start...&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;(Drums Roll)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;1. Go to this &lt;a href="http://www.google.com/ig/directory?synd=open&amp;amp;hl=en&amp;amp;gl=en&amp;amp;url=http%3A%2F%2Fhosting.gmodules.com%2Fig%2Fgadgets%2Ffile%2F109944635136988725434%2Fcustom_adsense.xml"&gt;URL&lt;/a&gt;, click &amp;quot;Add to your webpage&amp;quot; and fill up the&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Client id&lt;/b&gt; - Also known as pubid, it looks like &lt;span class="rtl-safe-float-right"&gt;pub-123456789014327&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Slot #&lt;/b&gt; - The ad slot, each ad you create has a unique ad slot , looks like #1234567890&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://devpinoy.org/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/lamia/google_2D00_gadget_2D00_page.JPG"&gt;&lt;img src="http://devpinoy.org/resized-image.ashx/__size/550x0/__key/CommunityServer.Blogs.Components.WeblogFiles/lamia/google_2D00_gadget_2D00_page.JPG" border="0" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;2. Choose the ad format, specify the height and width and click&lt;b&gt; Get the Code&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;3. Copy the code that is shown on the textbox below the screen&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://devpinoy.org/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/lamia/google_2D00_gadget_2D00_get_2D00_code.JPG"&gt;&lt;img src="http://devpinoy.org/resized-image.ashx/__size/550x0/__key/CommunityServer.Blogs.Components.WeblogFiles/lamia/google_2D00_gadget_2D00_get_2D00_code.JPG" border="0" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;4. Now go to you blog and click on the control panel, navigate through your themes and the part where you can add a component. Choose &amp;quot;Google Component&amp;quot;, click add then copy and paste the code&amp;nbsp; you got from google gadgets there. Save your template and... Voila!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://devpinoy.org/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/lamia/google_2D00_gadget_2D00_add_2D00_google_2D00_gadget.JPG"&gt;&lt;img src="http://devpinoy.org/resized-image.ashx/__size/550x0/__key/CommunityServer.Blogs.Components.WeblogFiles/lamia/google_2D00_gadget_2D00_add_2D00_google_2D00_gadget.JPG" border="0" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;**Note: I&amp;#39;m not sure about the security of this gadget. All I know is that it works. &lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;I was tempted to make my own version but figured it would take a while to study how the code is made. You can view source in the gadget page to see how it&amp;#39;s made. I hope I get enthusiastic enough to create one just for the community.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;By the way, thanks to &lt;b&gt;Joner Cyrre Worm&lt;/b&gt;, the author of the component.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;HTH!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35727" width="1" height="1"&gt;</content><author><name>lamia</name><uri>http://devpinoy.org/members/lamia/default.aspx</uri></author><category term="Technology" scheme="http://devpinoy.org/blogs/lamia/archive/tags/Technology/default.aspx" /><category term="Google Gadgets" scheme="http://devpinoy.org/blogs/lamia/archive/tags/Google+Gadgets/default.aspx" /><category term="Google Adsense" scheme="http://devpinoy.org/blogs/lamia/archive/tags/Google+Adsense/default.aspx" /><category term="SEO" scheme="http://devpinoy.org/blogs/lamia/archive/tags/SEO/default.aspx" /></entry><entry><title>Disconnect from SVN using tortoise SVN through Windows Explorer</title><link rel="alternate" type="text/html" href="/blogs/lamia/archive/2010/03/29/disconnect-from-svn-using-tortoise-svn-through-windows-explorer.aspx" /><id>/blogs/lamia/archive/2010/03/29/disconnect-from-svn-using-tortoise-svn-through-windows-explorer.aspx</id><published>2010-03-29T06:32:00Z</published><updated>2010-03-29T06:32:00Z</updated><content type="html">&lt;p&gt;I wanted to disconnect a folder I&amp;#39;ve checked out from SVN using Tortoise SVN. I could vaguely remember, but I knew I was able to do this before through the context menu in windows explorer. What I wasn&amp;#39;t sure about is whether I did it in SVN or in Sourcesafe.&lt;/p&gt;
&lt;p&gt;So I did a quick google. One of the most obvious choice is to manually delete the &lt;b&gt;.svn&lt;/b&gt; folders which I already knew, but that would be cumbersome if you have a lot of folders and subfolders. Another way is to use export (see screenshot below) which seemed readily available for me.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Note: Technically, this is NOT a disconnect but a COPY without all the .SVN files&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;1. Right click on the folder you want to disconnect&lt;/p&gt;
&lt;p&gt;2. Choose TortoiseSVN -&amp;gt; Export&lt;/p&gt;
&lt;p&gt;3. Select the folder you want to export to&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://farm5.static.flickr.com/4044/4472930154_ebb32447ed_o.jpg" style="max-width:550px;" border="0" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;That did the job for me and I guess I will be using it until I find a more comfortable way of using it. Safe and Simple.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Resource: http://vidmar.net/weblog/archive/2007/12/11/subversion-and-tortoisesvn-tips-and-tricks.aspx&lt;/b&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35716" width="1" height="1"&gt;</content><author><name>lamia</name><uri>http://devpinoy.org/members/lamia/default.aspx</uri></author><category term="Microsoft Windows" scheme="http://devpinoy.org/blogs/lamia/archive/tags/Microsoft+Windows/default.aspx" /><category term="SVN" scheme="http://devpinoy.org/blogs/lamia/archive/tags/SVN/default.aspx" /></entry><entry><title>Java Desktop 3D API's</title><link rel="alternate" type="text/html" href="/blogs/lamia/archive/2010/03/08/java-desktop-3d-api-s.aspx" /><id>/blogs/lamia/archive/2010/03/08/java-desktop-3d-api-s.aspx</id><published>2010-03-09T00:17:00Z</published><updated>2010-03-09T00:17:00Z</updated><content type="html">&lt;p&gt;I&amp;#39;m looking into going back to game development this year and I&amp;#39;m really keen on learning &lt;b&gt;java 3D&lt;/b&gt; and I&amp;#39;ve scouted for a few &lt;b&gt;Java 3d API&lt;/b&gt; that I could possibly use.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://java.sun.com/javase/technologies/desktop/java3d/"&gt;Java3D&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://kenai.com/projects/jogl/pages/Home"&gt;JOGL&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://lwjgl.org/"&gt;LWGL&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.jmonkeyengine.com/"&gt;JMonkey&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.jpct.net/"&gt;jPCT&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://xith.org/"&gt;Xith3D&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://ardor3d.com/content/"&gt;Ardor3D&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I can&amp;#39;t make any recommendations since I haven&amp;#39;t used any of them. My brother plans on&amp;nbsp; using &lt;b&gt;JMonkey&lt;/b&gt;, and I hope he gets better with it so I could also save time by just asking questions to him. I think the future of &lt;b&gt;3D&lt;/b&gt; in &lt;b&gt;Java&lt;/b&gt; is still bleak, but that is actually more of an opportunity to create something great out of something not so popular in the gaming industry.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=35673" width="1" height="1"&gt;</content><author><name>lamia</name><uri>http://devpinoy.org/members/lamia/default.aspx</uri></author><category term="Java" scheme="http://devpinoy.org/blogs/lamia/archive/tags/Java/default.aspx" /><category term="Game Development" scheme="http://devpinoy.org/blogs/lamia/archive/tags/Game+Development/default.aspx" /><category term="3D" scheme="http://devpinoy.org/blogs/lamia/archive/tags/3D/default.aspx" /></entry></feed>
