Download Youtube videos
http://www.youtube.com/watch?v=rIb_MUGJwDY
change the url to
http://www.voobys.com/watch?v=rIb_MUGJwDY
click on the download button and save to your computer.
Rename it to videoname.flv
--
an everyday simple life of a computer enthusiast
click on the download button and save to your computer.
Rename it to videoname.flv
--
Note : too bad I can't compile a C++ program with this.
Link : http://bellard.org/tcc/
using namespace std;
int getTotal(int, int);
main()
{
int num1,num2,total;
cout << "Enter first number :";
cin >> num1;
cout << "Enter second number :";
cin >> num2;
total=getTotal(num1,num2);
return 0;
}
int getTotal(int a, int b)
{
int result;
result=a+b;
return result;
}
Notes :
int getTotal() means that this functions returns an integer type variable.
In Linux, compile using this command
g++ yourfile.cpp -o yourfile.exe
Windows
route add 10.8.2.25 10.8.1.1
route add 0.0.0.0 mask 0.0.0.0 192.168.2.1
route print (to display routing table)
Linux
route add 10.8.2.25 gw 10.8.1.1
route add default gw 192.168.1.1
or to add the whole network segment
route add -net 10.8.2.0 netmask 255.255.255.0 dev eth0
route -n (to display routing table)
Here's a list of task I performed to enable my laptop to play MPEG, AVI,
FLV and WMV files.
1. install repositories of livna
#wget http://rpm.livna.org/livna-release-8.rpm
#rpm -ivh livna-release-8.rpm
2. install pulseaudio-libs
-due to dependency problem during mplayer installation
-download and install pulseaudio-libs-0.9.8-5.fc8.i386.rpm from
http://rpm.pbone.org
3. install lzo and libdvdnav-4 required by mplayer
download and install these packages
-lzo-2.02-3.fc8.i386.rpm
-libdvdnav-4.1.2-2.fc8.i386.rpm
4. install mplayer (multimedia player) package
yum install mplayer
5. install mplayer gui application and related codec
yum install gnome-mplayer
yum install mencoder

