jueves, septiembre 28, 2006
martes, septiembre 26, 2006
lunes, septiembre 25, 2006
viernes, septiembre 22, 2006
Thumbnail.java - Load an image, scale it to thumbnail size and save it as JPEG
Thumbnail.java - Load an image, scale it to thumbnail size and save it as JPEG: "The third and fourth program argument contain the maximum size of the thumbnail to be created.
The actual size of the thumbnail will be computed from that maximum size and the actual size of the image (all sizes
are given as pixels).
The code that does this is not really very readable, and also not essential to loading and saving image files.
But it is necessary to create a thumbnail that is scaled correctly."
Publicado por SiTo en 9/22/2006 02:58:00 p. m. 0 comentarios
JIMI Software Development Kit
JIMI Software Development Kit: "JIMI Software Development Kit"
Publicado por SiTo en 9/22/2006 02:57:00 p. m. 0 comentarios
Como configurar JAVA JDK | Fedora-es
Como configurar JAVA JDK | Fedora-es: "Como configurar JAVA JDK"
Publicado por SiTo en 9/22/2006 10:36:00 a. m. 0 comentarios
jueves, septiembre 21, 2006
Intel(R) PRO/Wireless 2200BG Network Connection driver on fedora 5
Intel(R) PRO/Wireless 2200BG Network Connection driver on fedora 5: "
I am still a beginner on linux and I want to install the Intel(R)
PRO/Wireless 2200BG Network Connection driver on fedora core 5 kernel
2.6.15-1.2054_FC5.
Firstly the basic ieee80211 interface need to be installed.
"
Publicado por SiTo en 9/21/2006 04:28:00 p. m. 0 comentarios
Personal Fedora Core 5 Installation Guide
Personal Fedora Core 5 Installation Guide: "yum install kernel-devel"
Publicado por SiTo en 9/21/2006 04:27:00 p. m. 0 comentarios
Antonio's blogging room
Antonio's blogging room: "Conclusion: beware of singletons"
Publicado por SiTo en 9/21/2006 09:16:00 a. m. 0 comentarios
miércoles, septiembre 20, 2006
martes, septiembre 19, 2006
lunes, septiembre 18, 2006
miércoles, septiembre 13, 2006
Cita
está en prepararse para aprovechar
la ocasión cuando se le presente.
Publicado por SiTo en 9/13/2006 08:43:00 a. m. 0 comentarios
martes, septiembre 12, 2006
Direct Manipulation Using JavaScript and CSS
Direct Manipulation Using JavaScript and CSS: "Examples"
Publicado por SiTo en 9/12/2006 01:58:00 p. m. 0 comentarios
lunes, septiembre 11, 2006
Encytemedia: The Flurry Continues: More Prototype Updates
Encytemedia: The Flurry Continues: More Prototype Updates: "http://www.epiphantastic.com/index.php/enhanced-prototype-event-model/"
Sample
Publicado por SiTo en 9/11/2006 12:30:00 p. m. 0 comentarios
domingo, septiembre 10, 2006
jueves, septiembre 07, 2006
miércoles, septiembre 06, 2006
Encytemedia: The Flurry Continues: More Prototype Updates
Encytemedia: The Flurry Continues: More Prototype Updates
Ajaxian.com article:
Prototype: DOM, Events, and documentation?
Category: PrototypeView the technorati tag: Prototype
Justin Palmer is shedding more light on Prototype updates.
This time around he covers events and DOM traversal:
Events
In days past bind was great at accepting additional arguments, however, bindAsEventListener didn?t get this love until now. We can pass those additional arguments to bindAsEventListener with ease:
var Clicker = Class.create();
Clicker.prototype = {
initialize: function(link) {
Event.observe(link, 'click', this.onClick.bindAsEventListener(this, 'red'));
},
onClick: function(event, color) {
Event.element(event).setStyle({color: color});
Event.stop(event);
}
}
new Clicker('cool');
DOM made simple
We all hate the DOM, so how about some simpler methods to traverse it?
$('menu').up();
$('menu').down()
$('menu').next()
$('menu').previous()
$('menu').down(2) // grab second arg
$('menu').down('li', 0)
$('sidebar').descendants()
$('selected').previousSiblings()
$('actions').ancestors()
$('actions').siblings()
And it looks like documentation is in the works:
On the documentation front: We have something in the works. We have the API about 80% documented and will have this up for public consumption as soon as we can. This will start off as very basic API docs, but we plan on putting a lot of effort in this as time goes by. On that note, you can send your thanks to Andrew Dupont considering he has worked very hard on the docs.
Publicado por SiTo en 9/06/2006 09:48:00 a. m. 0 comentarios