iCloud Cross Site Scripting
iCloud Cross Site in the subject of email messages fixed by apple and acknowledged here.
iCloud Cross Site in the subject of email messages fixed by apple and acknowledged here.
I’ve been working on this new project since last week. Things are coming along, and hopefully I will be able to port it to BlackBerry 10 too. MeeGo - N9 Maemo 5 - N900 I’ll try to release a beta version of this next week!
After installing virtualbox you get the following message: WARNING: The character device /dev/vboxdrv does not exist. Please install the virtualbox-ose-dkms package and the appropriate headers, most likely linux-headers-generic. You will not be able to start VMs until this problem is fixed. To fix it run the following commands: sudo apt-get install build-essential linux-headers-`uname -r` sudo dpkg-reconfigure virtualbox-dkms sudo dpkg-reconfigure virtualbox
I was unable to claim a reward from reporting Google a vulnerability, so I decided to donate it to charity! Google doubles the price of the reward, so it was 1000$ USD for San Francisco Child Abuse Prevention Center :).
This snippet of code will allow you to see the output of qDebug and console.log from the Momentics IDE when developing for BlackBerry 10. First we need to add this function to the main.cpp file: void myMessageOutput(QtMsgType type, const char* msg){ Q_UNUSED(type); fprintf(stdout, "%s\n", msg); fflush(stdout); } Inside our main() function, add this: //Message Handler qInstallMsgHandler(myMessageOutput); Now you will be able to see the output in the IDE while debugging your application, make sure to comment the qInstallMsgHandler line before exporting the Release version of your application.
Al iniciar la instalación de SQL Server 2008 en Windows 7 el siguiente error puede aparecer El programa de instalación de SQL Server encontró el siguiente error: No se puede llamar a Invoke o BeginInvoke en un control hasta que se haya creado el identificador de ventana. Para solucionarlo instalamos Microsoft Core XML (MSXML) 6.0. Luego procedemos con la instalación.
Null Life 1800 puntos! Lugar 49 de 303 equipos.
Este viernes 24 de febrero empezó el Codegate 2012. Logramos terminar en el lugar número 38 de 182 equipos, como siempre ningún equipo de latinoamerica por encima de nosotros :). El equipo no estuvo completo, Daniel solo participó un par de horas y yo tampoco hice gran cosa, la mayor parte del trabajo fue por emyei y gosu. Nuestro scoreboard al final del evento fue: Se nos escaparon un par de retos que ya teniamos casi resueltos pero bueno, para una proxima oportunidad será. El rank final lo pueden ver a continuación: ...
The following kickstart files allows the n900 to boot into qmlviewer, I’m going to highlight just the bottom of it, with the next lines we create the launcher for the qmlviewer and then create a symbolic link to make it the default desktop environment. cat > /usr/share/xsessions/x-meego-qmlviewer.desktop << EOF [Desktop Entry] Version=1.0 Name=qmlviewer session Exec=/usr/bin/qmlviewer Type=Application EOF # Set symlink pointing to .desktop file ln -sf x-meego-qmlviewer.desktop /usr/share/xsessions/default.desktop Here is a video of N900 booting: ...
Just got hit by this problem, whenever I tried to deploy my application: 11:06:04: Package created. 11:06:04: Installing package to sysroot ... Package 'untitled' installed. 11:06:04: Preparing SFTP connection... 11:06:04: Starting upload... 11:06:04: Failed to upload package: Failure 11:06:04: Deploy step failed. Error while building project untitled (target: Harmattan) When executing build step 'Deploy Debian package via SFTP upload' And a notification warning about the little remaining data storage appeared on the device, which I wrongly ignored at first. The problem occurs because QtCreator tries to copy the debian packate to /tmp on the device, N9 for me, and it fails if the space is full. I managed to fill my /tmp partition (which is just 4Mb btw..) by testing some big application. Solution is, ssh to your device, check if you /tmp is full (df -h) and delete any .deb file left there by QtCreator. ...