Episodio 025 – DVD de 50 Teras y Llamadas Gratis a 60 paises con Gizmo

Descarga el mp4 | Subscribete GRATIS en iTunes

Pues ya son 25 episodios y aun estamos aqui.


(Posible mirror de wedoit4you.com, vamos a ver…)

Lamentablemente por la gran carga de trabajo en los proyectos de wedoit4you.com, Frostwire.com y VidaTech, no pudimos tener el episodio especial con MorpheoZ esta semana.

No obstante en este episodio, utilizamos la adversidad para hacer algo provechoso para la calidad de audio y concentración de nuestros locutores.

Ahora si es verdad que Kakei esta de vuelta, tambien tenemos a Tati, vean como hicimos este podcast, y díganos que tal les parece, como les llega la noticia, como les entretiene mas? Si todos hablando por Skype, o cada quien por su lado dando las noticias que mas le importan.

En las noticias de esta semana tenemos:

Con Kakei:

Con La Tati:

Episodio 0024 – Aeromall y el ‘iPod’ de Microsoft

Descarga en mp4 | Suscribete en iTunes aqui

En el episodio de hoy:

VirtueDesktops y Parallels en la iMac Intel

Aqui los dejo con 2 videos.

Instale el VirtueDesktops para cambiar de escritorios con efectos especiales, y el otro video mientras instalo Windows XP SP2 en un disco duro virtual con un ISO torrenteado. La version de Parallels es un trial de 15 dias, si funciona al pelo creo que vale la pena comprarlo, es preferible que comprar una PC nueva.

Podcast Episodio 007 – La música de wedoit4you.com ahora sale por acá

Si lo escuchas aqui, ponte los audifonos y sube el volumen. Si lo bajaste con tu iPod por iTunes, ponle lock al iPod y vamos a ver si puedes evitar bailar.

Gran cantidad de oyentes del podcast de wedoit4you.com se quejaba de la musica, asi que decidimos ponerla al final de los episodios.
Como el episodio anterior sobre paso 1 hora, decidimos traer la musica que queriamos (20minutos mas), a un podcast aparte.

La musica es super 90tosa, espero que disfruten.

Con la Música de:

  • Dee Lite
  • C+C Music Factory
  • Technotronic

wedoit4you.com has mail again – Thanks to Google.

We fall in yet another evil but disguised in good plan from google.


Click to see screenshots

Now I’m trusting google with our @wedoit4you.com email hosting.

what the hell man… it’s free…

First of all, let me say this was Kakei’s Idea (for good or for worse cracksito!), and the result is that after over a year without our loved @wedoit4you.com email addresses we’re finally getting them back.

I just have a question for all you named. We were asked to change our MX records. This is what we put on our /var/named/wedoit4you.com.db file:


ASPMX.GOOGLE.COM. 14400 IN MX 1 wedoit4you.com.
ALT1.ASPMX.L.GOOGLE.COM. 14400 IN MX 5 wedoit4you.com.
ALT2.ASPMX.L.GOOGLE.COM. 14400 IN MX 5 wedoit4you.com.
ASPMX2.GOOGLEMAIL.COM. 14400 IN MX 10 wedoit4you.com.
ASPMX3.GOOGLEMAIL.COM. 14400 IN MX 10 wedoit4you.com.
ASPMX4.GOOGLEMAIL.COM. 14400 IN MX 10 wedoit4you.com.
ASPMX5.GOOGLEMAIL.COM. 14400 IN MX 10 wedoit4you.com.

Think there might be something wrong with our MX records?

UPDATE: yes, there was something horribly wrong… I was putting the whole thing backwards..
it had to be:


wedoit4you.com. in MX 0 ASPMX.L.GOOGLE.COM.
wedoit4you.com. in MX 5 ALT1.ASPMX.L.GOOGLE.COM.
wedoit4you.com. in MX 5 ALT2.ASPMX.L.GOOGLE.COM.
wedoit4you.com. in MX 10 ASPMX2.GOOGLEMAIL.COM.
wedoit4you.com. in MX 10 ASPMX3.GOOGLEMAIL.COM.
wedoit4you.com. in MX 10 ASPMX4.GOOGLEMAIL.COM.
wedoit4you.com. in MX 10 ASPMX5.GOOGLEMAIL.COM.

float:center

You wish…

So many work arounds to center divs, that I was almost getting to the point where I was about to start selling black t-shirts with the words

float:center

If you’re a web developer, web designer, and you have to deal with CSS, and CSS not working properly on IE (cause of it’s stupid box model conception and endless ilogic behaviour bugs) then I’m sure you have always wanted to be able to do something like “float:center”

I don’t really get why the people that made the CSS standards, didn’t include stupid float:center… there’s float:left, float:right… it’s only obvious. And worst of all, you know centering is one very important thing…

so we have to go around doing stuff like

margin:0 auto;

but that won’t really work on all occasions, you have to think of the size of the parent elements too, so that the auto margins will work correctly.

The other day a friend that’s a graphic designer even came up with his own trick of using percentages to add correct margins to center divs.

But look no more (at least until they decide to give us float:center), if you use Prototype, maybe you also use Scriptaculous…

Just add this to your effects.js file:


Effect.Center = function(element)
{
try
{
element = $(element);
}
catch(e)
{
return;
}

var my_width = 0;
var my_height = 0;

if ( typeof( window.innerWidth ) == 'number' )
{

my_width = window.innerWidth;
my_height = window.innerHeight;
}
else if ( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) )
{

my_width = document.documentElement.clientWidth;
my_height = document.documentElement.clientHeight;
}
else if ( document.body && ( document.body.clientWidth || document.body.clientHeight ) )
{

my_width = document.body.clientWidth;
my_height = document.body.clientHeight;
}

element.style.position = 'absolute';
element.style.display = 'block';
element.style.zIndex = 99;

var scrollY = 0;

if ( document.documentElement && document.documentElement.scrollTop )
{
scrollY = document.documentElement.scrollTop;
}
else if ( document.body && document.body.scrollTop )
{
scrollY = document.body.scrollTop;
}
else if ( window.pageYOffset )
{
scrollY = window.pageYOffset;
}
else if ( window.scrollY )
{
scrollY = window.scrollY;
}

var elementDimensions = Element.getDimensions(element);

var setX = ( my_width - elementDimensions.width ) / 2;
var setY = ( my_height - elementDimensions.height ) / 2 + scrollY;

setX = ( setX

This will center your div if you do something like this on Javascript to the div in question:


Effect.Center('idOfMyDiv')

Try it, it works.
You might want to hack the function in case you don't want this effect to center vertically.

Also, if you want to keep centering the div even on window resize or scroll, you'll have to add
callbacks to window.onresize and window.onscroll

And remember, Linux Rules.