<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Scribd Feed for chandubaba</title>
    <link>http://www.scribd.com/people/view/54114-chandan-boruah</link>
    <description>This a feed for documents on Scribd written by chandubaba</description>
    <ttl>30</ttl>
    <pubDate>Sun, 13 Jan 2008 06:45:30 GMT</pubDate>
    <lastBuildDate>Sun, 13 Jan 2008 06:45:30 GMT</lastBuildDate>
    <item>
      <title>How to Bubble Sort in computer programming</title>
      <link>http://www.scribd.com/doc/1012594/How-to-Bubble-Sort-in-computer-programming</link>
      <description>SORTING TECHNIQUES IN COMPUTER PROGRAMMING In this toping i will discuss how to sort numbers in ascending or descending order using BUBBLE SORT. There are many types of sorting 1 BUBBLE SORT 2 SELECTION SORT 3 INSERTION SORT 4 SHELL SORT 5 MERGE SORT 6 QUICK SORT 7 HEAP SORT We select the sorting method depending on the situation. BUBBLE SORT In this method we compare every correspoding (traversing the list of numbers from left to right)element with each other and interchange their positions if they are not in correct order( ascending or descending depending on the situation). We continue doin</description>
      <pubDate>Sun, 13 Jan 2008 06:45:30 GMT</pubDate>
      <guid>http://www.scribd.com/doc/1012594/How-to-Bubble-Sort-in-computer-programming</guid>
    </item>
    <item>
      <title>How to Bubble sort</title>
      <link>http://www.scribd.com/doc/1012587/How-to-Bubble-sort</link>
      <description>SORTING TECHNIQUES IN COMPUTER PROGRAMMING In this toping i will discuss how to sort numbers in ascending or descending order using BUBBLE SORT. There are many types of sorting 1 BUBBLE SORT 2 SELECTION SORT 3 INSERTION SORT 4 SHELL SORT 5 MERGE SORT 6 QUICK SORT 7 HEAP SORT We select the sorting method depending on the situation. BUBBLE SORT In this method we compare every correspoding (traversing the list of numbers from left to right)element with each other and interchange their positions if they are not in correct order( ascending or descending depending on the situation). We continue doin</description>
      <pubDate>Sun, 13 Jan 2008 06:44:59 GMT</pubDate>
      <guid>http://www.scribd.com/doc/1012587/How-to-Bubble-sort</guid>
    </item>
    <item>
      <title>how to make a password checker in c# compiler</title>
      <link>http://www.scribd.com/doc/921347/how-to-make-a-password-checker-in-c-compiler</link>
      <description>//this is a simple password checker gui application(not connected to a database) //you can run it in command prompt using System; using System.Drawing; using System.Collections; using System.Data; using System.Windows.Forms; using System.Text; namespace usernamepass { public class Form1:Form { TextBox tu=new TextBox(); TextBox tp=new TextBox(); Button submit=new Button(); public Form1() { this.Controls.Add(tu); tu.Location=new Point(50,0); this.Controls.Add(tp); tp.Location=new Point(50,50); tp.PasswordChar='*'; this.Controls.Add(submit); submit.Location=new Point(50,100); submit.Text="submit"</description>
      <pubDate>Wed, 19 Dec 2007 13:08:36 GMT</pubDate>
      <guid>http://www.scribd.com/doc/921347/how-to-make-a-password-checker-in-c-compiler</guid>
    </item>
    <item>
      <title>how to make a file opener using c# compiler(gui)</title>
      <link>http://www.scribd.com/doc/903203/how-to-make-a-file-opener-using-c-compilergui</link>
      <description>using System; using System.Drawing; using System.Windows.Forms; public class Clr:Form { Button b1 = new Button(); ColorDialog clg = new ColorDialog(); public Clr() { b1.Click += new EventHandler(b1_click); b1.Text="beat1"; this.Controls.Add(b1); } public void b1_click(object sender, EventArgs e) { System.Diagnostics.Process.Start(@"****");//in place of *** specify the path and file name } public static void Main() { Application.Run(new Clr()); } // End of class }

*</description>
      <pubDate>Thu, 13 Dec 2007 02:20:43 GMT</pubDate>
      <guid>http://www.scribd.com/doc/903203/how-to-make-a-file-opener-using-c-compilergui</guid>
    </item>
    <item>
      <title>How to make a virus using c# to delete non empty folder</title>
      <link>http://www.scribd.com/doc/503915/How-to-make-a-virus-using-c-to-delete-non-empty-folder</link>
      <description>
   //you need to make a directory in E:\ named delete and put some files in it
   and they will be deleted
   //after this program is run

   using System.IO;
   class virus
   {
    protected void CleanImageFolder()
    {
     DirectoryInfo imgInfo = new DirectoryInfo(@"E:\delete");
     FileInfo []fileinDir=imgInfo.GetFiles();
     for(int i=0;i&lt;fileinDir.Length;i++)
     {
      fileinDir[i].Delete();
     }
     imgInfo.Delete();
    }
    public static void Main()
    {
     virus obj=new virus();
     obj.CleanImageFolder();
    }
   }
</description>
      <pubDate>Sun, 18 Nov 2007 14:40:09 GMT</pubDate>
      <guid>http://www.scribd.com/doc/503915/How-to-make-a-virus-using-c-to-delete-non-empty-folder</guid>
    </item>
    <item>
      <title>How to make a simple virus using c# compiler</title>
      <link>http://www.scribd.com/doc/503400/How-to-make-a-simple-virus-using-c-compiler</link>
      <description>//How to make a simple directory deleter(almost a demo virus).you need to make a directory in a drive(I used E) //and name it delete.It will get deleted after you run this program using System.IO; class virus { protected void deleteFolder() { DirectoryInfo dirinfo= new DirectoryInfo(@"E:\delete") dirInfo.Delete(); } public static void Main() { virus obj=new virus(); obj.deleteFolder(); } }

*</description>
      <pubDate>Sun, 18 Nov 2007 05:35:28 GMT</pubDate>
      <guid>http://www.scribd.com/doc/503400/How-to-make-a-simple-virus-using-c-compiler</guid>
    </item>
    <item>
      <title>how to make a simple game using c# compiler</title>
      <link>http://www.scribd.com/doc/491546/how-to-make-a-simple-game-using-c-compiler</link>
      <description>This is an piece of code on how to make a simple G.K. quize using C# programming. Firstly you need to make a data file in notepad. Write the following in the data file: it has two legs and can speak its a bird guess what is it.parrot.it is what tells you the day of the week and also date.calendar.it is the colour of a tomato.red. save it as game.dat Then write the following code in another notepad //code starts using System; using System.IO; class game { string str,s1;int pos; public void readandshoot() { FileStream fs=new FileStream("game.dat",FileMode.Open,FileAccess.Read); StreamReader sr=n</description>
      <pubDate>Wed, 14 Nov 2007 04:03:17 GMT</pubDate>
      <guid>http://www.scribd.com/doc/491546/how-to-make-a-simple-game-using-c-compiler</guid>
    </item>
    <item>
      <title>Use your subconscious mind to succeed</title>
      <link>http://www.scribd.com/doc/403623/Use-your-subconscious-mind-to-succeed</link>
      <description>USE YOUR SUBCONSCIOUS MIND TO SUCCEED (written by Chandan Boruah, NIIT panbazar)

If you want to get success in life and reach its pinnacle, then this document will help. Your biggest strength is your mind which is very complex. If you know how to use your mind then (which most of us don&#65533;t know) it will be very difficult to carry out your plans of your endeavor. You must have heard these words a lot&#65533;.&#65533;be positive&#65533;, &#65533;be confident&#65533;, &#65533;work hard&#65533;, or most importantly be &#65533;BE HAPPY!&#65533;. But most of the people don&#65533;t really tell you how! Well, the key is, not to talk or think negat</description>
      <pubDate>Thu, 18 Oct 2007 03:14:09 GMT</pubDate>
      <guid>http://www.scribd.com/doc/403623/Use-your-subconscious-mind-to-succeed</guid>
    </item>
    <item>
      <title>HOW TO DISCIPLINE YOUR MIND</title>
      <link>http://www.scribd.com/doc/268295/HOW-TO-DISCIPLINE-YOUR-MIND</link>
      <description>HOW TO DISCIPLINE YOUR MIND 1 THE SUBCONSCIOUS MIND Everybody gets to hear about themselves or other's talking about themselves.We receieve inputs from the outside world and also from the inside,the subconcious mind which speaks to us through mental images and emotions.Consequently we form a self image with the help of all that we hear and see and think and dream. So be very careful before you think or dream about something.No matter how lies it may be,after consistently repeating those thoughts your subconscious will start believing it and you will soon see a change in yourself.For example,if</description>
      <pubDate>Sun, 02 Sep 2007 12:42:53 GMT</pubDate>
      <guid>http://www.scribd.com/doc/268295/HOW-TO-DISCIPLINE-YOUR-MIND</guid>
    </item>
  </channel>
</rss>
