Linux Video Tutorial – 1 – The Code Linux One-Hour Historical Documentary


Putting
the Pieces of .NET Together - 8 Part Video Series | ||||
| Introduction | ||||
| Videos 1-4 | 1. Servers (3 minutes) | 2. .NET Framework (10 minutes) | 3. Security (8 minutes) | 4. Monitoring Tools (10 minutes) |
| Videos 5-8 | 5. Web Servers (6 minutes) | 6. SQL Server (6 minutes) | 7. Software Develop Tools (10 minutes) | 8. Languages (2 minutes) |
| Download PDF | Putting the Pieces of .NET Together - 48-page PDF | |||

This series of video tutorials will be on Linux. We will start with an excellent one-hour pop culture historical documentary called The Code Linux. The video covers the birth, evolution, and future of Linux. As of Oct 24, 2007, this video has been viewed 129,173 times on Google alone. Don't miss the song at the end that goes with the credits – it is absolutely awesome…
Quick Overview
Unix operating system was created in the 1960s and became widely available in the 1970s.
One Linux-type system created in 1984 was GNU. The goal of GNU was to create an operating system made out of software that was totally free.
In 1985, Richard Stallman started the Free Software Foundation and created the GNU General Public License (GNU GPL), in order to spread software freely. This is what made the open distribution of Linux possible. (See picture of Stallman to the right of this paragraph.)
In 1991, Linus Torvalds started to work on a non-commercial replacement for MINIX while he was attending the University of Helsinki. This eventually became the Linux kernel. Linux was originally dependent upon Minux, but Torvalds shifted it to GNU GPL. That opened the door for Linux to become freely distributable. (See the picture of Torvalds to the right of this paragraph.)
Chart of the History of Unix

The Code Linux
Feb 23, 2006
Sweden
58 minutes
Other Tutorials in This Series
This is a work in progress – More to episodes will be coming…Please bookmark this post and check back often.
To access a catalog of over 700 video tutorials on programming, please click this link: Summary of 700 Programming Tutorials.
Related posts:
- PHP Video Tutorial – 1 – Installing Software In this first video, we will look at how to...
- Visual C# 2005 Express Video Tutorial -1- Installing Shows you how to install C# for free in under...
- Visual Studio Express 2005 Video Tutorial – Part 1 Quick 2-minute tutorial shows how to install Visual Studio Visual...
- Perl Video Tutorial – 1 – Installing ActivePerl 5.8.8 In this first video, we will look at how to...
- Visual Web Developer 2005 Video Tutorial -1- Installing This programming video tutorial series will show how easy it...
Related posts brought to you by Yet Another Related Posts Plugin.

Class Library References
# system.Net
# system.IO
private void Page_Load(object sender, system.Event Ages e)
//Retrieve URL from user input box
if(Page.Is Post Back)
lit HTML from Scraped page.Text = Get HTML Page (TR URL.Text);
public String Get HTML Page(string structure URL)
// the HTML retrieved from the page
string structure Result;
Web response obj response
Web request obj request = System.Net.HTTP web request.Create(structure URL);
obj response = obj request.Get response();
// the using keyword will automatically dispose the object
// once complete
using (Stream Reader SR =
New stream reader (object response. Get response stream()))
}
structure result = SR read to end();
close and clean up the stream reader()
SR.Close();
}
return structure result;
}
page scrape in c# -CS harp friends
Enter the URL to the page you want to scrape (include the http://)
Hello My friends
How are you 2day. What are u doing now
I doing from study Screen scraper tutorial, and you
I doing play computer internet near University of PP
How many people play computer?
5 people
Who name?
A Seth
A Ya
A HUN
A X1
A X2
A X3 people
OK
who win?
group X
Very Hard
Good By
Good luck
Good dream
# Screen scraper Name .Net
#Screen scraping Number .IO
String structure result
Web Response obj Response;
Web Request obj Request;
Obj response =Obj Request.Response();
// the using keyword will automatically dispose the object
// one complete
using (stream reader SR =
new stream reader(object response.Get response stream()))
{
structure result=SR.read to end();
Close and clean up the stream reader
SR.close();
}
return structure result;
}
<title
Enter the URL to the page you want to scrape (include the http://)