You have to follow these steps:
1. Be sure these packages are installed in your system:sudo apt-get install sun-java6-bin sun-java6-jre sun-java6-jdk sun-java6-plugin
2. Change your default Java via:sudo update-java-alternatives -s java-6-sun
3. Download JDownloader if you need it:wget -c http://212.117.163.148/jd.sh
4. And run it:chmod +x jd.sh./jd.sh
Ubuntu: haz que funcione JDownloader - make your JDownloader work
>> ésto dijo pedromateo a las 6:09 PM 0 discrepancias
Tags: Linux-Ubuntu
Install and fix Yum in RHEL 3 or 4, or Fedora Core 4
This links includes the steps you have to follow: link
good luck!!
>> ésto dijo pedromateo a las 12:31 PM 0 discrepancias
Tags: Linux
Ubuntu: Instalar Ruby + Qt4 - How to install Ruby + Qt4
To install the Ruby bindings for the Qt4 GUI library you only have to use this command in a new console:
sudo apt-get install libqt4-rubyIt will install these packages:
- libqscintilla2-3
- libqt4-ruby1.8
- libsmokeqt4-2
>> ésto dijo pedromateo a las 11:26 AM 0 discrepancias
Tags: Linux-Ubuntu, Qt, Ruby
Ubuntu: Reconfigurar la configuración de vídeo - Reconfigure video configuration
To reconfigure your video options use this commandsudo dpkg-reconfigure xserver-xorg
and follow the wizard. It will take several steps configuring mouse, keyboard and video card, but it is so easy if you use the default values.
>> ésto dijo pedromateo a las 6:13 PM 0 discrepancias
Tags: Linux-Ubuntu
Freeware: Aimp portable for Ubuntu
Did you imagine your Aimp media player in Ubuntu? Stop dreaming and download this link.
Follow these steps:
1. Download the link
2. Extract it in a new folder
3. Make a launcher to the executable
4. Enjoy it!!!
PS: oops!! I remember you need Wine...
>> ésto dijo pedromateo a las 5:49 PM 0 discrepancias
Tags: Linux-Ubuntu
Windows XP Embedded: Problema de memoria durante el FBA (First Boot Agent) - Memory error during FBA
Puede ser que durante la primera carga de tu imagen Windows XPe (el FBA) hayas encontrado el siguiente problema:
Para solucionarlo, iremos al panel "Settings" principal de nuestro proyecto de imagen (el que se encuentra el primero de la lista, justo encima del primer componente seleccionado), seleccionamos "Target Device Settings" (show) y cambiamos la letra de la unidad en las diferentes rutas que tenemos debajo.
El log que nos deja el FBA (en los propios ficheros de la imagen, dentro de la ruta WINDOWS/fba/) seguramente nos ofrezca una sugerencia de la letra de unidad por la que tenemos que cambiar la actual.
>> ésto dijo pedromateo a las 4:35 PM 0 discrepancias
Tags: XP Embedded
Windows XP Embedded: Problema de instalación en Service Pack 1 - Setup error whit Service Pack 1
Si instalando el Service Pack 1 de tu Windows XP Embedded te encuentras con el siguiente problema:
"A new platform object needs to be installed before this update can be installed. Please download the latest platform update from
Setup cannot continue"
Debes instalar la siguiente actualizaci
>> ésto dijo pedromateo a las 5:00 PM 0 discrepancias
Tags: XP Embedded
Linux-Ubuntu 8.04: Hacer funcionar el teclado numérico - Make numeric keyboard works
Si has tenido problemas con tu teclado numérico en la distribución 8.4 Hardy Heron de Ubuntu, actívalo de la siguiente manera:
1. menú Sistema > preferencias > teclado
2. en la pestaña "Teclas del ratón" desactivamos la opción "Permitir controlar el puntero usando el teclado".
>> ésto dijo pedromateo a las 11:13 AM 1 discrepancias
Tags: Bricoinformática, Linux-Ubuntu
C++: Sobrecarga de operadores - Operator overloading
Aquí incluyo algunos ejemplos simples de sobrecarga de operadores:
---
Point& Point::operator++()
{
_x++;
_y++;
return *this;
}
---
Node* operator[](const std::string &childName)
{
//return node
return children_[childName];
}
---
Complex Complex::operator+( Complex &other )
{
return Complex( re + other.re, im + other.im );
}
---
Point &Point::operator=( Point &pt )
{
_x = pt._x;
_y = pt._y;
return *this;
}
---
operator char *()
{
return this.toStdString().c_str();
}
---
Point &operator()( int dx, int dy )
{
_x += dx;
_y += dy;
return *this;
}
---
Podemos ver más aquí.
>> ésto dijo pedromateo a las 4:24 PM 0 discrepancias
Tags: c++
YAML y C++: Guía rápida - CookBook
Vamos con unas cuantas referencias (enlaces de documentación y de ejemplos)
que nos pueden venir bien para aprender YAML en poco tiempo:
- wiki oficial
- para los que tienen prisa: YAML en cinco minutos
- manual rápido (cookbook) de YAML
- librerías necesarias para C y C++: librerías
- "front end" para el parser YAML
- la repera de miniejemplos en la web oficial
- otros ejemplos YAML junto con algo de especificación del lenguaje
>> ésto dijo pedromateo a las 10:16 AM 0 discrepancias
