<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title>zParacha — Effective Programming Tips</title><description>Programming tips from Zaheer Paracha.</description><link>https://zparacha.com/</link><item><title>Insertion Sort Algorithm In Java</title><link>https://zparacha.com/insertion-sort-implementation-in-java/</link><guid isPermaLink="true">https://zparacha.com/insertion-sort-implementation-in-java/</guid><description>Insertion sort is a simple algorithm. Insertion sort logic works as follows: To insert an element in an already existing set, we make room for the new item</description><pubDate>Mon, 22 Jan 2018 00:00:00 GMT</pubDate></item><item><title>Selection Sort Algorithm in Java</title><link>https://zparacha.com/selection-sort-in-java/</link><guid isPermaLink="true">https://zparacha.com/selection-sort-in-java/</guid><description>Selection sort is one of the simplest sorting algorithms. It is easy to implement but it is not very efficient. The algorithm divides the input list into two pa</description><pubDate>Sun, 21 Jan 2018 00:00:00 GMT</pubDate></item><item><title>How to calculate the height of a Non-Binary Tree</title><link>https://zparacha.com/calculate-height-of-any-tree-in-java-non-binary-tree/</link><guid isPermaLink="true">https://zparacha.com/calculate-height-of-any-tree-in-java-non-binary-tree/</guid><description>Computing the height of a tree in Computer Science is very common. Most of the examples and online discussions talk about computing the height of a Binary Tree.</description><pubDate>Mon, 01 Jan 2018 00:00:00 GMT</pubDate></item><item><title>Easiest way to calculate elapsed time in Java</title><link>https://zparacha.com/easiest-way-to-calculate-elapsed-time-in-java/</link><guid isPermaLink="true">https://zparacha.com/easiest-way-to-calculate-elapsed-time-in-java/</guid><description>Quite often in our day-to-day programming, we need to compute how long a specific portion of the code takes to complete. For e.g; you might want to check how lo</description><pubDate>Sat, 23 Dec 2017 00:00:00 GMT</pubDate></item><item><title>Java Regular Expression to Validate Social Security Number (SSN)</title><link>https://zparacha.com/java-regular-expression-to-validate-social-security-number-ssn/</link><guid isPermaLink="true">https://zparacha.com/java-regular-expression-to-validate-social-security-number-ssn/</guid><description>Here is a utility method to check if a given String is a valid Social Security number using Java Regular Expression.</description><pubDate>Fri, 08 Dec 2017 00:00:00 GMT</pubDate></item><item><title>Java Regular Expression to check if a String is a numeric value</title><link>https://zparacha.com/java-regular-expression-to-check-if-a-string-is-a-number/</link><guid isPermaLink="true">https://zparacha.com/java-regular-expression-to-check-if-a-string-is-a-number/</guid><description>Here is another method from my String utility class. This method uses a regular expression to check if a String is a numeric value. Look at the code, then read </description><pubDate>Mon, 04 Dec 2017 00:00:00 GMT</pubDate></item><item><title>How to delete Workspace from Eclipse Launcher Selection</title><link>https://zparacha.com/how-to-delete-workspace-from-eclipse-launcher-selection/</link><guid isPermaLink="true">https://zparacha.com/how-to-delete-workspace-from-eclipse-launcher-selection/</guid><description>Launch Eclipse Click on Recent Workspaces Eclipse will list all previously used workspaces Right click on the workspace name that you want to remove Click on Re</description><pubDate>Sun, 03 Dec 2017 00:00:00 GMT</pubDate></item><item><title>How to generate random alpha numeric String in Java</title><link>https://zparacha.com/how-to-generate-random-alpha-numeric-string-in-java/</link><guid isPermaLink="true">https://zparacha.com/how-to-generate-random-alpha-numeric-string-in-java/</guid><description>Following code is an example of generating a random alpha-numeric string using Java Random class. It is designed to generate random String of varying length bas</description><pubDate>Fri, 01 Dec 2017 00:00:00 GMT</pubDate></item><item><title>Java Scanner’s unexpected behavior following nextInt or nextDouble call</title><link>https://zparacha.com/java-scanner-class-not-reading-correctly-after-nextint-or-nextdouble-method-call/</link><guid isPermaLink="true">https://zparacha.com/java-scanner-class-not-reading-correctly-after-nextint-or-nextdouble-method-call/</guid><description>Scanner is a utility class that provides methods to read command-line input. It is a very useful class, but you need to be aware of its unexpected behavior whil</description><pubDate>Tue, 28 Nov 2017 00:00:00 GMT</pubDate></item><item><title>How to compare Java Strings correctly</title><link>https://zparacha.com/how-to-compare-strings-in-java/</link><guid isPermaLink="true">https://zparacha.com/how-to-compare-strings-in-java/</guid><description>One of the most common bugs I’ve seen in Java programs is the use of the == operator to compare two String objects. Most of the time the result may be acc</description><pubDate>Sat, 25 Nov 2017 00:00:00 GMT</pubDate></item><item><title>Java RegEx to validate Gmail address</title><link>https://zparacha.com/java-regex-to-validate-gmail-address/</link><guid isPermaLink="true">https://zparacha.com/java-regex-to-validate-gmail-address/</guid><description>  I’ve written about Java regular expression to validate email addresses before. Today I am sharing another Java regex to validate Gmail address. It </description><pubDate>Fri, 24 Nov 2017 00:00:00 GMT</pubDate></item><item><title>How to find largest and smallest numbers from input in Java</title><link>https://zparacha.com/how-to-find-largest-and-smallest-numbers-from-input-in-java/</link><guid isPermaLink="true">https://zparacha.com/how-to-find-largest-and-smallest-numbers-from-input-in-java/</guid><description>Following simple Java program shows how to read input values and then print smallest and largest values. It reads the input from standard input using Scanner an</description><pubDate>Thu, 23 Nov 2017 00:00:00 GMT</pubDate></item><item><title>Array Bubble Sort in Java</title><link>https://zparacha.com/array-bubble-sort-in-java/</link><guid isPermaLink="true">https://zparacha.com/array-bubble-sort-in-java/</guid><description>Although Java’s Arrays class has a built-in method to sort an array, it is important for good Java developers to know how to sort an array on their own. B</description><pubDate>Wed, 22 Nov 2017 00:00:00 GMT</pubDate></item><item><title>Top 10 Eclipse Keyboard shortcuts for Java developers</title><link>https://zparacha.com/top-10-eclipse-keyboard-shortcuts-for-java-developers/</link><guid isPermaLink="true">https://zparacha.com/top-10-eclipse-keyboard-shortcuts-for-java-developers/</guid><description>Here is a list of 10 commonly used Eclipse shortcuts for Java developers. Ctrl + Shift + T: Open a type (e.g.; a class, an interface) without browsing through l</description><pubDate>Thu, 08 Sep 2016 00:00:00 GMT</pubDate></item><item><title>How to validate Date using Javascript Regular Expression</title><link>https://zparacha.com/how-to-validate-date-using-javascript-regular-expression/</link><guid isPermaLink="true">https://zparacha.com/how-to-validate-date-using-javascript-regular-expression/</guid><description>Here is a simple Javascript function to validate a date in US format.</description><pubDate>Mon, 03 Dec 2012 00:00:00 GMT</pubDate></item><item><title>How to redirect homepage in Joomla</title><link>https://zparacha.com/how-to-redirect-homepage-in-joomla/</link><guid isPermaLink="true">https://zparacha.com/how-to-redirect-homepage-in-joomla/</guid><description>Joomla is a wonderful platform to publish websites. With readily available templates you can have your website up and running in no time. Sometimes though you m</description><pubDate>Tue, 08 Nov 2011 00:00:00 GMT</pubDate></item><item><title>Sort numbers in Java to find minimum and maximum values without using Array</title><link>https://zparacha.com/sort-numbers-in-java-find-minimum-and-maximum-values-without-using-array/</link><guid isPermaLink="true">https://zparacha.com/sort-numbers-in-java-find-minimum-and-maximum-values-without-using-array/</guid><description>Recently a reader contacted me with a question about sorting numbers in Java. After sorting the number the program then needs to print the largest and smallest </description><pubDate>Fri, 21 May 2010 00:00:00 GMT</pubDate></item><item><title>Java String comparison. The difference between == and equals().</title><link>https://zparacha.com/java-string-comparison/</link><guid isPermaLink="true">https://zparacha.com/java-string-comparison/</guid><description>Many Java beginners find it difficult to differentiate between == operator and the “equals()” method when comparing String variables in Java. They a</description><pubDate>Tue, 23 Feb 2010 00:00:00 GMT</pubDate></item><item><title>An HTML element you don’t want to omit.</title><link>https://zparacha.com/doctype-explained/</link><guid isPermaLink="true">https://zparacha.com/doctype-explained/</guid><description>As web developers we have the tendency to blame web browsers for inconsistencies and for not displaying the pages as designed. Most of the time the blame is jus</description><pubDate>Wed, 17 Feb 2010 00:00:00 GMT</pubDate></item><item><title>Why you should stop using onload method.</title><link>https://zparacha.com/better-alternative-to-onload/</link><guid isPermaLink="true">https://zparacha.com/better-alternative-to-onload/</guid><description>It is amazing that many web developers still use onload method embedded in the BODY tag, like &lt;HEAD&gt; &lt;BODY onload=”document.contact.userID.focus(</description><pubDate>Mon, 01 Feb 2010 00:00:00 GMT</pubDate></item><item><title>How to remember CSS Shorthand properties</title><link>https://zparacha.com/how-to-remember-css-shorthand-properties/</link><guid isPermaLink="true">https://zparacha.com/how-to-remember-css-shorthand-properties/</guid><description>Using margin or padding properties of CSS in the following syntax is straight forward. { padding-top:5px; padding-right:12px; padding-bottom: 15px; padding-left</description><pubDate>Mon, 01 Feb 2010 00:00:00 GMT</pubDate></item><item><title>Five free tools to choose perfect colors for your website.</title><link>https://zparacha.com/free-color-tools-for-webdesigners/</link><guid isPermaLink="true">https://zparacha.com/free-color-tools-for-webdesigners/</guid><description>Color coordination plays a big role in the look and feel of a website. An appealing color scheme is an important prerequisite for eye-catching web design. Dull </description><pubDate>Fri, 29 Jan 2010 00:00:00 GMT</pubDate></item><item><title>How to position HTML element in the center using CSS.</title><link>https://zparacha.com/how-to-position-html-element-in-the-center-using-css/</link><guid isPermaLink="true">https://zparacha.com/how-to-position-html-element-in-the-center-using-css/</guid><description>Positioning text in the center of an element is easily done using text-align:center property. But how do you position an entire element, for e.g; a div or an im</description><pubDate>Tue, 19 Jan 2010 00:00:00 GMT</pubDate></item><item><title>Reset CSS: A simple solution to browsers’ inconsistencies.</title><link>https://zparacha.com/reset-css-a-simple-solution-to-browsers-inconsistencies/</link><guid isPermaLink="true">https://zparacha.com/reset-css-a-simple-solution-to-browsers-inconsistencies/</guid><description>One of the challenges web designers face is to get various web browsers render their web pages in a consistent manner. The reason is every browser assigns sligh</description><pubDate>Sun, 10 Jan 2010 00:00:00 GMT</pubDate></item><item><title>How to convert an ArrayList to array in Java</title><link>https://zparacha.com/how-to-convert-an-arraylist-to-array-in-java/</link><guid isPermaLink="true">https://zparacha.com/how-to-convert-an-arraylist-to-array-in-java/</guid><description>Today, I will share a very basic Java program that converts an ArrayList to an array. For most Java developers this is a routine task, but many newcomers to Jav</description><pubDate>Wed, 25 Nov 2009 00:00:00 GMT</pubDate></item><item><title>How to validate date using Java regular expression</title><link>https://zparacha.com/how-to-validate-date-using-java-regular-expression/</link><guid isPermaLink="true">https://zparacha.com/how-to-validate-date-using-java-regular-expression/</guid><description>My earlier post on how to validate email address, SSN and phone number validation using Java regex still attracts a lot of visitors. Today I realized that anoth</description><pubDate>Tue, 17 Nov 2009 00:00:00 GMT</pubDate></item><item><title>How to write to properties file in Java</title><link>https://zparacha.com/how-to-write-to-properties-file-in-java/</link><guid isPermaLink="true">https://zparacha.com/how-to-write-to-properties-file-in-java/</guid><description>One of most visited posts on this blog is How to read properties file in Java. In that post I explained how you can read from a properties file. But many people</description><pubDate>Mon, 09 Nov 2009 00:00:00 GMT</pubDate></item><item><title>Best way to check if a Java String is a number.</title><link>https://zparacha.com/best-way-to-check-if-a-java-string-is-a-number/</link><guid isPermaLink="true">https://zparacha.com/best-way-to-check-if-a-java-string-is-a-number/</guid><description>An example on how to validate if a String variable in Java has all numeric digits.</description><pubDate>Mon, 02 Nov 2009 00:00:00 GMT</pubDate></item><item><title>Nine Must Have JavaScript Tools For Every Web Developer</title><link>https://zparacha.com/javascript-tools-web-developers/</link><guid isPermaLink="true">https://zparacha.com/javascript-tools-web-developers/</guid><description>Almost all major web development projects include some javascript. Developing Javascript may be easy for some but working around various browsers’ incompa</description><pubDate>Thu, 15 Oct 2009 00:00:00 GMT</pubDate></item><item><title>How to determine smallest and largest number in Java</title><link>https://zparacha.com/determine-smallest-largest-number-java/</link><guid isPermaLink="true">https://zparacha.com/determine-smallest-largest-number-java/</guid><description>A couple of weeks ago a reader asked me for a Java program to read command-line input from the user and then display the smallest value the user has entered. He</description><pubDate>Thu, 01 Oct 2009 00:00:00 GMT</pubDate></item><item><title>New features coming to Java 7</title><link>https://zparacha.com/features-coming-java-7/</link><guid isPermaLink="true">https://zparacha.com/features-coming-java-7/</guid><description>Joseph Darcy, the lead of Project Coin, formally announced the approved changes to the Java language to be included in JDK 7.  Although there was no major chang</description><pubDate>Sat, 05 Sep 2009 00:00:00 GMT</pubDate></item><item><title>How to search for a string in a file using Java regular expression.</title><link>https://zparacha.com/search-string-file-java-regular-expression/</link><guid isPermaLink="true">https://zparacha.com/search-string-file-java-regular-expression/</guid><description>If you need to search for a phrase or a string in a text file Java regular expression is the easiest way to accomplish this task. Here is a simple example that </description><pubDate>Tue, 28 Jul 2009 00:00:00 GMT</pubDate></item><item><title>How to remove (delete) Eclipse workspace from the dropdown list.</title><link>https://zparacha.com/remove-eclipse-workspace-dropdown-list/</link><guid isPermaLink="true">https://zparacha.com/remove-eclipse-workspace-dropdown-list/</guid><description>Eclipse is my favorite Java IDE. To manage projects Eclipse uses ‘Workspaces’. Workspace is basically a folder on your disk where your project files</description><pubDate>Sat, 30 May 2009 00:00:00 GMT</pubDate></item><item><title>Top four free programs to capture screenshot</title><link>https://zparacha.com/top-free-screencapture-programs/</link><guid isPermaLink="true">https://zparacha.com/top-free-screencapture-programs/</guid><description>For most web developers, programmers and bloggers taking screenshots is quite a common task. Sometimes you need the screenshot for your next post or article or </description><pubDate>Thu, 16 Apr 2009 00:00:00 GMT</pubDate></item><item><title>Ultimate Java Regular Expression to validate any email address.</title><link>https://zparacha.com/ultimate-java-regular-expression-to-validate-email-address/</link><guid isPermaLink="true">https://zparacha.com/ultimate-java-regular-expression-to-validate-email-address/</guid><description>My post about Java regular expression gets a lot of hits daily. Someone commented that the regular expression I included in that post does not block certain inv</description><pubDate>Sun, 01 Feb 2009 00:00:00 GMT</pubDate></item><item><title>How to read properties file in a Spring Application.</title><link>https://zparacha.com/how-to-read-properties-file-in-spring/</link><guid isPermaLink="true">https://zparacha.com/how-to-read-properties-file-in-spring/</guid><description>If you need to read the properties file in your Spring application all you need is to configure a PropertyPlaceholderConfigurer bean in your application context</description><pubDate>Fri, 23 Jan 2009 00:00:00 GMT</pubDate></item><item><title>How to display RSS feed on your website.</title><link>https://zparacha.com/display-rss-feed-website/</link><guid isPermaLink="true">https://zparacha.com/display-rss-feed-website/</guid><description>Image credit:Kyle Wegner OK, admit this. You have a nice-looking website. The color and the graphics look pleasing to visiting eyes. But you do not get a lot of</description><pubDate>Tue, 20 Jan 2009 00:00:00 GMT</pubDate></item><item><title>How to configure multiple handlers in a Spring MVC web application</title><link>https://zparacha.com/configure-multiple-handlers-spring-mvc-web-application/</link><guid isPermaLink="true">https://zparacha.com/configure-multiple-handlers-spring-mvc-web-application/</guid><description>In Spring MVC, DispatcherServlet relies on handler mapping to determine which controller the request should be sent to. All handler mapping classes in Spring im</description><pubDate>Sun, 04 Jan 2009 00:00:00 GMT</pubDate></item><item><title>DropBox rings in new year with sleek new web interface.</title><link>https://zparacha.com/dropbox-rings-year-sleek-web-interface/</link><guid isPermaLink="true">https://zparacha.com/dropbox-rings-year-sleek-web-interface/</guid><description>One of the most popular file-sharing applications DropBox has a new and improved web interface. It now offers a new and improved navigation. They have also tran</description><pubDate>Wed, 31 Dec 2008 00:00:00 GMT</pubDate></item><item><title>Achieve more by typing less, use PhraseExpress.</title><link>https://zparacha.com/achieve-more-by-typing-less-use-phraseexpress/</link><guid isPermaLink="true">https://zparacha.com/achieve-more-by-typing-less-use-phraseexpress/</guid><description>If you do a lot of repetitive typing, you may want to consider using PhraseExpress. This recently updated text-replacement application can save you a lot of key</description><pubDate>Mon, 29 Dec 2008 00:00:00 GMT</pubDate></item><item><title>How to remove Ctrl-M (^M) from Unix files?</title><link>https://zparacha.com/remove-ctrl-m/</link><guid isPermaLink="true">https://zparacha.com/remove-ctrl-m/</guid><description>Sometimes when you upload or FTP files from a Windows system to a UNIX box you will see ^M at the end of each line. ^M is the UNIX equivalent of DOS line break.</description><pubDate>Tue, 09 Dec 2008 00:00:00 GMT</pubDate></item><item><title>ColorPix. Free utility to determine the hex code of any color.</title><link>https://zparacha.com/colorpix-free-utility-to-determine-the-hex-code-of-any-color/</link><guid isPermaLink="true">https://zparacha.com/colorpix-free-utility-to-determine-the-hex-code-of-any-color/</guid><description>Ever wanted to use a shade of color you found on a website or an image on your own website? You can find out the text color, background color etc. by looking at</description><pubDate>Mon, 24 Nov 2008 00:00:00 GMT</pubDate></item><item><title>Extract substring from end of a Java String</title><link>https://zparacha.com/extract-substring-from-end-of-a-java-string/</link><guid isPermaLink="true">https://zparacha.com/extract-substring-from-end-of-a-java-string/</guid><description>Today I’ll show you how to extract last few characters (a substring) from a string in Java. Here is the code to do this.</description><pubDate>Thu, 07 Aug 2008 00:00:00 GMT</pubDate></item><item><title>How to add external jar files to Maven project POM</title><link>https://zparacha.com/include-externaljar-file-in-maven/</link><guid isPermaLink="true">https://zparacha.com/include-externaljar-file-in-maven/</guid><description>Maven has made compiling Java projects almost an effortless job. You no longer need to worry about placing all the required class files in your classpath. All y</description><pubDate>Sat, 19 Jul 2008 00:00:00 GMT</pubDate></item><item><title>Print large string in PL/SQL.</title><link>https://zparacha.com/print-large-string-in-plsql/</link><guid isPermaLink="true">https://zparacha.com/print-large-string-in-plsql/</guid><description>For PL/SQL developers put_line is a quite useful method. I use it for logging purposes. Recently I found out that the method has an annoying limitation. You can</description><pubDate>Tue, 01 Jul 2008 00:00:00 GMT</pubDate></item><item><title>Import static elements for more readable Java code</title><link>https://zparacha.com/java-static-import/</link><guid isPermaLink="true">https://zparacha.com/java-static-import/</guid><description>One of the welcome additions to Java language in Java 5 release is the static import declaration. static import works in the same way as traditional import decl</description><pubDate>Wed, 21 May 2008 00:00:00 GMT</pubDate></item><item><title>Test your Java skills.</title><link>https://zparacha.com/java-quizzes/</link><guid isPermaLink="true">https://zparacha.com/java-quizzes/</guid><description>Even with many years of experience with programming in Java one cannot claim that he or she has mastered the language. What I found out with experience is that </description><pubDate>Tue, 13 May 2008 00:00:00 GMT</pubDate></item><item><title>Three ways to find minimum and maximum values in a Java array of primitive types.</title><link>https://zparacha.com/minimum-maximum-array-value-java/</link><guid isPermaLink="true">https://zparacha.com/minimum-maximum-array-value-java/</guid><description>In Java you can find maximum or minimum value in a numeric array by looping through the array. Here is the code to do that. public static int getMaxValue(int[] </description><pubDate>Sun, 13 Apr 2008 00:00:00 GMT</pubDate></item><item><title>How to read properties file in Java.</title><link>https://zparacha.com/how-to-read-properties-file-in-java/</link><guid isPermaLink="true">https://zparacha.com/how-to-read-properties-file-in-java/</guid><description>Reading properties file in Java is much easier than you might have thought. Following example illustrates one simple way of reading properties from a properties</description><pubDate>Tue, 08 Apr 2008 00:00:00 GMT</pubDate></item><item><title>Simple JavaScript Regular Expression to Validate U.S Phone Numbers</title><link>https://zparacha.com/phone_number_javascript_regex/</link><guid isPermaLink="true">https://zparacha.com/phone_number_javascript_regex/</guid><description>Image credit: aussiegall Continuing with our JavaScript regular expression series today we will discuss JavaScript regular expression to validate U.S phone numb</description><pubDate>Thu, 28 Feb 2008 00:00:00 GMT</pubDate></item><item><title>Validate Zip code using JavaScript Regular expression</title><link>https://zparacha.com/validate-zip-code-using-javascript-regular-expression/</link><guid isPermaLink="true">https://zparacha.com/validate-zip-code-using-javascript-regular-expression/</guid><description>Continuing with my series of JavaScript regular expression today we will see how easy it is to validate zip code using regular expression in JavaScript. Previou</description><pubDate>Mon, 18 Feb 2008 00:00:00 GMT</pubDate></item><item><title>How to validate Social Security Number (SSN) using JavaScript Regular Expressions</title><link>https://zparacha.com/validate-social-security-number-using-javascript-regular-expressions/</link><guid isPermaLink="true">https://zparacha.com/validate-social-security-number-using-javascript-regular-expressions/</guid><description>When I wrote the JS regular expression article last week I had no idea that it will attract so many visitors. Not only did so many people read this post, many m</description><pubDate>Fri, 15 Feb 2008 00:00:00 GMT</pubDate></item><item><title>Validate email address using JavaScript regular expression</title><link>https://zparacha.com/validate-email-address-using-javascript-regular-expression/</link><guid isPermaLink="true">https://zparacha.com/validate-email-address-using-javascript-regular-expression/</guid><description>Last month I wrote about regular expressions in Java, today I’ll show you how to use regular expression in JavaScript to validate email address. Here is t</description><pubDate>Thu, 07 Feb 2008 00:00:00 GMT</pubDate></item><item><title>Set focus on the first text field of HTML form.</title><link>https://zparacha.com/textfield_focus/</link><guid isPermaLink="true">https://zparacha.com/textfield_focus/</guid><description>A HTML form is a very good channel that you can offer to your visitors to contact you. An aesthetically appealing form encourages user to fill and submit it. It</description><pubDate>Wed, 30 Jan 2008 00:00:00 GMT</pubDate></item><item><title>How to validate email, SSN, phone number in Java using Regular expressions.</title><link>https://zparacha.com/validate-email-ssn-phone-number-using-java-regular-expression/</link><guid isPermaLink="true">https://zparacha.com/validate-email-ssn-phone-number-using-java-regular-expression/</guid><description>Regular Expressions offer a concise and powerful search-and-replace mechanism. They are patterns of characters used to perform a search, extract or replace oper</description><pubDate>Thu, 10 Jan 2008 00:00:00 GMT</pubDate></item><item><title>Java Utility for JDBC</title><link>https://zparacha.com/jdbc_utility/</link><guid isPermaLink="true">https://zparacha.com/jdbc_utility/</guid><description>Code re-usability is one of the many benefits of object oriented programming. For example, in Java if you need to perform email validation in different classes,</description><pubDate>Thu, 20 Dec 2007 00:00:00 GMT</pubDate></item><item><title>Make your stylesheet a work of art.</title><link>https://zparacha.com/css_best_practices/</link><guid isPermaLink="true">https://zparacha.com/css_best_practices/</guid><description>Jina Bolton at Vitamin.com has an excellent post for all CSS developers. She described how you can write well structured stylesheets which are more efficient an</description><pubDate>Sat, 08 Dec 2007 00:00:00 GMT</pubDate></item><item><title>Sort numbers in Javascript array</title><link>https://zparacha.com/sort_numeric_arrays/</link><guid isPermaLink="true">https://zparacha.com/sort_numeric_arrays/</guid><description>Sorting an array in Javascript is a snap. You create an array and then call sort() method on that array. The Javascript sort() method sorts an array in lexicogr</description><pubDate>Wed, 05 Dec 2007 00:00:00 GMT</pubDate></item><item><title>Compress JavaScript and CSS files to optimize website speed.</title><link>https://zparacha.com/compress-js-css/</link><guid isPermaLink="true">https://zparacha.com/compress-js-css/</guid><description>Referencing external JavaScript and/or CSS files from a web page considerably increases the load time. As a rule of thumb remember that each external file requi</description><pubDate>Thu, 22 Nov 2007 00:00:00 GMT</pubDate></item><item><title>Improve your JavaScript code.</title><link>https://zparacha.com/improve_javascript_code/</link><guid isPermaLink="true">https://zparacha.com/improve_javascript_code/</guid><description>Christian Heilmann compiled a list of seven rules for unobtrusive JavaScript. I think it is a must read for beginner JavaScript developers. Even if you are a hi</description><pubDate>Mon, 19 Nov 2007 00:00:00 GMT</pubDate></item><item><title>CSS Rounded Box Generator</title><link>https://zparacha.com/rounded-corner-css/</link><guid isPermaLink="true">https://zparacha.com/rounded-corner-css/</guid><description>A nice little tool to create rounded boxes for your website. You can choose the background color for your box. The tool will generate the CSS code and a sample </description><pubDate>Mon, 19 Nov 2007 00:00:00 GMT</pubDate></item><item><title>Creating Cross Browser Compatible CSS Text Shadows</title><link>https://zparacha.com/css-text-shadow/</link><guid isPermaLink="true">https://zparacha.com/css-text-shadow/</guid><description>Sometimes it is nice to jazz up your website by giving text some graphical looks without actually using images. The CSS2 text-shadow property allows you to crea</description><pubDate>Wed, 14 Nov 2007 00:00:00 GMT</pubDate></item><item><title>Display external RSS feeds on your website.</title><link>https://zparacha.com/rss_feed_api/</link><guid isPermaLink="true">https://zparacha.com/rss_feed_api/</guid><description>You have designed a beautiful website. But you still do not get a lot of loyal visitors. The problem may not be your design, it may be the static content that i</description><pubDate>Mon, 12 Nov 2007 00:00:00 GMT</pubDate></item><item><title>Dynamically Resize Text</title><link>https://zparacha.com/css-text-resize/</link><guid isPermaLink="true">https://zparacha.com/css-text-resize/</guid><description>CSS, combined with little JavaScript, offers great flexibility to web designers. For instance, let say you want to allow visitors to change text size on your we</description><pubDate>Tue, 06 Nov 2007 00:00:00 GMT</pubDate></item><item><title>Best free software</title><link>https://zparacha.com/best-free-software/</link><guid isPermaLink="true">https://zparacha.com/best-free-software/</guid><description>Thanks to Open source movement there are plenty of free software available for our day to day computing needs. Here is a partial list of my favorite software. M</description><pubDate>Sun, 04 Nov 2007 00:00:00 GMT</pubDate></item><item><title>Automatically Sort Vector Elements</title><link>https://zparacha.com/sort-vector-elements/</link><guid isPermaLink="true">https://zparacha.com/sort-vector-elements/</guid><description>Vector class in java.util package is very easy to use. You can add objects of any type in a vector. You don’t have to worry about declaring the size of th</description><pubDate>Fri, 02 Nov 2007 00:00:00 GMT</pubDate></item><item><title>#1 Programming Language – Java</title><link>https://zparacha.com/java-remains-1-programming-language/</link><guid isPermaLink="true">https://zparacha.com/java-remains-1-programming-language/</guid><description>According to TIOBE Programming Community Index Java is still the #1 programming language. TIOBE Index gives an indication of the popularity of a programming lan</description><pubDate>Thu, 01 Nov 2007 00:00:00 GMT</pubDate></item><item><title>Cascading Style Sheet Cheatsheet</title><link>https://zparacha.com/cascading-style-cheatsheet/</link><guid isPermaLink="true">https://zparacha.com/cascading-style-cheatsheet/</guid><description>If you need quick reference CSS guide, look no further. This CSS cheat sheet is a comprehensive list of all CSS properties. Accompanying brief explanation adds </description><pubDate>Fri, 26 Oct 2007 00:00:00 GMT</pubDate></item><item><title>Dynamically loading an external JavaScript or CSS file</title><link>https://zparacha.com/dynamically-loading-an-external-javascript-or-css-file/</link><guid isPermaLink="true">https://zparacha.com/dynamically-loading-an-external-javascript-or-css-file/</guid><description>A very good article explaining how to load JavaScript and CSS files asynchronously and on demand. Dynamically loading an external JavaScript or CSS file</description><pubDate>Fri, 26 Oct 2007 00:00:00 GMT</pubDate></item><item><title>AJAX Contact Form</title><link>https://zparacha.com/ajax-contact-from/</link><guid isPermaLink="true">https://zparacha.com/ajax-contact-from/</guid><description>Want to collect input from your web site’s visitors? Don’t have time or expertise to develop the contact form yourself? Don’t worry. Dustin Di</description><pubDate>Sun, 21 Oct 2007 00:00:00 GMT</pubDate></item></channel></rss>