<?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"
	>

<channel>
	<title>Development Standards</title>
	<atom:link href="http://www.devstandards.net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.devstandards.net</link>
	<description>Thinking Beyond Programming</description>
	<pubDate>Sat, 21 Nov 2009 08:19:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Java Threading</title>
		<link>http://www.devstandards.net/software-development/programming/java-programming-software-development/java-threading.html</link>
		<comments>http://www.devstandards.net/software-development/programming/java-programming-software-development/java-threading.html#comments</comments>
		<pubDate>Sat, 21 Nov 2009 04:49:59 +0000</pubDate>
		<dc:creator>Mark Marucot</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.devstandards.net/?p=155</guid>
		<description><![CDATA[TimerTextField.java 
PLAIN TEXT
JAVA:




import java.util.Date;


&#160;


import javax.swing.JTextField;


&#160;


&#160;


public class TimerTextField extends JTextField implements Runnable &#123;


&#160; &#160; private boolean gogo = true;


&#160; &#160; @Override


&#160; &#160; public void run&#40;&#41; &#123;


&#160; &#160; &#160; &#160; // TODO Auto-generated method stub


&#160; &#160; &#160; &#160; Date d;


&#160; &#160; 


&#160; &#160; &#160; &#160; while&#40;gogo&#41;


&#160; &#160; &#160; &#160; &#123;


&#160; &#160; &#160; &#160; &#160; &#160; d = [...]]]></description>
		<wfw:commentRss>http://www.devstandards.net/software-development/programming/java-programming-software-development/java-threading.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Java Navigation</title>
		<link>http://www.devstandards.net/software-development/programming/java-programming-software-development/java-navigation.html</link>
		<comments>http://www.devstandards.net/software-development/programming/java-programming-software-development/java-navigation.html#comments</comments>
		<pubDate>Sat, 14 Nov 2009 08:38:09 +0000</pubDate>
		<dc:creator>Mark Marucot</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.devstandards.net/?p=152</guid>
		<description><![CDATA[Main.java
PLAIN TEXT
JAVA:




public class Main &#123;


&#160; &#160; public static void main&#40;String&#91;&#93; args&#41; &#123;


&#160; &#160; &#160; &#160; new Apps&#40;&#41;;


&#160; &#160; &#125;


&#125; 






Apps.java
PLAIN TEXT
JAVA:




import java.awt.Component;


import java.awt.Rectangle;


import java.awt.event.ActionEvent;


import java.awt.event.ActionListener;


import java.util.ArrayList;


import java.util.HashMap;


import java.util.Iterator;


import java.util.List;


import java.util.ListIterator;


import javax.swing.JButton;


import javax.swing.JFrame;


import javax.swing.JLabel;


import javax.swing.JScrollPane;


import javax.swing.JTextArea;


import javax.swing.JTextField;


&#160;


public class Apps extends JFrame&#123;


&#160; &#160; private JButton jbsave;


&#160; &#160; private JButton jbdisplay;


&#160; &#160; private JButton jbprev;


&#160; &#160; private JButton [...]]]></description>
		<wfw:commentRss>http://www.devstandards.net/software-development/programming/java-programming-software-development/java-navigation.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Java Hashmap</title>
		<link>http://www.devstandards.net/software-development/programming/java-programming-software-development/java-hashmap.html</link>
		<comments>http://www.devstandards.net/software-development/programming/java-programming-software-development/java-hashmap.html#comments</comments>
		<pubDate>Sat, 14 Nov 2009 03:02:39 +0000</pubDate>
		<dc:creator>Mark Marucot</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.devstandards.net/?p=146</guid>
		<description><![CDATA[Pet.java
PLAIN TEXT
JAVA:




public class Pet &#123;


&#160; &#160;private String name;


&#160; &#160;private int age;


&#160;


&#160; &#160;public String getName&#40;&#41;


&#160; &#160;&#123;


&#160; &#160; &#160; return name;


&#160; &#160;&#125;


&#160; &#160;public void setName&#40;String name&#41;


&#160; &#160;&#123;


&#160; &#160; &#160; this.name = name;


&#160; &#160;&#125;


&#160; &#160;public int getAge&#40;&#41; 


&#160; &#160;&#123;


&#160; &#160; &#160; &#160;return age;


&#160; &#160;&#125;


&#160;


&#160; &#160;public void setAge&#40;int age&#41;


&#160; &#160;&#123;


&#160; &#160; &#160; this.age = age;


&#160; &#160;&#125;


&#125; 






Apps.java
PLAIN TEXT
JAVA:




import java.awt.Component;


import [...]]]></description>
		<wfw:commentRss>http://www.devstandards.net/software-development/programming/java-programming-software-development/java-hashmap.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Java Array</title>
		<link>http://www.devstandards.net/software-development/programming/java-programming-software-development/java-array.html</link>
		<comments>http://www.devstandards.net/software-development/programming/java-programming-software-development/java-array.html#comments</comments>
		<pubDate>Sat, 14 Nov 2009 02:57:23 +0000</pubDate>
		<dc:creator>Mark Marucot</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.devstandards.net/?p=139</guid>
		<description><![CDATA[PLAIN TEXT
JAVA:




import java.util.Arrays;


&#160;


public class MainProg &#123;


&#160;


/**


* @param args


*/


public static void main&#40;String&#91;&#93; args&#41; &#123;


// TODO Auto-generated method stub


int num1&#91;&#93; = &#123;1,2,3,4&#125;; 


int num2&#91;&#93; = new int&#91;4&#93;;


int num3&#91;&#93; = new int&#91;4&#93;;


&#160;


// to populate


for &#40;int i=0 ; i &#60;4 ; i++&#41; &#123;


num2&#91;i&#93; = i;


&#125;


&#160;


Arrays.fill&#40;num3,0&#41;;


&#160;


// to display


for &#40; int value : num2&#41; &#123;


System.out.println&#40;value&#41;;


&#125;


&#160;


int value;


for &#40;int x=0 ; x &#60;4 [...]]]></description>
		<wfw:commentRss>http://www.devstandards.net/software-development/programming/java-programming-software-development/java-array.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>New Oracle SOA Book</title>
		<link>http://www.devstandards.net/oracle/new-oracle-soa-book.html</link>
		<comments>http://www.devstandards.net/oracle/new-oracle-soa-book.html#comments</comments>
		<pubDate>Thu, 25 Jun 2009 06:45:29 +0000</pubDate>
		<dc:creator>Mark Marucot</dc:creator>
		
		<category><![CDATA[Oracle]]></category>

		<category><![CDATA[SOA]]></category>

		<category><![CDATA[Technical Architecture]]></category>

		<guid isPermaLink="false">http://www.devstandards.net/?p=116</guid>
		<description><![CDATA[
Are you new to SOA and would like to learn how Oracle SOA Suite fits into the SOA world ?  Or are you a SOA professional and looking for an all in one book on Oracle SOA Suite?  Then wait no more, after a few months of waiting, Matt Wright and Antony Reynolds [...]]]></description>
		<wfw:commentRss>http://www.devstandards.net/oracle/new-oracle-soa-book.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Javascript getElementById Issue in Firefox</title>
		<link>http://www.devstandards.net/web/javascript/javascript-getelementbyid-issue-in-firefox.html</link>
		<comments>http://www.devstandards.net/web/javascript/javascript-getelementbyid-issue-in-firefox.html#comments</comments>
		<pubDate>Sat, 12 Jul 2008 05:48:43 +0000</pubDate>
		<dc:creator>Mark Marucot</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[Firefox]]></category>

		<category><![CDATA[HTML]]></category>

		<category><![CDATA[Internet Explorer]]></category>

		<guid isPermaLink="false">http://www.devstandards.net/?p=70</guid>
		<description><![CDATA[I'm working on an Javascript code. This web application is retrieving value from a couple of textbox fields and concatenate in result textbox field.  I tested the web application in Internet Explorer and it work fine. But when I'm testing in Firefox, the value is not passed to the textbox field.
Here is the original [...]]]></description>
		<wfw:commentRss>http://www.devstandards.net/web/javascript/javascript-getelementbyid-issue-in-firefox.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Oracle Enterprise 2.0 Bootcamp</title>
		<link>http://www.devstandards.net/oracle/oracle-enterprise-20-bootcamp.html</link>
		<comments>http://www.devstandards.net/oracle/oracle-enterprise-20-bootcamp.html#comments</comments>
		<pubDate>Wed, 09 Jul 2008 11:30:30 +0000</pubDate>
		<dc:creator>Mark Marucot</dc:creator>
		
		<category><![CDATA[Oracle]]></category>

		<category><![CDATA[Bootcamp]]></category>

		<category><![CDATA[Enterprise 2.0]]></category>

		<category><![CDATA[OTN]]></category>

		<category><![CDATA[Social Networking]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.devstandards.net/?p=69</guid>
		<description><![CDATA[Companies are using Web 2.0 technologies such as blogs, wiki and social networking.  However, there are top issues that need to be considered before implementing such technologies. They are cultural change, privacy, best practices and internal collaboration. Assessment of the impact of implementation to the organization is needed. 
Oracle organized Oracle Enterprise 2.0 Bootcamp [...]]]></description>
		<wfw:commentRss>http://www.devstandards.net/oracle/oracle-enterprise-20-bootcamp.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Oracle Architecture Centers</title>
		<link>http://www.devstandards.net/oracle/oracle-architecture-centers.html</link>
		<comments>http://www.devstandards.net/oracle/oracle-architecture-centers.html#comments</comments>
		<pubDate>Wed, 09 Jul 2008 11:09:30 +0000</pubDate>
		<dc:creator>Mark Marucot</dc:creator>
		
		<category><![CDATA[Oracle]]></category>

		<category><![CDATA[Architecture]]></category>

		<category><![CDATA[OTN]]></category>

		<guid isPermaLink="false">http://www.devstandards.net/?p=68</guid>
		<description><![CDATA[To support Oracle's investment to Service Oriented Architecture and acquisition of various SOA related products, Oracle created Architect Centers for SOA, Virtualization, Enterprise 2.0 and Extreme Transaction Processing in OTN website.

OTN is adding an "Architect" focus to the community, with new centers covering expanded SOA (including governance), Extreme Transaction Processing, Virtualization (Oracle VM + JRockit [...]]]></description>
		<wfw:commentRss>http://www.devstandards.net/oracle/oracle-architecture-centers.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Wehmeyer Choosed Oracle Retail Optimization</title>
		<link>http://www.devstandards.net/oracle/wehmeyer-choosed-oracle-retail-optimization.html</link>
		<comments>http://www.devstandards.net/oracle/wehmeyer-choosed-oracle-retail-optimization.html#comments</comments>
		<pubDate>Wed, 09 Jul 2008 10:55:16 +0000</pubDate>
		<dc:creator>Mark Marucot</dc:creator>
		
		<category><![CDATA[Oracle]]></category>

		<category><![CDATA[Oracle Retail]]></category>

		<category><![CDATA[Oracle Retail Optimization]]></category>

		<category><![CDATA[Retail]]></category>

		<guid isPermaLink="false">http://www.devstandards.net/?p=67</guid>
		<description><![CDATA[Wehmeyer, a German fashion house, selected Oracle Retail Optimization to avail the efficiency in improving the inventory management.  Oracle Retail Application introduced Wehmeyer an advanced approach in managing in-season inventory, assortment and pricing strategies across its 40 stores across Germany.
Wehmeyer is expected to enjoy the following benefits of Oracle Retail Optimization.
Oracle Retail Price Optimization [...]]]></description>
		<wfw:commentRss>http://www.devstandards.net/oracle/wehmeyer-choosed-oracle-retail-optimization.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Reading CSV File Using C Program</title>
		<link>http://www.devstandards.net/software-development/integration/reading-csv-file-using-c-program.html</link>
		<comments>http://www.devstandards.net/software-development/integration/reading-csv-file-using-c-program.html#comments</comments>
		<pubDate>Mon, 02 Jun 2008 07:16:48 +0000</pubDate>
		<dc:creator>Mark Marucot</dc:creator>
		
		<category><![CDATA[C]]></category>

		<category><![CDATA[Integration]]></category>

		<category><![CDATA[CSV]]></category>

		<category><![CDATA[Data Integration]]></category>

		<guid isPermaLink="false">http://www.devstandards.net/?p=66</guid>
		<description><![CDATA[Since I'm on an integration project, I'm mostly dealing with transferring of data from two or more systems whether it's from the legacy system or newly implemented system. Most of the type of data movement is sending CSV files to and from the different system. Here is a simple tutorial on how to read CSV. [...]]]></description>
		<wfw:commentRss>http://www.devstandards.net/software-development/integration/reading-csv-file-using-c-program.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
