สองสามวันนี้แทบจะเลิกอ่านบล็อก Tech ไปเลย เพราะมีแต่ข่าว iPhone จนจะอ้วกออกมาเป็นแอ๊ปเปิ้ลอยู่แล้ว (อ้วกออกมาเป็น iPhone ไม่ไหว แพงเกิน เป็นแอปเปิ้ลลูกจะไม่กี่ cent ไปก่อนละกัน) จนวันนี้อ่านเจออันนี้เข้า.. บ้าไปแร๊ว
[via Engadget]
From Drivl
4. Code is not three dimensional
Remember in “hackers” when the gibson is depicted as a three dimensional city that the hackers must navigate through? Bullshit! We may use a dash of color in our shell to make things a bit clearer, but last I checked my terminal app doesn’t require OpenGL. I’m working here, bitches - I’m not playing quake.
[via BoingBoing]
ตัวเองไม่ได้ทำยังงี้หรอกนะ เพราะเลิกดูไปได้สักพักใหญ่แล้ว (ทนอึดอัดกับคำถามที่ไม่มีวี่แววว่าจะมีคำตอบไม่ไหวน่อ)

[via TVSquad]
หุๆๆ ท่าทางชาวสวีดิชจะคลั่งพี่ยุ่นพอควรเลยนะนี่ ทั้งชอบ hi tech ทั้งชอบ fashion 

The “Kiss Me!” gown and suit was fabricated specifically for a Swedish couple from Indian silks of various colors, and wired up with “smart textile” technology (as seen in the Secret Message Glove) that transmits pre-written messages when the articles make contact. Although the scene was far from traditional, it mattered not to the Swedish lovebirds, and when the couple kissed after their endearing professions, the textiles sent secret messages to each of them that could only be discovered on the tiny displays hidden in not-so-public locations.[via Engadget]
Haven’t heard of this? Read here and then come back to watch this much better explanation from the always hilarious John Hodgman.
[video via Gizmodo]
บล็อกเพื่อนๆพี่ๆน้องๆของบุกหลายคนตั้งรากฐานอยู่ Bloggang ปัญหาที่ตามมาก็คือ Bloggang ไม่มี RSS feed ซึ่งก็หมายความว่าต้องคอยเช็คบล็อกนั้นๆเองทุกวัน หรือไม่ก็คอยรีโหลดหน้าหลักของ Bloggang ซึ่งก็สะดวกห่างไกลกับการมี RSS feed เป็นอย่างมาก จนวันก่อนนี้เองไปอ่านเจอว่ามีบริการใหม่ออกมา ซึ่งจะคอยแจ้งทางอีเมล์ว่าหน้าเว็บนั้นๆมีการเปลี่ยนแปลง บริการที่ว่านี้ก็คือ ChangeNotes ซึ่งสามารถสมัครติดตั้งใช้งานได้ง่ายมาก บุกใช้เวลาไม่กี่นาทีก็สมัครใช้งานได้เรียบร้อย
แต่แหม ตั้งแต่สมัครไปนี่ เพื่อนๆพร้อมใจกันไม่อัพบล็อกกันเฉย เลยยังไม่รู้เลยว่าบริการใช้ดีไม่ดียังไง 
ป.ล. เวลาแอ๊ดบล็อกจากบล็อกแก๊ง ต้องแอ๊ด URL ของแต่ละ group blog นะคะ ใส่เป็น http://ชื่อบล็อก.bloggang.com ไม่ได้ เพราะว่าลิ้งค์นี้มันเป็นลิ้งค์ที่คอย forward ไปหน้าบล็อกที่อัพเดทเท่านั้น ไม่มีเนื้อหาใหม่ในหน้าเว็บเอง
[via LifeHacker]
Geek gone 1i7 
// Sonnet 18: Shall I compare thee to a summer’s day?
// by William Shakespeare
// ported to ActionScript 2.0 by Satori Canton - ActionScript.com
//
// entered in the 2006 Turdhead ActionScript Poetry contest
//
// Original poem can be viewed at:
// http://plagiarist.com/poetry/915/var summer:Object = {};
var thee:Object = {};summer.name = “Summer Day”;
thee.name = “Thee”;summer.lovelyness = 9;
thee.lovelyness = 10;summer.temperature = 98;
thee.temperature = 98.6;summer.lease = new Date(2006, 7, 31).getTime() - new Date(2006, 5, 1).getTime();
thee.lease = new Date(2042, 6, 12).getTime() - new Date(1970, 8, 25).getTime();summer.complexion = 0xFFCC33;
thee.complexion = 0xFFCCCC;summer.fair = 10;
thee.fair = 10;summer.getValue = function():Number {
return –this.fair;
};
thee.getValue = function():Number {
return this.fair;
};summer.incrementTime = function():Number {
return –this.lease;
};
thee.incrementTime = function():Number {
return this.lease;
};var man:Object = {};
man.hasEyes = true;
man.canBreathe = true;
man.lease = 10000;
man.liveLong = function():Void {
this.lease *= 10;
};
man.giveLife = function(o:Object):Void {
o.lease++;
trace(o.name + ” is given life”);
};
man.compare = function(o1:Object, o2:Object):Void {
if (this.canBreathe && this.hasEyes) {
this.liveLong();
var n1:Number = 0;
var n2:Number = 0;
var o1isBetter:Boolean;
for (var i in o1) {
if (typeof (o1[i]) == “function”) {
o1isBetter = o1[i]() > o2[i]() ? true : false;
} else {
o1isBetter = o1[i] > o2[i] ? true : false;
}
n1 += Number(o1isBetter);
n2 += Number(!o1isBetter);
}
this.giveLife(n1 > n2 ? o1 : o2);
}
};man.compare(summer, thee);
ชอบบรรทัดที่ไฮไล้ท์ไว้ข้างบนมากค่ะ ฮ่าๆๆ 
[via Digg]
บทความนี้อาจจะเขียนขึ้นเพื่อ เอ่อ “เฉพาะกิจ”
แต่บุกเห็นว่าเป็นหลักการที่มีประโยชน์ สามารถนำไปใช้ได้ทั่วไป สำหรับใครๆที่ท่องเว็บเล่นเน็ทเป็นประจำ ลองอ่านดูค่ะ
[via BoingBoing]
Fix:
)via [DownloadSquad]