Thursday, January 19, 2006
http://www.worth1000.com/cache/contest/contestcache.asp?contest_id=8696&display=photoshop#entries




posted by Leandro on Thursday, January 19, 2006 7:08:31 PM (E. South America Daylight Time, UTC-02:00)  #    Comments [0] Trackback
Steve Gibson (of SpinRite fame) proposed a theory in his weekly Thursday-night podcast last week that if true, would be the biggest scandal to ever hit Microsoft - that the Windows Metafile (WMF) vulnerability that drew so much media attention last month is actually a backdoor programmed intentionally by Microsoft for unknown reasons.

http://www.sysinternals.com/blog/2006/01/inside-wmf-backdoor.html




posted by Leandro on Thursday, January 19, 2006 6:30:47 PM (E. South America Daylight Time, UTC-02:00)  #    Comments [0] Trackback
 Monday, January 16, 2006
http://www.codinghorror.com/blog/archives/000489.html




posted by Leandro on Monday, January 16, 2006 6:55:04 PM (E. South America Daylight Time, UTC-02:00)  #    Comments [0] Trackback
 Saturday, January 14, 2006

Pago um almoço no Alemão pra quem me explicar como esse japa faz isto:

http://gprime.net/video.php/theglasstrick

Link chupado do excelente blog: http://abandapodre.blogspot.com

post original: http://abandapodre.blogspot.com/2006_01_01_abandapodre_archive.html#113718972433748922



posted by Leandro on Sunday, January 15, 2006 5:11:56 AM (E. South America Daylight Time, UTC-02:00)  #    Comments [1] Trackback
 Friday, January 13, 2006
Ficou muito bom!

http://www.xto.pro.br/tecidos/OHQCOT.WMV




posted by Leandro on Friday, January 13, 2006 9:09:00 PM (E. South America Daylight Time, UTC-02:00)  #    Comments [0] Trackback
Aviso!

Imagens fortes pra caralho, se você não aguenta não veja! Trash total!!!


imagens: http://img33.imageshack.us/img33/8765/cortacabea2iq.jpg

post na hardMOD: http://200.221.3.178/showthread.php?s=&threadid=397590




posted by Leandro on Friday, January 13, 2006 8:58:05 PM (E. South America Daylight Time, UTC-02:00)  #    Comments [0] Trackback
...

"However, Intel Australia, while being careful not to comment on Apple’s hardware specifically, says motherboards based on the Intel 945 chipset already support EFI and can boot Windows with no problems."

...

http://www.apcmag.com/apc/v3.nsf/0/64E7EA353646669ECA2570F50012430B




posted by Leandro on Friday, January 13, 2006 2:04:02 PM (E. South America Daylight Time, UTC-02:00)  #    Comments [0] Trackback

One of the biggest challenges in my old job was that customers didn't think Microsoft was using managed code. Well, the truth is that we have a good amount of managed code in the three years that the .NET Framework has been released including operating systems, client tools, Web properties, and Intranet applications. For those of you that refuse to believe, here's an estimate of the lines of managed code in Microsoft applications that I got permission to blog about:

  • Visual Studio 2005: 7.5 million lines
  • SQL Server 2005: 3 million lines
  • BizTalk Server: 2 million lines
  • Visual Studio Team System: 1.7 million lines
  • Windows Presentation Foundation: 900K lines
  • Windows Sharepoint Services: 750K lines
  • Expression Interactive Designer: 250K lines  
  • Sharepoint Portal Server: 200K lines
  • Content Management Server: 100K lines

http://blogs.msdn.com/danielfe/archive/2005/12/16/504847.aspx




posted by Leandro on Friday, January 13, 2006 11:39:31 AM (E. South America Daylight Time, UTC-02:00)  #    Comments [0] Trackback
 Wednesday, January 11, 2006
Video muito bom que eu achei no blog do Eduardo

post: http://eduardo.zip.net/arch2006-01-08_2006-01-14.html#2006_01-11_08_44_23-4089777-0

link direto: http://www-personal.umich.edu/%7Eaustincb/pacman/pacamajig.mov




posted by Leandro on Wednesday, January 11, 2006 6:54:38 PM (E. South America Daylight Time, UTC-02:00)  #    Comments [0] Trackback
 Tuesday, January 10, 2006
com o cu na mão: http://www.kaoz.dk/uk/funnymovies/showclip.asp?id=158
que cagada: http://www.kaoz.dk/uk/funnymovies/showclip.asp?id=133
legal : http://www.kaoz.dk/uk/funnymovies/showclip.asp?id=48




posted by Leandro on Tuesday, January 10, 2006 6:57:28 PM (E. South America Daylight Time, UTC-02:00)  #    Comments [0] Trackback
http://www.codeproject.com/csharp/UsingAOPInCSharp.asp




posted by Leandro on Tuesday, January 10, 2006 6:03:13 PM (E. South America Daylight Time, UTC-02:00)  #    Comments [0] Trackback
 Friday, January 06, 2006
Será que eu sou o único que que acha o seguinte código em C# mais legível que o equivalente em java? O Goya garante que Java é mais legível.

Será que eu sou o único que prefere usar sobrecarga de operadores a invocação de métodos? O Goya prefere a versão Java.

// C#
static
void Main()
{
    Complex a = new Complex(2, 3);
    Complex b = new Complex(3, 4);

    Complex c = (a + b * b) / a * b;
}


// Java
static public void main(String [] args)
{
    Complex a = new Complex(2, 3);
    Complex b = new Complex(3, 4);

    Complex c = Complex.div(Complex.add(a, Complex.mul(b, b)), Complex.mul(a, b));
}






posted by Leandro on Friday, January 06, 2006 11:35:01 PM (E. South America Daylight Time, UTC-02:00)  #    Comments [2] Trackback