Thursday, May 29, 2008

Lorraine Michaels, Centerfold 2010

Campaign Guinness World Record for Firefox 3 downloads Drivers

Según
estuve leyendo
, además de haber un Segundo Release Candidate de FireFox 3,
Mozilla Foundation
está lanzando una campaña, para que el día del lanzamiento de FF3 se logre un nuevo Récord Guinness the most downloaded in 24 hours.
aside any comments of arrogance that Mozilla could generate, the fact of the matter is that it would be a major milestone for free software ( 2 ).
Part of the campaign is a page commitment (pledge) that on launch day you go to download the browser. The record includes a pre-notification service launch day, and progress and results of the event. Registration is by country, so I invite you to register to increase the participation of the Ticos.
I already put a banner on the blog for the support the campaign. Since I tried Firefox, and I could never leave him, is simply excellent. A free browser is a tool that helps keep the Internet free and open to everyone. Firefox is available to anyone, you can extend, distribute, modify, and is a quality product.

"I start with the premise that the role of leader
is to produce more leaders, not more followers." Ralph Nader

Wednesday, May 28, 2008

How To Make A Man Jack Off Toy

Install VMware Server on CentOS 5.0 (lyrics)

Install VMware Server on CentOS 5.0


Version 1.0 Author: Falko Timme Last edited 05/08/2007


Edward Carrasco Lyrics
original Web

http:// www.howtoforge.com/vmware_server_centos5.0


This tutorial provides step by step how to install VMware Server on a CentOS 5.0. With VMware Server you can create and run operating systems (virtual machines) such as Linux, Windows, FreeBSD, etc on the basis of a host operating system. This has the advantage that it can run multiple operating systems on the same hardware which saves a lot of money, and you can move virtual machines from one VMware server to another (or a system that has the VMware Player which is also free).

Also, with VMware Server you can let your old Windows desktop (previously converted into a VMware virtual machine with VMware Converter, as described in this tutorial: http://www.howtoforge.com/vmware_converter_windows_linux) run CentOS under his desk. This can be useful if you depend on some applications that exist for Windows only, or if you want to switch to Linux slowly.

I mean, first, that this is not the only way to establish a system of this type. There are many ways to accomplish this goal, but this is the way I take. The tutorial does not issue any guarantee that this will work for you!

1 Find out the version of your kernel


Before going to install additional software, is a good idea to know the kernel version because in chapter 2 is to install kernel-package devel needed by VMware Server. There are multiple kernel-devel packages available and to select the right one you need to know version of your kernel.

For more information about your kernel version, open a terminal (Applications> Accessories> Terminal):


then become root by running:

its

Run uname-r

The output should look like this:

[root @ localhost Desktop] # uname-r 2.6.18-8.1.3.el5

means we have the version 2.6.18-8.1.3.el5 of kernel installed.

2 Installation of required packages

Before installing VMware Server, you must install some prerequisites. To install you need to use Applications> Add / Remove Software :


Enter the Root password:


The Package Manager opens. Go to the Browse tab and select:

  • Development> Libraries (Development Libraries)
  • Development> Development Tools (Development Tools)


Then go to the search tab and search xinetd. Select the package to install xinetd:



Do the same for the kernel-devel. Please be sure to choose kernel-devel package that matches your current kernel (so if kernel is 2.6.18-8.1.3.el5, select the kernel-devel - 2.6.18-8.1.3.el5.i686).



Click Apply.

then the package manager, resolving all dependencies, download the packages, maybe ask him to accept some unknown software keys (please accept), and finally, install the packages.

3

VMware Server VMware Server To download, go to http://www.vmware.com/download/server/ and click Download Now:



Accept the license agreement by clicking Yes:



Then download the VMware Server for Linux. tar.gz file (not the rpm file!) on your desktop (eg to / home / edward / Desktop):



to get the serial number you need to run VMware Server, go to http://register.vmware.com/content/registration.html. Fill in your personal data. After you receive a page with a serial number for VMware Server. Write it down or print it:





To install VMware Server, open a terminal (Applications> Accessories> Terminal) and become root:

its

Then go to where you saved the VMware Server. tar.gz, for example, / home / edward / Desktop (edward replace with your own username!):

cd / home / edward / Desktop

Unpack the VMware Server. tar.gz and run the installer: tar xvfz

VMware-server-*. tar.gz cd vmware-server
-
distrib. / vmware-install.pl

The installer will ask lots of questions. You can always accept the defaults by simply pressing enter. When asked

in the directory want to keep your virtual machine files?
[/ var / lib / VMware / Virtual Machines]

can accept the default or specify a different location DepEd where you have more free disk space, such as / home / edward / virtual_machines, but this depends on you and is not necessary.

At the end of the installation, you are prompted to enter a serial number:

Please enter your 20-character serial number.

Type XXXXX-XXXXX-XXXXX-XXXXX or 'Enter' to cancel:

Enter your serial number for VMware Server.

After successful installation, can delete the VMware Server download and installation directory: cd ..

/
rm-f VMware-server * rm-fr
vmware-server-distrib /

hours is under VMware Server Applications > System Tools:


When starting, select Local host


can then create virtual machines (or import your virtual Windows machine that you created with VMware Converter):

4

Monday, May 26, 2008

Menpleasuringthemselves

programming in C + + in Ubuntu Linux (1)

Well I'm using Kubuntu 8.04 with KDE 4. but it handles the same packages as Ubuntu.
To begin programming in C + + we must prepare our systems, since default is not the tools (IDEs and compilers) required.

What is a compiler?
A compiler is a computer program that translates a program written in a programming language to another programming language, generating an equivalent program that the machine will be able to interpret. Usually second language is machine code, but can be just text. This translation process is called compilation.
A compiler is a program that allows you to translate the source code of a program in high level language to another lower-level language (usually machine language). In this way a developer can design a program in a language much closer to how you think a human being, and then compile it to a more manageable by a computer.

What is an IDE?
An integrated development environment or in English Integrated Development Environment ("IDE") is a program consisting of a set of tools for programmers.
can devote himself exclusively to a single programming language or, to be used for several.
Dev C + +, an IDE for the programming language C + +.
Dev C + +, an IDE for the programming language C + +.
An IDE is a programming environment that has been packaged as an application program, ie, consists of a code editor, a compiler, debugger and a GUI builder.
The SDI provides a framework friendly to most programming languages \u200b\u200bsuch as C + +, Java, C #, Delphi, Visual Basic, etc. In some languages, an IDE can function as a run-time system, where you can use the programming language in an interactive way, without the need of work to text files such as Smalltalk or Objective-C.

What we need to start?
We need to install the compiler for C + + for Linux would be g + + and gcc.
$ sudo apt-get install g + + gcc
and even better
$ sudo apt-get install build-essential
This is a virtual package where we will install everything you need to use our compiler (only Ubuntu, family and derivatives).

With this you can program in C + + in any text editor, I recommend the VI:

Example: # include

using namespace std;

int main ()
{
<< "Hello world!" ; court return 0;}

Save this code in a file
or called holamundo.cpp
Compiling:
$ g + + holamundo.cpp-o hello
Running:
$. / hello

Result:

Hello world!

Sunday, May 25, 2008

Do Pedestal Fans Use Much Electricity?

Back again

After long absent, for work and study, I arise the need to write, share new experiences and activities they do every day, I hope that this new beginning we serve me to develop a little more and to help others.

Thursday, May 22, 2008

L Shaped Curtain Frame

unfortunate

Yepayepa!
Today, as always, in the endless road from my house to the job, chances of life before me had a stroller of a company which, for obscene minds like mine, called my attention to its name. This company is a gas, and not if the owner is called Oscar, or, more likely, Huesca (Osca), so without thinking twice, the company is called " OSCAGAS " ... There

left to interpretation;)

Monday, May 19, 2008

Beautiful Wordingsbike....

New Topic! MzW! - Fokin Guitars

So that, taking advantage of this weekend I have carefully worked a little in my musical side, I present my new theme:

MzW! - Fucking guitars.

I can listen and download here: MzW! - Fokin Guitars (single preview)

Like most of my pieces, is under a creative commons license, meaning that the poéis download, share, etc etc and all legally!

It is located in "jamendo " a service for publication of copyleft licensed songs is me like it. Hope you like!

Sunday, May 18, 2008

Melina Velba Movie Nadine Jansen

New Album Scarlett Johansson: Anywhere I lead my head


few days ago was released on disc Scarlett Johansson "Anywhere I lead my head", and as a good "fan" of his, I decided to listen to from beginning to end, and honestly made me endless .


All the movies I love, especially when directed by Woody Allen's great (and I'm anxious to see Vicky Cristina Barcelona), but the hard truth I have not liked anything. It seems a tostón unbearable and they do not very well produced. The voice hard to hear y. .. well, my view is not to sing too well. You could tell something was trucker voice ... But what Therefore ?!!!!

Well, it's a poor review, I guess a lot of other people do like him, so to taste the colors ...

Thursday, May 15, 2008

Iceland Rent Snowmobile

GNU / Linux for your laptop



As usual, I find super useful
an article in the blog of fellow
José Ramírez Vega , which refers to a site called Linux On Laptops
, which maintains an index of sites for drivers, manuals and other for huge quantities of laptops that use GNU / Linux. This site
found what I needed to put my jar with 100% Ubuntu . If any of you have an HP Pavilion dv6000
may find everything you need fixed HERE. So what works for me and I needed: the web clique, the wireless network, control remote and card reader. Further comment on each of these facilities. If anyone has any experience with a laptop and any distro, can trace their comments in the section collaborations.
I have registered for the forum and it now bears the logo of Member of Linux On Laptops in my blog. Incidentally, I liked the legend about the Pavilion site
:
"Nobody is born learned in Linux" With Linux on Laptops , and again José Ramírez Vega
.
"No is a sage who knows many things,
but who knows useful things. "Aeschylus
Eleusinian

Sunday, May 11, 2008

Withdrawal Biolife Card

When an engineer becomes a seamstress ... Virtualbox


Hello! I present today a thing in terms of content has little to do with this blog, but the concept seems pretty interesting.

When an engineer chooses, in his spare time, to project their creativity in crafts, you can not leave anything but a job well done and above all, fun and beautiful. Well this is what happens to the engineer who in his spare time becomes a seamstress (hehehe). Thus dded The blog "Engineering Seamstress (ingenieracosturera.es) ", in which the author describes her crafts, paintings, puppets and other artistic creations. (It was time Marta!)

I hope you enjoy!

More info:
http://ingenieracosturera.es