<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;DEAMQn8_cCp7ImA9WhRRFE4.&quot;"><id>tag:blogger.com,1999:blog-976219693063981951</id><updated>2011-11-28T06:33:03.148+07:00</updated><category term="java community" /><category term="JOVED 2009" /><category term="billboard" /><category term="java languange" /><category term="jdbc" /><category term="MOSES" /><category term="mysql" /><category term="decrypt" /><category term="java" /><category term="java-database" /><category term="English" /><category term="Debates" /><category term="Imagine Cup 2009" /><category term="pemrograman" /><category term="Genetically Engineered Foods" /><category term="programming" /><category term="tutorial" /><category term="economy" /><category term="THW" /><category term="environment" /><category term="JOVED" /><category term="algorithm" /><category term="tugas" /><category term="Jacko" /><category term="debate" /><category term="English Debating" /><category term="java programming" /><category term="ESUJ Tournament" /><category term="entity" /><category term="asisten" /><category term="encrypt" /><category term="download" /><category term="Genetical" /><category term="Big Bang" /><category term="Imagine Cup" /><category term="sql" /><category term="David Samuel" /><category term="amikom" /><category term="Food" /><category term="java amikom" /><category term="cryptograph" /><category term="Michael Jackson" /><category term="languange" /><category term="Genetically" /><category term="database" /><category term="motion" /><title>Happy Coding...</title><subtitle type="html">Coding is the sweetest think of learning..</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://mrstanza.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://mrstanza.blogspot.com/" /><author><name>mrstanza</name><uri>http://www.blogger.com/profile/11035205188728355595</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/-mFBleXZZFts/TblN_BhN3wI/AAAAAAAAAFY/Z0X85rqc5RA/s220/1410453120.41.1461613789.jpeg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>12</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/HappyCoding" /><feedburner:info uri="happycoding" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;D0AHRn06fyp7ImA9WxBXFkk.&quot;"><id>tag:blogger.com,1999:blog-976219693063981951.post-613136271588419392</id><published>2010-01-28T09:15:00.004+07:00</published><updated>2010-01-28T09:28:57.317+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-01-28T09:28:57.317+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="sql" /><category scheme="http://www.blogger.com/atom/ns#" term="java" /><category scheme="http://www.blogger.com/atom/ns#" term="java amikom" /><category scheme="http://www.blogger.com/atom/ns#" term="java community" /><category scheme="http://www.blogger.com/atom/ns#" term="algorithm" /><category scheme="http://www.blogger.com/atom/ns#" term="jdbc" /><category scheme="http://www.blogger.com/atom/ns#" term="pemrograman" /><category scheme="http://www.blogger.com/atom/ns#" term="entity" /><category scheme="http://www.blogger.com/atom/ns#" term="java-database" /><category scheme="http://www.blogger.com/atom/ns#" term="mysql" /><category scheme="http://www.blogger.com/atom/ns#" term="tutorial" /><category scheme="http://www.blogger.com/atom/ns#" term="programming" /><category scheme="http://www.blogger.com/atom/ns#" term="database" /><category scheme="http://www.blogger.com/atom/ns#" term="java languange" /><category scheme="http://www.blogger.com/atom/ns#" term="java programming" /><title>Tutorial JDBC MySql (1)</title><content type="html">In the programming, it does not complete if it does not discuss&lt;br /&gt;database problems, which would make the program more&lt;br /&gt;dynamic. This time, I will cite a brief skript&lt;br /&gt;about how to create a database connection (JDBC) in the&lt;br /&gt;java programming. DBMS used in this example is&lt;br /&gt;MySql database. In my opinion, this is a MySQL connection&lt;br /&gt;most easily done because they do not require configuration&lt;br /&gt;complicated.&lt;br /&gt;&lt;br /&gt;MySql default port is 3306.&lt;br /&gt;Each DBMS has a port that each is different.&lt;br /&gt;In PostgreSQL, the default port is 5432,&lt;br /&gt;the SQLServer2000, the default port is 1433.&lt;br /&gt;&lt;div&gt;And this is the code :&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;&lt;br /&gt;import java.sql.Connection;&lt;br /&gt;import java.sql.DriverManager;&lt;br /&gt;import java.sql.ResultSet;&lt;br /&gt;import java.sql.Statement;&lt;br /&gt;import java.util.ArrayList;&lt;br /&gt;import java.util.List;&lt;br /&gt;import javax.swing.JOptionPane;&lt;br /&gt;&lt;br /&gt;public class MemberDAOImpl implements MemberDAO {&lt;br /&gt;private Connection connection;&lt;br /&gt;&lt;br /&gt;public MemberDAOImpl() {&lt;br /&gt;try {&lt;br /&gt;Class.forName("com.mysql.jdbc.Driver");&lt;br /&gt;String url = "jdbc:mysql://127.0.0.1:3306/bank";&lt;br /&gt;connection = DriverManager.getConnection(url, "root",&lt;br /&gt;&lt;br /&gt;"");&lt;br /&gt;} catch (Exception e) {&lt;br /&gt;System.out.println(e.getMessage());&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;In order to make the connection can be called many times in other classes, add this script&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-family:georgia;"&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;public Connection getConnection(){&lt;br /&gt;return connection;&lt;br /&gt;}&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;For SQL scripts example, suppose a table is a 'member'.&lt;br /&gt;This script can be made if the class for the entity member is made&lt;br /&gt;first. If you need a file, you can contact me, I will send via email. And it so much easier to detect errors if we use the NetBeans application.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;public List getAllMember() {&lt;br /&gt;List listMember = new ArrayList&lt;/span&gt;&lt;member&gt;&lt;span class="Apple-style-span"  style="font-family:'courier new';"&gt;();&lt;br /&gt;Connection conn;&lt;br /&gt;Statement sttmt;&lt;br /&gt;try {&lt;br /&gt;conn = getConnection();&lt;br /&gt;sttmt = conn.createStatement();&lt;br /&gt;String query = "select * from member";&lt;br /&gt;ResultSet rsMember = sttmt.executeQuery(query);&lt;br /&gt;while(rsMember.next()){&lt;br /&gt;Member member = new Member();&lt;br /&gt;member.setRegNumber(rsMember.getString(1));&lt;br /&gt;member.setId(rsMember.getString(2));&lt;br /&gt;member.setName(rsMember.getString(3));&lt;br /&gt;member.setGender(rsMember.getInt(4));&lt;br /&gt;member.setClas(rsMember.getString(5));&lt;br /&gt;member.setBirthPlaceDate(rsMember.getString(6));&lt;br /&gt;member.setAddress(rsMember.getString(7));&lt;br /&gt;member.setPhoneNumber(rsMember.getString(8));&lt;br /&gt;listMember.add(member);&lt;br /&gt;}&lt;br /&gt;} catch (Exception e) {&lt;br /&gt;JOptionPane.showMessageDialog(null, e.getMessage());&lt;br /&gt;}&lt;br /&gt;return listMember;&lt;br /&gt;}&lt;/span&gt;&lt;br /&gt;&lt;/member&gt;&lt;/div&gt;&lt;br /&gt;That's the script to connect to MySql, for other DBMS I will discuss in the next examples. Good luck &amp;amp; Happy coding ^ _ ^!&lt;div&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;By: &lt;b&gt;Mr.Stanza&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/976219693063981951-613136271588419392?l=mrstanza.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/qO59h4fqdqResjLexMDNEYYT1p0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/qO59h4fqdqResjLexMDNEYYT1p0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/qO59h4fqdqResjLexMDNEYYT1p0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/qO59h4fqdqResjLexMDNEYYT1p0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/HappyCoding/~4/8J2FpfqK5_k" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://mrstanza.blogspot.com/feeds/613136271588419392/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mrstanza.blogspot.com/2010/01/tutorial-jdbc-mysql-1.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/613136271588419392?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/613136271588419392?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/HappyCoding/~3/8J2FpfqK5_k/tutorial-jdbc-mysql-1.html" title="Tutorial JDBC MySql (1)" /><author><name>mrstanza</name><uri>http://www.blogger.com/profile/11035205188728355595</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/-mFBleXZZFts/TblN_BhN3wI/AAAAAAAAAFY/Z0X85rqc5RA/s220/1410453120.41.1461613789.jpeg" /></author><thr:total>0</thr:total><feedburner:origLink>http://mrstanza.blogspot.com/2010/01/tutorial-jdbc-mysql-1.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkAAQnc5eip7ImA9WxBXFUQ.&quot;"><id>tag:blogger.com,1999:blog-976219693063981951.post-5194069706235948131</id><published>2010-01-27T20:10:00.004+07:00</published><updated>2010-01-27T20:25:43.922+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-01-27T20:25:43.922+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="java" /><category scheme="http://www.blogger.com/atom/ns#" term="encrypt" /><category scheme="http://www.blogger.com/atom/ns#" term="java amikom" /><category scheme="http://www.blogger.com/atom/ns#" term="cryptograph" /><category scheme="http://www.blogger.com/atom/ns#" term="decrypt" /><category scheme="http://www.blogger.com/atom/ns#" term="algorithm" /><category scheme="http://www.blogger.com/atom/ns#" term="java programming" /><category scheme="http://www.blogger.com/atom/ns#" term="java languange" /><title>Qwerty Algorithm Tutorial</title><content type="html">Java programming science is very broad and can be implemented in various fields. Among them are cryptographic. Cryptography itself is one branch of computer science in the world, which is associated with encoding or disguise the original text (plain text) into text that is disguised so as not to be understood by readers (chiper text).
&lt;br /&gt;
&lt;br /&gt;Here is one example of the science of cryptographic algorithms called Qwerty (originaled by: Dwindy Stanza &amp; Paiman). As the name implies, QWERTY, this algorithm adapted to the standard keyboard board. The principle works something like this:
&lt;br /&gt;
&lt;br /&gt;A : index 0   =   Q  : index 0
&lt;br /&gt;B : index 1   =   W : index 1
&lt;br /&gt;C : index 2   =   E  : index 2
&lt;br /&gt;D : index 3   =   R  : index 3
&lt;br /&gt;...
&lt;br /&gt;Z : index 25  =   M : index 25
&lt;br /&gt;
&lt;br /&gt;That's for the first letter, while for the second letter there is a shift in the index, so that A is no longer the Q, but the W. And Q was changed to the last index that W to M shifted one index. And so on.
&lt;br /&gt;
&lt;br /&gt;A : index 0   =   W  : index 0
&lt;br /&gt;B : index 1   =   E : index 1
&lt;br /&gt;C : index 2   =   R  : index 2
&lt;br /&gt;D : index 3   =   T  : index 3
&lt;br /&gt;...
&lt;br /&gt;Z : index 25  =   Q : index 25
&lt;br /&gt;
&lt;br /&gt;Prior to implementation of the program code, first create the components needed, ie
&lt;br /&gt;1. JPanel txtPlain
&lt;br /&gt;2. JPanel txtChiper
&lt;br /&gt;3. JButton btnEncrypt
&lt;br /&gt;4. JButton btnDecrypt
&lt;br /&gt;
&lt;br /&gt;Encrypt used to translate the text into chiper Plain text, while Decrypt chiper translate text into plain text.
&lt;br /&gt;
&lt;br /&gt;For implementation in java, something like this for action btnEncrypt:
&lt;br /&gt;&lt;span style="font-style:italic;"&gt;
&lt;br /&gt;private void btnEncryptActionPerformed(java.awt.event.ActionEvent evt) {
&lt;br /&gt;         char [] kode = {'Q','W','E','R','T','Y','U','I','O','P','A','S','D','F','G','H','J','K','L','Z','X','C','V','B','N','M' };
&lt;br /&gt;         char [] abc = {'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z' };
&lt;br /&gt;
&lt;br /&gt;                int ketemu=0;
&lt;br /&gt;                char tampung = 0;
&lt;br /&gt;                String plaintext = txtPlain.getText(); 
&lt;br /&gt;                char[] ciphertext = new char[plaintext.length()];
&lt;br /&gt;
&lt;br /&gt;                if (!plaintext.equals(""))
&lt;br /&gt;                txtPlain.setText(plaintext);
&lt;br /&gt;
&lt;br /&gt;                for(int w = 0; w&lt;plaintext.trim().length() ; w ++){
&lt;br /&gt;
&lt;br /&gt;                    tampung = plaintext.toUpperCase().charAt(w) ;
&lt;br /&gt;                        for(int x = 0 ; x&lt;=25 ; x++){
&lt;br /&gt;                              if(tampung == abc[x] ){
&lt;br /&gt;                              ketemu = x;
&lt;br /&gt;                            }
&lt;br /&gt;// else{ ketemu = -1; }
&lt;br /&gt;                        ciphertext[w] = kode[ketemu];
&lt;br /&gt;                    }
&lt;br /&gt;
&lt;br /&gt;                    char bantu = 0;
&lt;br /&gt;
&lt;br /&gt;                    bantu = kode[0];
&lt;br /&gt;// Pergeseran Index
&lt;br /&gt;                for(int i = 0 ; i&lt;=24 ; i++ ) {
&lt;br /&gt;                        kode[i] = kode[i+1];
&lt;br /&gt;                    }
&lt;br /&gt;                kode[25] = bantu;
&lt;br /&gt;                }
&lt;br /&gt;                String c;
&lt;br /&gt;                for(int w = 0; w&lt;plaintext.length() ; w ++){
&lt;br /&gt;                    txtCipher.setText(String.valueOf(ciphertext));
&lt;br /&gt;                }
&lt;br /&gt;
&lt;br /&gt;    }&lt;/span&gt;
&lt;br /&gt;
&lt;br /&gt;As for the implementation of the action button Decrypt are as follows:
&lt;br /&gt;
&lt;br /&gt; &lt;span style="font-style:italic;"&gt; private void btnDecryptActionPerformed(java.awt.event.ActionEvent evt) {
&lt;br /&gt;          char [] kode = {'Q','W','E','R','T','Y','U','I','O','P','A','S','D','F','G','H','J','K','L','Z','X','C','V','B','N','M' };
&lt;br /&gt;                char [] abc = {'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z' };
&lt;br /&gt;
&lt;br /&gt;                int ketemu=0;
&lt;br /&gt;                char tampung = 0;
&lt;br /&gt;                String plaintext = txtPlain.getText();
&lt;br /&gt;                char[] ciphertext = new char[plaintext.length()];
&lt;br /&gt;
&lt;br /&gt;                if (!plaintext.equals(""))
&lt;br /&gt;                txtPlain.setText(plaintext);
&lt;br /&gt;
&lt;br /&gt;                for(int w = 0; w&lt;plaintext.trim().length() ; w ++){
&lt;br /&gt;
&lt;br /&gt;                    tampung = plaintext.toUpperCase().charAt(w) ;
&lt;br /&gt;                        for(int x = 0 ; x&lt;=25 ; x++){
&lt;br /&gt;                              if(tampung == kode[x] ){
&lt;br /&gt;                              ketemu = x;
&lt;br /&gt;                            }
&lt;br /&gt;// else{ ketemu = -1; }
&lt;br /&gt;                        ciphertext[w] = abc[ketemu];
&lt;br /&gt;                    }
&lt;br /&gt;
&lt;br /&gt;                    char bantu = 0;
&lt;br /&gt;
&lt;br /&gt;                    bantu = abc[25];
&lt;br /&gt;// Pergeseran Index
&lt;br /&gt;                for(int i = 25 ; i&gt;=1 ; i-- ) {
&lt;br /&gt;                        abc[i] = abc[i-1];
&lt;br /&gt;                    }
&lt;br /&gt;                abc[0] = bantu;
&lt;br /&gt;                }
&lt;br /&gt;                String c;
&lt;br /&gt;                for(int w = 0; w&lt;plaintext.length() ; w ++){
&lt;br /&gt;                    txtCipher.setText(String.valueOf(ciphertext));
&lt;br /&gt;                }
&lt;br /&gt;
&lt;br /&gt;    }
&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;For the result, here is an example : 
&lt;br /&gt;plain text = BEDA
&lt;br /&gt;chiper text = WYYR
&lt;br /&gt;
&lt;br /&gt;keep trying and happy coding !
&lt;br /&gt;
&lt;br /&gt;By : &lt;span style="font-weight:bold;"&gt;Mr.Stanza&lt;/span&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GFuFOouyyG8/S2A4QDJoE0I/AAAAAAAAABk/CeDC8-pI6R4/s1600-h/decrypt.JPG"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 320px; height: 174px;" src="http://3.bp.blogspot.com/_GFuFOouyyG8/S2A4QDJoE0I/AAAAAAAAABk/CeDC8-pI6R4/s320/decrypt.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5431402998983562050" /&gt;&lt;/a&gt;
&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GFuFOouyyG8/S2A4PxHwPZI/AAAAAAAAABc/rhUNbboQzUw/s1600-h/encrypt.JPG"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 320px; height: 166px;" src="http://2.bp.blogspot.com/_GFuFOouyyG8/S2A4PxHwPZI/AAAAAAAAABc/rhUNbboQzUw/s320/encrypt.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5431402994143870354" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/976219693063981951-5194069706235948131?l=mrstanza.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/tf_-z5cUkR5PKmQOwTnOis7TNXg/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/tf_-z5cUkR5PKmQOwTnOis7TNXg/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/tf_-z5cUkR5PKmQOwTnOis7TNXg/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/tf_-z5cUkR5PKmQOwTnOis7TNXg/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/HappyCoding/~4/hEd9yDvTwaQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://mrstanza.blogspot.com/feeds/5194069706235948131/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mrstanza.blogspot.com/2010/01/qwerty-algorithm-tutorial.html#comment-form" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/5194069706235948131?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/5194069706235948131?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/HappyCoding/~3/hEd9yDvTwaQ/qwerty-algorithm-tutorial.html" title="Qwerty Algorithm Tutorial" /><author><name>mrstanza</name><uri>http://www.blogger.com/profile/11035205188728355595</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/-mFBleXZZFts/TblN_BhN3wI/AAAAAAAAAFY/Z0X85rqc5RA/s220/1410453120.41.1461613789.jpeg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_GFuFOouyyG8/S2A4QDJoE0I/AAAAAAAAABk/CeDC8-pI6R4/s72-c/decrypt.JPG" height="72" width="72" /><thr:total>2</thr:total><feedburner:origLink>http://mrstanza.blogspot.com/2010/01/qwerty-algorithm-tutorial.html</feedburner:origLink><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="enclosure" href="http://feedproxy.google.com/~r/HappyCoding/~5/MxvLKAvJzoo/tutorial-membuat-algoritma-qwerty.html" length="0" type="text/html" /><feedburner:origEnclosureLink>http://dstanza.blogspot.com/2010/01/tutorial-membuat-algoritma-qwerty.html</feedburner:origEnclosureLink></entry><entry gd:etag="W/&quot;D0cCSXo7cCp7ImA9WxNbEUo.&quot;"><id>tag:blogger.com,1999:blog-976219693063981951.post-5578959598747025627</id><published>2009-11-14T11:52:00.003+07:00</published><updated>2009-11-14T12:04:28.408+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-11-14T12:04:28.408+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="pemrograman" /><category scheme="http://www.blogger.com/atom/ns#" term="java" /><category scheme="http://www.blogger.com/atom/ns#" term="java amikom" /><category scheme="http://www.blogger.com/atom/ns#" term="java community" /><category scheme="http://www.blogger.com/atom/ns#" term="programming" /><category scheme="http://www.blogger.com/atom/ns#" term="asisten" /><category scheme="http://www.blogger.com/atom/ns#" term="java programming" /><category scheme="http://www.blogger.com/atom/ns#" term="java languange" /><category scheme="http://www.blogger.com/atom/ns#" term="amikom" /><title>Introduction of JUGA (Java User Group Amikom)</title><content type="html">The second meeting of Java User Group Amikom (JUGA) has been held in 4th building of STMIK AMIKOM Yogyakarta. As the speaker, Moh. Rizky Pratama(Tama, AMIKOM 07 Information Technology), the leader of JUGA, explained about the basic concept of Encapsulation as one chapter of Java Programming learning. &lt;br /&gt;&lt;br /&gt;JUGA is one of many communities that existed in STMIK AMIKOM. This community is the place for the students of STMIK AMIKOM who want to learn and concentrate about Java Programming. &lt;br /&gt;&lt;br /&gt;This community get big support from the lecturers and also the instituion of STMIK AMIKOM. Because we know that what we have got from lecture maybe not enough because knowledge Java Programming is so wide. &lt;br /&gt;&lt;br /&gt;So if the students want to experience in Java Programming, they had to more explore about it. And JUGA, as the community, can be the alternative for it.&lt;span style="font-weight:bold;"&gt;/MrStanza&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/976219693063981951-5578959598747025627?l=mrstanza.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/q1R6vk4dJXRWba7qP9FWKn203vQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/q1R6vk4dJXRWba7qP9FWKn203vQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/q1R6vk4dJXRWba7qP9FWKn203vQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/q1R6vk4dJXRWba7qP9FWKn203vQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/HappyCoding/~4/8ycOQ0-HDng" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://mrstanza.blogspot.com/feeds/5578959598747025627/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mrstanza.blogspot.com/2009/11/introduction-of-juga-java-user-group.html#comment-form" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/5578959598747025627?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/5578959598747025627?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/HappyCoding/~3/8ycOQ0-HDng/introduction-of-juga-java-user-group.html" title="Introduction of JUGA (Java User Group Amikom)" /><author><name>mrstanza</name><uri>http://www.blogger.com/profile/11035205188728355595</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/-mFBleXZZFts/TblN_BhN3wI/AAAAAAAAAFY/Z0X85rqc5RA/s220/1410453120.41.1461613789.jpeg" /></author><thr:total>2</thr:total><feedburner:origLink>http://mrstanza.blogspot.com/2009/11/introduction-of-juga-java-user-group.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0AMRXY4eyp7ImA9WxNVE00.&quot;"><id>tag:blogger.com,1999:blog-976219693063981951.post-6352669413372364554</id><published>2009-10-23T19:22:00.006+07:00</published><updated>2009-10-23T19:43:04.833+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-23T19:43:04.833+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="java" /><category scheme="http://www.blogger.com/atom/ns#" term="tugas" /><category scheme="http://www.blogger.com/atom/ns#" term="tutorial" /><category scheme="http://www.blogger.com/atom/ns#" term="programming" /><category scheme="http://www.blogger.com/atom/ns#" term="amikom" /><title>How to Configure Path of Java on Windows</title><content type="html">&lt;!--[endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face 	{font-family:Wingdings; 	panose-1:5 0 0 0 0 0 0 0 0 0; 	mso-font-charset:2; 	mso-generic-font-family:auto; 	mso-font-pitch:variable; 	mso-font-signature:0 268435456 0 0 -2147483648 0;} @font-face 	{font-family:SimSun; 	panose-1:2 1 6 0 3 1 1 1 1 1; 	mso-font-alt:宋体; 	mso-font-charset:134; 	mso-generic-font-family:auto; 	mso-font-pitch:variable; 	mso-font-signature:3 680460288 22 0 262145 0;} @font-face 	{font-family:"\@SimSun"; 	panose-1:2 1 6 0 3 1 1 1 1 1; 	mso-font-charset:134; 	mso-generic-font-family:auto; 	mso-font-pitch:variable; 	mso-font-signature:3 680460288 22 0 262145 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin:0cm; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:SimSun;} a:link, span.MsoHyperlink 	{color:blue; 	text-decoration:underline; 	text-underline:single;} a:visited, span.MsoHyperlinkFollowed 	{color:purple; 	text-decoration:underline; 	text-underline:single;} @page Section1 	{size:595.3pt 841.9pt; 	margin:72.0pt 90.0pt 72.0pt 90.0pt; 	mso-header-margin:35.4pt; 	mso-footer-margin:35.4pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;}  /* List Definitions */  @list l0 	{mso-list-id:2042123592; 	mso-list-type:hybrid; 	mso-list-template-ids:440279386 69271567 69271577 69271579 69271567 69271577 69271579 69271567 69271577 69271579;} @list l0:level1 	{mso-level-tab-stop:36.0pt; 	mso-level-number-position:left; 	text-indent:-18.0pt;} ol 	{margin-bottom:0cm;} ul 	{margin-bottom:0cm;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:""; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman";} &lt;/style&gt; &lt;![endif]--&gt;  &lt;p class="MsoNormal"&gt;In this post, I assume that all of you have downloaded and installed Java Developement Kit (JDK 2.0 or above) . If java already installed on your computer but you still can’t use the command like ‘javac’ or ‘java’ on your command promt. Maybe you haven’t set the classpath of the java itself.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;These are some ways to activate java command on your command prompt :  &lt;!--[if !supportLineBreakNewLine]--&gt;  &lt;!--[endif]--&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0cm;" start="1" type="1"&gt;&lt;li class="MsoNormal" style=""&gt;First      of all, make sure you have already installed JDK 2.0 that can be      downloaded at &lt;a href="http://www.javasun.com/"&gt;www.java.sun.com&lt;/a&gt; free. &lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;And      then, see at the address where you put the installed files. The default      path is at C:\ C:\Program Files\Java\... After that, see where the bin      folder exist.&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;When      you’re already active in C:\Program Files\Java\jdk1.6&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_GFuFOouyyG8/SuGgvX0KbqI/AAAAAAAAABA/nJoPXt1Ndig/s1600-h/Untitled.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 612px; height: 127px;" src="http://3.bp.blogspot.com/_GFuFOouyyG8/SuGgvX0KbqI/AAAAAAAAABA/nJoPXt1Ndig/s320/Untitled.png" alt="" id="BLOGGER_PHOTO_ID_5395770564273663650" border="0" /&gt;&lt;/a&gt;.0_10\bin, copy the      address.&lt;!--[if gte vml 1]&gt;&lt;v:shapetype id="_x0000_t75" coordsize="21600,21600" spt="75" preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f"&gt;       &lt;v:stroke joinstyle="miter"&gt;       &lt;v:formulas&gt;        &lt;v:f eqn="if lineDrawn pixelLineWidth 0"&gt;        &lt;v:f eqn="sum @0 1 0"&gt;        &lt;v:f eqn="sum 0 0 @1"&gt;        &lt;v:f eqn="prod @2 1 2"&gt;        &lt;v:f eqn="prod @3 21600 pixelWidth"&gt;        &lt;v:f eqn="prod @3 21600 pixelHeight"&gt;        &lt;v:f eqn="sum @0 0 1"&gt;        &lt;v:f eqn="prod @6 1 2"&gt;        &lt;v:f eqn="prod @7 21600 pixelWidth"&gt;        &lt;v:f eqn="sum @8 21600 0"&gt;        &lt;v:f eqn="prod @7 21600 pixelHeight"&gt;        &lt;v:f eqn="sum @10 21600 0"&gt;       &lt;/v:formulas&gt;       &lt;v:path extrusionok="f" gradientshapeok="t" connecttype="rect"&gt;       &lt;o:lock ext="edit" aspectratio="t"&gt;      &lt;/v:shapetype&gt;&lt;v:shape id="_x0000_i1025" type="#_x0000_t75" style="'width:347.25pt;"&gt;       &lt;v:imagedata src="file:///C:\Users\DWINDY~1\AppData\Local\Temp\msohtml1\02\clip_image001.png" title="Untitled"&gt;      &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;!--[endif]--&gt;&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;And      then, double click on My Computer, choose properties&lt;/li&gt;&lt;li class="MsoNormal" style=""&gt;Activate      the advanced tab, and click on envir&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 10"&gt;&lt;meta name="Originator" content="Microsoft Word 10"&gt;&lt;link rel="File-List" href="file:///C:%5CUsers%5CDWINDY%7E1%5CAppData%5CLocal%5CTemp%5Cmsohtml1%5C03%5Cclip_filelist.xml"&gt;&lt;link rel="Edit-Time-Data" href="file:///C:%5CUsers%5CDWINDY%7E1%5CAppData%5CLocal%5CTemp%5Cmsohtml1%5C03%5Cclip_editdata.mso"&gt;&lt;!--[if !mso]&gt; &lt;style&gt; v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} &lt;/style&gt; &lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:applybreakingrules/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:usefelayout/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;  &lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face 	{font-family:SimSun; 	panose-1:2 1 6 0 3 1 1 1 1 1; 	mso-font-alt:宋体; 	mso-font-charset:134; 	mso-generic-font-family:auto; 	mso-font-pitch:variable; 	mso-font-signature:3 680460288 22 0 262145 0;} @font-face 	{font-family:"\@SimSun"; 	panose-1:2 1 6 0 3 1 1 1 1 1; 	mso-font-charset:134; 	mso-generic-font-family:auto; 	mso-font-pitch:variable; 	mso-font-signature:3 680460288 22 0 262145 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin:0cm; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:SimSun;} @page Section1 	{size:612.0pt 792.0pt; 	margin:72.0pt 90.0pt 72.0pt 90.0pt; 	mso-header-margin:36.0pt; 	mso-footer-margin:36.0pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:""; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman";} &lt;/style&gt; &lt;![endif]--&gt;&lt;span style=";font-family:&amp;quot;;font-size:12;"  &gt;&lt;!--[if gte vml 1]&gt;&lt;v:shapetype id="_x0000_t75" coordsize="21600,21600" spt="75" preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f"&gt;  &lt;v:stroke joinstyle="miter"&gt;  &lt;v:formulas&gt;   &lt;v:f eqn="if lineDrawn pixelLineWidth 0"&gt;   &lt;v:f eqn="sum @0 1 0"&gt;   &lt;v:f eqn="sum 0 0 @1"&gt;   &lt;v:f eqn="prod @2 1 2"&gt;   &lt;v:f eqn="prod @3 21600 pixelWidth"&gt;   &lt;v:f eqn="prod @3 21600 pixelHeight"&gt;   &lt;v:f eqn="sum @0 0 1"&gt;   &lt;v:f eqn="prod @6 1 2"&gt;   &lt;v:f eqn="prod @7 21600 pixelWidth"&gt;   &lt;v:f eqn="sum @8 21600 0"&gt;   &lt;v:f eqn="prod @7 21600 pixelHeight"&gt;   &lt;v:f eqn="sum @10 21600 0"&gt;  &lt;/v:formulas&gt;  &lt;v:path extrusionok="f" gradientshapeok="t" connecttype="rect"&gt;  &lt;o:lock ext="edit" aspectratio="t"&gt; &lt;/v:shapetype&gt;&lt;v:shape id="_x0000_i1025" type="#_x0000_t75" style="'width:295.5pt;"&gt;  &lt;v:imagedata src="file:///C:\Users\DWINDY~1\AppData\Local\Temp\msohtml1\03\clip_image001.png" title=""&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;!--[endif]--&gt;&lt;/span&gt;onment variables.&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 10"&gt;&lt;meta name="Originator" content="Microsoft Word 10"&gt;&lt;link rel="File-List" href="file:///C:%5CUsers%5CDWINDY%7E1%5CAppData%5CLocal%5CTemp%5Cmsohtml1%5C03%5Cclip_filelist.xml"&gt;&lt;link rel="Edit-Time-Data" href="file:///C:%5CUsers%5CDWINDY%7E1%5CAppData%5CLocal%5CTemp%5Cmsohtml1%5C03%5Cclip_editdata.mso"&gt;&lt;!--[if !mso]&gt; &lt;style&gt; v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} &lt;/style&gt; &lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:applybreakingrules/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:usefelayout/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;  &lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face 	{font-family:SimSun; 	panose-1:2 1 6 0 3 1 1 1 1 1; 	mso-font-alt:宋体; 	mso-font-charset:134; 	mso-generic-font-family:auto; 	mso-font-pitch:variable; 	mso-font-signature:3 680460288 22 0 262145 0;} @font-face 	{font-family:"\@SimSun"; 	panose-1:2 1 6 0 3 1 1 1 1 1; 	mso-font-charset:134; 	mso-generic-font-family:auto; 	mso-font-pitch:variable; 	mso-font-signature:3 680460288 22 0 262145 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin:0cm; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman"; 	mso-fareast-font-family:SimSun;} @page Section1 	{size:612.0pt 792.0pt; 	margin:72.0pt 90.0pt 72.0pt 90.0pt; 	mso-header-margin:36.0pt; 	mso-footer-margin:36.0pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:""; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman";} &lt;/style&gt; &lt;![endif]--&gt;&lt;span style=";font-family:&amp;quot;;font-size:12;"  &gt;&lt;!--[if gte vml 1]&gt;&lt;v:shapetype id="_x0000_t75" coordsize="21600,21600" spt="75" preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f"&gt;  &lt;v:stroke joinstyle="miter"&gt;  &lt;v:formulas&gt;   &lt;v:f eqn="if lineDrawn pixelLineWidth 0"&gt;   &lt;v:f eqn="sum @0 1 0"&gt;   &lt;v:f eqn="sum 0 0 @1"&gt;   &lt;v:f eqn="prod @2 1 2"&gt;   &lt;v:f eqn="prod @3 21600 pixelWidth"&gt;   &lt;v:f eqn="prod @3 21600 pixelHeight"&gt;   &lt;v:f eqn="sum @0 0 1"&gt;   &lt;v:f eqn="prod @6 1 2"&gt;   &lt;v:f eqn="prod @7 21600 pixelWidth"&gt;   &lt;v:f eqn="sum @8 21600 0"&gt;   &lt;v:f eqn="prod @7 21600 pixelHeight"&gt;   &lt;v:f eqn="sum @10 21600 0"&gt;  &lt;/v:formulas&gt;  &lt;v:path extrusionok="f" gradientshapeok="t" connecttype="rect"&gt;  &lt;o:lock ext="edit" aspectratio="t"&gt; &lt;/v:shapetype&gt;&lt;v:shape id="_x0000_i1025" type="#_x0000_t75" style="'width:295.5pt;"&gt;  &lt;v:imagedata src="file:///C:\Users\DWINDY~1\AppData\Local\Temp\msohtml1\03\clip_image001.png" title=""&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;!--[endif]--&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="margin-left: 18pt;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 18pt;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;!--[if gte vml 1]&gt;&lt;v:shape id="_x0000_i1026" type="#_x0000_t75" style="'width:319.5pt;height:355.5pt'"&gt;  &lt;v:imagedata src="file:///C:\Users\DWINDY~1\AppData\Local\Temp\msohtml1\02\clip_image003.png" title="�痠붏욝쉰"&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_GFuFOouyyG8/SuGhbJqsRWI/AAAAAAAAABI/XiVpW0N03lM/s1600-h/envi.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 356px; height: 241px;" src="http://4.bp.blogspot.com/_GFuFOouyyG8/SuGhbJqsRWI/AAAAAAAAABI/XiVpW0N03lM/s320/envi.png" alt="" id="BLOGGER_PHOTO_ID_5395771316390085986" border="0" /&gt;&lt;/a&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0cm;" start="6" type="1"&gt;&lt;li class="MsoNormal" style=""&gt;Find      path or classpath or if they are not exist, you can create the new one      with its name.&lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="margin-left: 18pt;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;!--[if gte vml 1]&gt;&lt;v:shape id="_x0000_i1027" type="#_x0000_t75" style="'width:295.5pt;height:327pt'"&gt;  &lt;v:imagedata src="file:///C:\Users\DWINDY~1\AppData\Local\Temp\msohtml1\02\clip_image005.png" title=""&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;
&lt;br /&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 18pt;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0cm;" start="7" type="1"&gt;&lt;li class="MsoNormal" style=""&gt;Now,      edit on the path or classpath. Type the semicolon (;), and then followed      by paste the ‘C:\Program Files\Java\jdk1.6.0_10\bin’.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_GFuFOouyyG8/SuGimGcKIZI/AAAAAAAAABQ/02nMJ2WzDO8/s1600-h/path.png"&gt;&lt;img style="cursor: pointer; width: 244px; height: 189px;" src="http://2.bp.blogspot.com/_GFuFOouyyG8/SuGimGcKIZI/AAAAAAAAABQ/02nMJ2WzDO8/s320/path.png" alt="" id="BLOGGER_PHOTO_ID_5395772604014010770" border="0" /&gt;&lt;/a&gt; &lt;/li&gt;&lt;/ol&gt;  &lt;p class="MsoNormal" style="margin-left: 18pt; text-indent: 18pt;"&gt;&lt;!--[if gte vml 1]&gt;&lt;v:shape id="_x0000_i1028" type="#_x0000_t75" style="'width:267.75pt;height:114.75pt'"&gt;  &lt;v:imagedata src="file:///C:\Users\DWINDY~1\AppData\Local\Temp\msohtml1\02\clip_image007.png" title=""&gt; &lt;/v:shape&gt;&lt;![endif]--&gt;&lt;!--[if !vml]--&gt;
&lt;br /&gt;&lt;!--[endif]--&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;ol style="margin-top: 0cm;" start="8" type="1"&gt;&lt;li class="MsoNormal" style=""&gt;Click      OK, and now you can try the javac command on your command promt. Just try      it! Java&lt;span style=""&gt;  &lt;/span&gt;is so full of fun if you      dare to love it.. &lt;span style="font-family:Wingdings;"&gt;&lt;span style=""&gt;J&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/976219693063981951-6352669413372364554?l=mrstanza.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ds-Ackp3g1Nz9UEPxkstcbybv-s/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ds-Ackp3g1Nz9UEPxkstcbybv-s/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ds-Ackp3g1Nz9UEPxkstcbybv-s/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ds-Ackp3g1Nz9UEPxkstcbybv-s/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/HappyCoding/~4/p3GuyU5zqrA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://mrstanza.blogspot.com/feeds/6352669413372364554/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mrstanza.blogspot.com/2009/10/how-to-configure-path-of-java-on.html#comment-form" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/6352669413372364554?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/6352669413372364554?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/HappyCoding/~3/p3GuyU5zqrA/how-to-configure-path-of-java-on.html" title="How to Configure Path of Java on Windows" /><author><name>mrstanza</name><uri>http://www.blogger.com/profile/11035205188728355595</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/-mFBleXZZFts/TblN_BhN3wI/AAAAAAAAAFY/Z0X85rqc5RA/s220/1410453120.41.1461613789.jpeg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_GFuFOouyyG8/SuGgvX0KbqI/AAAAAAAAABA/nJoPXt1Ndig/s72-c/Untitled.png" height="72" width="72" /><thr:total>1</thr:total><feedburner:origLink>http://mrstanza.blogspot.com/2009/10/how-to-configure-path-of-java-on.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkICSXsyeip7ImA9WxNVE00.&quot;"><id>tag:blogger.com,1999:blog-976219693063981951.post-1785616757286430628</id><published>2009-10-23T19:19:00.002+07:00</published><updated>2009-10-23T19:22:48.592+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-10-23T19:22:48.592+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="pemrograman" /><category scheme="http://www.blogger.com/atom/ns#" term="java" /><category scheme="http://www.blogger.com/atom/ns#" term="tugas" /><category scheme="http://www.blogger.com/atom/ns#" term="programming" /><category scheme="http://www.blogger.com/atom/ns#" term="languange" /><category scheme="http://www.blogger.com/atom/ns#" term="asisten" /><category scheme="http://www.blogger.com/atom/ns#" term="amikom" /><title>TUGAS KELAS S1-SI-3I</title><content type="html">1.Menampilkan nama, nim,kelas&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2.Menghitung luas lingkaran dari variabel yang ditentukan&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Digabung dalam satu file yang bernama tugas1_xxxx.java (4 digit nim)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Yang dikumpulkan adalah printout dari kode program dan preview output.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Dikumpulkan paling lambat tanggal 29 Oktober 2009. Kalau kesulitan atau ada yang ingin ditanyakan, silahkan ditanyakan. Bisa lewat facebook atau temui saya langsung. Sukses yah. :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/976219693063981951-1785616757286430628?l=mrstanza.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ryEqeuAHAN--Sp9d-aLkaB0GWow/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ryEqeuAHAN--Sp9d-aLkaB0GWow/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ryEqeuAHAN--Sp9d-aLkaB0GWow/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ryEqeuAHAN--Sp9d-aLkaB0GWow/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/HappyCoding/~4/TDJVHUpXV_w" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://mrstanza.blogspot.com/feeds/1785616757286430628/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mrstanza.blogspot.com/2009/10/tugas-kelas-s1-si-3i.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/1785616757286430628?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/1785616757286430628?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/HappyCoding/~3/TDJVHUpXV_w/tugas-kelas-s1-si-3i.html" title="TUGAS KELAS S1-SI-3I" /><author><name>mrstanza</name><uri>http://www.blogger.com/profile/11035205188728355595</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/-mFBleXZZFts/TblN_BhN3wI/AAAAAAAAAFY/Z0X85rqc5RA/s220/1410453120.41.1461613789.jpeg" /></author><thr:total>0</thr:total><feedburner:origLink>http://mrstanza.blogspot.com/2009/10/tugas-kelas-s1-si-3i.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUYAQXk6eip7ImA9WxJbFkQ.&quot;"><id>tag:blogger.com,1999:blog-976219693063981951.post-9195040338298811902</id><published>2009-07-27T18:06:00.003+07:00</published><updated>2009-07-27T18:12:20.712+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-07-27T18:12:20.712+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="debate" /><category scheme="http://www.blogger.com/atom/ns#" term="English Debating" /><category scheme="http://www.blogger.com/atom/ns#" term="Debates" /><category scheme="http://www.blogger.com/atom/ns#" term="English" /><title>Another Motions For Your English Debates - 2</title><content type="html">&lt;center&gt;5th Northeast Asian Open 2008&lt;br /&gt;&lt;br /&gt;&lt;/center&gt; Round 1: Youth&lt;br /&gt;THB in the establishment of a "Youth Government" for national policymaking.&lt;br /&gt;THB in compulsory military training for every citizen of the country by age 25.&lt;br /&gt;THW not allow foreign students to enroll in domestic universities.&lt;br /&gt;&lt;br /&gt;Round 2: The Palin Factor&lt;br /&gt;THW establish a minimum IQ for National Leaders.&lt;br /&gt;THBT candidates for government positions should not be allowed to accept endorsements from religious leaders.&lt;br /&gt;THBT non-US citizens deserve a right to vote in the US election.&lt;br /&gt;&lt;br /&gt;Round 3: Gender Issues&lt;br /&gt;THW recognize trans-sexuals as members of a third sex.&lt;br /&gt;THBT the use of birth control pills should be prescription-free.&lt;br /&gt;THW introduce a quota system for female politicians in national parliament.&lt;br /&gt;&lt;br /&gt;Round 4: International Relations&lt;br /&gt;THW say NO to the U.S.-India Nuclear Agreement.&lt;br /&gt;THW not meet with the leaders of Iran.&lt;br /&gt;THBT supporting Georgia's NATO bid is more important than maintaining good relations with Russia.&lt;br /&gt;&lt;br /&gt;Quater Finals+EFL Final: Nature&lt;br /&gt;THW not classify radical environmental groups as terrorist.&lt;br /&gt;THS an international moratorium on commercial fishing of tuna.&lt;br /&gt;THW abolish animal sports.&lt;br /&gt;&lt;br /&gt;Semi Finals: Territory in NE Asia&lt;br /&gt;THBT Japan and Korea should share Takeshima/Dokdo.&lt;br /&gt;THBT Russia should return the Northern Territories to Japan.&lt;br /&gt;THBT ICJ should mediate the Senkaku Islands dispute among Japan, China and Taiwan.&lt;br /&gt;&lt;br /&gt;Final: Medicine&lt;br /&gt;THS the forced sterilization of all criminals convicted of a felony.&lt;br /&gt;THW deny national health services to people who participate in extreme sports.&lt;br /&gt;THW protect the right of families to genetically engineer the traits of their children.&lt;br /&gt;&lt;br /&gt;&lt;center&gt;4th Northeast Asian Open 2007&lt;/center&gt; Round 1: Energy/Environment&lt;br /&gt;THBT bioethanol is the way to go.&lt;br /&gt;THW ban cars in the city.&lt;br /&gt;THBT carbon trade doesn't help the environment.&lt;br /&gt;&lt;br /&gt;Round 2: History&lt;br /&gt;THBT Northeast Asia needs a unified history textbook.&lt;br /&gt;THW compensate victims of sexual slavery during WWII.&lt;br /&gt;THW apologize for our history.&lt;br /&gt;&lt;br /&gt;Round 3: International Relations&lt;br /&gt;THBT the Palestinian people should give up the right to return.&lt;br /&gt;THBT Japan should stop giving foreign aid to Myanmar.&lt;br /&gt;THW blame China for Darfur.&lt;br /&gt;&lt;br /&gt;Round 4: Animal&lt;br /&gt;THBT game park rangers should have the right to shoot poachers.&lt;br /&gt;THW ban bullfighting.&lt;br /&gt;THBT bestiality should not be illegal.&lt;br /&gt;&lt;br /&gt;Round 5: Big Government vs. Small Government&lt;br /&gt;THBT states should have an official religion.&lt;br /&gt;THBT Presidents should not have term limits.&lt;br /&gt;THBT Sports should only be funded by private entities.&lt;br /&gt;&lt;br /&gt;Quarter Finals: Minorities&lt;br /&gt;THW give prisoners the right to vote.&lt;br /&gt;THW make neglect of parent a criminal offence.&lt;br /&gt;THBT that mothers who cause harm to their babies during their pregnancy should be criminally liable.&lt;br /&gt;&lt;br /&gt;Semi Finals: Money&lt;br /&gt;THW forbid foreign control over local banks.&lt;br /&gt;THBT government money should not be invested in overseas.&lt;br /&gt;THW abolish corporate tax.&lt;br /&gt;&lt;br /&gt;Final: Gender&lt;br /&gt;THBT fathers should also be granted maternity leave.&lt;br /&gt;THW national identification cards should not indicate gender.&lt;br /&gt;THBT Sex change operations be included as part of national healthcare programs.&lt;br /&gt;&lt;br /&gt;&lt;center&gt;3rd Northeast Asian Open 2006&lt;/center&gt; Round 1: People vs. The Man&lt;br /&gt;THW risk civilian casualties for military victories.&lt;br /&gt;THBT Guantanamo Bay detainees should receive normal US criminal due process rights.&lt;br /&gt;THW violate individual rights to protect the domestic order.&lt;br /&gt;&lt;br /&gt;Round 2: Pop culture&lt;br /&gt;THBT Borat is good for Kazakhstan.&lt;br /&gt;THBT orphans prefer the “Material World” to the 3rd World.&lt;br /&gt;THBT celebrities should be required to perform community service.&lt;br /&gt;&lt;br /&gt;Round 3: The Environment&lt;br /&gt;THW sacrifice growth to protect the world's oceanic creatures.&lt;br /&gt;THW blame citizens, not their governments, for global warming.&lt;br /&gt;THS private ownership of public water systems.&lt;br /&gt;&lt;br /&gt;Round 4: Economics&lt;br /&gt;THW abolish the minimum wage.&lt;br /&gt;THB the Korean Wave has broken.&lt;br /&gt;THW sign a Free Trade Agreement with America.&lt;br /&gt;&lt;br /&gt;Round 5: The Soviet Union&lt;br /&gt;THS the re-creation of the Soviet Union.&lt;br /&gt;THBT the Russian government should protect voices of opposition within its borders.&lt;br /&gt;THB the European Union should include the nations of the Former Soviet Union.&lt;br /&gt;&lt;br /&gt;Quarter Finals: Government and Morality&lt;br /&gt;THBT government has a moral obligation to end poverty.&lt;br /&gt;THW make education gay friendly.&lt;br /&gt;THW ban religious symbols in government institutions.&lt;br /&gt;&lt;br /&gt;Semi Finals: Very Bad People&lt;br /&gt;THW waterboard (torture) Dick Cheney and Donald Rumsfeld.&lt;br /&gt;THW mourn Fidel Castro's death.&lt;br /&gt;THW not give Saddam Hussein the death penalty.&lt;br /&gt;&lt;br /&gt;Rookie Final: Science and Health&lt;br /&gt;THW subsidize public consumption of wine.&lt;br /&gt;THW ban animal testing for the creation of new medicine.&lt;br /&gt;THBT nature trumps nurture.&lt;br /&gt;&lt;br /&gt;Final: Northeast Asia&lt;br /&gt;THBT Taiwan has earned its seat in the United Nations.&lt;br /&gt;THBT Japan should build nuclear weapons.&lt;br /&gt;THBT Korea should be thankful for the American Empire.&lt;br /&gt;&lt;br /&gt;&lt;center&gt;2nd Northeast Asian Open 2005&lt;/center&gt; Round 1: Legalization Softballs&lt;br /&gt;THW legalize drugs.&lt;br /&gt;THW legalize euthanasia.&lt;br /&gt;THW legalize the sex industry.&lt;br /&gt;&lt;br /&gt;Round 2: Trade and Investment&lt;br /&gt;THBT free trade is not fair trade.&lt;br /&gt;THBT foreign ownership of domestic industries is a good thing.&lt;br /&gt;THBT farm subsidies do more harm than good.&lt;br /&gt;&lt;br /&gt;Round 3: Education&lt;br /&gt;THBT English should not be a criteria for admission into Asian universities.&lt;br /&gt;THBT it is inappropriate for teachers to have romantic relationships with students.&lt;br /&gt;THW make sex education mandatory in all public schools.&lt;br /&gt;&lt;br /&gt;Round 4: The United Nations&lt;br /&gt;THW sanction Syria.&lt;br /&gt;THW give Asia another permanent seat on the UN Security Council.&lt;br /&gt;THBT John Bolton is exactly what the United Nations needs.&lt;br /&gt;&lt;br /&gt;Round 5: Privacy&lt;br /&gt;THBT the news media should not be forced to reveal its sources.&lt;br /&gt;THBT celebrities have the right to a private life.&lt;br /&gt;THW sacrifice personal privacy to prevent terrorism.&lt;br /&gt;&lt;br /&gt;Quarter Finals: Murder and Mayhem&lt;br /&gt;THBT Saddam Hussein deserves the death penalty.&lt;br /&gt;THBT anything goes in war.&lt;br /&gt;THB the government should increase regulations on violence in the media.&lt;br /&gt;&lt;br /&gt;Semi Finals: Age&lt;br /&gt;THW provide free public care for the elderly.&lt;br /&gt;TH rejects age as a standard for voting.&lt;br /&gt;THBT age is not equivalent to authority.&lt;br /&gt;&lt;br /&gt;Final: NE Asia&lt;br /&gt;THW ban food imports from China.&lt;br /&gt;THBT Japan is a better friend to Northeast Asia than America.&lt;br /&gt;THW standardize Asian history textbooks.&lt;br /&gt;&lt;br /&gt;&lt;center&gt;1st Northeast Asian Open 2004&lt;/center&gt; Practice Round&lt;br /&gt;THW allow condom vending machines in schools.&lt;br /&gt;THS minimum quotas for women in Asian politics.&lt;br /&gt;THW cancel 3rd world debt.&lt;br /&gt;&lt;br /&gt;Round 1: China&lt;br /&gt;THW not support internet censorship in China.&lt;br /&gt;THBT we need another militar superpower.&lt;br /&gt;THS the 3 Gorges Dam.&lt;br /&gt;&lt;br /&gt;Round 2: Sports&lt;br /&gt;THW permit performance enhancing drugs at the Olympics.&lt;br /&gt;THW ban all fighting sports.&lt;br /&gt;THW equalize prize money for male and female athletes.&lt;br /&gt;&lt;br /&gt;Round 3: Law and Order&lt;br /&gt;THW legalize prostitution.&lt;br /&gt;THW punish government corruption with the death penalty.&lt;br /&gt;THW protect whistleblowers.&lt;br /&gt;&lt;br /&gt;Round 4: Science&lt;br /&gt;THW ban genetically modified food.&lt;br /&gt;THBT space exploration is a waste.&lt;br /&gt;THW prohibit human cloning.&lt;br /&gt;&lt;br /&gt;Round 5: Terrorism&lt;br /&gt;THBT the US led War on Terror has made the world less safe.&lt;br /&gt;THBT Putin should talk not shoot.&lt;br /&gt;THW grant immediate statehood to Palestine.&lt;br /&gt;&lt;br /&gt;Round 6: Human Rights&lt;br /&gt;THBT child labor is justified.&lt;br /&gt;THW legalize gay marriage.&lt;br /&gt;THBT pharmaceutical patents should not be enforced in Africa.&lt;br /&gt;&lt;br /&gt;Round 7: Religion&lt;br /&gt;THBT China should not restrict religious freedom.&lt;br /&gt;THBT the churches should allow gay clergy.&lt;br /&gt;THW include religious teaching in public schools.&lt;br /&gt;&lt;br /&gt;Quarter Finals: Energy&lt;br /&gt;THBT the Kyoto protocol needs US ratification.&lt;br /&gt;THW build nuclear power plants.&lt;br /&gt;THW provide public transportation for free.&lt;br /&gt;&lt;br /&gt;Semi Finals: Northeast Asia - Economics&lt;br /&gt;THW protect local film industries through screen quotas.&lt;br /&gt;THW relocate the capital of Korea.&lt;br /&gt;THW support a free trade zone in Northeast Asia.&lt;br /&gt;&lt;br /&gt;Final: Northeast Asia - Military&lt;br /&gt;THW withdraw South Korean troops from Iraq.&lt;br /&gt;THBT North Korea has the right to develop nuclear weapons.&lt;br /&gt;THBT US bases should get out of Northeast Asia.&lt;br /&gt;&lt;br /&gt;&lt;div id="g_footer"&gt; source : http://utdskomaba.googlepages.com/motionsforneao&lt;br /&gt;&lt;/div&gt;                                                  &lt;!-- /wrapper --&gt;&lt;!-- /main-content --&gt;              &lt;!-- /wrapper --&gt;&lt;!-- /footer --&gt;         &lt;!-- /wrapper --&gt;&lt;!-- /container --&gt;  &lt;div id="extraDiv1"&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div id="extraDiv2"&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt; &lt;div id="extraDiv3"&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div id="extraDiv4"&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt; &lt;div id="extraDiv5"&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div id="extraDiv6"&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/976219693063981951-9195040338298811902?l=mrstanza.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/4J6mE_LjmFs4WNheLh4hwqRHWkE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/4J6mE_LjmFs4WNheLh4hwqRHWkE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/4J6mE_LjmFs4WNheLh4hwqRHWkE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/4J6mE_LjmFs4WNheLh4hwqRHWkE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/HappyCoding/~4/cU4iLZKeZqo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://mrstanza.blogspot.com/feeds/9195040338298811902/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mrstanza.blogspot.com/2009/07/another-motions-for-your-english_27.html#comment-form" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/9195040338298811902?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/9195040338298811902?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/HappyCoding/~3/cU4iLZKeZqo/another-motions-for-your-english_27.html" title="Another Motions For Your English Debates - 2" /><author><name>mrstanza</name><uri>http://www.blogger.com/profile/11035205188728355595</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/-mFBleXZZFts/TblN_BhN3wI/AAAAAAAAAFY/Z0X85rqc5RA/s220/1410453120.41.1461613789.jpeg" /></author><thr:total>3</thr:total><feedburner:origLink>http://mrstanza.blogspot.com/2009/07/another-motions-for-your-english_27.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUcHQ3Y9fyp7ImA9WxJbFkQ.&quot;"><id>tag:blogger.com,1999:blog-976219693063981951.post-2911529798087158567</id><published>2009-07-27T17:58:00.004+07:00</published><updated>2009-07-27T18:10:32.867+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-07-27T18:10:32.867+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="English Debating" /><category scheme="http://www.blogger.com/atom/ns#" term="Debates" /><category scheme="http://www.blogger.com/atom/ns#" term="ESUJ Tournament" /><category scheme="http://www.blogger.com/atom/ns#" term="English" /><title>Another Motions For Your English Debates</title><content type="html">Past motions from ESUJ tournament&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2007 - 10th&lt;br /&gt;Round 1: This House would impose greenhouse gas emission limits on developing countries.&lt;br /&gt;Round 2: This House believes that a three-generation family is better than a nuclear family.&lt;br /&gt;Round 3: This House believes that students in public schools should be placed in classes according to their academic level and achievement.&lt;br /&gt;Round 4: This House would ban the export of arms to the Middle East.&lt;br /&gt;Quarter Finals: This House would ban hostile takeovers of all corporations.&lt;br /&gt;Semi Finals: This House believes that dictatorship is better than weak democracy.&lt;br /&gt;Final: This House would ban civilians from entering foreign conflict zones.&lt;br /&gt;&lt;br /&gt;2006 - 9th&lt;br /&gt;Round 1: This House believes that cell phones are anti-social.&lt;br /&gt;Round 2: This House would support a matrilineal emperor.&lt;br /&gt;Round 3: This House believes that the anxiety toward the aging society is over-exaggerated.&lt;br /&gt;Round 4: This House believes that a pre-emptive attack is justifiable for national defense.&lt;br /&gt;Quarter Finals: This House would make corporate donations to charity compulsory.&lt;br /&gt;Semi Finals: This House believes that the Koizumi Government was bad for Japan.&lt;br /&gt;Finals: This House believes that cultivating national pride in Japan will lead the nation to a better future.&lt;br /&gt;&lt;br /&gt;2005 - 8th&lt;br /&gt;Round 1: This House would make voting compulsory in Japan.&lt;br /&gt;Round 2: This House would welcome more foreign sumo wrestlers.&lt;br /&gt;Round 3: This House believes that the space exploration is a waste of money.&lt;br /&gt;Round 4: This House believes that permanent membership of the United Nations Security Council should be abolished.&lt;br /&gt;Quarter Finals�FThis House would support the Prime Minister's visits to the Yasukuni Shrine.&lt;br /&gt;Semi Finals�F This House would abolish registration of World Heritage Sites.&lt;br /&gt;Final�F This House would introduce English debate in public schools.&lt;br /&gt;&lt;br /&gt;2004 - 7th&lt;br /&gt;Round 1: THBT the Internet does more harm than good to children.&lt;br /&gt;Round 2: THBT China no longer needs official development assistance from Japan.&lt;br /&gt;Round 3: THW welcome more foreign workers to Japan.&lt;br /&gt;Round 4: THW advocate cloning technology.&lt;br /&gt;Quarter Finals: THW support free trade agreement in Asia.&lt;br /&gt;Semi Finals: THBT public figures have the right to private lives.&lt;br /&gt;Final: THW amend Article 9 of the Japanese Constitution.&lt;br /&gt;&lt;br /&gt;2003 - 6th&lt;br /&gt;Round 1: THBT Japanese baseball players should play abroad.&lt;br /&gt;Round 2: THW ban TV commercials of consumer credit companies.&lt;br /&gt;Round 3: THW allow surrogacy for profit.&lt;br /&gt;Round 4: THBT the United Kingdom should adopt the Euro.&lt;br /&gt;Quarter Finals: THW place the public security ahead of individual human rights.&lt;br /&gt;Semi Finals: THBT the United Nations has failed.&lt;br /&gt;Final: THBT the Japanese Prime Minister should be directly chosen by the electorate.&lt;br /&gt;&lt;br /&gt;2002 - 5th&lt;br /&gt;Round 1: This House prefers an early marriage.&lt;br /&gt;Round 2: THBT the Japanese Government should not provide economic assistance to North Korea.&lt;br /&gt;Round 3: THW reward employees more for their inventions.&lt;br /&gt;Round 4: THBT the reduction of greenhouse gas emissions should also be imposed on developing countries.&lt;br /&gt;Quarter Finals: THW freeze the further construction of highways in Japan.&lt;br /&gt;Semi Finals: THBT the Japanese Government should support the domestic movie industry.&lt;br /&gt;Final: THBT weapons of mass destruction are necessary to maintain international security.&lt;br /&gt;&lt;br /&gt;2001 - 4th&lt;br /&gt;Round 1: THW eradicate crows.&lt;br /&gt;Round 2: THW allow parents to genetically design their children.&lt;br /&gt;Round 3: THBT Japan should assist the U.S. reprisal against the Taliban.&lt;br /&gt;Round 4: THBT free trade benefits the developing world.&lt;br /&gt;Quarter Finals: THBT the postal service should be privatized.&lt;br /&gt;Semi Finals: THBT smokers should pay higher insurance fees.&lt;br /&gt;Final: THBT a nation's history textbooks are its own affair.&lt;br /&gt;&lt;br /&gt;2000 - 3rd&lt;br /&gt;Round 1: THW classify sumo wrestlers by weight.&lt;br /&gt;Round 2: THBT genetically modified foods will save mankind.&lt;br /&gt;Round 3: THBT nothing can completely replace bank notes and coins.&lt;br /&gt;Round 4: THBT the two Koreas should reunite soon.&lt;br /&gt;Quarter Finals: THBT volunteer work should be compulsory in high school.&lt;br /&gt;Semi Finals: THW introduce trial by jury.&lt;br /&gt;Final: THBT the UN should have its own standing army.&lt;br /&gt;&lt;br /&gt;1999 - 2nd&lt;br /&gt;Round 1: THW move the capital function from Tokyo.&lt;br /&gt;Round 2: THBT it is your family who really matters not your friends.&lt;br /&gt;Round 3: THW introduce mandatory retirement age for politicians.&lt;br /&gt;Round 4: THBT humanitarian intervention in the internal conflicts of other nations is justifiable.&lt;br /&gt;Quarter Finals: THBT civil servants should be allowed to work for the private sector.&lt;br /&gt;Semi Finals: This House says, 'No, thank you.' to nuclear power.&lt;br /&gt;Final: THBT China is more important to Japan than the U.S.A.&lt;br /&gt;Model Debate: THBT monarchy has outlived its usefulness.&lt;br /&gt;Friendly Debate: This House prefers a small government.&lt;br /&gt;&lt;br /&gt;1998 - 1st&lt;br /&gt;Round 1: THW prohibit zoos.&lt;br /&gt;Round 2: THBT Japan should possess nuclear weapons.&lt;br /&gt;Round 3: THBT the female species is deadlier than the male.&lt;br /&gt;Semi-Finals: This House prefers Sega to Shakespeare.&lt;br /&gt;Final: THW not teach English in Japanese elementary schools.&lt;br /&gt;Model Debate: THBT character does not matter in politics.&lt;br /&gt;Friendly Debate: THBT university is a waste of time.&lt;br /&gt;&lt;br /&gt;source : http://utdskomaba.googlepages.com/esuj.txt&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/976219693063981951-2911529798087158567?l=mrstanza.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/rYAAQeQQiU9cfav1B-Ry_YYwWto/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/rYAAQeQQiU9cfav1B-Ry_YYwWto/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/rYAAQeQQiU9cfav1B-Ry_YYwWto/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/rYAAQeQQiU9cfav1B-Ry_YYwWto/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/HappyCoding/~4/HGmq0Z8SiW8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://mrstanza.blogspot.com/feeds/2911529798087158567/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mrstanza.blogspot.com/2009/07/another-motions-for-your-english.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/2911529798087158567?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/2911529798087158567?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/HappyCoding/~3/HGmq0Z8SiW8/another-motions-for-your-english.html" title="Another Motions For Your English Debates" /><author><name>mrstanza</name><uri>http://www.blogger.com/profile/11035205188728355595</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/-mFBleXZZFts/TblN_BhN3wI/AAAAAAAAAFY/Z0X85rqc5RA/s220/1410453120.41.1461613789.jpeg" /></author><thr:total>0</thr:total><feedburner:origLink>http://mrstanza.blogspot.com/2009/07/another-motions-for-your-english.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ak4FQ30-fSp7ImA9WxJbFkg.&quot;"><id>tag:blogger.com,1999:blog-976219693063981951.post-4759620713788824663</id><published>2009-07-26T21:15:00.005+07:00</published><updated>2009-07-27T08:41:52.355+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-07-27T08:41:52.355+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="debate" /><category scheme="http://www.blogger.com/atom/ns#" term="Genetical" /><category scheme="http://www.blogger.com/atom/ns#" term="Genetically Engineered Foods" /><category scheme="http://www.blogger.com/atom/ns#" term="Food" /><category scheme="http://www.blogger.com/atom/ns#" term="THW" /><category scheme="http://www.blogger.com/atom/ns#" term="environment" /><category scheme="http://www.blogger.com/atom/ns#" term="Genetically" /><title>THW Ban Genetically Enginereed Foods</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.femina-online.com/images/issue/2-trans.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 200px; height: 200px;" src="http://www.femina-online.com/images/issue/2-trans.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;How terrible corn BT: taste nice, good shape, the results abundant harvest, age of the plant, and pest resistant. To this last one is really special. Pests do not want to disrupt the the plant is corn and fruit. If there is interruption, the pest will death by itself.&lt;br /&gt;&lt;br /&gt;Secret of the magic that lies in the corn BT, namely Bacillus Thuringiensis. BT is a bacteria that has been modified to the genetic network in the cell so that the corn crops that can produce substances toxic to pests and resistant to bad environmental conditions. Thanks to the BT that is, the genetic engineering of corn is quite attractived to farmers. Pesticides are quite expensive, if not longer required BT corn planting. Hence, the cost of planting is also economically friendly. Again Also, do not contaminate the environment.&lt;br /&gt;&lt;br /&gt;The success of creating transgenic BT corn, followed with the creation of another plant genetic engineering. Now, there are cotton, soybean, wheat, and others. If farmers plant seeds BT, the world will undoubtedly fully with food and no longer environmental pollution due to pesticides.&lt;br /&gt;&lt;br /&gt;At this time, we realize or not, we may also have BT consume the food. Eg corn and soybeans that imported from the U.S.. Perhaps, where we also are eaten,  the beans derived from genetic engineering with the BT line.&lt;br /&gt;&lt;br /&gt;Well, if we have consume them, then we do not feel modern after taste of food of modern. The problem is, when food is still so controversial.  The controversy spreads, for several reasons.&lt;br /&gt;&lt;br /&gt;First, does this transgenic food is healthy? A report says, dozens of people in the world died after consume protein transgenil (L-Tryptophan) in North America in 1999. Some people are allergic of protein transgenic line. That case, then trigger concerns the emergence of the human food results transgenic plants.&lt;br /&gt;&lt;br /&gt;In Europe and Australia, for example, show strong reaction by society against transgenic foods from the U.S. European consumers prefer the original natural food and requires every food product from the U.S. must have a label transgenic food''not''. Due to the reaction, the food transgenic market does not get in developed countries. then, as usual, to solve, even producers export them to developing countries such as Indonesia. In the U.S. alone, and corn&lt;br /&gt;transgenic soybean prices fell. Food companies do not want to again because the products do not use this behavior in the international market.&lt;br /&gt;&lt;br /&gt;Indeed, there is no research, the extent to which corn and soybean BT is affecting health. But yet still human more trust the original natural foods which have property and benefits. Matter of food, people do not want to try. Too risky.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: left;" id="result_box" dir="ltr"&gt;Second, whether the transgenic plants will improve the environment as free of pesticides? This also is. In the May 1999, reported that the stamen of BT corn cause the death of almost half a worm butterfly monarch who ate transgenic plants in the garden experiment Cornell University, New York. Tragically, experiment was conducted when the new BT corn has been planted knowledgeable in the U.S.. A quarter of U.S. corn in the millions of hectares BT corn is planted. Can be, how many types of species butterfly die if you ate this corn stamen.&lt;/div&gt;&lt;br /&gt;Not only that. Any cross-pollination, will move gen-gen foreign to the other plants that like corn, such as weeds and the like. As a result, truly terrible: the weeds will difficult to be liquidated because herbicide-gen gennya already intterupted by BT. This means that weeds are threatening agriculture. Indeed pesticide is not used anymore, but weeds will become increasingly widespread because difficult be liquidated.&lt;br /&gt;&lt;br /&gt;From the explanation, now the food of the transgenic plants that plumed genetic engineering experts are facing dilemma. On the one hand, to prove the scientist able to create new seeds that against the nature. On the other hand, feared that the products, also&lt;br /&gt;nature against nature in the human body. The problem: where will the chosen people? Whether human want to select the technology progress, but let himself be covered cares? Or, select a human cooperation with nature so quiet life? That's human choice...&lt;span style="font-weight: bold;"&gt;/MrStanza&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/976219693063981951-4759620713788824663?l=mrstanza.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/zpU7bbjPbvrokIxyGYmZzOhUQ3o/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/zpU7bbjPbvrokIxyGYmZzOhUQ3o/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/zpU7bbjPbvrokIxyGYmZzOhUQ3o/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/zpU7bbjPbvrokIxyGYmZzOhUQ3o/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/HappyCoding/~4/Qr9bsaRU_iU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://mrstanza.blogspot.com/feeds/4759620713788824663/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mrstanza.blogspot.com/2009/07/thw-ban-genetically-enginereed-foods.html#comment-form" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/4759620713788824663?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/4759620713788824663?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/HappyCoding/~3/Qr9bsaRU_iU/thw-ban-genetically-enginereed-foods.html" title="THW Ban Genetically Enginereed Foods" /><author><name>mrstanza</name><uri>http://www.blogger.com/profile/11035205188728355595</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/-mFBleXZZFts/TblN_BhN3wI/AAAAAAAAAFY/Z0X85rqc5RA/s220/1410453120.41.1461613789.jpeg" /></author><thr:total>3</thr:total><feedburner:origLink>http://mrstanza.blogspot.com/2009/07/thw-ban-genetically-enginereed-foods.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEQBRH49eip7ImA9WxJUGEk.&quot;"><id>tag:blogger.com,1999:blog-976219693063981951.post-372051948244566001</id><published>2009-07-17T22:55:00.001+07:00</published><updated>2009-07-17T22:59:15.062+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-07-17T22:59:15.062+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="download" /><category scheme="http://www.blogger.com/atom/ns#" term="billboard" /><category scheme="http://www.blogger.com/atom/ns#" term="Michael Jackson" /><category scheme="http://www.blogger.com/atom/ns#" term="Jacko" /><title>Michael Jackson : King of Download</title><content type="html">&lt;div style="text-align: justify;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://kabarit.net/wp-content/uploads/2009/07/computer7-copy.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 146px; height: 146px;" src="http://kabarit.net/wp-content/uploads/2009/07/computer7-copy.jpg" alt="" border="0" /&gt;&lt;/a&gt;After the death of Michael Jackson, many of his fans that hunt his songs. And even in one week, the number of his downloaded song has pass 1 million. Fantastic!&lt;/div&gt; &lt;p style="text-align: justify;"&gt;Previously, and maybe until now Jacko with his released albums succesfully reached top chart of song in most of country. He dominated the download market since his death.&lt;/p&gt;&lt;p style="text-align: justify;"&gt;Actually the number of downloads that commited by Jackson’s digital formatted songs hunter in entire world increase day after day. Even recorded, in one weeks the number of downloads has passed 1 million.&lt;/p&gt;&lt;p style="text-align: justify;"&gt;And of course, Billboard top chart crowned Jacko as the first artist who bring the freak sale into reality. By the result, Jacko is proper to be called King of Download for now.&lt;/p&gt;&lt;p style="text-align: justify;"&gt;More detail, the data from Nielsen SoundScan, said, the record broke by Jacko because of his album sale that can reach 2.6 million. They’re include Jacko solo record and some songs by Jackson Five since last June 28th.&lt;strong&gt;/MrStanza&lt;/strong&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/976219693063981951-372051948244566001?l=mrstanza.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/jNw4gOpAPw-_s7Ga2A2U_UcSgTY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/jNw4gOpAPw-_s7Ga2A2U_UcSgTY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/jNw4gOpAPw-_s7Ga2A2U_UcSgTY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/jNw4gOpAPw-_s7Ga2A2U_UcSgTY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/HappyCoding/~4/8YyBYl2XVmU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://mrstanza.blogspot.com/feeds/372051948244566001/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mrstanza.blogspot.com/2009/07/michael-jackson-king-of-download.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/372051948244566001?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/372051948244566001?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/HappyCoding/~3/8YyBYl2XVmU/michael-jackson-king-of-download.html" title="Michael Jackson : King of Download" /><author><name>mrstanza</name><uri>http://www.blogger.com/profile/11035205188728355595</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/-mFBleXZZFts/TblN_BhN3wI/AAAAAAAAAFY/Z0X85rqc5RA/s220/1410453120.41.1461613789.jpeg" /></author><thr:total>0</thr:total><feedburner:origLink>http://mrstanza.blogspot.com/2009/07/michael-jackson-king-of-download.html</feedburner:origLink><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="enclosure" href="http://feedproxy.google.com/~r/HappyCoding/~5/_ZyZu4gWICE/" length="0" /><feedburner:origEnclosureLink>http://kabarit.net/2009/07/michael-jackson-king-of-download/</feedburner:origEnclosureLink></entry><entry gd:etag="W/&quot;D08ARHgzfSp7ImA9WxJUGEk.&quot;"><id>tag:blogger.com,1999:blog-976219693063981951.post-8846486631772273167</id><published>2009-07-17T22:18:00.004+07:00</published><updated>2009-07-17T22:50:45.685+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-07-17T22:50:45.685+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Imagine Cup" /><category scheme="http://www.blogger.com/atom/ns#" term="Big Bang" /><category scheme="http://www.blogger.com/atom/ns#" term="Imagine Cup 2009" /><category scheme="http://www.blogger.com/atom/ns#" term="MOSES" /><category scheme="http://www.blogger.com/atom/ns#" term="David Samuel" /><title>Indonesia Big Bang Won Imagine Cup 2009, and 2010?</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.hotelpure.com/blog/wp-content/uploads/2009/05/imaginecup.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 206px; height: 154px;" src="http://www.hotelpure.com/blog/wp-content/uploads/2009/05/imaginecup.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;span style="font-weight: bold;"&gt;Jakarta -&lt;/span&gt; Win is not the last word for Big Bang Team. After come up as champion on world level Imagine Cup 2009, they still want to continue their hussle. The desirability comes from David Samuel, Indonesia Big Bang team, who just came from Cairo, the host of Imagine Cup 2009.&lt;br /&gt;&lt;br /&gt;"We will continue the research. Because our ability is still limited, so we need more research to help another problem," David said.&lt;br /&gt;&lt;br /&gt;This David and his team's creation, MOSES(Malaria Observation System and Endemic Surverillance) is not without obstacle. David believed, the main obstacle on MOSES research is about medical problem. They who don't medical as their background, must asked many questions to medical specialist and docter in endemic disease sector.&lt;br /&gt;&lt;br /&gt;MOSES is really awesome. Besides useful to accelerate in handling the malaria disease in isolated area, this tool also provide interesting technology solution. This technology mix the hardware and software in one product.&lt;br /&gt;&lt;br /&gt;"We still work hard to develop this application, because it's not excellent yet, indeed," David explained. He thought, he and his team still keep the dream to wave red-white flag againt next year.&lt;br /&gt;&lt;br /&gt;In the schedule, this yearly event will be held in Polandia in 2010, with the same theme. David and his team will compete againt on that event.&lt;br /&gt;&lt;br /&gt;Now, they are still continue in develop the MOSES so it can integrated with health department. The purpose is to help monitor and watch the development of dangerous and infectable disease.&lt;br /&gt;&lt;br /&gt;Imagine Cup, David thought, is one of yearly event that can open their eyes. Many problem arounds, that actually is so simple problem that can be solved. But sometimes we don't think it is necessary to we solve.&lt;br /&gt;&lt;br /&gt;"This event also gives th chance to the Indonesia teenagers to meet and compete with the competitors from another country, so it can give valuable lesson and experience to us," David said.&lt;br /&gt;&lt;br /&gt;"We only hope we can help to solve the existed problem, with our existed ability. We love Indonesia,"David continued.&lt;span style="font-weight: bold;"&gt;/MrStanza&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/976219693063981951-8846486631772273167?l=mrstanza.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/W6Dea_JLpQvZaX28AAt0ZCCd2Qo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/W6Dea_JLpQvZaX28AAt0ZCCd2Qo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/W6Dea_JLpQvZaX28AAt0ZCCd2Qo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/W6Dea_JLpQvZaX28AAt0ZCCd2Qo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/HappyCoding/~4/L3n33NcUwQk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://mrstanza.blogspot.com/feeds/8846486631772273167/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mrstanza.blogspot.com/2009/07/indonesia-big-bang-won-imagine-cup-2009.html#comment-form" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/8846486631772273167?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/8846486631772273167?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/HappyCoding/~3/L3n33NcUwQk/indonesia-big-bang-won-imagine-cup-2009.html" title="Indonesia Big Bang Won Imagine Cup 2009, and 2010?" /><author><name>mrstanza</name><uri>http://www.blogger.com/profile/11035205188728355595</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/-mFBleXZZFts/TblN_BhN3wI/AAAAAAAAAFY/Z0X85rqc5RA/s220/1410453120.41.1461613789.jpeg" /></author><thr:total>2</thr:total><feedburner:origLink>http://mrstanza.blogspot.com/2009/07/indonesia-big-bang-won-imagine-cup-2009.html</feedburner:origLink><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="enclosure" href="http://feedproxy.google.com/~r/HappyCoding/~5/7FcjrrvtUSg/" length="0" /><feedburner:origEnclosureLink>http://kabarit.net</feedburner:origEnclosureLink></entry><entry gd:etag="W/&quot;CU4MQXk4eyp7ImA9WxJUEUs.&quot;"><id>tag:blogger.com,1999:blog-976219693063981951.post-5832661082662090340</id><published>2009-07-10T01:25:00.000+07:00</published><updated>2009-07-10T01:26:20.733+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-07-10T01:26:20.733+07:00</app:edited><title>The Code for Join Technorati</title><content type="html">6tqaiwv82z&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/976219693063981951-5832661082662090340?l=mrstanza.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/OrMKucAsmVqSxg119n7_gSg_bWw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/OrMKucAsmVqSxg119n7_gSg_bWw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/OrMKucAsmVqSxg119n7_gSg_bWw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/OrMKucAsmVqSxg119n7_gSg_bWw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/HappyCoding/~4/_KqsXbr8J3o" height="1" width="1"/&gt;</content><link rel="related" href="http://www.technorati.com" title="The Code for Join Technorati" /><link rel="replies" type="application/atom+xml" href="http://mrstanza.blogspot.com/feeds/5832661082662090340/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mrstanza.blogspot.com/2009/07/code-for-join-technorati.html#comment-form" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/5832661082662090340?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/5832661082662090340?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/HappyCoding/~3/_KqsXbr8J3o/code-for-join-technorati.html" title="The Code for Join Technorati" /><author><name>mrstanza</name><uri>http://www.blogger.com/profile/11035205188728355595</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/-mFBleXZZFts/TblN_BhN3wI/AAAAAAAAAFY/Z0X85rqc5RA/s220/1410453120.41.1461613789.jpeg" /></author><thr:total>2</thr:total><feedburner:origLink>http://mrstanza.blogspot.com/2009/07/code-for-join-technorati.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEYFRXo7eCp7ImA9WxJUGEk.&quot;"><id>tag:blogger.com,1999:blog-976219693063981951.post-1576045761059551099</id><published>2009-07-09T22:26:00.004+07:00</published><updated>2009-07-17T22:55:14.400+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-07-17T22:55:14.400+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="JOVED" /><category scheme="http://www.blogger.com/atom/ns#" term="JOVED 2009" /><category scheme="http://www.blogger.com/atom/ns#" term="environment" /><category scheme="http://www.blogger.com/atom/ns#" term="motion" /><category scheme="http://www.blogger.com/atom/ns#" term="economy" /><title>Joved 2009 Prepared Motions</title><content type="html">Joved (Java Overland Varsities English Debate)  2009 will be held on August 7 th- 12th 2009  in Airlangga University, Surabaya, Indonesia.&lt;br /&gt;&lt;br /&gt;And here are the prepared motion :&lt;br /&gt;&lt;br /&gt;Environment&lt;br /&gt;&lt;br /&gt;THBT ADB should prioritize giving loans to environmentally- friendly projects&lt;br /&gt;THW Implement free BFR and PVC policy for electronic products now&lt;br /&gt;THW Ban Tar Sands Oil&lt;br /&gt;&lt;br /&gt;Economy&lt;br /&gt;&lt;br /&gt;THBT child labour should be incorporated as a poverty alleviation mechanism in third world nations&lt;br /&gt;THBT International world should compel tax heaven countries to disclose their consumers account information for the sake of tax enforcement&lt;br /&gt;THBT Water is a global common good&lt;br /&gt;&lt;br /&gt;Animal Rights&lt;br /&gt;&lt;br /&gt;THW implement world-wide ban on seal products&lt;br /&gt;THW Ban puppy mills&lt;br /&gt;THW Ban Genetically Engineered Food Animals&lt;br /&gt;&lt;br /&gt;Hope the best for Joved 2009...&lt;br /&gt;Happy Debating...! =)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/976219693063981951-1576045761059551099?l=mrstanza.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/WK1YCQ1QO3RHYaC8-77_ElFpuk0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/WK1YCQ1QO3RHYaC8-77_ElFpuk0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/WK1YCQ1QO3RHYaC8-77_ElFpuk0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/WK1YCQ1QO3RHYaC8-77_ElFpuk0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/HappyCoding/~4/MdyFL4chAq0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://mrstanza.blogspot.com/feeds/1576045761059551099/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mrstanza.blogspot.com/2009/07/joved-2009-prepared-motions.html#comment-form" title="5 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/1576045761059551099?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/976219693063981951/posts/default/1576045761059551099?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/HappyCoding/~3/MdyFL4chAq0/joved-2009-prepared-motions.html" title="Joved 2009 Prepared Motions" /><author><name>mrstanza</name><uri>http://www.blogger.com/profile/11035205188728355595</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/-mFBleXZZFts/TblN_BhN3wI/AAAAAAAAAFY/Z0X85rqc5RA/s220/1410453120.41.1461613789.jpeg" /></author><thr:total>5</thr:total><feedburner:origLink>http://mrstanza.blogspot.com/2009/07/joved-2009-prepared-motions.html</feedburner:origLink></entry></feed>

