m3n3chm0’s Place ©

Life is killing me

Bodyboard | Razo 14/11/09 día después del temporal

Diciembre 2, 2009 Publicado por m3n3chm0 | Bodyboard | | Aún no hay comentarios

GPG KEYSERVER

When a repository in this list has a GPG key, you may need to add that to the APT trusted keys. You can do this with the following commands (replace KEY with the key ID)
Code:

gpg –keyserver subkeys.pgp.net –recv KEY
gpg –export –armor KEY | sudo apt-key add -

Diciembre 1, 2009 Publicado por m3n3chm0 | Informática,internet,frikadas...noticias | | Aún no hay comentarios

Cómo descargar música gratis desde el nuevo portal de Promusicae

La primera entrega de la “oferta legal del contenidos” que prepara la industria cultural, llegó ayer de la mano de las discográficas agrupadas en Promusicae con la presentación en el Ficod de la web elportaldemusica.es. Las últimas novedades musicales del mercado ya pueden escucharse en streaming e incluso si te lo propones, descargarse en formato mp3 de forma sencilla y legal.

En la creación de esta web, las arcas públicas se han dejado 737.000 € en subvenciones, según consta en la memoria de actuaciones del Plan Avanza. El proyecto, con nombre clave “Ritmobile” tiene por objeto “el desarrollo de un nuevo sistema integral de creación y distribución digital de contenidos musicales (canciones, álbumes completos, vídeos musicales, tonos reales, etc.) para Internet y teléfonos móviles”. Según La Coalición, cuando su macroportal global esté preparado, la web lanzada por Promusicae también se integrará en él, dando lugar a una “oferta completa”.

El portal presenta el top de los 50 singles y los 100 álbumes más vendidos del momento. Permite escuchar en streaming de forma completa cada uno de los temas y enlaza con diferentes servicios online donde adquirirlos. Sin embargo, aunque no tiene ningún enlace para descargar la música, si que es perfectamente posible almacenar en nuestro disco duro el mp3 de cada una de las canciones.

Utilizamos el navegador Firefox, con el addon Live HTTP Headers instalado. Cada vez que accedemos a un tema, nos muestra la url a la que accede el reproductor de Flash para obtener los datos de la canción. Por ejemplo, en el caso del tema This is it de Michael Jackson.

Copiando y pegando esa url en una nueva pestaña del navegador veremos la información que han intercambiado, entre la que se encuentra el nombre del archivo con la canción.

canc_id]#[canc_titulo]#[canc_version]#[canc_duracion]#[med_url]#[med_url_cache}#{3063]#[This is It]#[ ]#[00:03:36]#[0/53_1757_3063_1.flv]#[rtmp://fl.interoute.com/streamrt/{6CC9A766-92BC-4C3D-A002-37BCC42C6AE7}/{B150CC17-3BDF-605F-38BF-A1F2A6CC15C1}/53_1757_3063_1.flv}#{0}#{0


Ahora sólo necesitamos un reproductor RTMP, protocolo empleado por el Flash Player para recuperar archivos multimedia remotos. Nos sirve, por ser freeware, Orbit Downloader.


En minuto y poco más tendremos el fichero 53_1757_3063_1.flv en nuestro disco duro. En su interior contiene un la pista de audio en mp3, según Media Info.

Podemos reproducirla directamente con VLC Media Player o bien extraerla en un archivo mp3 con FLV Extract, para pasarlo a otros dispositivos.


Más información en el foro streaming.

Fuente | http://bandaancha.eu/articulo/6930/descargar-musica-gratis-nuevo-portal-promusicae

Noviembre 19, 2009 Publicado por m3n3chm0 | Informática,internet,frikadas...noticias | | Aún no hay comentarios

Temporada 09 micología !!! xD

Amanita phalloides – la más mortal de todas las setas.

Amanita muscaria – mortal

NISCALOS lactarius


Agaricus campester – champiñon campestre RICO RICOOO


Lepiota procera al lado de mi laptop de 17

NIscalos (lactarius)




Noviembre 16, 2009 Publicado por m3n3chm0 | SIN COMENTARIOS | | Aún no hay comentarios

Speedyfox en linux, mac, windows… Agilizar el inicio de Firefox

Increase Firefox 3.* Performance by Optimizing the SQLite Databases [Windows, Linux and Mac OSX]

Since version 3.0, Firefox changed the way it saves your bookmarks, history, cookies, passwords and so on – it now uses SQLite databases. This has some advantages but also disadvantages because over time, the databases are growing in size and become fragmented and this affects the time Firefox needs to start. But the SQLite databases can be optimized which improves the Firefox startup time and from my experience, also improves the awasomebar performance which becomes much more responsive and faster!

How to optimize the SQLite databases in Firefox
-For Linux:

Before we get started, make sure you have sqlite3 installed. For Ubuntu:

CODE
sudo apt-get install sqlite3

Close Firefox and run the following command in a terminal:

-For Firefox 3.0.*:

CODE
for f in ~/.mozilla/firefox/*/*.sqlite; do sqlite3 $f ‘VACUUM;’; done

-For Firefox 3.5.*:

CODE
for f in ~/.mozilla/firefox-3.5/*/*.sqlite; do sqlite3 $f ‘VACUUM;’; done

I suggest you make it a script and then put it in startup so that it will optimize your SQLite databases on each computer startup. To do this, create a new file in your home folder, let’s call it: speed_ff.sh, and paste this in the file:

-For Firefox 3.0.*:

CODE
#!/bin/sh
for f in ~/.mozilla/firefox/*/*.sqlite; do sqlite3 $f ‘VACUUM;’; done

-For Firefox 3.5.*:

CODE
#!/bin/sh
for f in ~/.mozilla/firefox-3.5/*/*.sqlite; do sqlite3 $f ‘VACUUM;’; done

Then me have to make it executable. To do this, use the terminal to navigate to the folder where you created the speed_ff.sh file and:

CODE
chmod +x speed_ff.sh

Now, to run the script on every startup, go to System > Preferences > Startup Applications, click “Add”, in the NAME field enter whatever you want and in the COMMAND field enter the full path to the newly created speed_ff.sh file.

-For Windows

Download IniFox which containts 2 files and extact the archive in the Firefox profile folder. The Firefox profile folder is in the following location:

* Windows XP: C:\Documents and Settings\[username]\Application Data\Mozilla\Firefox\Profiles\[randomcharacters.default]
* Windows Vista: C:\Users\[username]\AppData\Roaming\Mozilla\Firefox\Profiles\[randomcharacters.default]
* Windows 7: C:\Users\[username]\AppData\Roaming\Mozilla\Firefox\Profiles\[randomcharacters.default]

Then you must close Firefox and run the IniFox.bat file. When you start Firefox again you can see that the browser starts quicker. You can also check the .sqlite file size before and after running IniFox, and you will see a noticeable difference.

Windows users – you may also want to check out this post about speeding Firefox 3.5 startup too.

Credits for IniFox: infospyware

-For Mac OSX:

Close Firefox and run the following command:

CODE
cd ~/Library/Application\ Support/Firefox/Profiles/
for f in */*.sqlite; do sqlite3 $f ‘VACUUM;’; done

Septiembre 19, 2009 Publicado por m3n3chm0 | Informática,internet,frikadas...noticias | | Aún no hay comentarios