<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-2768974783978601654</atom:id><lastBuildDate>Wed, 16 Jul 2014 15:07:12 +0000</lastBuildDate><category>e-books</category><category>Operating System lab programs</category><category>Data Structures Programs</category><category>Networks Programming</category><category>System Software Programming</category><category>JAVA</category><category>OOPS using C++</category><category>2-d transformation.</category><category>Microprocessor Programs</category><category>computer graphics</category><title>LIVE LEARNERS</title><description>&amp;quot;If I have seen further than others, it is by standing upon the shoulders of giants.&amp;quot; &lt;br&gt;&#xa;      --Sir Isaac Newton</description><link>http://livelearners.blogspot.com/</link><managingEditor>noreply@blogger.com (Dayal)</managingEditor><generator>Blogger</generator><openSearch:totalResults>104</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-7571106148502754237</guid><pubDate>Tue, 30 Aug 2011 12:36:00 +0000</pubDate><atom:updated>2011-08-30T05:36:28.656-07:00</atom:updated><title>Cohen Sutherland algorithm</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;The cohen Sutherland algorithm can be implemented with the help of the following program.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;#include&lt;stdio.h&gt;&lt;/stdio.h&gt;&lt;br /&gt;&lt;br /&gt;#include&lt;conio.h&gt;&lt;/conio.h&gt;&lt;br /&gt;&lt;br /&gt;#include&lt;dos.h&gt;&lt;/dos.h&gt;&lt;br /&gt;&lt;br /&gt;#include&lt;graphics.h&gt;&lt;/graphics.h&gt;&lt;br /&gt;&lt;br /&gt;#include&lt;stdlib.h&gt;&lt;/stdlib.h&gt;&lt;br /&gt;&lt;br /&gt;typedef struct coord&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;int x,y;&lt;br /&gt;&lt;br /&gt;char code[4];&lt;br /&gt;&lt;br /&gt;}PT;&lt;br /&gt;&lt;br /&gt;void drawwindow();&lt;br /&gt;&lt;br /&gt;void drawline(PT p1,PT p2,int c1);&lt;br /&gt;&lt;br /&gt;PT setcode(PT p);&lt;br /&gt;&lt;br /&gt;int visibility(PT p1,PT p2);&lt;br /&gt;&lt;br /&gt;PT resetendpt(PT p1,PT p2);&lt;br /&gt;&lt;br /&gt;void main()&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;int gd=DETECT,gm,v;&lt;br /&gt;&lt;br /&gt;PT p1,p2,ptemp;&lt;br /&gt;&lt;br /&gt;initgraph(&amp;amp;gd,&amp;amp;gm,&quot;&quot;);&lt;br /&gt;&lt;br /&gt;cleardevice();&lt;br /&gt;&lt;br /&gt;printf(&quot;\t\tCOHEN-SUTHERLAND LINE CLIPPING ALGORITHM&quot;);&lt;br /&gt;&lt;br /&gt;printf(&quot;\nEnter the two end points p1(x,y)&quot;);&lt;br /&gt;&lt;br /&gt;scanf(&quot;%d%d&quot;,&amp;amp;p1.x,&amp;amp;p1.y);&lt;br /&gt;&lt;br /&gt;printf(&quot;Enter the two end points p2(x,y):&quot;);&lt;br /&gt;&lt;br /&gt;scanf(&quot;%d%d&quot;,&amp;amp;p2.x,&amp;amp;p2.y);&lt;br /&gt;&lt;br /&gt;cleardevice();&lt;br /&gt;&lt;br /&gt;printf(&quot;\t\tCLIPPING WINDOW&quot;);&lt;br /&gt;&lt;br /&gt;drawwindow();&lt;br /&gt;&lt;br /&gt;getch();&lt;br /&gt;&lt;br /&gt;printf(&quot;\tCOHEN-SUTHERLAND LINE CLIPPING ALGORITHM&quot;);&lt;br /&gt;&lt;br /&gt;printf(&quot;\n\t\tBEFORE CLIPPING&quot;);&lt;br /&gt;&lt;br /&gt;drawline(p1,p2,4);&lt;br /&gt;&lt;br /&gt;getch();&lt;br /&gt;&lt;br /&gt;p1=setcode(p1);&lt;br /&gt;&lt;br /&gt;p2=setcode(p2);&lt;br /&gt;&lt;br /&gt;v=visibility(p1,p2);&lt;br /&gt;&lt;br /&gt;switch(v)&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;case 0:&lt;br /&gt;&lt;br /&gt;cleardevice();&lt;br /&gt;&lt;br /&gt;//printf(&quot;\t\tCLIPPING WINDOW&quot;);&lt;br /&gt;&lt;br /&gt;drawwindow();&lt;br /&gt;&lt;br /&gt;drawline(p1,p2,15);&lt;br /&gt;&lt;br /&gt;break;&lt;br /&gt;&lt;br /&gt;case 1:&lt;br /&gt;&lt;br /&gt;cleardevice();&lt;br /&gt;&lt;br /&gt;drawwindow();&lt;br /&gt;&lt;br /&gt;break;&lt;br /&gt;&lt;br /&gt;case 2:&lt;br /&gt;&lt;br /&gt;cleardevice();&lt;br /&gt;&lt;br /&gt;p1=resetendpt(p1,p2);&lt;br /&gt;&lt;br /&gt;p2=resetendpt(p2,p1);&lt;br /&gt;&lt;br /&gt;drawwindow();&lt;br /&gt;&lt;br /&gt;printf(&quot;\tCOHEN-SUTHERLAND LINE CLIPPING ALGORITHM&quot;);&lt;br /&gt;&lt;br /&gt;printf(&quot;\n\t\tAFTER CLIPPING&quot;);&lt;br /&gt;&lt;br /&gt;drawline(p1,p2,15);&lt;br /&gt;&lt;br /&gt;break;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;getch();&lt;br /&gt;&lt;br /&gt;closegraph();&lt;br /&gt;&lt;br /&gt;//return(0);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void drawwindow()&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;setcolor(RED);&lt;br /&gt;&lt;br /&gt;setlinestyle(DOTTED_LINE, 1, 1);&lt;br /&gt;&lt;br /&gt;line(150,100,100,100);&lt;br /&gt;&lt;br /&gt;line(150,100,150,50);&lt;br /&gt;&lt;br /&gt;line(450,100,500,100);&lt;br /&gt;&lt;br /&gt;line(450,100,450,50);&lt;br /&gt;&lt;br /&gt;line(450,350,500,350);&lt;br /&gt;&lt;br /&gt;line(450,350,450,400);&lt;br /&gt;&lt;br /&gt;line(150,350,150,400);&lt;br /&gt;&lt;br /&gt;line(150,350,100,350) ;&lt;br /&gt;&lt;br /&gt;line(150,100,100,100);&lt;br /&gt;&lt;br /&gt;line(150,100,150,50);&lt;br /&gt;&lt;br /&gt;setlinestyle(SOLID_LINE, 1, 1);&lt;br /&gt;&lt;br /&gt;line(150,100,450,100);&lt;br /&gt;&lt;br /&gt;line(450,100,450,350);&lt;br /&gt;&lt;br /&gt;line(450,350,150,350);&lt;br /&gt;&lt;br /&gt;line(150,350,150,100);&lt;br /&gt;&lt;br /&gt;outtextxy(450,30,&quot;1001&quot;);&lt;br /&gt;&lt;br /&gt;outtextxy(470,200,&quot;1000&quot;);&lt;br /&gt;&lt;br /&gt;outtextxy(470,370,&quot;1010&quot;);&lt;br /&gt;&lt;br /&gt;outtextxy(300,370,&quot;0010&quot;);&lt;br /&gt;&lt;br /&gt;outtextxy(120,370,&quot;0110&quot;);&lt;br /&gt;&lt;br /&gt;outtextxy(120,200,&quot;0100&quot;);&lt;br /&gt;&lt;br /&gt;outtextxy(120,30,&quot;0101&quot;);&lt;br /&gt;&lt;br /&gt;outtextxy(300,30,&quot;0001&quot;);&lt;br /&gt;&lt;br /&gt;outtextxy(300,200,&quot;0000&quot;);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void drawline(PT p1,PT p2,int c1)&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;setcolor(c1);&lt;br /&gt;&lt;br /&gt;line(p1.x,p1.y,p2.x,p2.y);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;PT setcode(PT p)&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;PT ptemp;&lt;br /&gt;&lt;br /&gt;if(p.y&amp;lt;100)&lt;br /&gt;&lt;br /&gt;ptemp.code[0]=&#39;1&#39;;&lt;br /&gt;&lt;br /&gt;else&lt;br /&gt;&lt;br /&gt;ptemp.code[0]=&#39;0&#39;;&lt;br /&gt;&lt;br /&gt;if(p.y&amp;gt;350)&lt;br /&gt;&lt;br /&gt;ptemp.code[1]=&#39;1&#39;;&lt;br /&gt;&lt;br /&gt;else&lt;br /&gt;&lt;br /&gt;ptemp.code[1]=&#39;0&#39;;&lt;br /&gt;&lt;br /&gt;if(p.x&amp;gt;200)&lt;br /&gt;&lt;br /&gt;ptemp.code[2]=&#39;1&#39;;&lt;br /&gt;&lt;br /&gt;else&lt;br /&gt;&lt;br /&gt;ptemp.code[2]=&#39;0&#39;;&lt;br /&gt;&lt;br /&gt;if(p.x&amp;lt;150)&lt;br /&gt;&lt;br /&gt;ptemp.code[3]=&#39;1&#39;;&lt;br /&gt;&lt;br /&gt;else&lt;br /&gt;&lt;br /&gt;ptemp.code[3]=&#39;0&#39;;&lt;br /&gt;&lt;br /&gt;ptemp.x=p.x;&lt;br /&gt;&lt;br /&gt;ptemp.y=p.y;&lt;br /&gt;&lt;br /&gt;return(ptemp);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;int visibility(PT p1,PT p2)&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;int i,flag=0;&lt;br /&gt;&lt;br /&gt;for(i=0;i&amp;lt;4;i++)&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;if((p1.code[i]!=&#39;0&#39;)||(p2.code[i]!=&#39;0&#39;))&lt;br /&gt;&lt;br /&gt;flag=1;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;if(flag==0)&lt;br /&gt;&lt;br /&gt;return(0);&lt;br /&gt;&lt;br /&gt;for(i=0;i&amp;lt;4;i++)&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;if((p1.code[i]==p2.code[i])&amp;amp;&amp;amp;(p1.code[i]==&#39;1&#39;))&lt;br /&gt;&lt;br /&gt;flag=0;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;if(flag==0)&lt;br /&gt;&lt;br /&gt;return(1);&lt;br /&gt;&lt;br /&gt;return(2);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;PT resetendpt(PT p1,PT p2)&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;PT temp;&lt;br /&gt;&lt;br /&gt;int x,y,i;&lt;br /&gt;&lt;br /&gt;float m,k;&lt;br /&gt;&lt;br /&gt;if(p1.code[3]==&#39;1&#39;)&lt;br /&gt;&lt;br /&gt;x=150;&lt;br /&gt;&lt;br /&gt;if(p1.code[2]==&#39;1&#39;)&lt;br /&gt;&lt;br /&gt;x=450;&lt;br /&gt;&lt;br /&gt;if((p1.code[3]==&#39;1&#39;)||(p1.code[2]==&#39;1&#39;))&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;m=(float)(p2.y-p1.y)/(p2.x-p1.x);&lt;br /&gt;&lt;br /&gt;k=(p1.y+(m*(x-p1.x)));&lt;br /&gt;&lt;br /&gt;temp.y=k;&lt;br /&gt;&lt;br /&gt;temp.x=x;&lt;br /&gt;&lt;br /&gt;for(i=0;i&amp;lt;4;i++)&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;temp.code[i]=p1.code[i];&lt;br /&gt;&lt;br /&gt;if(temp.y&amp;lt;=350 &amp;amp;&amp;amp; temp.y&amp;gt;=100)&lt;br /&gt;&lt;br /&gt;return(temp);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;if(p1.code[0]==&#39;1&#39;)&lt;br /&gt;&lt;br /&gt;y=100;&lt;br /&gt;&lt;br /&gt;if(p1.code[1]==&#39;1&#39;)&lt;br /&gt;&lt;br /&gt;y=350;&lt;br /&gt;&lt;br /&gt;if((p1.code[0]==&#39;1&#39;)||(p1.code[1]==&#39;1&#39;))&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;m=(float)(p2.y-p1.y)/(p2.x-p1.x);&lt;br /&gt;&lt;br /&gt;k=(float)p1.x+(float)(y-p1.y)/m;&lt;br /&gt;&lt;br /&gt;temp.y=y;&lt;br /&gt;&lt;br /&gt;temp.x=k;&lt;br /&gt;&lt;br /&gt;for(i=0;i&amp;lt;4;i++)&lt;br /&gt;&lt;br /&gt;temp.code[i]=p1.code[i];&lt;br /&gt;&lt;br /&gt;return(temp);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;else&lt;br /&gt;&lt;br /&gt;return(p1);&lt;br /&gt;&lt;br /&gt;return(p2);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;/div&gt;</description><link>http://livelearners.blogspot.com/2011/08/cohen-sutherland-algorithm.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-1277689296821136841</guid><pubDate>Tue, 30 Aug 2011 12:34:00 +0000</pubDate><atom:updated>2011-08-30T05:34:49.073-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">2-d transformation.</category><category domain="http://www.blogger.com/atom/ns#">computer graphics</category><title>2-D transformations in computer graphics</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;br /&gt;&lt;pre style=&quot;white-space: pre-wrap; word-wrap: break-word;&quot;&gt;The basic 2-d transformations in computer graphics such as translation,rotation,scaling,shearing,scaling,reflection can be implemented in C with the help of the following program.&lt;/pre&gt;&lt;pre style=&quot;white-space: pre-wrap; word-wrap: break-word;&quot;&gt;&lt;/pre&gt;&lt;pre style=&quot;white-space: pre-wrap; word-wrap: break-word;&quot;&gt;#include&lt;stdio.h&gt;&lt;br /&gt;#include&lt;conio.h&gt;&lt;br /&gt;#include&lt;graphics.h&gt;&lt;br /&gt;#include&lt;dos.h&gt;&lt;br /&gt;#include&lt;math.h&gt;&lt;br /&gt;#include&lt;stdlib.h&gt;&lt;br /&gt;void menu();&lt;br /&gt;void input();&lt;br /&gt;void output();&lt;br /&gt;void translation();&lt;br /&gt;void rotation();&lt;br /&gt;void scaling();&lt;br /&gt;void shearing();&lt;br /&gt;void reflection();&lt;br /&gt;	int a[10][2],i,x,option,temp,angle,tx,ty,fx,fy,sh,k,n,axis,y;&lt;br /&gt;	float sx,sy;&lt;br /&gt;&lt;br /&gt;void menu()&lt;br /&gt;{&lt;br /&gt;		printf(&quot;menu\n&quot;);&lt;br /&gt;		printf(&quot;1.Translation\n&quot;);&lt;br /&gt;		printf(&quot;2.rotation\n&quot;);&lt;br /&gt;		printf(&quot;3.scaling\n&quot;);&lt;br /&gt;		printf(&quot;4.shearing\n&quot;);&lt;br /&gt;		printf(&quot;5.reflection\n&quot;);&lt;br /&gt;		printf(&quot;6.exit\n&quot;);&lt;br /&gt;		printf(&quot;enter the choice:&quot;);&lt;br /&gt;		scanf(&quot;%d&quot;,&amp;amp;option);&lt;br /&gt;		switch(option)&lt;br /&gt;		{&lt;br /&gt;			case  1:&lt;br /&gt;				input();&lt;br /&gt;				translation();&lt;br /&gt;				break;&lt;br /&gt;			case 2:&lt;br /&gt;				input();&lt;br /&gt;				rotation();&lt;br /&gt;				break;&lt;br /&gt;			case 3:&lt;br /&gt;				input();&lt;br /&gt;				scaling();&lt;br /&gt;				break;&lt;br /&gt;&lt;br /&gt;			case 4 :&lt;br /&gt;				input();&lt;br /&gt;				shearing();&lt;br /&gt;				break;&lt;br /&gt;			case 5:&lt;br /&gt;				input();&lt;br /&gt;				reflection();&lt;br /&gt;				break;&lt;br /&gt;			case 6:&lt;br /&gt;				exit(0);&lt;br /&gt;				break;&lt;br /&gt;		}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void input()&lt;br /&gt;{&lt;br /&gt;		printf(&quot;enter the number of vertices:&quot; );&lt;br /&gt;		scanf(&quot;%d&quot;,&amp;amp;n);&lt;br /&gt;		for(i=0;i&lt;n;i++) 0:&quot;);=&quot;&quot; 1=&quot;&quot; &lt;=&quot;&quot; a[i][0]=&quot;a[i][0]+tx;&quot; a[i][1]=&quot;a[i][1]+ty;&quot; angle:&quot;);=&quot;&quot; axis=&quot;&quot; cleardevice();=&quot;&quot; coordinates:&quot;);=&quot;&quot; delay(10);=&quot;&quot; else=&quot;&quot; factor\n&quot;);=&quot;&quot; fixed=&quot;&quot; for(i=&quot;0;i&amp;lt;n;i++)&quot; for=&quot;&quot; gd=&quot;DETECT,gm;&quot; getch();=&quot;&quot; if(axis=&quot;=1)&quot; if=&quot;&quot; initgraph(&amp;amp;gd,&amp;amp;gm,&quot;c:\\tcplus\\bgi&quot;);=&quot;&quot; int=&quot;&quot; k=&quot;(y*3.14)/180;&quot; line(a[i][0],a[i][1],a[i+1][0],a[i+1][1]);=&quot;&quot; main()=&quot;&quot; menu();=&quot;&quot; output();=&quot;&quot; output()=&quot;&quot; pivot=&quot;&quot; point:&quot;);=&quot;&quot; pre=&quot;&quot; printf(&quot;enter=&quot;&quot; reflection()=&quot;&quot; rotating=&quot;&quot; rotation()=&quot;&quot; scaling()=&quot;&quot; scaling=&quot;&quot; scanf(&quot;%d&quot;,&amp;amp;axis);=&quot;&quot; scanf(&quot;%d&quot;,&amp;amp;sh);=&quot;&quot; scanf(&quot;%d&quot;,&amp;amp;y);=&quot;&quot; scanf(&quot;%d%d&quot;,&amp;amp;fx,&amp;amp;fy);=&quot;&quot; scanf(&quot;%d%d&quot;,&amp;amp;tx,&amp;amp;ty);=&quot;&quot; scanf(&quot;%d%d%d%d&quot;,&amp;amp;a[i][0],&amp;amp;a[i][1],&amp;amp;a[i+1][0],&amp;amp;a[i+1][1]);=&quot;&quot; scanf(&quot;%f%f&quot;,&amp;amp;sx,&amp;amp;sy);=&quot;&quot; shear=&quot;&quot; shearing()=&quot;&quot; shearing=&quot;&quot; temp=&quot;a[i][0];&quot; the=&quot;&quot; then=&quot;&quot; tranformation=&quot;&quot; translation()=&quot;&quot; tx,ty:\n&quot;);=&quot;&quot; value:&quot;);=&quot;&quot; vertex=&quot;&quot; void=&quot;&quot; x-axis=&quot;&quot; y-axis=&quot;&quot; {=&quot;&quot; }=&quot;&quot;&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/n;i++)&gt;&lt;/stdlib.h&gt;&lt;/math.h&gt;&lt;/dos.h&gt;&lt;/graphics.h&gt;&lt;/conio.h&gt;&lt;/stdio.h&gt;&lt;/pre&gt;&lt;/div&gt;</description><link>http://livelearners.blogspot.com/2011/08/2-d-transformations-in-computer.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-6263811175158518352</guid><pubDate>Mon, 04 Jul 2011 17:38:00 +0000</pubDate><atom:updated>2011-07-04T10:38:27.498-07:00</atom:updated><title>Getting Started With Open Source aka Linux</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;Windows has made Engineers Dummy, especially Computer Science Engineers. For a Windows Geek using GUI and menus it must surely be an hard time getting used with the Terminal and Shell of the *nix platforms. Believe me the Unix Terminal/Shell is the best command line tool that any Operating system could have. Initially it will be little bit difficult to migrate from the menus to the commands, but once you get used with it, you will love to spend much more time with than with Your Girl Friend.&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://toomanytabs.com/blog/wp-content/uploads/2010/11/Bartopen.gif&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;223&quot; src=&quot;http://toomanytabs.com/blog/wp-content/uploads/2010/11/Bartopen.gif&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;As far as now, Get used up with some linux jargon and some open source tools installation available in this &lt;a href=&quot;https://sites.google.com/site/computerarchitects/my-files/foss-lab-manual-p1-1.0.pdf?attredirects=0&amp;amp;d=1&quot;&gt;manual&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Kudos to the Anna University Foss Group :-)&lt;/div&gt;</description><link>http://livelearners.blogspot.com/2011/07/getting-started-with-open-source-aka.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-7273887721175807676</guid><pubDate>Fri, 24 Dec 2010 19:20:00 +0000</pubDate><atom:updated>2010-12-24T11:20:13.971-08:00</atom:updated><title>Object Oriented analysis and Design Case Studies Collection and lab manuals</title><description>&lt;a class=&quot;vt-p&quot; href=&quot;https://sites.google.com/site/computerarchitects/my-files/ooad.rar?attredirects=0&amp;amp;d=1&quot;&gt;Download&lt;/a&gt;</description><link>http://livelearners.blogspot.com/2010/12/object-oriented-analysis-and-design.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-5081566842078319532</guid><pubDate>Fri, 24 Dec 2010 19:07:00 +0000</pubDate><atom:updated>2010-12-24T11:08:11.073-08:00</atom:updated><title>Rational Rose Enterprise Edition 7.7.0204.300</title><description>&lt;a class=&quot;vt-p&quot; href=&quot;http://torrents.thepiratebay.org/3692691/Rational_Rose_Enterprise_Edition_7.7.0204.3001_Release_Version__.3692691.TPB.torrent&quot;&gt;Download Torrent&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Courier New&#39;, Courier, monospace; font-size: 12px; line-height: 10px;&quot;&gt;&lt;/span&gt;&lt;br /&gt;&lt;pre style=&quot;font-family: &#39;Courier New&#39;, Courier, monospace; font-size: 11px; white-space: pre-wrap; word-wrap: break-word;&quot;&gt;[b]IBM« Rational« Rose« Enterprise provides a common modeling language for enabling faster creation of quality software[/b]&lt;br /&gt;&lt;br /&gt;It offers a modeling environment that supports code generation from models in Ada, ANSI C++, C++, CORBA, Java?/J2EE?, Visual C++« and Visual Basic«.&lt;br /&gt;&lt;br /&gt;* Includes Unified Modeling Language? (UML?) support and is one of the most comprehensive products in the Rational Rose family&lt;br /&gt;* Supports Analysis, ANSI C++, Rose J and Visual C++ patterns, Enterprise JavaBeans? 2.0, and forward and/or reverse engineering for some of the most common Java 1.5 constructs&lt;br /&gt;* Offers code quality analysis abilities and code generation, with configurable model-to-code synchronization capabilities, as well as more granular management and use of models with the separately controllable model components feature&lt;br /&gt;* Integrates with other IBM Rational lifecycle development tools as well as any SCC-compliant version control system, including IBM Rational ClearCase«&lt;br /&gt;* Includes a Web Modeling Add-In, which provides visualization, modeling and tools for developing Web applications&lt;br /&gt;* ? Provides UML modeling for database designs, with the ability to represent the integration of data and application requirements through logical and physical designs&lt;br /&gt;* Creates XML document type definitions (DTD) for use in your application&lt;br /&gt;* Operating systems supported: Windows&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;[b]System Requiriments[/b]&lt;br /&gt;[b][i]Operating Systems:[/i][/b] Windows 98 SE, Windows ME, Windows NT 4.0 - Service Pack 6, Windows 2000 - Service Pack 1, Windows XP Professional, Windows XP&lt;br /&gt;&lt;br /&gt;[b][i]Hardware Requirements:[/i][/b] Pentium-based 300 MHz minimum, 600 MHz recommended, PC-compatible computer system&lt;br /&gt;128 MB memory minimum, 256 MB memory recommended&lt;br /&gt;[u]Note:[/u] Memory requirements increase with the size of the Rose model. &lt;br /&gt;500 MB disk space (230 to run Rose, 270 to download/install) &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;[b][i][u]Install notes[/u][/i][/b]&lt;br /&gt;1) Run the setup, and choose install before licensing.&lt;br /&gt;2) Put rational_server_perm.dat in C:Program FilesRationalCommon (or wherever you installed)&lt;br /&gt;3) Enjoy!&lt;/pre&gt;</description><link>http://livelearners.blogspot.com/2010/12/rational-rose-enterprise-edition.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>2</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-6180345616461853540</guid><pubDate>Tue, 14 Dec 2010 14:35:00 +0000</pubDate><atom:updated>2010-12-14T06:35:49.528-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">e-books</category><title>Alfred V. Aho, Ravi Sethi Jeffrey D. Ullman, “Compilers- Principles, Techniques, and Tools”, Pearson Education Asia, 2007.</title><description>&lt;a class=&quot;vt-p&quot; href=&quot;http://www.megaupload.com/?d=HCDSMJGL&quot;&gt;Download Link&lt;/a&gt;</description><link>http://livelearners.blogspot.com/2010/12/alfred-v-aho-ravi-sethi-jeffrey-d.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-2066346753887333407</guid><pubDate>Tue, 14 Dec 2010 14:33:00 +0000</pubDate><atom:updated>2010-12-14T06:35:49.528-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">e-books</category><title>Craig Larman,&quot;Applying UML and Patterns: An Introduction to object-oriented Analysis and Design and iterative development”, Third Edition, Pearson Education, 2005</title><description>&lt;a class=&quot;vt-p&quot; href=&quot;http://www.scribd.com/doc/36837598/Applying-UML-and-Patterns-3rd-Ed-Craig-Larman-2004&quot;&gt;Download Link&lt;/a&gt;</description><link>http://livelearners.blogspot.com/2010/12/craig-larmanapplying-uml-and-patterns.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-3597437693527024148</guid><pubDate>Tue, 14 Dec 2010 14:30:00 +0000</pubDate><atom:updated>2010-12-14T06:35:49.528-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">e-books</category><title>John L. Hennessey and David A. Patterson, “ Computer architecture – A quantitative approach”, Morgan Kaufmann / Elsevier Publishers, 4th. edition, 2007.</title><description>&lt;a class=&quot;vt-p&quot; href=&quot;https://sites.google.com/site/computerarchitects/my-files/John_L._Hennessy%2C_David_A._Patterson_-_Computer_Architecture_-_A_Quantitative_Approach.pdf.torrent?attredirects=0&amp;amp;d=1&quot;&gt;Download Torrent&lt;/a&gt;</description><link>http://livelearners.blogspot.com/2010/12/john-l-hennessey-and-david-patterson.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-5781948153307563725</guid><pubDate>Tue, 14 Dec 2010 14:28:00 +0000</pubDate><atom:updated>2010-12-14T06:35:49.529-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">e-books</category><title>S. Russel and P. Norvig, “Artificial Intelligence – A Modern Approach”, Second Edition, Pearson Education, 2003.</title><description>&lt;a class=&quot;vt-p&quot; href=&quot;https://sites.google.com/site/computerarchitects/my-files/Artificial_Intelligence__A_Modern_Approach_-_2nd_Edition.pdf.4003081.TPB.torrent?attredirects=0&amp;amp;d=1&quot;&gt;Download Torrent&lt;/a&gt;</description><link>http://livelearners.blogspot.com/2010/12/s-russel-and-p-norvig-artificial.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-3653552062975925065</guid><pubDate>Mon, 27 Sep 2010 14:07:00 +0000</pubDate><atom:updated>2010-09-27T07:07:25.791-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">System Software Programming</category><title>Implementation of Single Pass Macro Processor</title><description>&lt;a href=&quot;https://sites.google.com/site/computerarchitects/my-files/singlepassmacroprocessor.rar?attredirects=0&amp;amp;d=1&quot;&gt;Download Source Code&lt;/a&gt;</description><link>http://livelearners.blogspot.com/2010/09/implementation-of-single-pass-macro.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-649172398693763590</guid><pubDate>Mon, 27 Sep 2010 13:10:00 +0000</pubDate><atom:updated>2010-09-27T06:13:23.609-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">JAVA</category><title>Developing a simple OPAC system for library using even-driven and concurrent programming paradigms of Java. JDBC is used to connect to a back-end database.</title><description>&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px;&quot;&gt;&lt;u&gt;Setting up ODBC&lt;/u&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, Arial; font-size: 12px; line-height: 18px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial; font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, Arial; font-size: 12px; line-height: 18px;&quot;&gt;Now that you have the ODBC control panel applet open, you should be presented with the following information:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;div style=&quot;font-family: Verdana, Arial; font-size: 12px; line-height: 18px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://www.mundayweb.com/progs/graphics/odbc1.jpg&quot; style=&quot;border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;&quot; /&gt;&lt;/div&gt;&lt;blockquote style=&quot;background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-color: rgb(230, 230, 230); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(230, 230, 230); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(230, 230, 230); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(230, 230, 230); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial; font-size: 11px; line-height: 18px; margin-bottom: 5px; margin-left: 5px; margin-right: 0px; margin-top: 5px; padding-bottom: 5px; padding-left: 10px; padding-right: 10px; padding-top: 5px; text-align: left; vertical-align: top;&quot;&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;&quot;&gt;Next you have to add a data source that the JDBC-ODBC Bridge driver can open.&lt;/div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;&quot;&gt;To do so, click add.&lt;/div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;&quot;&gt;&lt;span id=&quot;more-370&quot;&gt;&lt;/span&gt;The following dialog will now appear:&lt;/div&gt;&lt;/blockquote&gt;&lt;div style=&quot;font-family: Verdana, Arial; font-size: 12px; line-height: 18px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://www.mundayweb.com/progs/graphics/odbc2.jpg&quot; style=&quot;border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;&quot; /&gt;&lt;/div&gt;&lt;blockquote style=&quot;background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-color: rgb(230, 230, 230); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(230, 230, 230); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(230, 230, 230); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(230, 230, 230); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial; font-size: 11px; line-height: 18px; margin-bottom: 5px; margin-left: 5px; margin-right: 0px; margin-top: 5px; padding-bottom: 5px; padding-left: 10px; padding-right: 10px; padding-top: 5px; text-align: left; vertical-align: top;&quot;&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;&quot;&gt;Make sure you select “Microsoft Access Driver” as shown above and click finish.&lt;/div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;&quot;&gt;In the next screen enter a name for your data source – this is the name you will use in your Java code to open your database. Also enter a description. Use the “Select” button to browse for your database on your PC.&lt;/div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;&quot;&gt;Below is what you should now have:&lt;/div&gt;&lt;/blockquote&gt;&lt;div style=&quot;font-family: Verdana, Arial; font-size: 12px; line-height: 18px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://www.mundayweb.com/progs/graphics/odbc3.jpg&quot; style=&quot;border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;&quot; /&gt;&lt;/div&gt;&lt;blockquote style=&quot;background-attachment: initial; background-clip: initial; background-color: white; background-image: initial; background-origin: initial; border-bottom-color: rgb(230, 230, 230); border-bottom-style: solid; border-bottom-width: 1px; border-left-color: rgb(230, 230, 230); border-left-style: solid; border-left-width: 1px; border-right-color: rgb(230, 230, 230); border-right-style: solid; border-right-width: 1px; border-top-color: rgb(230, 230, 230); border-top-style: solid; border-top-width: 1px; color: #333333; font-family: Arial; font-size: 11px; line-height: 18px; margin-bottom: 5px; margin-left: 5px; margin-right: 0px; margin-top: 5px; padding-bottom: 5px; padding-left: 10px; padding-right: 10px; padding-top: 5px; text-align: left; vertical-align: top;&quot;&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;&quot;&gt;Click Ok. Your database will now be in the list of data sources: * Note the We have used the Data Source Name as &quot;custo&quot; and Database name as &quot;custo&quot; in our source code provide. The table name is &quot;stu&quot;&lt;/div&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;div style=&quot;font-family: Verdana, Arial; font-size: 12px; line-height: 18px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://www.mundayweb.com/progs/graphics/odbc4.jpg&quot; style=&quot;border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px;&quot; /&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Verdana, Arial; font-size: 12px; line-height: 18px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Verdana, Arial; font-size: 12px; line-height: 18px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;&quot;&gt;Here Goes your code&lt;/div&gt;&lt;div style=&quot;font-family: Verdana, Arial; font-size: 12px; line-height: 18px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 10px;&quot;&gt;&lt;a href=&quot;https://sites.google.com/site/computerarchitects/my-files/JDBC-ODBCOPAC.rar?attredirects=0&amp;amp;d=1&quot;&gt;Download Source code and Database Files&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;</description><link>http://livelearners.blogspot.com/2010/09/developing-simple-opac-system-for.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-5056096756559870896</guid><pubDate>Sat, 18 Sep 2010 13:55:00 +0000</pubDate><atom:updated>2010-09-18T07:02:46.742-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">JAVA</category><title>Implementation of Echo server and Client in java</title><description>&lt;a href=&quot;https://sites.google.com/site/computerarchitects/my-files/echoserverandclient.rar?attredirects=0&amp;amp;d=1&quot;&gt;Download code&lt;/a&gt;</description><link>http://livelearners.blogspot.com/2010/09/implementation-of-echo-server-and.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-4897455040792906819</guid><pubDate>Sat, 18 Sep 2010 13:55:00 +0000</pubDate><atom:updated>2010-09-18T07:02:39.603-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">System Software Programming</category><title>Implementation of Pass2 of a linking loader</title><description>&lt;a href=&quot;https://sites.google.com/site/computerarchitects/my-files/executedpass2.rar?attredirects=0&amp;amp;d=1&quot;&gt;Download code&lt;/a&gt;</description><link>http://livelearners.blogspot.com/2010/09/implementation-of-pass2-of-linking.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-8570599598232602988</guid><pubDate>Thu, 16 Sep 2010 12:49:00 +0000</pubDate><atom:updated>2010-09-16T05:49:41.023-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">e-books</category><title>Behrouz A. Forouzan, “Data communication and Networking”, Tata McGraw-Hill, 2004.</title><description>&lt;a href=&quot;https://sites.google.com/site/computerarchitects/my-files/DataCommunicationsandNetworking%E2%80%93BehrouzA.Forouzan.fourthedition.pdf?attredirects=0&amp;amp;d=1&quot;&gt;Download &lt;/a&gt;</description><link>http://livelearners.blogspot.com/2010/09/behrouz-forouzan-data-communication-and.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-6738773187966510943</guid><pubDate>Tue, 07 Sep 2010 13:47:00 +0000</pubDate><atom:updated>2010-09-07T06:49:43.495-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">System Software Programming</category><title>Implementation of a relocation loader</title><description>&lt;a href=&quot;https://sites.google.com/site/computerarchitects/my-files/reloactionloader.rar?attredirects=0&amp;amp;d=1&quot;&gt;Download code&lt;/a&gt;</description><link>http://livelearners.blogspot.com/2010/09/implementation-of-relocation-loader.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-5418005611390054880</guid><pubDate>Tue, 07 Sep 2010 13:45:00 +0000</pubDate><atom:updated>2010-09-07T06:49:43.495-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">System Software Programming</category><title>Implementation of a Absolute Loader</title><description>&lt;a href=&quot;https://sites.google.com/site/computerarchitects/my-files/absoluteloader.rar?attredirects=0&amp;amp;d=1&quot;&gt;Download code&lt;/a&gt;</description><link>http://livelearners.blogspot.com/2010/09/implementation-of-absolute-loader.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-4073780729147537823</guid><pubDate>Sun, 05 Sep 2010 13:20:00 +0000</pubDate><atom:updated>2010-09-07T06:49:35.276-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">JAVA</category><title>Program Using Multi threading in Java to generate Prime Fibonacci Series</title><description>&lt;a href=&quot;https://sites.google.com/site/computerarchitects/my-files/fibothread.doc?attredirects=0&amp;amp;d=1&quot;&gt;Download Source Code&lt;/a&gt;</description><link>http://livelearners.blogspot.com/2010/09/program-using-multi-threading-in-java.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-544166388113241700</guid><pubDate>Fri, 03 Sep 2010 14:26:00 +0000</pubDate><atom:updated>2010-09-03T07:50:58.005-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Networks Programming</category><title>Programs using RPC - Adding two numbers</title><description>I request my followers to read the information in this link before trying to execute this program.&lt;br /&gt;&lt;div&gt;&lt;a computerarchitects=&quot;&quot; href=&quot;http://www.krzyzanowski.org/rutgers/hw/rpc/index.html%3Ehttp://www.krzyzanowski.org/rutgers/hw/rpc/index.html%3C/a%3E%3Cbr%3E%3Cp%3E%3Ca%20href=&quot; https:=&quot;&quot; my-files=&quot;&quot; rpc.rar?attredirects=&quot;0&amp;amp;d=1&amp;quot;&quot; site=&quot;&quot; sites.google.com=&quot;&quot;&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;http://www.krzyzanowski.org/rutgers/hw/rpc/index.html&lt;br /&gt;&lt;a href=&quot;https://sites.google.com/site/computerarchitects/my-files/rpc.rar?attredirects=0&amp;amp;d=1&quot;&gt;Download Source Code&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;https://sites.google.com/site/computerarchitects/my-files/Exectuionprocedure.txt?attredirects=0&amp;amp;d=1&quot;&gt;Download Execution procedure&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;</description><link>http://livelearners.blogspot.com/2010/09/program-using-rpc-adding-two-numbers.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-7819432275277752051</guid><pubDate>Sun, 29 Aug 2010 13:16:00 +0000</pubDate><atom:updated>2010-09-04T12:44:43.741-07:00</atom:updated><title>Facebook popularity growing but privacy still a worry: Experts</title><description>&lt;div class=&quot;deleteBody&quot; style=&quot;color: #e06666; font-family: &#39;trebuchet ms&#39;,verdana,arial,sans-serif; font-size: small;&quot;&gt;&lt;div class=&quot;postBody&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;br /&gt;&lt;/span&gt; &lt;/b&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;NEW DELHI: More and more Indians might be hooked to social networking site Facebook, but experts feel that privacy issues still remain a concern since users face the vulnerability of their personal data getting hacked.&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;br /&gt;&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;According to experts and publicly available information, users&#39; privacy is not fully protected while using many of the applications available on Facebook.&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;br /&gt;&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;Facebook applications have potential privacy issues and when a user signs up for an application, they are in essence allowing the developer to access all of their information and their friends&#39; information, they said.&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&amp;nbsp;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;Rahul Chaudhry, partner at intellectual property law firm Lall Lahiri &amp;amp; Salhotra said that although Facebook is a great way of being connected, the site also brings several potential privacy issues which the user must be aware of.&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;br /&gt;&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&quot;Your basic information, pictures, notes, local hard drive, the posts that one likes are vulnerable of becoming public,&quot; Chaudhry told media.&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;br /&gt;&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&quot;A users&#39; profile pictures would be available on websites liked by clicking Facebook &#39;like&#39; application. The pictures can also be downloaded by the person one is allowing to view them. Your local drive/information becomes accessible to third parties,&quot; he noted.&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;br /&gt;&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;Moreover, the users profile pictures and names would always be available on the internet.&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;Last month, in an effort to highlight the privacy issues involved with the website globally, a security consultant had published personal details of 100 million Facebook users on the internet.&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;Earlier this year, Facebook had faced public ire over the complexity of its privacy settings, following which the site had rolled out simplified privacy controls.&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;br /&gt;&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&quot;Privacy setting can be edited to hide the information from &#39;everyone&#39; to &#39;friends of friends&#39;, only friends, customised etc, but the risk still remains,&quot; Chaudhry added.&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;br /&gt;&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;Depicting the fast growing popularity of the website, Facebook has beaten competitors like Orkut and Yahoo! to become the top social networking site in India with 20.9 million visitors in July this year, as per the report by research firm comScore.&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;br /&gt;&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;Another legal expert said that the loopholes in privacy could make a user vulnerable to cyber criminals and hackers.&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;br /&gt;&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;The user has to be aware of protecting himself and his personal data as, &quot;Facebook has completely absolved itself of any liabilities as it has expressly stated in their terms of agreement importance of account settings and that applications developed by third parties are not created by it.&quot;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&quot;And Facebook has stated that it does not have the ability to control such applications or remove any infringing content from them,&quot; he said.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;br /&gt;&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span style=&quot;font-family: arial; font-size: 13px; line-height: 18px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;source: &amp;nbsp;economictimes.indiatimes.com&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;/div&gt;</description><link>http://livelearners.blogspot.com/2010/08/facebook-popularity-growing-but-privacy_29.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-4793065539570020298</guid><pubDate>Sat, 28 Aug 2010 18:15:00 +0000</pubDate><atom:updated>2010-09-01T04:51:13.575-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">System Software Programming</category><title>Pass 1 of a Linking Loader</title><description>&lt;a href=&quot;https://sites.google.com/site/computerarchitects/my-files/linking1.c?attredirects=0&amp;amp;d=1&quot;&gt;Download source code&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;https://sites.google.com/site/computerarchitects/my-files/objinput.dat?attredirects=0&amp;amp;d=1&quot;&gt;Input File&lt;/a&gt;</description><link>http://livelearners.blogspot.com/2010/08/pass-1-of-linking-loader.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-8967418239774505940</guid><pubDate>Sun, 22 Aug 2010 18:42:00 +0000</pubDate><atom:updated>2010-09-01T04:24:02.884-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">JAVA</category><title>Scientific Calculator Using Event Driven Programming in Java</title><description>&lt;a href=&quot;https://sites.google.com/site/computerarchitects/my-files/scientificcalcusingeventdriverprogramming.txt?attredirects=0&amp;amp;d=1&quot;&gt;Download Source Code&lt;/a&gt;</description><link>http://livelearners.blogspot.com/2010/08/scientific-calculator-using-event.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-8640826156987757834</guid><pubDate>Fri, 20 Aug 2010 13:21:00 +0000</pubDate><atom:updated>2010-09-01T04:42:09.106-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">JAVA</category><title>Anna University JAVA lab programs collection - Part 1</title><description>&lt;a href=&quot;https://sites.google.com/site/computerarchitects/my-files/javaAU.doc?attredirects=0&amp;amp;d=1&quot;&gt;Download&lt;/a&gt;</description><link>http://livelearners.blogspot.com/2010/08/anna-university-java-lab-programs.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-1155932067504008821</guid><pubDate>Wed, 18 Aug 2010 14:27:00 +0000</pubDate><atom:updated>2010-09-01T04:29:09.247-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">JAVA</category><title>Program using Object serialization in Java</title><description>&lt;a href=&quot;https://sites.google.com/site/computerarchitects/my-files/objser.pdf?attredirects=0&amp;amp;d=1&quot;&gt;Download Source code&lt;/a&gt;</description><link>http://livelearners.blogspot.com/2010/08/program-using-object-serialization-in.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-7702387619940324665</guid><pubDate>Mon, 16 Aug 2010 12:35:00 +0000</pubDate><atom:updated>2010-08-16T10:07:13.366-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">System Software Programming</category><title>Single Pass assembler in c</title><description>&lt;a href=&quot;http://host.hackerbox.org/download.php?file=b4f83710306c818b3d5a0346849be76d&quot;&gt;Download source code&lt;/a&gt;</description><link>http://livelearners.blogspot.com/2010/08/single-pass-assembler-in-c.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-2768974783978601654.post-8345807053952507954</guid><pubDate>Sat, 14 Aug 2010 14:41:00 +0000</pubDate><atom:updated>2010-09-01T04:47:30.875-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Networks Programming</category><title>Program Using Raw Sockets(capturing and sniffing UDP packets)</title><description>&lt;a href=&quot;https://sites.google.com/site/computerarchitects/my-files/raw.c?attredirects=0&amp;amp;d=1&quot;&gt;Download source code&lt;/a&gt;</description><link>http://livelearners.blogspot.com/2010/08/program-using-raw-socketscapturing-and.html</link><author>noreply@blogger.com (Dayal)</author><thr:total>2</thr:total></item></channel></rss>