introbella is on the move!

Oh yeah! I really like making this announcement.

introbella is on it! We’re making new songs and we’re gonna be releasing everything in english from now on! World, get ready for some really cool music!

Our newest project is to compose a few EPs. 4-6 songs per album and let you have them via our website and jamendo’s corner.

Our newest draft is here. Check it out if you like. Send contributions if feeling like it.

What? Don’t know how to contribute? How about:

- Correcting/Augmenting the lyrics.
- Sending some samples/solo/arrangements
- Send a structure proposal
- Traducitons to other languages
- Providing artwork for that theme.
- Buy and donate introbella.org
- Give us an instance at CloudSigma for our server needs ;)

This is our project and it’s 100% CC-BY-SA and FOSS related. We love doing this and we want to share it in any way possible.

SPECS

Audio should be send in 48 kHz @ 24bit please.
Text should be sent on TXT format (UTF-8)
Artwork should be sent on open formats and made with FOSS (Gimp, Inkscape, etc)… no Photoshop!! yuck!

Damn, we might provide repos in the future! Who knows! For the time bing, here’s the info you need:

# website

http://introbella.com/

# Jamendo

http://jamendo.com/artist/introbella

# Downloads

http://introbella.com/downloads

Disco de introbella en lugar #367 en Jamendo!

Wuju!

Me da gusto anunciar que introbella está en el lugar #367 de Jamendo!

Digo, ya van llegando a 50,000 discos publicados y, el que nuestra banda; que es Creative Commons y de Guadalajara, llegue a tal posición merece una auto-felicitación!

Nos mega felicito! Ponemos a México y a Guadalajara en un mapa mundial y exportamos la cultura al mundo para contribuir a la mezcla de la gran piedra flotante del sistema solar!

A webo! Apoya, puto(a)!

# Album de introbella en Jamendo

http://www.jamendo.com/en/album/89261

p.d. Y, recuerda, descarga, remezcla, redistribuye y todo lo que quieras sin problemas! Solo tienes que decir de quién es el trabajo original! ;)

BoxGrinder 0.9.2 soporta a CloudSigma!

Qué buena noticia!

Hoy me contactó Robert para darme la buena noticia!

No sabes qué es BoxGrinder?! Es una madre para crear servers en la nube; con un simple comandito y una definición.

Te invito a ver el tutorial que pongo al fondo. Está de mega-pelos. Así, puedes crear servers en CloudSigma en un ratito!

Y, lo bueno, es que está en Fedora!.. .bueno, casi… al momento de escribir esto, está la versión 0.9.2… pero eso cambia en unos días, ya que; me informa Marek, que está en testing ya! ;)

Gracias Marek Goldmann por la corrección… ;=)

# Fuente

http://boxgrinder.org/blog/2011/05/19/cloud-sigma-delivery-support/

# CloudSigma
http://cloudsigma.com/

HowTo: Deploy using git

This one is not mine. It’s, actually, a transcript. Please, check out the source at the bottom

#
# Local
#

# Create a website
mkdir website && cd website
git init
echo 'Hello, world!' > index.html
git add index.html
git commit -q -m "The humble beginnings of my web site."

# add remotes
git remote add deploy-production ssh://server.example.org/var/lib/git/deploys/production/website.deploy

# AFTER setting up remote, push files
git push deploy-production +master:refs/heads/master

# update
git push deploy-production

#
# Remote
#

# the repo
mkdir example.org.deploy && cd example.org.deploy
git init --bare

mkdir /var/www/www.example.org
cat < < EOF > hooks/post-receive
#!/bin/sh
GIT_WORK_TREE=/var/www/www.example.org git checkout -f
EOF

# make the hook executable
chmod +x hooks/post-receive

# Notes
Setting receive.denycurrentbranch to “ignore” on the server eliminates a
warning issued by recent versions of git when you push an update to a
checked-out branch on the server.

# src

http://toroid.org/ams/git-website-howto

HowTo: Change upload_max_filesize on a standard DreamHost account

Ok, recently, a good friend, needed some help. He wanted to change the upload_maz_filesize value of his DreamHost account but was so frustrated when he learned that .htaccess files don’t work for him…

It is simple: you’re using FastCGI and you should be using .user.ini files to set php values and not .htaccess.

So, the answer was to type this into a .user.ini file. Remember the dot (.) before user.ini ok?!
upload_max_filesize = 50M

Make sure you’re using FastCGI in your domain’s settings. Also, be patient. This setting is cacheable and might take a few minutes/hours to get read. Mine took 4-5 mins at most.

Things to look out for:

- If apache has a limited post option, change that using an .htaccess
- Remember to change the post value in .user.ini for PHP too, ok? I’ll let you google that yourself.
- Check your values with a test.php file and

<?php phpinfo(); ?>

in it! Remember to delete it once done!

Anyway, I hope this helps.

p.s. this post was made in english due to the huge amount of idiots found by google when searched for. Those guys compile their own php into a local folder… damn guys!

And, remember to give my email: renich AT woralelandia DOT com when you go for an account @ DreamHost ok? ;)

HowTo: Cómo configurar un servidor de instalación en Fedora 14

Un servidor de instalación es muy útil. Nos ayuda a instalar sin necesidad de discos y madres de esas. Además, es mucho más rápido y podemos pre-configurar, por medio de un kickstart, la instalación.

Ahí te va:


# Hacerse root
su -

#
# Instalaciones
#

# Instalar cosas necesarias (edición 20110906)
yum install -y tftp-server httpd system-config-netboot-cmd

#
# tftp (xinetd)
#

# Habilitar tftp en xinted
cat < < EOF > /etc/xinetd.d/tftp
# default: off
# description: The tftp server serves files using the trivial file transfer
# protocol. The tftp protocol is often used to boot diskless
# workstation, download configuration files to network-aware printers,
# and to start the installation process for some operating systems.

service tftp
{
disable = no
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /tftpboot
per_source = 11
cps = 100 2
flags = IPv4
}
EOF

# Configurar xinetd y tftp para que inicie al momento de bootear
chkconfig xinetd on
chkconfig tftp on

#
# Apache
#

# Habilitar e iniciar apache. Uso restart por si las moscas...
chkconfig httpd on
service httpd restart

# Montar el ISO de Fedora 14
mkdir /mnt/cdrom
mount -o loop /dev/cdrom

# Crear un directorio accesible desde apache y copiar el contenido del ISO a la sección standard según Fedora
mkdir -p /var/www/fedora/releases/14/Fedora/x86_64/os
cp -pruv /mnt/cdrom/{.*,*} /var/www/html/fedora/releases/14/Fedora/x86_64/os

# Desmontar el ISO de Fedora 14
umount /mnt/cdrom

#
# DHCP
#

# Configurar DHCP para ofrecer instalaciones. Agregar las siguientes líneas en /etc/dhcp/dhcpd.conf
allow booting;
allow bootp;

class "pxeclients" {
match if substring(
option vendor-class-identifier, 0, 9
) = "PXEClient";
next-server 192.168.2.128;
filename "linux-install/pxelinux.0";
}

#
# PXE
#

# Agregar Fedora 14 a la lista de OSes soportados. La locación (-L) es relativa al dominio u IP. Puedes usar una IP en lugar de miservidor.midominio.tld.
pxeos -a -i 'Fedora 14 x86_64' -p HTTP -D 0 -s miservidor.midominio.tld -L /fedora/releases/14/Fedora/x86_64/os F14

# Ahora, habilitamos a los clientes de nuestra red a instalarlo. No puse el 4to octeto para dejar a toda mi red clase C accesar las instalaciones.
pxeboot -a -r 512000 -e eth0 -O F14 192.168.69

#
# Checa tus configs
#

# Apache
firefox http://localhost/fedora/releases/14/Fedora/x86_64/os/images/pxeboot

# pxe
pxeos -l
pxeboot -l

# Notas
* En pxeboot es importante usar la -e ethX para restringir el acceso a tu NIC de red (si tienes múltiples NICs en tu server)
* Aguas con el DHCP. Si no configuras a tu cliente (en el BIOS) para que use “Net Boot” o “PXE Boot” o algo así, no jala nada
* Si quieres configurar tu propio kickstart, utiliza system-config-kickstart o algo así… y edita /tftpboot/linux-install/F14/ks.cfg. NO BORRES LAS LÍNEAS QUE YA TIENE SI NO LE SABES!
* Se puede mantener un repo de actualizaciones local para tu red… pero ya me dió weba seguirle al HowTo…

En Wings Army, las propinas son a webo!

Hoy fuí al festival de la música en Guadalajara, Jalisco, México.

De salida, me fuí a cenar al Wings Army de Chapultepec. Además, iba con mi novia Ania y, mi compa, el Esteban.

Pedí 50 alitas! A webo; pinche comilona. Además, unas tiras, chelas y la madre.

Pues, a la hora de la cuenta, fueron $576 y, la neta, nos atendieron bien. La bronca fue que, con pluma, me pusieron la propina sugerida. 57 pesos. Como nos atendieron bien, pensé en darle $65 pesos a la chava hasta que me dí cuenta que ya me habían retenido la propina en el cambio.

Qué puto coraje! Agarré el ticket y le pregunté a la mesera que si nos habían cobrado la propina y me dijo que si…

Lo único que hice fue decirle: “Te iba a dejar $65… no está chido… nada chido… ”

No se te hace de putos esto? Que no les dan sueldo? Ahora resulta que, los meseros, son accionistas del lugar y retienen el 10% de las ventas totales?! Ya quisieran los putos dueños!

Wings Army, no sean negreros y páguenles a los muertos de hambre de sus meseros. O, ya mejor, véndanles la franquicia, no?

Ésto es inmoral y no aceptaré que me lo vuelvan a hacer. La próxima vez, voy a exigir que me regresen mi dinero. No permitas que te la apliquen a tí.

HowTo: Cómo instalar OilRush en Fedora

Si, como yo, ya compraste el OilRush y bajaste un pre-release (versión 0.6 o posterior) he aquí cómo hacerlo jalar:

Por lo pronto, yo lo hice jalar con:

[renich@introdesk OilRush-0.6]$ lspci | grep VGA
01:00.0 VGA compatible controller: nVidia Corporation G86 [GeForce 9400 GT] (rev a1)


# Instala RPMFusion
su -c 'yum localinstall --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm'

# Instala nvidia
su -c 'yum install kmod-nvidia'

# Configura nvidia
su -c 'nvidia-xconfig'

# Re-empieza tu compu
su -c 'shutdown -Fr now'

# Descarga el juego
echo "descarga el juego desde tu cuenta"

# Descomprímelo
chmod 700 OilRush-0.6.run; cd OilRush-0.6

# Échalo a jalar
./x64_1024x768_windowed.sh

Es obvio que, si tienes la resolución de 1920 x 1080, pues corre ese…

El juego está bien chido; las gráficas poca madre y la música de primera… además, es de los pocos juegos comerciales nativo para GNU & Linux. Vamos apoyandolos, eh?!

p.d. no olvides leer la hoja de requerimientos de ellos. Necesitas openal y ese rollo.

# Juego

http://oilrush-game.com/