<?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;DkUMRX05fCp7ImA9WhRVEEw.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259</id><updated>2012-01-08T17:18:04.324+08:00</updated><category term="IBM" /><category term="computer problem" /><category term="Managing time" /><category term="emulator" /><category term="software" /><category term="virus" /><category term="worm" /><category term="midrange" /><category term="web site" /><category term="cobol" /><category term="open source" /><category term="xcom" /><category term="blog" /><category term="work" /><category term="stress management" /><category term="hardware" /><category term="mainframe" /><title>piece of cake...</title><subtitle type="html">Computer related article...</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://dinmasterpiece.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://dinmasterpiece.blogspot.com/" /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>22</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/blogspot/rVrE" /><feedburner:info uri="blogspot/rvre" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;DUIBRn46eip7ImA9WhRWGUk.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-8422497960549487276</id><published>2012-01-07T22:25:00.001+08:00</published><updated>2012-01-07T22:45:57.012+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-07T22:45:57.012+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="mainframe" /><category scheme="http://www.blogger.com/atom/ns#" term="software" /><category scheme="http://www.blogger.com/atom/ns#" term="xcom" /><title>CA – XCOM : Script example in AIX</title><content type="html">This is an example on how to create a shell script in AIX in order to transfer file using XCOM tool. Pre-requisite for this task is to have: &lt;br /&gt;
1) CA – XCOM installed successful&lt;br /&gt;
2) To have necessary access to execute xcomtcp command&lt;br /&gt;
&lt;br /&gt;
In AIX, to execute XCOM we use xcomtcp command and a few options for the file transfer setting. Create an empty file i.e. test.sh and put the following script:&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;cd /app/xcom/test&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;#Delete status file if exist&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;if [ -f success.txt ];&lt;br /&gt;
then&lt;br /&gt;
rm success.txt&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;elif [ -f fail.txt ]&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;then&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;rm fail.txt&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;fi&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;&lt;br /&gt;
&lt;span style="font-size: x-small;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;#Start file transfer&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;xcomtcp -c1 -f test.cnf LOCAL_FILE=./test.txt REMOTE_FILE=C:/test/test.txt PROTOCOL=TCPIP XENDCMD=./status.sh&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
In above example script, two status file will be deleted first if they exist. success.txt is the success file and fail.txt will be generated if the transfer file failed. Both file creation will be written in status.sh script file. &lt;br /&gt;
&lt;br /&gt;
In xcomtcp command above, test.cnf configuration file will be used. There are a lot of option in the config file that can be use, for example userid and password. If you want to override the setting in config file, just write it in the xcomtcp command as above. I’m overriding the local file, remote file and protocol setting in config file with the value stated in the command. XENDCMD is actually in xcom.glb file, which is the another config file for XCOM. It’s function is to execute script once file transfer is done.&lt;br /&gt;
&lt;br /&gt;
Below are the status.sh sample scipt to be executed after xcomtcp command is completed:&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;# This procedure is invoked by the Unicenter CA-XCOM Data Transport transfer&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;# program after the transfer is finished (whether successful or not).&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;# Not every argument will be populated;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;# the values contained in the arguments depend on those provided by the&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;# remote system.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;###### START OF DEBUG SECTION ######&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;######&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;###### UNCOMMENT THE LINES BELOW TO DEBUG THIS SCRIPT ######&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;#exec &amp;gt; /tmp/xcomend.$1.out&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;#exec 2&amp;gt;&amp;amp;1&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;#set -vx&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;#PS4='[$0: $LINENO]+ '&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;#export PS4&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;###### END OF DEBUG SECTION ######&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;#&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;# The first parameters are supplied for any type of transfer.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;&lt;br /&gt;
&lt;span style="font-size: x-small;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;local_reqno=$1 # local request number/tid (000000 if unassigned)&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;initiator=$1 # LOCAL or REMOTE&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;transfer_type=$1 # FILE or JOB or REPORT&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;direction=$1 # SEND or RECEIVE&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;restarting=$1 # RESTARTING or FIRST_TRY&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;start_time=$1 # Start time of transfer&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;end_time=$1 # End time of transfer&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;remote_system=$1 # Remote system name&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;status=$1 # Status of transfer&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;error=$1 # XCOM file transfer numeric error code&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;msg=$1 # error code translated to message text&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;status_msg=$1 # status message from partner when error on remote sys&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;remoteuser=$1 # Remote user&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;remote_reqno=$1 # Remote request Number&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;group=$1 # Group name&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;sysdata=$1 # System Dependent User Data&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;xferdata=$1 # Transfer Dependent User Data&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;transfer_name=$1 # Transfer Name&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;tmp_file=$1 # Local temporary file name&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;file=$1 # Local file name&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;remote_file=$1 # Remote file name&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;carriage_flag=$1 # Carriage return flag&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;code_flag=$1 # Code flag&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;compression=$1 # Compression flag&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;file_recs=$1 # No. of records read/written&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;file_bytes=$1 # No. of bytes read/written&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;blocks=$1 # No. of blocks sent/received&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;bytes=$1 # No. of bytes sent/received&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;#&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;&lt;br /&gt;
&lt;span style="font-size: x-small;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;# The next parameters are supplied for file transfers only&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;if [ $transfer_type = "FILE" ]&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;then&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;fileaction=$1 # File action (C, R, or A for create, replace, or append)&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;datasettype=$1 # Dataset type&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;recfm=$1 # Record format&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;lrecl=$1 # Logical record length&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;truncation_flag=$1 # Truncation flag&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;#&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;# The next group of parameters are supplied for report transfers only&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;elif [ $transfer_type = "REPORT" ]&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;then&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;jobname=$1 # Job name field from JES&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;jobnumber=$1 # Job number field from JES&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;class=$1 # print class&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;copies=$1 # Number of copies to print&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;form=$1 # Type of form to print this job on.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;recfm=$1 # Record format of incoming print job.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;lrecl=$1 # Logical record length of incoming report.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;blksize=$1 # Block size of incoming report.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;ucs_name=$1 # Name of UCS to be used for this print job.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;fcb=$1 # Name of FCB (form control block) for this report.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;room_number=$1 # Room number field from JES.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;programmer_name=$1 # Programmer name field from JES.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;tso_notify=$1 # TSO notify field from JES.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;destination=$1 # Destination printer specification.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;carriagecontrol=$1 # Type of carriage control characters being used.&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;shift&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;#&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;# There are no extra parameters for remote jobs&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;fi&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;#&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;"&gt;&lt;br /&gt;
&lt;span style="font-size: x-small;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;# PUT YOUR OWN XCOM ENDING CODE HERE !&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;if [ $status = "SUCCESSFUL" ]&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;then&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo 'Start time : ' $start_time &amp;gt;&amp;gt; success.txt&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo 'End time : ' $end_time &amp;gt;&amp;gt; success.txt&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo 'File name : ' $file &amp;gt;&amp;gt; success.txt&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;elif [ $status = "FAILED" ]&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;then&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo 'Start time : ' $start_time &amp;gt;&amp;gt; fail.txt&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo 'End time : ' $end_time &amp;gt;&amp;gt; fail.txt&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo 'Error message : ' $msg &amp;gt;&amp;gt; fail.txt&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo 'Remote error message : ' $status_msg &amp;gt;&amp;gt; fail.txt&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo 'File name : ' $file &amp;gt;&amp;gt; fail.txt&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;fi&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;exit 0&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Give focus on few line of code at the end of the script. After # PUT YOUR OWN XCOM ENDING CODE HERE ! comment, you can put your own script on how to manipulate all variable define in the beginning of the script into your own.&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-8422497960549487276?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/To736PSYuWnzgkLidpJC_UMjscw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/To736PSYuWnzgkLidpJC_UMjscw/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/To736PSYuWnzgkLidpJC_UMjscw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/To736PSYuWnzgkLidpJC_UMjscw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/Fg_rDvxnKyc" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/8422497960549487276?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/8422497960549487276?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/Fg_rDvxnKyc/ca-xcom-script-example-in-aix.html" title="CA – XCOM : Script example in AIX" /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://dinmasterpiece.blogspot.com/2012/01/ca-xcom-script-example-in-aix.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEQHRHk_cSp7ImA9WhRWGUk.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-973071749499152659</id><published>2012-01-07T22:10:00.001+08:00</published><updated>2012-01-07T22:25:35.749+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-07T22:25:35.749+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="software" /><category scheme="http://www.blogger.com/atom/ns#" term="xcom" /><title>CA – XCOM : Powerfull file transfer tool</title><content type="html">I use XCOM to transfer file from mainframe to Unix/Window server or between server to server. To use XCOM in mainframe, you need to have special RACF permission. &lt;br /&gt;
1) Read access to dataset (CAI.XCOM.**) for id XXXXXX&lt;br /&gt;
2) Define OMVS SEGMENT for XXXXXX&lt;br /&gt;
3) READ to EZB.NETACCESS.XXXX.TCPIP.XXXX CL(SERVAUTH) for id XXXXXX&lt;br /&gt;
&lt;br /&gt;
If you do not define OMVS Segment to your id, you will get XCOMM0780E Txpi 224: gethostname error return value = 156 error, and you JCL job will ended with XFER XFERM1 - ENDED BY CC 0009.&lt;br /&gt;
&lt;br /&gt;
If you do not have access to EZB.NETACCESS.XXXX.TCPIP.XXXX service, you’ll be ended with XCOMM0780E Txpi 211: Socket connect error return value = 111 error with the same JCL job abend code.&lt;br /&gt;
&lt;br /&gt;
In order to transfer to a PC or server, you need to have XCOM agent or software to be installed in those target machines. The usual port that it used is 8044 for normal transfer and 8045 if using SSL for secured transfer. However XCOM port is configurable and you can use any of available port in your machine. &lt;br /&gt;
&lt;br /&gt;
Example of XCOM JCL :&lt;br /&gt;
&lt;br /&gt;
//XFERM01 EXEC XCOMSEND,XTYPE=EXECUTE &lt;br /&gt;
//SYSIN DD * &lt;br /&gt;
TYPE=SEND &lt;br /&gt;
FILETYPE=FILE &lt;br /&gt;
IPNAME=192.1.1.1 &lt;br /&gt;
FILE=D:\TEST.zip &lt;br /&gt;
LFILE=XXX.TEST.FILE1 &lt;br /&gt;
RECSEP=YES &lt;br /&gt;
CODE=BINARY &lt;br /&gt;
TRUNCATE=NO &lt;br /&gt;
COMPRESS=NO &lt;br /&gt;
PACK=NO &lt;br /&gt;
CKPT=0 &lt;br /&gt;
FILEOPT=REPLACE &lt;br /&gt;
USERID=yourid &lt;br /&gt;
PASSWORD=password&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-973071749499152659?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/kixGhOEX_AsHKXiVu1g8f1nDmNc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kixGhOEX_AsHKXiVu1g8f1nDmNc/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/kixGhOEX_AsHKXiVu1g8f1nDmNc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kixGhOEX_AsHKXiVu1g8f1nDmNc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/UNNibEtPFoc" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/973071749499152659?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/973071749499152659?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/UNNibEtPFoc/ca-xcom-powerfull-file-transfer-tool.html" title="CA – XCOM : Powerfull file transfer tool" /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://dinmasterpiece.blogspot.com/2012/01/ca-xcom-powerfull-file-transfer-tool.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0UAQXs7fSp7ImA9WhRWGEo.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-9147684285618129082</id><published>2012-01-07T01:21:00.009+08:00</published><updated>2012-01-07T01:34:00.505+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-07T01:34:00.505+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="open source" /><category scheme="http://www.blogger.com/atom/ns#" term="software" /><title>How to invoke SAS GUI (unix) using X Window</title><content type="html">If you are a SAS user on Unix/Linux, you might want to use X Window for your SAS application. In my example, I’ll show you how to invoke SAS 9.2 for Unix/Linux from a windows based OS using batch script. &lt;br /&gt;
We will need two main components:&lt;br /&gt;
&lt;br /&gt;
1) X Windows – I’m using a free Xming software version 6.9.0.31&lt;br /&gt;
&lt;br /&gt;
2) SAS 9.2 for Unix/Linux&lt;br /&gt;
&lt;br /&gt;
In this example, we assume that SAS 9.2 have been installed in a Unix box. Next, install Xming in your windows machine. Run Xming-6-9-0-31-setup.exe. Just click next and accept default setting. During Xming installation, it will also install plink – a command prompt putty which will be use to connect to the Unix box. &lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-U4sCl3Mx5do/Twcr2yRgHPI/AAAAAAAAAMM/0xWhXizgznQ/s1600/1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" rea="true" src="http://3.bp.blogspot.com/-U4sCl3Mx5do/Twcr2yRgHPI/AAAAAAAAAMM/0xWhXizgznQ/s1600/1.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="border-bottom: medium none; border-left: medium none; border-right: medium none; border-top: medium none;"&gt;After Xming installation, you will see Xming icon in your desktop as per picture above. Ensure to update PATH variable to Xming installation directory which plink.exe reside (i.e. C:\Program Files\Xming), in order for us to run plink anywhere in our Windows machine. &lt;/div&gt;&lt;br /&gt;
Next step is to create a batch script in your windows machine. Create an empty batch file (create a file and rename it to something.cmd) and put the following script in the file:&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;@echo off&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;@ You can set any comment here&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;COLOR 17&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;mode con:cols=82 lines=30&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;TITLE Put title here &lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo########################################################################&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo#&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; You can put your own text here&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo#&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...........Starting SAS 9.2.........&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # &lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo#&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo#&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;echo########################################################################&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;start "" C:\Progra~1\Xming\Xming.exe :0 -clipboard -multiwindow&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: x-small;"&gt;plink -ssh -X -pw password yourid@192.1.1.1 ./startsas&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
I’ve created a soft link inside the server and put the link inside /home/yourid so that I can run the SAS start command inside my home directory. You can manipulate the way you start the SAS software depending on your SAS setup. Make sure port 22 is open in order to connect to the server via SSH protocol. The –X option in the plink command enable the usage of X Windows so that SAS can be run using GUI. You will see something like this when running the script:&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-C-oqlPUkMgY/TwctA5FmPCI/AAAAAAAAAMU/WqlHNSTiwHg/s1600/2.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="190" rea="true" src="http://4.bp.blogspot.com/-C-oqlPUkMgY/TwctA5FmPCI/AAAAAAAAAMU/WqlHNSTiwHg/s320/2.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;The script will automatically start the Xming software, and then connecting to Unix box to run SAS software. So now you only have single click to run your SAS Unix software in your windows machine! You can modify the script according to your need i.e. prompting password if you don’t want to hard code your password inside the script.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-ZW2_2SKYGV4/TwctYWQNQjI/AAAAAAAAAMc/LV-ZV_2fI9I/s1600/3.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" rea="true" src="http://2.bp.blogspot.com/-ZW2_2SKYGV4/TwctYWQNQjI/AAAAAAAAAMc/LV-ZV_2fI9I/s320/3.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;To terminate the script/SAS, just click on terminate button in one of the SAS panel.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-bkwiXmU5QDY/TwctdZ-f6hI/AAAAAAAAAMk/uF7H08AU2ko/s1600/4.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="128" rea="true" src="http://1.bp.blogspot.com/-bkwiXmU5QDY/TwctdZ-f6hI/AAAAAAAAAMk/uF7H08AU2ko/s320/4.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-9147684285618129082?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/FTB4ngAGDyDwGHEUC63xtRRnUqE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/FTB4ngAGDyDwGHEUC63xtRRnUqE/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/FTB4ngAGDyDwGHEUC63xtRRnUqE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/FTB4ngAGDyDwGHEUC63xtRRnUqE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/bviH9NemE1g" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/9147684285618129082?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/9147684285618129082?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/bviH9NemE1g/how-to-invoke-sas-gui-unix-using-x.html" title="How to invoke SAS GUI (unix) using X Window" /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-U4sCl3Mx5do/Twcr2yRgHPI/AAAAAAAAAMM/0xWhXizgznQ/s72-c/1.jpg" height="72" width="72" /><feedburner:origLink>http://dinmasterpiece.blogspot.com/2012/01/how-to-invoke-sas-gui-unix-using-x.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0AEQnY5cSp7ImA9WhRWGEs.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-8213517409742920420</id><published>2012-01-07T01:04:00.002+08:00</published><updated>2012-01-07T01:08:23.829+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-07T01:08:23.829+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="open source" /><category scheme="http://www.blogger.com/atom/ns#" term="software" /><title>How to use X Windows with Putty</title><content type="html">People usually use X Windows to invoke GUI in Unix/Linux or AIX box. Some of the X Windows software is proprietary, and some is free. I’m using Xming version 6.9.0.31 and sometimes Cygwin-X, to run SAS 9.2 GUI or to install Oracle Client and Informatica 9.1.0 or even OBIEE installation using GUI interface (OBIEE installation required some special font, cannot use Xming version 6.9.0.31 – need extra font, it’s working if using Cygwin-X) &lt;br /&gt;
&lt;div align="left" class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div align="left" class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-OxqMqCfGvUo/Twcor10pgrI/AAAAAAAAALk/GuSyu37PDvc/s1600/1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="240" rea="true" src="http://3.bp.blogspot.com/-OxqMqCfGvUo/Twcor10pgrI/AAAAAAAAALk/GuSyu37PDvc/s320/1.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Running SAS 9.2 in AIX&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-rFsXzyrvG0E/Twco61XlamI/AAAAAAAAALs/4sO-MR__etw/s1600/2.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="253" rea="true" src="http://3.bp.blogspot.com/-rFsXzyrvG0E/Twco61XlamI/AAAAAAAAALs/4sO-MR__etw/s320/2.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Installing Oracle Application Server – part of OBIEE installation using Cygwin-X&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-FwrlLhgDEbQ/TwcpLUh2RpI/AAAAAAAAAL0/fU5M9qN3jI8/s1600/3.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="230" rea="true" src="http://2.bp.blogspot.com/-FwrlLhgDEbQ/TwcpLUh2RpI/AAAAAAAAAL0/fU5M9qN3jI8/s320/3.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Installing Informatica 9.1.0 using Xming&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-HyHCjHN0kuE/TwcpU-24l7I/AAAAAAAAAL8/Wmn8fhuOJJs/s1600/4.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="242" rea="true" src="http://4.bp.blogspot.com/-HyHCjHN0kuE/TwcpU-24l7I/AAAAAAAAAL8/Wmn8fhuOJJs/s320/4.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Installing Oracle Client 11g using Xming&lt;/div&gt;&lt;br /&gt;
To use Putty together with Xming, you just need to enable X11 port forwarding in Putty configuration for SSH tunelling (see picture below). If you are using plink (Putty command line), just use option –X to enable the X11 port forwarding i.e. plink -ssh -X –pw password yourid@192.1.1.1 ./startsas. &lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-s3PJqmBYLPA/Twcpc3t1R1I/AAAAAAAAAME/VyPDgws7aDk/s1600/5.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" rea="true" src="http://4.bp.blogspot.com/-s3PJqmBYLPA/Twcpc3t1R1I/AAAAAAAAAME/VyPDgws7aDk/s320/5.jpg" width="308" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-8213517409742920420?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/mlm0WtMWkXRfoAGznAeNVLY3SL8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/mlm0WtMWkXRfoAGznAeNVLY3SL8/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/mlm0WtMWkXRfoAGznAeNVLY3SL8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/mlm0WtMWkXRfoAGznAeNVLY3SL8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/20QzLDLPJhM" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/8213517409742920420?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/8213517409742920420?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/20QzLDLPJhM/how-to-use-x-windows-with-putty.html" title="How to use X Windows with Putty" /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-OxqMqCfGvUo/Twcor10pgrI/AAAAAAAAALk/GuSyu37PDvc/s72-c/1.jpg" height="72" width="72" /><feedburner:origLink>http://dinmasterpiece.blogspot.com/2012/01/how-to-use-x-windows-with-putty.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkcCRXo9fCp7ImA9WxBbEU8.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-9000170116093027724</id><published>2010-03-09T16:39:00.001+08:00</published><updated>2010-03-09T16:41:04.464+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-09T16:41:04.464+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="mainframe" /><title>Calculate the space by yourself</title><content type="html">&lt;div&gt;1) Calculate the space by yourself!!! (1 CYL how many TRKS, 1 TRKS how many BYTES, 1 CYL how many KB, 1 TRK how many KB, 1 MB how many KB, 1 GB how many KB)&lt;br /&gt;&lt;br /&gt;1 CYL = 720KB&lt;br /&gt;1 CYL = 15 TRKS&lt;br /&gt;1TRK = 56664 BYTES&lt;br /&gt;1 TRK = 55.33 KB&lt;br /&gt;1 MB = 1024 KB&lt;br /&gt;1 GB = 1,048,376 KB&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;img id="BLOGGER_PHOTO_ID_5446551313516720866" style="DISPLAY: block; MARGIN: 0px auto 10px; WIDTH: 321px; CURSOR: hand; HEIGHT: 300px; TEXT-ALIGN: center" alt="" src="http://2.bp.blogspot.com/_CTys37LFSsQ/S5YJkAUZ8uI/AAAAAAAAAKY/GTAVHRANgDw/s400/example+of+TRKS,+percent+used,+extent+and+device.JPG" border="0" /&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-9000170116093027724?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/3ttrvl-z-VyFGHUKUQHCdvQshd4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/3ttrvl-z-VyFGHUKUQHCdvQshd4/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/3ttrvl-z-VyFGHUKUQHCdvQshd4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/3ttrvl-z-VyFGHUKUQHCdvQshd4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/Maz2Cj_ant4" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/9000170116093027724?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/9000170116093027724?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/Maz2Cj_ant4/calculate-space-by-yourself.html" title="Calculate the space by yourself" /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_CTys37LFSsQ/S5YJkAUZ8uI/AAAAAAAAAKY/GTAVHRANgDw/s72-c/example+of+TRKS,+percent+used,+extent+and+device.JPG" height="72" width="72" /><feedburner:origLink>http://dinmasterpiece.blogspot.com/2010/03/calculate-space-by-yourself.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkQMQnk6eSp7ImA9WhRWGEs.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-8710221460567212833</id><published>2010-03-09T15:55:00.009+08:00</published><updated>2012-01-07T00:46:23.711+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-07T00:46:23.711+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="mainframe" /><title>How to get big space in your mainframe system</title><content type="html">Do you always encounter the following problem when extracting large data? E37? SE37? B37? Maximum volume reached? Tips: Where to search for such error message? Go to your job spool and browse JESYSMSG. Browse to the bottom and start searching where your job abended/stop from bottom to up. There are a few steps can be taken to allow your job to be able to use big storage for your file.&lt;br /&gt;
&lt;br /&gt;
1) Check how much do you request for storage. Bear in mind not necessarily you define a big storage you can get what you are requested. In my environment (Z/OS 1.7 Operating System) I can get a file with multiple volume number assigned by SMS up to 59 volumes. If more volume is needed then I’ll hit by the “Maximum volume reached” error.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5446541402257245906" src="http://1.bp.blogspot.com/_CTys37LFSsQ/S5YAjGAARtI/AAAAAAAAAJ4/tV2nwORWy8E/s400/1.JPG" style="cursor: hand; display: block; height: 279px; margin: 0px auto 10px; text-align: center; width: 400px;" /&gt;&lt;br /&gt;
2) A very good step is to calculate what is your required space needed by calculating the output file size.&lt;br /&gt;
EXAMPLE, 391,227 records of FB LRECL=90&lt;br /&gt;
INTEGER (27998/90) = 311. Therefore 622 records will fit one track.&lt;br /&gt;
391227 / 622 = 628.9823 = 629 tracks required.&lt;br /&gt;
629 / 15 = 41.93333 = 42 cylinders required to store your data.&lt;br /&gt;
&lt;br /&gt;
3) Check you are in which SMS pool. Select one of your file and see the volume information. Tips: Press F11 until you see volume as per example below:&lt;br /&gt;
&lt;br /&gt;
&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5446548930491306242" src="http://1.bp.blogspot.com/_CTys37LFSsQ/S5YHZS230QI/AAAAAAAAAKA/UwIiCf6sMwY/s400/displaying+volume+information+0.JPG" style="cursor: hand; display: block; height: 55px; margin: 0px auto 10px; text-align: center; width: 400px;" /&gt; 4) Copy the volume number and go to =3.4. Then paste it in “Volume serial” input column and type “V” in the option line. Press enter.&lt;br /&gt;
&lt;br /&gt;
&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5446549724106280418" src="http://1.bp.blogspot.com/_CTys37LFSsQ/S5YIHfTbTeI/AAAAAAAAAKI/p8Qx_3p68I0/s400/displaying+volume+information+1.JPG" style="cursor: hand; display: block; height: 116px; margin: 0px auto 10px; text-align: center; width: 400px;" /&gt; 5) You will see information as per picture below. Under Volume Data you can see how many tracks are in the volume. The bigger the size of the volume, the higher chances you will get big space for your dataset, and the lower chances you’ll be hit by the “Maximum volume reached” error.&lt;br /&gt;
&lt;br /&gt;
&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5446550120585383746" src="http://1.bp.blogspot.com/_CTys37LFSsQ/S5YIekTaT0I/AAAAAAAAAKQ/asidwN759RY/s400/displaying+volume+information+2.JPG" style="cursor: hand; display: block; height: 164px; margin: 0px auto 10px; text-align: center; width: 400px;" /&gt;&lt;br /&gt;
6) Ask your system programmer who in charge of storage to give you access to the volume with high number of tracks.&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-8710221460567212833?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/N3yWt4dYiklPuL4iK2osHHRVUBQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/N3yWt4dYiklPuL4iK2osHHRVUBQ/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/N3yWt4dYiklPuL4iK2osHHRVUBQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/N3yWt4dYiklPuL4iK2osHHRVUBQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/fcrD9U9DcaE" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/8710221460567212833?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/8710221460567212833?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/fcrD9U9DcaE/how-to-get-big-space-in-your-mainframe.html" title="How to get big space in your mainframe system" /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_CTys37LFSsQ/S5YAjGAARtI/AAAAAAAAAJ4/tV2nwORWy8E/s72-c/1.JPG" height="72" width="72" /><feedburner:origLink>http://dinmasterpiece.blogspot.com/2010/03/how-to-get-big-space-in-your-mainframe.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D04ER3k_fyp7ImA9WxBbEEw.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-6987131917572060652</id><published>2010-03-08T10:23:00.005+08:00</published><updated>2010-03-08T10:38:26.747+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-08T10:38:26.747+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="mainframe" /><title>How to read binary format data in flat file</title><content type="html">&lt;div&gt;&lt;div&gt;&lt;div&gt;&lt;div align="justify"&gt;To read binary format in file, for example here date, which was declare with PIC 9(9) binary, first we need to open the file. Below is the example of value in the file:&lt;br /&gt;&lt;/div&gt;&lt;a href="http://2.bp.blogspot.com/_CTys37LFSsQ/S5Rg--QIeDI/AAAAAAAAAJA/aftO0H2XlhM/s1600-h/1.JPG"&gt;&lt;/a&gt;&lt;img id="BLOGGER_PHOTO_ID_5446086008699323938" style="DISPLAY: block; MARGIN: 0px auto 10px; WIDTH: 400px; CURSOR: hand; HEIGHT: 182px; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_CTys37LFSsQ/S5RiXsy_hiI/AAAAAAAAAJY/w6E4-MLvrBw/s400/1.JPG" border="0" /&gt;&lt;br /&gt;Type “hex on” in the command line to view the data in hex format. Since the date is declared as PIC 9(9), length used in the file is (9+1)/2 = 4. Tips: To view the column number, just type “cols”, and to remove the column number, type “res”. In example above, date 20100126 is now happen to be 0132B41E in hex format. Tips: To read hex value, start from left to right, read from up to bottom, and then next column, up to bottom until the end of data length.&lt;br /&gt;If you know the data position but in hex format, how do you convert it into numeric/decimal format? The easiest way is to use this calculator in the internet:&lt;br /&gt;Convert hex to decimal: &lt;a href="http://easycalculation.com/hex-converter.php"&gt;http://easycalculation.com/hex-converter.php&lt;/a&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_CTys37LFSsQ/S5RhbfuXJRI/AAAAAAAAAJI/r5EIftsSpH8/s1600-h/2.JPG"&gt;&lt;/a&gt;&lt;img id="BLOGGER_PHOTO_ID_5446086143060048882" style="DISPLAY: block; MARGIN: 0px auto 10px; WIDTH: 400px; CURSOR: hand; HEIGHT: 188px; TEXT-ALIGN: center" alt="" src="http://2.bp.blogspot.com/_CTys37LFSsQ/S5RifhVFe_I/AAAAAAAAAJg/lzUgvvmWN7I/s400/2.JPG" border="0" /&gt;&lt;br /&gt;If you intend to modify the data with the value you want, for example, from 20100126 to 20100127, you can use the following online calculator for this purpose:&lt;br /&gt;Convert decimal to hex: &lt;a href="http://easycalculation.com/decimal-converter.php"&gt;http://easycalculation.com/decimal-converter.php&lt;/a&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_CTys37LFSsQ/S5RhslxoSII/AAAAAAAAAJQ/embRxNOmDbY/s1600-h/3.JPG"&gt;&lt;/a&gt;&lt;img id="BLOGGER_PHOTO_ID_5446086643062535346" style="DISPLAY: block; MARGIN: 0px auto 10px; WIDTH: 400px; CURSOR: hand; HEIGHT: 186px; TEXT-ALIGN: center" alt="" src="http://2.bp.blogspot.com/_CTys37LFSsQ/S5Ri8n-99LI/AAAAAAAAAJw/7k4RAJue1JU/s400/3.JPG" border="0" /&gt;&lt;br /&gt;In this example, to change 20100126 to 20100127, you only need to change character “E” to “F” in the file.&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-6987131917572060652?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/4X84ijNQ4QBbFdizmpgpVyADYyQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/4X84ijNQ4QBbFdizmpgpVyADYyQ/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/4X84ijNQ4QBbFdizmpgpVyADYyQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/4X84ijNQ4QBbFdizmpgpVyADYyQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/gGKo5Q1O34o" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/6987131917572060652?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/6987131917572060652?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/gGKo5Q1O34o/how-to-read-binary-format-data-in-flat.html" title="How to read binary format data in flat file" /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_CTys37LFSsQ/S5RiXsy_hiI/AAAAAAAAAJY/w6E4-MLvrBw/s72-c/1.JPG" height="72" width="72" /><feedburner:origLink>http://dinmasterpiece.blogspot.com/2010/03/how-to-read-binary-format-data-in-flat.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEIMQnc-eCp7ImA9WxZSE00.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-5704397478674847094</id><published>2008-01-26T08:03:00.000+08:00</published><updated>2008-01-26T08:16:23.950+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-01-26T08:16:23.950+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="software" /><category scheme="http://www.blogger.com/atom/ns#" term="web site" /><title>Convert docx files to doc, pdf, odt and txt</title><content type="html">Having problem opening Microsoft Office 2007 file with extension .docx? You can convert the file with online converter at &lt;a href="http://www.zamzar.com/"&gt;http://www.zamzar.com/&lt;/a&gt;. What you need is to prepare the file to be upload, and your email address... the conversion may takes several minutes(for me to convert 112kb docx file it takes about 5 minutes for me to receive the converted link file in my email)...&lt;br /&gt;&lt;br /&gt;Well you can use Zamzar to convert docx files into any one of the following formats (including older versions of MS Office which only open .doc files):&lt;br /&gt;&lt;br /&gt;    * doc - Microsoft Word Doc&lt;br /&gt;    * odt - OpenDocument Text Doc&lt;br /&gt;    * pcx - Paintbrush Bitmap Image&lt;br /&gt;    * pdf - Portable Document Format&lt;br /&gt;    * png - Portable Network Graphic&lt;br /&gt;    * ps  - Postscript Doc&lt;br /&gt;    * txt - Text Doc&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-5704397478674847094?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/NqzuimVT-K9mByXUIV2RNzqnLHo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/NqzuimVT-K9mByXUIV2RNzqnLHo/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/NqzuimVT-K9mByXUIV2RNzqnLHo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/NqzuimVT-K9mByXUIV2RNzqnLHo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/EHAOrGVQqkc" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/5704397478674847094?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/5704397478674847094?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/EHAOrGVQqkc/convert-docx-files-to-doc-pdf-odt-and.html" title="Convert docx files to doc, pdf, odt and txt" /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://dinmasterpiece.blogspot.com/2008/01/convert-docx-files-to-doc-pdf-odt-and.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEMMRH07fSp7ImA9WhRWGEg.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-2944793987812826704</id><published>2008-01-20T17:50:00.001+08:00</published><updated>2012-01-06T21:28:05.305+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-06T21:28:05.305+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="virus" /><category scheme="http://www.blogger.com/atom/ns#" term="worm" /><category scheme="http://www.blogger.com/atom/ns#" term="computer problem" /><title>Problem with virus, malware, etc... (Restricted By Bro Act and Godzilla, this link might be usefull)</title><content type="html">Hi all... i just found this interesting website... maybe you can use the instruction in it to clean up virus, malware and other unwanted things in your computer... it can be use to clean up &lt;span style="font-weight: bold;"&gt;Restricted By Bro Act&lt;/span&gt; virus and also &lt;span style="font-weight: bold;"&gt;Godzilla &lt;/span&gt;virus.... i found it recently when i search for guides how to remove "Task Manager have been disabled by administrator" problem. Here's the link.&lt;br /&gt;
&lt;a href="http://aumha.org/a/quickfix.php"&gt;http://aumha.org/a/quickfix.php&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-2944793987812826704?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/bm3Qf_nJjrEmurPgb4-SYe7zRrM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/bm3Qf_nJjrEmurPgb4-SYe7zRrM/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/bm3Qf_nJjrEmurPgb4-SYe7zRrM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/bm3Qf_nJjrEmurPgb4-SYe7zRrM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/mj2znhMjZsI" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/2944793987812826704?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/2944793987812826704?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/mj2znhMjZsI/problem-with-virus-malware-etc.html" title="Problem with virus, malware, etc... (Restricted By Bro Act and Godzilla, this link might be usefull)" /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://dinmasterpiece.blogspot.com/2008/01/problem-with-virus-malware-etc.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEUHQ3czfyp7ImA9WB9SGEs.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-5920281129618213263</id><published>2007-10-09T00:49:00.000+08:00</published><updated>2007-10-09T00:50:32.987+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-10-09T00:50:32.987+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="mainframe" /><category scheme="http://www.blogger.com/atom/ns#" term="IBM" /><title>Mainframe - The Art of the Sale, Lesson One</title><content type="html">&lt;object width="425" height="350"&gt;&lt;param name="movie" value="http://www.youtube.com/v/MSqXKp-00hM"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/MSqXKp-00hM" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-5920281129618213263?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/5zeH-qVphJACVCnSQEjdMf_bYbw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5zeH-qVphJACVCnSQEjdMf_bYbw/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/5zeH-qVphJACVCnSQEjdMf_bYbw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5zeH-qVphJACVCnSQEjdMf_bYbw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/S3TvxwIgt3k" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/5920281129618213263?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/5920281129618213263?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/S3TvxwIgt3k/mainframe-art-of-sale-lesson-one.html" title="Mainframe - The Art of the Sale, Lesson One" /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://dinmasterpiece.blogspot.com/2007/10/mainframe-art-of-sale-lesson-one.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUYMRHo9eip7ImA9WB9SF0k.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-4256531889330021287</id><published>2007-10-07T16:41:00.000+08:00</published><updated>2007-10-07T16:53:05.462+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-10-07T16:53:05.462+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="mainframe" /><category scheme="http://www.blogger.com/atom/ns#" term="IBM" /><category scheme="http://www.blogger.com/atom/ns#" term="cobol" /><category scheme="http://www.blogger.com/atom/ns#" term="work" /><title>History of IBM Mainframe</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://content.answers.com/main/content/wp/en/thumb/b/b6/300px-Z890.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px;" src="http://content.answers.com/main/content/wp/en/thumb/b/b6/300px-Z890.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;“I predict that the last mainframe will be unplugged on March 15, 1996.” — Stewart Alsop,Infoworld,March 1991.&lt;br /&gt;&lt;br /&gt;IBM introduce a mainframe called OS/360 in 1964. After that IBM produce more new mainframe each 10 years.&lt;br /&gt;- System/370™ in 1970&lt;br /&gt;- System/370 Extended Architecture (370-XA) in 1983&lt;br /&gt;- Enterprise Systems Architecture/390® (ESA/390) in 1990 (i work in Heitech Padu at PNB  Project using this mainframe for ASNB Unit Trust System)&lt;br /&gt;- z/Architecture™ in 2000.&lt;br /&gt;&lt;br /&gt;Why Mainframe? What Mainframe can do? IBM Mainframe is a self-contained processing center, powerful enough to process the largest and most diverse workloads in one secure “footprint,” and one that is just as effective when implemented as the primary server in a corporation’s distributed server farm. In effect, the mainframe computer is the definitive server in the client/server model of computing.&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-4256531889330021287?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/7H8O8IWFH6HHJsJut8yNj9D3IPg/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/7H8O8IWFH6HHJsJut8yNj9D3IPg/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/7H8O8IWFH6HHJsJut8yNj9D3IPg/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/7H8O8IWFH6HHJsJut8yNj9D3IPg/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/-2f7HK_MsGg" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/4256531889330021287?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/4256531889330021287?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/-2f7HK_MsGg/history-of-ibm-mainframe.html" title="History of IBM Mainframe" /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://dinmasterpiece.blogspot.com/2007/10/history-of-ibm-mainframe.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0MNQHozfCp7ImA9WB9TE0k.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-9035239165361052303</id><published>2007-06-27T12:30:00.000+08:00</published><updated>2007-09-21T11:31:31.484+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-09-21T11:31:31.484+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="computer problem" /><title>Services and Controller App error - Cont...</title><content type="html">This problem's still bugging me. I've search yahoo answer and find an answer, format the computer and set to bla bla ntfs bla bla fat32 bla bla (cannot remember the answer).  Ah, here's the &lt;a href="http://answers.yahoo.com/question/index;_ylt=Am3H7eD3o9kfJNy.rLBsbqAjzKIX?qid=20070523053417AA74z2r"&gt;link&lt;/a&gt;. I also search other site and still dont get the solution. For details, here is a picture of the error in detail (click the picture to enlarge).&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_CTys37LFSsQ/RoHx9qh3q5I/AAAAAAAAAD8/YPQMplhqWiU/s1600-h/service+and+controller+app+-+detail.JPG"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://1.bp.blogspot.com/_CTys37LFSsQ/RoHx9qh3q5I/AAAAAAAAAD8/YPQMplhqWiU/s200/service+and+controller+app+-+detail.JPG" alt="" id="BLOGGER_PHOTO_ID_5080607896341293970" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I hope i can find a solution where i can easily remove/repair the error without need to format my laptop. :(&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-9035239165361052303?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/efZ3zB7Zt6ofUiOVx-vf-oPVhwk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/efZ3zB7Zt6ofUiOVx-vf-oPVhwk/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/efZ3zB7Zt6ofUiOVx-vf-oPVhwk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/efZ3zB7Zt6ofUiOVx-vf-oPVhwk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/74ed6TAuoa8" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/9035239165361052303?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/9035239165361052303?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/74ed6TAuoa8/services-and-controller-app-error-cont.html" title="Services and Controller App error - Cont..." /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_CTys37LFSsQ/RoHx9qh3q5I/AAAAAAAAAD8/YPQMplhqWiU/s72-c/service+and+controller+app+-+detail.JPG" height="72" width="72" /><feedburner:origLink>http://dinmasterpiece.blogspot.com/2007/06/services-and-controller-app-error-cont.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUEEQ3s6eCp7ImA9WB9TE0k.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-7547980240340147402</id><published>2007-06-25T12:35:00.000+08:00</published><updated>2007-09-21T12:06:42.510+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-09-21T12:06:42.510+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="blog" /><title>Publicize your site/blog link</title><content type="html">Add Site Link PR0 &lt;a href="http://www.addsitelink.com/"&gt;http://www.addsitelink.com/&lt;/a&gt; - Not success&lt;br /&gt;Add Your Site PR0 &lt;a href="http://www.addyoursite.us/"&gt;http://www.addyoursite.us/&lt;/a&gt; - Awaiting approval&lt;br /&gt;Adrians Directory PR0 &lt;a href="http://www.adriansdirectory.com/"&gt;http://www.adriansdirectory.com/&lt;/a&gt; - Awaiting approval&lt;br /&gt;Alpha Web Guide PR0 &lt;a href="http://www.alphawebguide.info/"&gt;http://www.alphawebguide.info/&lt;/a&gt; - Awaiting approval&lt;br /&gt;Gaming Forums PR3 &lt;a href="http://gaming-forums.us/"&gt;http://gaming-forums.us/&lt;/a&gt; - Awaiting approval&lt;br /&gt;Simply City PR3 &lt;a href="http://www.simplycity.org/"&gt;http://www.simplycity.org/&lt;/a&gt; - Google Pagerank &gt; 1&lt;br /&gt;&lt;br /&gt;Not tested yet&lt;br /&gt;# Arzoo PR0 &lt;a href="http://www.arzoo.info/"&gt;http://www.arzoo.info/&lt;/a&gt;&lt;br /&gt;# BB Admin PR0 &lt;a href="http://www.bbadmin.net/"&gt;http://www.bbadmin.net/&lt;/a&gt;&lt;br /&gt;# Bworx PR0 &lt;a href="http://directory.bworx.info/"&gt;http://directory.bworx.info/&lt;/a&gt;&lt;br /&gt;# B56 PR0 &lt;a href="http://www.b56.org/"&gt;http://www.b56.org/&lt;/a&gt;&lt;br /&gt;# B75 PR0 &lt;a href="http://www.b75.org/"&gt;http://www.b75.org/&lt;/a&gt;&lt;br /&gt;# Cheap List PR0 &lt;a href="http://www.cheap-list.com/"&gt;http://www.cheap-list.com/&lt;/a&gt;&lt;br /&gt;# Cool Links PR0 &lt;a href="http://www.cool-links.org/"&gt;http://www.cool-links.org/&lt;/a&gt;&lt;br /&gt;# Daduru PR0 &lt;a href="http://www.daduru.com/"&gt;http://www.daduru.com/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-7547980240340147402?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/kRyF9fqqbVlM48yoJ0LNBDWMbYI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kRyF9fqqbVlM48yoJ0LNBDWMbYI/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/kRyF9fqqbVlM48yoJ0LNBDWMbYI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kRyF9fqqbVlM48yoJ0LNBDWMbYI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/40ldSlvdmYM" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/7547980240340147402?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/7547980240340147402?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/40ldSlvdmYM/advertise-your-siteblog-link.html" title="Publicize your site/blog link" /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://dinmasterpiece.blogspot.com/2007/06/advertise-your-siteblog-link.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEEDQH84fip7ImA9WhRWGEg.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-5001464016543928903</id><published>2007-06-20T12:30:00.006+08:00</published><updated>2012-01-06T21:31:11.136+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-06T21:31:11.136+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="virus" /><category scheme="http://www.blogger.com/atom/ns#" term="worm" /><category scheme="http://www.blogger.com/atom/ns#" term="hardware" /><category scheme="http://www.blogger.com/atom/ns#" term="computer problem" /><title>Hacked by Godzilla</title><content type="html">I had few experiences fixing computer which been infected by virus, possibly coming from memory card. According to Leo Notenboom in &lt;a href="http://ask-leo.com/can_a_cameras_memory_card_transmit_a_virus_to_my_pc_or_to_another_camera.html"&gt;his blog&lt;/a&gt;, he said that possibility for viruses to transfer from camera memory card to computer is likely 0.01%. However based on my experience, I can see that the possibility might be 100%. Some of them are very hard to remove such as &lt;span style="font-weight: bold;"&gt;"Restricted by Bro Act"&lt;/span&gt; and also this new virus for me &lt;span style="font-weight: bold;"&gt;"Hacked by Godzilla"&lt;/span&gt;. &lt;a href="http://3.bp.blogspot.com/_CTys37LFSsQ/Rniwtwt135I/AAAAAAAAADs/clYGhGe8do4/s1600-h/hack+by+godzilla.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5078002880078012306" src="http://3.bp.blogspot.com/_CTys37LFSsQ/Rniwtwt135I/AAAAAAAAADs/clYGhGe8do4/s200/hack+by+godzilla.JPG" style="float: right; margin: 0px 0px 10px 10px;" /&gt;&lt;/a&gt; If you using Internet Explorer browser, please check your top title bar, if there is a word "Hacked by Godzilla" written beside your web page title, your computer might be infected by the virus.&lt;br /&gt;
&lt;br /&gt;
The symptom? The virus has cause monitor to be blur and blank for a while and then after that, AVG anti virus program has gone and cannot use any anti virus to scan for viruses. I was surprise because when I check the computer, the AVG anti virus program that I've installed previously was gone. I've check the folder for AVG, and it's still there, but no executable program in the folder. In &lt;span style="font-weight: bold;"&gt;"Restricted by Bro Act"&lt;/span&gt; virus case, it prevent me from installing any anti virus, and also prevent me from opening any browser/folder that has anti virus/remover keywords in it. What a genius! It makes me want to learn how these people write the virus program. &lt;br /&gt;
&lt;br /&gt;
I've found &lt;a href="http://forums.pcworld.com/forums/viewtopic.php?t=7836&amp;amp;sid=90ddf275de07fb0099421f7b3248899c"&gt;a forum from PC World&lt;/a&gt; that discussing about the possibility for a memory card to transfer virus. One of moderator in the forum wrote that it is possible for a memory card to transfer viruses. Plus he said that we will be fine as long as we have an anti virus with active scan feature in our computer. &lt;br /&gt;
&lt;br /&gt;
I search the net and found several solution to overcome this virus. One of the manual solution can be found &lt;a href="http://howto.redcomputer.net/windows/hacked_by_godzilla.php"&gt;here&lt;/a&gt; from &lt;span style="font-weight: bold;"&gt;howto.redcomputer.net&lt;/span&gt;. Another easy step is to &lt;a href="http://www.able2know.com/go/?a2kjump=http://www.computerstuff.net/xfiles/Godzilla_remover.exe"&gt;download&lt;/a&gt; this removal tools.&lt;a href="http://2.bp.blogspot.com/_CTys37LFSsQ/Rni49gt136I/AAAAAAAAAD0/R9tKd_FXxEg/s1600-h/many+scan+tools.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5078011946753974178" src="http://2.bp.blogspot.com/_CTys37LFSsQ/Rni49gt136I/AAAAAAAAAD0/R9tKd_FXxEg/s200/many+scan+tools.JPG" style="float: left; margin: 0px 10px 10px 0px;" /&gt;&lt;/a&gt; &lt;span style="font-style: italic;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-5001464016543928903?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/0wJvecaDr4AxO_YFg1p-8z9xPXw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/0wJvecaDr4AxO_YFg1p-8z9xPXw/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/0wJvecaDr4AxO_YFg1p-8z9xPXw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/0wJvecaDr4AxO_YFg1p-8z9xPXw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/pyNmz10ETec" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/5001464016543928903?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/5001464016543928903?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/pyNmz10ETec/hacked-by-godzilla.html" title="Hacked by Godzilla" /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_CTys37LFSsQ/Rniwtwt135I/AAAAAAAAADs/clYGhGe8do4/s72-c/hack+by+godzilla.JPG" height="72" width="72" /><feedburner:origLink>http://dinmasterpiece.blogspot.com/2007/06/hacked-by-godzilla.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0QCSHw8cSp7ImA9WhRWGEg.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-5989033057947556176</id><published>2007-06-14T13:09:00.003+08:00</published><updated>2012-01-06T21:09:29.279+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-06T21:09:29.279+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="midrange" /><category scheme="http://www.blogger.com/atom/ns#" term="mainframe" /><category scheme="http://www.blogger.com/atom/ns#" term="IBM" /><category scheme="http://www.blogger.com/atom/ns#" term="cobol" /><category scheme="http://www.blogger.com/atom/ns#" term="work" /><category scheme="http://www.blogger.com/atom/ns#" term="software" /><category scheme="http://www.blogger.com/atom/ns#" term="emulator" /><title>IBM Personal Communications - Hot key like Microsoft Word and Dump Terminal?</title><content type="html">IBM Personal Communications &lt;a href="http://2.bp.blogspot.com/_CTys37LFSsQ/RnDVPgt13qI/AAAAAAAAAB0/IVVKd8dC1sE/s1600-h/about.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5075791242503511714" src="http://2.bp.blogspot.com/_CTys37LFSsQ/RnDVPgt13qI/AAAAAAAAAB0/IVVKd8dC1sE/s320/about.JPG" style="cursor: pointer; float: left; margin: 0pt 10px 10px 0pt;" /&gt;&lt;/a&gt;is one of the popular emulator used to access mainframe or midrange, which we can set the emulator and use our keyboard to use several hot keys that widely used such as Copy, Paste and Cut. One of the way to copy and paste using shortcut key is by using Alt-E-C for copy and Alt-E-P for paste, which is more faster then using mouse to click on the Copy and Paste icon.&lt;br /&gt;
&lt;br /&gt;
However there is another faster way to perform such function, and required some setting in the emulator. First click on the keyboard icon or select it from menu to change the keyboard setting. To set &lt;span style="font-weight: bold;"&gt;Copy&lt;/span&gt; function using the &lt;span style="font-weight: bold;"&gt;Control-C&lt;/span&gt; key, click on the C character, select "Edit Copy" from the function list menu, and then click on the arrow beside the "Ctrl" character (&lt;span style="font-style: italic;"&gt;refer to the picture&lt;/span&gt;). &lt;a href="http://1.bp.blogspot.com/_CTys37LFSsQ/RnYVbwt132I/AAAAAAAAADU/Hk-6FEDaHn8/s1600-h/setting+edit+copy.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5077269196584640354" src="http://1.bp.blogspot.com/_CTys37LFSsQ/RnYVbwt132I/AAAAAAAAADU/Hk-6FEDaHn8/s200/setting+edit+copy.JPG" style="cursor: pointer; float: right; margin: 0pt 0pt 10px 10px;" /&gt;&lt;/a&gt;Next, do the same to change the keyboard setting for &lt;span style="font-weight: bold;"&gt;Paste &lt;/span&gt;function to use &lt;span style="font-weight: bold;"&gt;Control-V&lt;/span&gt; hot key. Click on the V character and select "Edit Paste" from function list menu and then click on the arrow next to "Ctrl" character. To use &lt;span style="font-weight: bold;"&gt;Control-P&lt;/span&gt; key to print screen, choose "Print Screen" from the function list menu. &lt;br /&gt;
&lt;br /&gt;
Some people might like to use "Control" key for "Enter" and "Enter" key for "Newline", same like the old Dump terminal. The step for setting this two key is the same and you can refer to the picture below.&lt;br /&gt;
&lt;a href="http://2.bp.blogspot.com/_CTys37LFSsQ/RnYWCAt133I/AAAAAAAAADc/GBDVwljLTLE/s1600-h/setting+enter.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5077269853714636658" src="http://2.bp.blogspot.com/_CTys37LFSsQ/RnYWCAt133I/AAAAAAAAADc/GBDVwljLTLE/s200/setting+enter.JPG" style="cursor: pointer; float: left; margin: 0pt 10px 10px 0pt;" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_CTys37LFSsQ/RnYWPQt134I/AAAAAAAAADk/wzDoc4aCBv0/s1600-h/setting+new+line.JPG"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5077270081347903362" src="http://3.bp.blogspot.com/_CTys37LFSsQ/RnYWPQt134I/AAAAAAAAADk/wzDoc4aCBv0/s200/setting+new+line.JPG" style="cursor: pointer; float: right; margin: 0pt 0pt 10px 10px;" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-5989033057947556176?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/cge5JOPtWx1ZyhgtQrUfhuSRjRw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/cge5JOPtWx1ZyhgtQrUfhuSRjRw/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/cge5JOPtWx1ZyhgtQrUfhuSRjRw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/cge5JOPtWx1ZyhgtQrUfhuSRjRw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/rSaNe6ElikY" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/5989033057947556176?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/5989033057947556176?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/rSaNe6ElikY/personal-communications-hot-key-like.html" title="IBM Personal Communications - Hot key like Microsoft Word and Dump Terminal?" /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_CTys37LFSsQ/RnDVPgt13qI/AAAAAAAAAB0/IVVKd8dC1sE/s72-c/about.JPG" height="72" width="72" /><feedburner:origLink>http://dinmasterpiece.blogspot.com/2007/06/personal-communications-hot-key-like.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEEESHozeCp7ImA9WB9TE0k.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-1327881175714381569</id><published>2007-06-14T12:39:00.000+08:00</published><updated>2007-09-21T11:50:09.480+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-09-21T11:50:09.480+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="computer problem" /><title>Services and Controller App error</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_CTys37LFSsQ/RnDHIQt13oI/AAAAAAAAABk/W_WaNr0ggWI/s1600-h/service+and+controller+app.JPG"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_CTys37LFSsQ/RnDHIQt13oI/AAAAAAAAABk/W_WaNr0ggWI/s320/service+and+controller+app.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5075775724786671234" /&gt;&lt;/a&gt; Do you guys ever met this problem before? I've search the net about this problem but i still not found the solution to solve the problem. From my reading, many people that have the same problem with me have scan their computers with anti virus, HijackMe and other tools but it seems it isn't a virus or worm. I also think that way. I haven't met a virus named sasser (definition of sasser worm &lt;a href="http://www.google.com.my/search?source=ig&amp;hl=en&amp;q=define%3A+sasser&amp;btnG=Google+Search&amp;meta="&gt;here&lt;/a&gt;) that people said it will shutdown your computer automatically. However from what i've heard before, one of the step to prevent the sasser from shutdown our pc automatically is to type &lt;span style="font-weight:bold;"&gt;&lt;a href="http://en.wikipedia.org/wiki/Sasser_%28computer_worm%29#Mitigation"&gt;shutdown -a&lt;/a&gt;&lt;/span&gt; from a command prompt. &lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_CTys37LFSsQ/RnDLDgt13pI/AAAAAAAAABs/pvD6-SEPBCM/s1600-h/System+Shutdown.JPG"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_CTys37LFSsQ/RnDLDgt13pI/AAAAAAAAABs/pvD6-SEPBCM/s320/System+Shutdown.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5075780041228803730" /&gt;&lt;/a&gt;It will solve the shutdown problem for a while but in my case, that i think wasn't a sasser problem, my pc will ok just for a while but when i want to close another application or shutdown my pc, it will start to hang and i have to force reboot :( .&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-1327881175714381569?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/sP0nTWQuOV_V_QGeAS5wANfSuwo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/sP0nTWQuOV_V_QGeAS5wANfSuwo/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/sP0nTWQuOV_V_QGeAS5wANfSuwo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/sP0nTWQuOV_V_QGeAS5wANfSuwo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/OKRbbwUMpjc" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/1327881175714381569?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/1327881175714381569?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/OKRbbwUMpjc/services-and-controller-app.html" title="Services and Controller App error" /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_CTys37LFSsQ/RnDHIQt13oI/AAAAAAAAABk/W_WaNr0ggWI/s72-c/service+and+controller+app.JPG" height="72" width="72" /><feedburner:origLink>http://dinmasterpiece.blogspot.com/2007/06/services-and-controller-app.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DE8CR3c8fyp7ImA9WB5SFkQ.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-6269302899882456293</id><published>2007-06-13T08:37:00.000+08:00</published><updated>2007-06-13T09:07:46.977+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-06-13T09:07:46.977+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="open source" /><title>10 things we didn't know about open source</title><content type="html">I've read an article written by James Archibald about things that we maybe dont know about open source. I like open source, not just because it's free but it also because we can see it's source code, unlikely Microsoft or other proprietary software. You know what is proprietary software? Well let me introduce to you what is proprietary software. &lt;br /&gt;&lt;br /&gt;Much of the software users are accustomed to is known as proprietary software. With proprietary software users are not allowed to see the source code. Nor are they able to modify the code for their own use or to distribute to others. In some cases certain customers are allowed to view the source code - sometimes for an additional fee - but even then they are not able to alter and re-distribute the software. Examples of proprietary software include Microsoft's Office suite. Easy to say proprietary software can be define as &lt;span style="font-weight:bold;"&gt;software that offered for sale or license where the vendor controls the source code.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Here are the ten things which you may well not have know about open source software.&lt;br /&gt;&lt;br /&gt;1. Open Source predates proprietary software.&lt;br /&gt;&lt;br /&gt;The common view is that open source is some sort of radical new idea, but in fact, although not expressly called open source, early computer software's source code was open to viewing and changes. In the early days of computing, when mainframes would be delivered in trucks, companies were supplied software and were actually expected to modify it. This model was the norm and it was only around 1976 when Bill Gates posted a famous letter on the Homebrew Computing Club demanding that people stop sharing his Altair BASIC that the idea of proprietary software began to emerge. The Free Software Foundation was started in 1985 in response to what was seen as the new idea of keeping software code secret.&lt;br /&gt;&lt;br /&gt;2. Apache kept the Web flat and free&lt;br /&gt;&lt;br /&gt;Apache was launched in 1995, at the time Netscape was the dominant Web browser and there was a fear that if the same company could own the browser market and the server market they would have too much control and could charge companies a tax of sorts for web hosting. Apache's launch was done with a dual purpose. There was the pragmatic aspect of combining efforts for better development and there was the idealistic aspect of keeping HTTP (Hypertext transfer protocol) as an open standard.&lt;br /&gt;&lt;br /&gt;3. Open SSL kept cryptography available to everyone&lt;br /&gt;&lt;br /&gt;Open SSL is a library of mathematical routines used for encryption of data that Behlendorf believes is the best great example of "security through transparency". At the time the US military was very concerned about the dangers that data encryption might serve and the government classified encryption of greater than 40 bits as "ammunition", making it illegal to export any software with more than 40 bit encryption (This is a very insecure and easily cracked encryption level, current security standards sit at 128 bit encryption). Open SSL, which was able to provide encryption on an open source platform rendered this law moot. Because the code that was responsible for the encryption could be seen, it could be trusted. Incidentally, this encryption law still exists within the US, but it does not apply to open source software.&lt;br /&gt;&lt;br /&gt;4. Open Source helped free the human genome&lt;br /&gt;&lt;br /&gt;Before the mapping of the human genome had been completed, a commercial consortium, Celera, was sequencing the genome with the intention of patenting it. This preposterous idea of patenting a discovery rather than an invention began to get many geneticists concerned. In about 2002 a doctoral student, Jim Kent, wrote 10 000 lines of Perl code to make a program that could perform the number crunching of raw data that was necessary in sequencing the genome. This program was then run over 100 Linux servers and the entire genome was successfully sequenced a few months before Celera finished.&lt;br /&gt;&lt;br /&gt;5. Microsoft loves open source&lt;br /&gt;&lt;br /&gt;As odd as it sounds, Behlendorf explained that Microsoft has benefitted from open source development and also included software, which although not labeled "open source", had the source code openly provided. The first use of TCP/IP in Windows was a port of Berkley's code. He sited the work that Microsoft was doing with open source programs such as MySQL, SugarCRM and JBoss. Codeshare, Channel 9 and other websites were also cited as positive signs that the proprietary giant is openeing further, as Behlendorf put it, "dragged kicking and screaming into the future".&lt;br /&gt;&lt;br /&gt;6. Altruism is not the only reason why people contribute to open source software&lt;br /&gt;&lt;br /&gt;Many contributors use the software professionally and find that doing things such as fixing bugs and adding features is much easier when collaborating within a group. According to a survey done in 2006, the existing base of FLOSS represents 131 000 real person years of developmental effort. The costs of sharing code are low while the benefits are high.&lt;br /&gt;&lt;br /&gt;6. Online communities can actually get things done&lt;br /&gt;&lt;br /&gt;While international collaboration between various volounteer contributors is innately prone to chaotic disorder, there is a new kind of software management that is emerging that maximises the number of volounteers and their potential to make a difference. Because there is transparency, anyone can see what has been done on the project, making it easy to join in on the project and get up to speed.&lt;br /&gt;&lt;br /&gt;7. The most important freedom: the right to fork&lt;br /&gt;&lt;br /&gt;Anyone can create their own version of an existing piece of open source software. This is important in preventing a vendor lock-in. This aspect of OSS is the essential check on the power of the development leader as they must be open enough to the needs and wants of the team that they do not drive people to another project.&lt;br /&gt;&lt;br /&gt;9. Open source can still change the world&lt;br /&gt;&lt;br /&gt;Behlendorf strongly believes in the power of open source to make the world a better place, citing many examples. Within government, he believes that open source software can help immensely in counting election votes in a trustworthy way and also with transparency of government's actions and policy. For countries such as China where there is restricted acces on the internet, open source has already been successful on helping people within these countries get greater access by overcoming the censorship exerted on them. Third world development can benefite greatly through initiatives such as the One Laptop Per Child project which runs on entirely open source software for the dual purpose of making it cheaper to produce and so that it can be modified to suite each country's specific needs. Fighting digital rights management was another example given.&lt;br /&gt;&lt;br /&gt;10. Open source needs your help (whoever you are)&lt;br /&gt;&lt;br /&gt;One doesn't have to be a programmer to be able to help out on open source projects. To begin you can help by just trying it out. Recommended programs that can be run off a Windows system include the Open Office office suite and the Firefox Web browser. There are a number of "live" CD distributions of Linux that can be tried out without affecting your CD, such as Ubuntu. Open source development happens through forums and participation in a forum can help. If you encounter a bu in an open source application, reporting it can also be helpful to the developers. Another way for bilingual non-programmers to help is in translating the text of the program.&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-6269302899882456293?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/5Aptz54CbK-tcVAst1RtKtSDQaw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5Aptz54CbK-tcVAst1RtKtSDQaw/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/5Aptz54CbK-tcVAst1RtKtSDQaw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5Aptz54CbK-tcVAst1RtKtSDQaw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/V70Yk0VmgN4" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/6269302899882456293?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/6269302899882456293?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/V70Yk0VmgN4/james-archibald-10-things-we-didnt-know.html" title="10 things we didn't know about open source" /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://dinmasterpiece.blogspot.com/2007/06/james-archibald-10-things-we-didnt-know.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEAMRno_cSp7ImA9WB9TE0k.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-3151428271376117644</id><published>2007-05-23T11:09:00.001+08:00</published><updated>2007-09-21T11:53:07.449+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-09-21T11:53:07.449+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="web site" /><title>Why Do People Need Web Sites?</title><content type="html">The procedure requires a creative approach as well. Basic web page can be created using front page, dreamweaver or even a microsoft word. The idea of the web site must be promptly thought over: not so much, but with zest! Not to overdo with the ideas – is key, because when a person enters the site, he needs to find first of all, what he is interested in, and what kind of information that he want. &lt;br /&gt;&lt;br /&gt;Nowadays, Web design is of a great request over the Internet. Web design lies not only in the creation of web pages but also all the content and management is included. &lt;br /&gt;&lt;br /&gt;This process includes an entire complex of tasks and objectives set before the team, consisting of a web designer, programmer, maker-up, optimizer and other specialists, and depends on the complexity and the specificity of the site. The development of a web site starts from the detail studying of the client’s involvement, his scope of ability, improvement of his goals. &lt;br /&gt;&lt;br /&gt;But it doesn’t mean that a consumer’s role is “petty” here. No, in no way! A client, in his turn, must plainly decide for himself what he wants people to see on his future site, in order, to have solid and authoritative web page and capture the visitors’ attention. &lt;br /&gt;&lt;br /&gt;If the customer does in such a way – it will be in a great help for the web designer and the rest of the team. Cooperation and joining forces together are very important elements here, with an eye to avoid misunderstanding. &lt;br /&gt;&lt;br /&gt;Then the conception and technical tasks of the site are worked out on the basis of the received information from the client. &lt;br /&gt;&lt;br /&gt;People create web sites on different purposes: for big businesses, to sell or buy something, to advertise, for entertainment and chat, or just for themselves. The clients can host their sites on the free or paid servers as well. The difference between them, of course exists, while paid servers are more reliable and require fee (per month or year). But if a person is just a beginner in the sphere of web design and wants to have his own site – he can make an attempt to allocate it on the free server. Though, here again, mostly, depends on the tasks and involvement of the client. &lt;br /&gt;&lt;br /&gt;Having a web site is not so much the question of prestige as one more possibility to announce and advertise the business today. Many companies develop themselves with the help of web design: earn money, upgrade their image; it is a great advantage to find new partners and to draw the clients’ attention and develop the business. &lt;br /&gt;&lt;br /&gt;Web sites are not only for the big businesses. Everybody, who has some ideas and wants to share them with others, in order to approve himself or something like that, can get a place on a free server. &lt;br /&gt;&lt;br /&gt;Web site is a “small miracle” in the Internet, which is targeted presentation of various information. &lt;br /&gt;&lt;br /&gt;This article is written by Anna Ryaskova and added a little by me from free article web site, don't know what to post but i like this article.&lt;br /&gt;  &lt;a href="http://tinyurl.com/2xyecl"&gt;&lt;img src="http://tinyurl.com/2l6ty9"&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-3151428271376117644?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/o2Wid9hwyjaJ960-EnC9j7gNxV4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/o2Wid9hwyjaJ960-EnC9j7gNxV4/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/o2Wid9hwyjaJ960-EnC9j7gNxV4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/o2Wid9hwyjaJ960-EnC9j7gNxV4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/v103d8Yv5Cg" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/3151428271376117644?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/3151428271376117644?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/v103d8Yv5Cg/why-do-people-need-web-sites.html" title="Why Do People Need Web Sites?" /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://dinmasterpiece.blogspot.com/2007/05/why-do-people-need-web-sites.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkMBSXs6eCp7ImA9WB9SF0k.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-934388911859787916</id><published>2007-05-22T14:41:00.000+08:00</published><updated>2007-10-07T17:14:18.510+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-10-07T17:14:18.510+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="virus" /><category scheme="http://www.blogger.com/atom/ns#" term="worm" /><category scheme="http://www.blogger.com/atom/ns#" term="computer problem" /><title>Restricted by Bro Act - Worm</title><content type="html">Do you have ever found this worm? My uncle's computer have been effected by this worm last quite often. Usually the step that i use to solve a computer's problem that being affected by a virus or worm is just update the virus definition and they'll gone (no need to format pc). But sometimes the virus is very cleaver, just like this one. Very very cleaver... help me!!!&lt;br /&gt;&lt;br /&gt;Why did i say this virus is cleaver? Because this virus or worm will take over your computer (that's why the virus display "Restricted by Bro Act" at all window bar or browser) such as control panel, ms-dos, system administration and all folders. I already tried to open a folder named "virus removal" in my thumbdrive, and suddenly this virus automatically close the folder, and i cannot browse my folder. I also tried to run removal tools from ms-dos command, but again, the virus can read my mind and close the ms-dos...Actually the virus didn't read my mind, it just read the folder or the application name, and if it contain word such as "removal", "anti virus", or something like that, the virus will automatically shut it down to prevent any healing action taken on the computer.&lt;br /&gt;&lt;br /&gt;One thing that you can try... download an application called killvb.exe that will kill all application running either in background or currently running. After that you can execute any third party application that can see what application is running in the background, shutdown all strange application, and after that you can install anti virus and update it, and run full scan...good luck, i've try it once and it is successfully. :)&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-934388911859787916?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Xf15iMdoZ425rA3F0983nFsEWos/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Xf15iMdoZ425rA3F0983nFsEWos/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/Xf15iMdoZ425rA3F0983nFsEWos/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Xf15iMdoZ425rA3F0983nFsEWos/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/FYUH2xX3VXE" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/934388911859787916?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/934388911859787916?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/FYUH2xX3VXE/restricted-by-bro-act-worm.html" title="Restricted by Bro Act - Worm" /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://dinmasterpiece.blogspot.com/2007/05/restricted-by-bro-act-worm.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A08HRX8zeSp7ImA9WB5SFEg.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-1514662656486684882</id><published>2007-05-21T18:33:00.000+08:00</published><updated>2007-06-10T15:17:14.181+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-06-10T15:17:14.181+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Managing time" /><title>How to get more done in less time...</title><content type="html">&lt;a href="http://1.bp.blogspot.com/_CTys37LFSsQ/Rmt69gt13fI/AAAAAAAAAAc/9n3LUQ1aAqY/s1600-h/0965878848.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_CTys37LFSsQ/Rmt69gt13fI/AAAAAAAAAAc/9n3LUQ1aAqY/s320/0965878848.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5074284602335813106" /&gt;&lt;/a&gt;&lt;br /&gt;These are the main points that i can remember after finish reading an online book under the title "175 Ways to Get More Done in Less Time! " by David Cottrell and Mark C. Layton-CornerStone Leadership Institute © 2004... really usefull if you always don't have enough time to finish up your work (i don't like to do my job after work hour because i'm married right now... before this i always go home at least 11 o'clock at night...)&lt;br /&gt;&lt;br /&gt;1) Know where your time is going&lt;br /&gt;2) Focus on starting task&lt;br /&gt;3) Plan for unexpected event. Finish it quickly&lt;br /&gt;4) Writing things down to minimize confusion and stress&lt;br /&gt;5) Categorize to do list into A, B, and C priority&lt;br /&gt;6) Write down into a proper notes with date&lt;br /&gt;7) Try organizer tool&lt;br /&gt;8) Use only one time management system&lt;br /&gt;9) Take a speed reading course&lt;br /&gt;10)Simplify your password. Simple but strong!&lt;br /&gt;11)Book 2 hours on Saturday to reorganize yourself&lt;br /&gt;12)Create a quite time for planning&lt;br /&gt;13)Start to throw unimportant things away&lt;br /&gt;14)Organize your desk&lt;br /&gt;15)Setup a place to store 'lovely thing'. Throw it away after 3 month if not being use&lt;br /&gt;16)Keep the paper move!!!&lt;br /&gt;&lt;br /&gt;Hope this can help you all!!! :)&lt;a href="http://3.bp.blogspot.com/_CTys37LFSsQ/Rmt5NAt13eI/AAAAAAAAAAU/lMXwLq-H3Ps/s1600-h/cmbiz003_thm.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_CTys37LFSsQ/Rmt5NAt13eI/AAAAAAAAAAU/lMXwLq-H3Ps/s320/cmbiz003_thm.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5074282669600529890" /&gt;&lt;/a&gt;&lt;br /&gt;  &lt;a href="http://tinyurl.com/2xyecl"&gt;&lt;img src="http://tinyurl.com/2l6ty9"&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-1514662656486684882?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/-cy0mw-yJe9Hie8nV4i7cMjg6u8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-cy0mw-yJe9Hie8nV4i7cMjg6u8/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/-cy0mw-yJe9Hie8nV4i7cMjg6u8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-cy0mw-yJe9Hie8nV4i7cMjg6u8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/Av44rnMdKjs" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/1514662656486684882?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/1514662656486684882?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/Av44rnMdKjs/how-to-get-more-done-in-less-time.html" title="How to get more done in less time..." /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_CTys37LFSsQ/Rmt69gt13fI/AAAAAAAAAAc/9n3LUQ1aAqY/s72-c/0965878848.jpg" height="72" width="72" /><feedburner:origLink>http://dinmasterpiece.blogspot.com/2007/05/how-to-get-more-done-in-less-time.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUMARn4yfSp7ImA9WB9TE0k.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-7926248588902455081</id><published>2007-05-21T14:56:00.001+08:00</published><updated>2007-09-21T12:04:07.095+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-09-21T12:04:07.095+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="computer problem" /><title>How to stop beep sound from your windows...</title><content type="html">Beep sound from your pc very annoying? I use my pc to access as/400 machine. My company's application (insurance system) always give me beep sound if i do not fill in the important field. Very annoying!!! I just want to test and understand the system. I don't know which field is the important field (because i'm a new staff). The beeping sound is so loud that all people in my office can hear it (it shows that i'm accessing the system, my bos know that i'm doing my work, training.. but it is so loud!!! beep.. beep...). I've turn off the sound from the Volume Control, but the beeping sound still there. Oooo, it's the server/machine AS/400 that give the order to my pc to initiate the beep sound (i think)... I must kill that sound... But how???&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_CTys37LFSsQ/Rmt75Qt13gI/AAAAAAAAAAk/wV8u0z8bcNQ/s1600-h/beep.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_CTys37LFSsQ/Rmt75Qt13gI/AAAAAAAAAAk/wV8u0z8bcNQ/s320/beep.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5074285628832996866" /&gt;&lt;/a&gt;&lt;br /&gt;1) Open Command Prompt&lt;br /&gt;2) Type &lt;strong&gt;net stop beep&lt;/strong&gt;&lt;br /&gt;3) Problem solve, hehehe&lt;br /&gt;  &lt;a href="http://tinyurl.com/2xyecl"&gt;&lt;img src="http://tinyurl.com/2l6ty9"&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-7926248588902455081?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/fVs1cWpHfKvMizc6td1gtaqQk6Q/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fVs1cWpHfKvMizc6td1gtaqQk6Q/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/fVs1cWpHfKvMizc6td1gtaqQk6Q/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fVs1cWpHfKvMizc6td1gtaqQk6Q/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/zQzL6kCOUsw" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/7926248588902455081?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/7926248588902455081?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/zQzL6kCOUsw/how-to-stop-beep-sound-from-as400-or.html" title="How to stop beep sound from your windows..." /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_CTys37LFSsQ/Rmt75Qt13gI/AAAAAAAAAAk/wV8u0z8bcNQ/s72-c/beep.JPG" height="72" width="72" /><feedburner:origLink>http://dinmasterpiece.blogspot.com/2007/05/how-to-stop-beep-sound-from-as400-or.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A08CRHw_cSp7ImA9WB5SFEg.&quot;"><id>tag:blogger.com,1999:blog-4648549616085857259.post-103782260915425393</id><published>2007-05-21T14:56:00.000+08:00</published><updated>2007-06-10T15:17:45.249+08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-06-10T15:17:45.249+08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="stress management" /><title>How to manage stress?</title><content type="html">How to reduce your stress? Well below are some tips that you can do to manage your stress in the office...&lt;br /&gt;&lt;br /&gt;1) &lt;strong&gt;Learn to say no&lt;/strong&gt; &lt;br /&gt;2) &lt;strong&gt;Change a job you love&lt;/strong&gt; &lt;br /&gt;3) &lt;strong&gt;Think ahead..anticipated...do it or get it done&lt;/strong&gt; &lt;br /&gt;4) &lt;strong&gt;Organize your mind and your desk every 5 minutes&lt;/strong&gt; &lt;br /&gt;5) &lt;strong&gt;Accept what you cannot change and change what you cannot accept&lt;/strong&gt; &lt;br /&gt;6) &lt;strong&gt;Ask even though it is a stupid question&lt;/strong&gt; &lt;br /&gt;7) &lt;strong&gt;Learn to say sorry and thank you&lt;/strong&gt; &lt;br /&gt;8) &lt;strong&gt;In a no win-lost situation no point to argue &lt;/strong&gt;&lt;br /&gt;9) &lt;strong&gt;Don't act when you are mad especially the first 5 second&lt;/strong&gt; &lt;br /&gt;10) &lt;strong&gt;Never go to bed with an argument unsettled&lt;/strong&gt; &lt;br /&gt;11) &lt;strong&gt;Never expect something special from anyone&lt;/strong&gt; &lt;br /&gt;12) &lt;strong&gt;Make decision&lt;/strong&gt; &lt;br /&gt;13) &lt;strong&gt;Don't set your target to high, set an achievable target&lt;/strong&gt;&lt;br /&gt;  &lt;a href="http://tinyurl.com/2xyecl"&gt;&lt;img src="http://tinyurl.com/2l6ty9"&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-1560867535105323";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
google_ad_channel = "";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4648549616085857259-103782260915425393?l=dinmasterpiece.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/f_8k4IKTl8xlPsKCoRZgysnu6B8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/f_8k4IKTl8xlPsKCoRZgysnu6B8/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/f_8k4IKTl8xlPsKCoRZgysnu6B8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/f_8k4IKTl8xlPsKCoRZgysnu6B8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/rVrE/~4/mlZU5SFSr-o" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/103782260915425393?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4648549616085857259/posts/default/103782260915425393?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/rVrE/~3/mlZU5SFSr-o/how-to-manage-stress.html" title="How to manage stress?" /><author><name>izzuddin</name><uri>http://www.blogger.com/profile/11050140010683809897</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><feedburner:origLink>http://dinmasterpiece.blogspot.com/2007/05/how-to-manage-stress.html</feedburner:origLink></entry></feed>

