miércoles, octubre 04, 2006

Software As She?s Developed » Blog Archive » Ajax/Javascript: 8 Ways to Create Graphics on the Fly

Software As She?s Developed » Blog Archive » Ajax/Javascript: 8 Ways to Create Graphics on the Fly: "(Off-topic: I've just updated my blog page, I prefer the 2-column sidebar because: (a) there are now 20 monthly archives links; (b) I wanted to add a ton of chicklets; (c) I wanted to add more bio info. BTW If you have a blog, here's a quick exercise: Place yourself in the mind of a new visitor for twenty seconds, and decide if this person could work out who you are, what you do, and how to contact you. Around 90% of blogs fail this test on the grounds it's impossible or way too hard.)"

lunes, octubre 02, 2006

Transcorners ? Cornerus Pride is there *scared*

Transcorners ? Cornerus Pride is there *scared*

In-Browser Wireframe Prototyping with Frametastic

In-Browser Wireframe Prototyping with Frametastic: "What I?ve really longed for is an ultra-lightweight, simple tool for producing wireframes right inside the browser. No flash, no java, darn it - no server even - just a pure HTML / CSS / Javascript solution. I wanted something where I could draw a few colored boxes titles, then screenshot and print if necessary. So, without further adieu, I present Frametastic 0.1."

Digital Web Magazine - Architecting CSS

Digital Web Magazine - Architecting CSS

Using AJAX with Java Technology and Converting a POJO to a Persistent Entity Tech Tips

Using AJAX with Java Technology and Converting a POJO to a Persistent Entity Tech Tips

Building Mashup Portlets

Building Mashup Portlets

martes, septiembre 26, 2006

viernes, septiembre 22, 2006

Creating a thumbnail

Creating a thumbnail

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."

JIMI Software Development Kit

JIMI Software Development Kit: "JIMI Software Development Kit"

ResizR - Easy online image resize

ResizR - Easy online image resize

Como configurar JAVA JDK | Fedora-es

Como configurar JAVA JDK | Fedora-es: "Como configurar JAVA JDK"

miércoles, septiembre 13, 2006

Kart

Laboratorio de Cad

Cita

El éxito en la vida de un hombre
está en prepararse para aprovechar
la ocasión cuando se le presente.

miércoles, septiembre 06, 2006

Jack Slocum?s Blog

Jack Slocum?s Blog

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.

Prototype Carousel

Prototype Carousel

Enterprise Java Community: Building on Struts for Java 5 Users

Enterprise Java Community: Building on Struts for Java 5 Users

miércoles, agosto 30, 2006

lunes, agosto 28, 2006

Graphics by Greg

Graphics by Greg

Interesante ver la parte de Updated Scriplaculous Sortable Demo

martes, agosto 08, 2006

Integrating Tomcat 5 and Apache 2

Integrating Tomcat 5 and Apache 2

Elephants Dream » Download & Watch

Elephants Dream » Download & Watch

IEs 4 Linux - Internet Explorers para Linux

IEs 4 Linux - Internet Explorers para Linux: "¿A quién puede interesar?"

Instalando Java en Fedora 5

Lo primero es descargar de la página de SUN la versión para Linux (yo he descargado la J2SE en formato .bin) he instalarla en modo superusuario:
1.- Ponemos permisos de ejecución ?chmod +x jdk-1_5_0_06-linux-i586.bin?
2.- Desde /usr/local (directorio donde lo instalaremos) ejecutamo jdk-1_5_0_06-linux-i586.bin
3.- Creo un enlace directo ?ln -s /usr/local/jdk1.5.0_06/ /usr/local/j2sdk? que nos permitira un cambio facil de máquina virtual.
4.- Poenemos el PATH en nuestro Script de arranque
JAVA_HOME=/usr/local/j2sdk
PATH=$JAVA_HOME/bin:$PATH
5.- Comprobamos que esta instalado ?java -version?

Instalamos el Pulg-in, para que FireFox pueda ejecutar Java.
ln -s /usr/local/j2sdk/jre/plugin/i386/ns7/libjavaplugin_oji.so
/usr/lib/mozilla/plugins/libjavaplugin_oji.so

jahshaka.org - Powering the New Hollywood - Home

jahshaka.org - Powering the New Hollywood - Home: "WELCOME TO JAHSHAKA:



The worlds first OpenSource Realtime Editing and Effects System. Jahshaka takes advantage of the power of OpenGL and OpenML to give its users exceptional levels of performance. We currently support Linux, OsX, Irix and Windows, and Solaris is on the way! Jahshaka is licenced to the public under the GNU GPL agreement.

"

CrossFTP Home - The Best Cross-Platform FTP for Windows, Linux, and Mac

CrossFTP Home - The Best Cross-Platform FTP for Windows, Linux, and Mac

SortedTable documentation

SortedTable documentation

lunes, julio 17, 2006

viernes, julio 07, 2006

martes, junio 27, 2006

PracticalEmbeddedJava

PracticalEmbeddedJava

Code Beach - Convert a Hex String to an Integer and Back Again in Java

Code Beach - Convert a Hex String to an Integer and Back Again in Java

http://www.idevelopment.info/data/Programming/java/io/HexConversions.java

http://www.idevelopment.info/data/Programming/java/io/HexConversions.java

http://www.idevelopment.info/data/Programming/java/io/HexConversions.java

http://www.idevelopment.info/data/Programming/java/io/HexConversions.java

Serialio - Products - Serialport

Serialio - Products - Serialport

Agri Vision - JMM (Java Multi Meter)

Agri Vision - JMM (Java Multi Meter): "Mac OS X download
"

Serial port data acquisition in Java

Serial port data acquisition in Java: "The documentation of the code (as produced by javadoc) is available here. You want to start with the
SerialDAS class, and leave the PortParams and SerialIO classes for
extensions, etc."

Java Tech - Chapter 23 : Outside the JVM

Java Tech - Chapter 23 : Outside the JVM

Engineering in the Real World

Engineering in the Real World: "Java Code to simulate the RCX

            
RCXcomm.java - Code to simulate
protocol on RCX end

            
SerialTalk.java - Code to communicate on
RS232 serial port"

TechOnLine - Serial + Java = The World (Mostly)

TechOnLine - Serial + Java = The World (Mostly): "Serial + Java = The World (Mostly)"

Tutorial de Java - Comunicaciones Serie

Tutorial de Java - Comunicaciones Serie: "Uso del API de Comunicaciones"

lunes, junio 19, 2006

Particletree · 10 Tips To A Better Form

Particletree · 10 Tips To A Better Form

Onion Skinned Drop Shadows

Onion Skinned Drop Shadows: ".wrap1, .wrap2, .wrap3 {
display:inline-table;
/* \*/display:block;/**/
}
.wrap1 {
float:left;
background:url(shadow.gif) right bottom no-repeat;
}
.wrap2 {
background:url(corner_bl.gif) left bottom no-repeat;
}
.wrap3 {
padding:0 4px 4px 0;
background:url(corner_tr.gif) right top no-repeat;
}"

Fading Roses & Raging Viruses » AJAX Design Patterns

Fading Roses & Raging Viruses » AJAX Design Patterns

jueves, junio 15, 2006

Rich Unger's Blog: A simple class browser

Rich Unger's Blog: A simple class browser

Advanced DAO programming

Advanced DAO programming: "public void rollback()"

Introduction to Hibernate

Introduction to Hibernate: "A link to the performance FAQ on the Hibernate website can be found in the Resources section. "

jax magazine :: The Premier Online Resource for Java, Apache, XML, and Web Services

jax magazine :: The Premier Online Resource for Java, Apache, XML, and Web Services

Using JAAS for Authorization and Authentication

Using JAAS for Authorization and Authentication

JAAS Reference Guide

JAAS Reference Guide: "This document assumes you have already read the following:"

Java en castellano. Evitar los Obstaculos del Desarrollo con Struts java jsp

Java en castellano. Evitar los Obstaculos del Desarrollo con Struts java jsp

Bytonic Software

Bytonic Software: "about"

intensivstation :: CSS Templates :: Templates

intensivstation :: CSS Templates :: Templates

Downloads @ic#code

Downloads @ic#code

Advanced CSS Layouts: Step by Step - WebReference.com

Advanced CSS Layouts: Step by Step - WebReference.com: "Evolution of a Home Page - Kwon Ekstrom's CSS Versions"

Learning to Use Regular Expressions

Learning to Use Regular Expressions: "Alternation of patterns"

MaxMind - GeoIP | Site License Overview

MaxMind - GeoIP | Site License Overview

SortedTable

SortedTable: "Documentation"

[JavaScript] Animation.Cube - Rotating Cube Animation Effect

[JavaScript] Animation.Cube - Rotating Cube Animation Effect

SinkMyShip Blog » Blog Archive » Easy AJAX Chat

SinkMyShip Blog » Blog Archive » Easy AJAX Chat

AJAX Tutorial

AJAX Tutorial: "Really easy field validation with Prototype, By tetlaw.id.au"

YvoSchaap.com

YvoSchaap.com: "Example page: inline edit (no JS knowledge needed) [source ] | Inline example: Please edit me!





"

vega.rd.no - Mapping website visitors in real time

vega.rd.no - Mapping website visitors in real time: "The map"

My 5 CSS Tips ? Business Logs

My 5 CSS Tips ? Business Logs

How to write Firefox extensions using BugMeNot as an example

How to write Firefox extensions using BugMeNot as an example

Joseph Scott?s Blog » Blog Archive » AJAX Edit In Place With Prototype, Version 0.2.0

Joseph Scott?s Blog » Blog Archive » AJAX Edit In Place With Prototype, Version 0.2.0

ONJava.com -- Clustering and Load Balancing in Tomcat 5, Part 1

ONJava.com -- Clustering and Load Balancing in Tomcat 5, Part 1: "Weight-based"

java.net: Distribute, Detach, and Parallelize in Tomcat

java.net: Distribute, Detach, and Parallelize in Tomcat

miércoles, junio 07, 2006

Cómo configurar Apache+SSL en Win32

Cómo configurar Apache+SSL en Win32: "Syntax error on line [some number] of ...httpd.conf
Cannot load apache/modules/mod_ssl.so into server
(126) The module could not be found:"

Intel® PRO/Wireless 2200BG Driver for Linux

Intel® PRO/Wireless 2200BG Driver for Linux

Fedora Core 2 Linux and Centrino (Intel PRO/Wireless 2100) wireless

Fedora Core 2 Linux and Centrino (Intel PRO/Wireless 2100) wireless

CENTRINO - WIRELESS - FEDORA CORE 3 ........ COMPATIBLE!!! | Fedora-es

CENTRINO - WIRELESS - FEDORA CORE 3 ........ COMPATIBLE!!! | Fedora-es: "La intel pro wireless 2200."

apache+ssl+tomcat

apache+ssl+tomcat

Java en castellano. Tomcat - Introducción

Java en castellano. Tomcat - Introducción: "openssl req -verify -in REQ.pem"

Lucene: A Tutorial Introduction to Full-Text Indexing in Java > Full-Text Searching

Lucene: A Tutorial Introduction to Full-Text Indexing in Java > Full-Text Searching: "Lucene: A Tutorial Introduction to Full-Text Indexing in Java"

The Wakaleo Blog : Java, J2EE and project-management articles by John Ferguson Smart

The Wakaleo Blog : Java, J2EE and project-management articles by John Ferguson Smart

Enterprise Java Community: SSO and Identity Management

Enterprise Java Community: SSO and Identity Management: "Commercial Solutions"

martes, mayo 30, 2006

jueves, mayo 18, 2006

Daniel Nolan - Home

Daniel Nolan - Home

SurFTP.com - Web Based FTP - Your easy way to FTP online!

SurFTP.com - Web Based FTP - Your easy way to FTP online!

The definitive Google ranking strategy guide - Googlerank.com

The definitive Google ranking strategy guide - Googlerank.com

stickies

stickies: "double clicking on titlebar should 'roll up' the body of the sticky. double clicking again would
roll it down."

Armonía | En definitiva...

Armonía | En definitiva...

wg:Fun with Drop Shadows

wg:Fun with Drop Shadows: "Reported by Alessandro"

Cheat Sheet Roundup - Over 30 Cheatsheets for developers

Cheat Sheet Roundup - Over 30 Cheatsheets for developers: "Visibone - javascript, browsers, colors, fonts, html."

Anil Dash: Web Development Trends for 2006

Anil Dash: Web Development Trends for 2006

Ten more CSS tricks you may not know

Ten more CSS tricks you may not know

learn web standards :: the rising tide

learn web standards :: the rising tide

How To Nail A Sexy Layout // Archives // Addicted To New

How To Nail A Sexy Layout // Archives // Addicted To New

The Man in Blue > Experiments > widgEditor

The Man in Blue > Experiments > widgEditor: "Download the most recent widgEditor files (.ZIP, 32kB)"

The Man in Blue > footerStickAlt: A more robust method of positioning a footer

The Man in Blue > footerStickAlt: A more robust method of positioning a footer

Top 10 custom JavaScript functions of all time

Top 10 custom JavaScript functions of all time

Particletree · Dynamic Resolution Dependent Layouts

Particletree · Dynamic Resolution Dependent Layouts: "Introduction"

Ajaxian » 2005 » November

Ajaxian » 2005 » November: "Download Google Maps Ajax Book Chapter"

Free CSS Navigation Menu Designs at ExplodingBoy - Familiar to dozens.

Free CSS Navigation Menu Designs at ExplodingBoy - Familiar to dozens.

Ajax Link Tracker

Ajax Link Tracker

Building your very own web2.0 layout | mentalized

Building your very own web2.0 layout | mentalized: "Awesome, we?ve got it all now.: Tag clouds, gradient, big typefaces, standards, you name it. Could it look anymore web2.0? Feel free to snatch it, remix it, mash it up, digest it and spit it back out. It?s yours2.0."

Sweetie | Free icon set

Sweetie | Free icon set

Free! Icons for your website or application at MaxPower

Free! Icons for your website or application at MaxPower

Musings from Mars » Ajax/DHTML Library Scorecard:How Cross Platform Are They?

Musings from Mars » Ajax/DHTML Library Scorecard:How Cross Platform Are They?

The Best Design Resources you can Clear in One Sitting - PhilRenaud.com

The Best Design Resources you can Clear in One Sitting - PhilRenaud.com

An accessible bar chart

An accessible bar chart

CSS Tab Designer

CSS Tab Designer

otro blog más » CSS (y más)

otro blog más » CSS (y más)

Five simple steps to designing grid systems - Part 1 : Journal : Mark Boulton

Five simple steps to designing grid systems - Part 1 : Journal : Mark Boulton

stu nicholls | CSS PLaY | experiments with cascading style sheets

stu nicholls | CSS PLaY | experiments with cascading style sheets

CSS For Bar Graphs - Apples To Oranges: A San Francisco Bay Area design studio

CSS For Bar Graphs - Apples To Oranges: A San Francisco Bay Area design studio: ""Image of vertical bar graph"

The Shape of Days: My contribution to the CSS shadow kerfuffle

The Shape of Days: My contribution to the CSS shadow kerfuffle

Tooltip.js - About

Tooltip.js - About

HelloWorld - JotSpot Wiki (dojo)

HelloWorld - JotSpot Wiki (dojo): "Good work, Lance. I'd like to make this the first part of a more comprehensive tutorial. Thank you!"

ajax: Project jMaki

ajax: Project jMaki: "ajax

Project home"

Aranea?Java Web Framework Construction and Integration Kit

Otro framework, por la documentación que he leido tiene buena pinta, tendré que probarlo un poco.
Aranea?Java Web Framework Construction and Integration Kit

miércoles, mayo 17, 2006

Welcome to GoogleMaps JSP Taglibrary!

Welcome to GoogleMaps JSP Taglibrary!: "Welcome to Google:maps

The JSP Taglibrary for GoogleMaps?"

Hermes JMS

Hermes JMS: "April 20 2006"

XMaps Library - A Google Maps API Extension

XMaps Library - A Google Maps API Extension

Stephen Pasco - Broadcasting Google map events to an Enterprise Service Bus tutorial - a multi-part tutorial

Stephen Pasco - Broadcasting Google map events to an Enterprise Service Bus tutorial - a multi-part tutorial: "Thursday, 09 February 2006"

Google Web Toolkit - Build AJAX apps in the Java language

Google Web Toolkit - Build AJAX apps in the Java language: "Download Google Web Toolkit (GWT)"

Geocoding Tool for Virtual Earth & Google Maps » Emad Fanous

Geocoding Tool for Virtual Earth & Google Maps » Emad Fanous: "The base URL is:

http://www.localsearchmaps.com/geo/"

java.net: Web Wizard Component, Part 2: The View

java.net: Web Wizard Component, Part 2: The View

java.net: Almost Portlets

java.net: Almost Portlets: "References"

Home - Struts Action Framework 2 - Confluence

Home - Struts Action Framework 2 - Confluence

strutsbox.de - Download

strutsbox.de - Download

Jetspeed /Eclipse Portlet Plugin Specification

Jetspeed /Eclipse Portlet Plugin Specification: "Introduction

"

JAPISoft Home page

JAPISoft Home page

miércoles, mayo 10, 2006

Corporate Layout - part 1

Corporate Layout - part 1

Particletree · How to Make Firefox Forms Suck Less

Particletree · How to Make Firefox Forms Suck Less

Complete Hibernate Tutorial

Complete Hibernate Tutorial: "Complete Hibernate 3.0 Tutorial"

Struts Applications and Multilanguage Support > Options for Multilanguage Support

Struts Applications and Multilanguage Support > Options for Multilanguage Support

Free Jave Software Free Java Chart

Free Jave Software Free Java Chart: " "

JSF Tutorial from Marty Hall and coreservlets.com

JSF Tutorial from Marty Hall and coreservlets.com: "

  • Topics in this Section

    • Comparing action controllers to event listeners
    • Action listeners
    • Value change listeners
    • Using JavaScript to submit form

      • Browser incompatibilities

    • Combining action listeners and action controllers in the same GUI element

  • "

    Using a Java Servlet to Generate Up-To-Date Microsoft Excel Spreadsheets

    Using a Java Servlet to Generate Up-To-Date Microsoft Excel Spreadsheets

    JavaGeek.org - Comparing Web Frameworks: Wicket

    JavaGeek.org - Comparing Web Frameworks: Wicket

    blueprints: AJAX FAQ for the Java Developer

    blueprints: AJAX FAQ for the Java Developer

    Look And Feel Support for Wicket

    Look And Feel Support for Wicket

    http://blogs.sun.com/roller/resources/watt/jvm-options-list.html

    http://blogs.sun.com/roller/resources/watt/jvm-options-list.html: "GC Portal"

    JCaptcha - jcaptcha

    JCaptcha - jcaptcha: "


    "

    martes, abril 25, 2006

    Mark McLaren's Weblog

    Mark McLaren's Weblog

    labs.revision10.com » Blog Archive » JSP and Servlets - Separating presentation from business logic the simple way.

    labs.revision10.com » Blog Archive » JSP and Servlets - Separating presentation from business logic the simple way.

    Ajax for Java developers: Build dynamic Java applications

    Ajax for Java developers: Build dynamic Java applications

    Using prototype.js v1.4.0

    Using prototype.js v1.4.0: "Related article"

    AJAX Magazine: AJAX RSS Reader Step by Step Tutorial

    AJAX Magazine: AJAX RSS Reader Step by Step Tutorial: "

    AJAX RSS Reader Step by Step Tutorial

    "

    taconite // sourceforge.net

    taconite // sourceforge.net: "By now, you've heard all the hype, you've used Google Maps and you know
    what Ajax stands for. Heck, you even have the perfect place to use Ajax
    in your app to finally solve that problem your users have been
    complaining about since your first release. With baited breathe, you
    sit down in front of your favorite editor and then it hits you: Ajax is
    hard."

    Ajax for Java developers: Ajax with Direct Web Remoting

    Ajax for Java developers: Ajax with Direct Web Remoting

    AJAX Magazine: Easy, lightweight Ajax development with no-charge software

    AJAX Magazine: Easy, lightweight Ajax development with no-charge software

    jQuery: New Wave Javascript

    jQuery: New Wave Javascript

    miércoles, abril 12, 2006

    mooShow 0.03 Beta . Javascript Slideshow based on moo.fx

    mooShow 0.03 Beta . Javascript Slideshow based on moo.fx

    deviantART: email me by ~Mayosoft

    deviantART: email me by ~Mayosoft: ""

    Mi? i Pile: Logo Design Portfolio

    Mi? i Pile: Logo Design Portfolio

    Button Maker :: Adam Kalsey

    Button Maker :: Adam Kalsey: "Borders"

    Intenta

    Intenta

    CSS Tab Designer

    CSS Tab Designer

    Intenta- CSS

    Intenta- CSS: "Nifty Corners Cube"

    Nifty Corners Cube - freedom to round

    Nifty Corners Cube - freedom to round

    A library of nice looking DHTML(dynamic HTML) scripts - DHTMLgoodies.com

    A library of nice looking DHTML(dynamic HTML) scripts - DHTMLgoodies.com

    Infected-FX

    Infected-FX

    Particletree · 10 Tips To A Better Form

    Particletree · 10 Tips To A Better Form: "The most monotonous entities in the known universe, forms, are a staple
    of every web programmer?s balanced diet. Whether we like them or not,
    forms are the gatekeepers to our site?s goodies and often their design
    alone determines whether a user will try what you?re selling or simply
    walk away. Without pomp or circumstance, here are ten tips to transform
    your plain vanilla into double chocolate chunk with marshmallows."

    screenshots [RIALTO - Rich Internet Ajax Toolkit - OpenSource]

    screenshots [RIALTO - Rich Internet Ajax Toolkit - OpenSource]

    AJAX made simple with DWR

    AJAX made simple with DWR

    martes, abril 11, 2006

    SilverStripe Tree Control

    SilverStripe Tree Control

    famfamfam.com: Silk Icons Preview

    famfamfam.com: Silk Icons Preview

    Updated Simple CSS Tabs | silverorange labs

    Updated Simple CSS Tabs | silverorange labs: "Several months ago, I posted
    a set of simple tabs made up of a bullet list styled with CSS. I was a
    little uneasy about posting it originally, as the way I was doing
    things was a bit buggy in some fairly popular browsers like Safari."

    domingo, abril 09, 2006

    The other side of the moon: Rich, accessible pagination with unobtrusive javascript

    The other side of the moon: Rich, accessible pagination with unobtrusive javascript

    phpRiot() :: Creating sortable lists with PHP and AJAX :: PHP articles, PHP tutorials, MySQL tutorials, PostgreSQL tutorials

    phpRiot() :: Creating sortable lists with PHP and AJAX :: PHP articles, PHP tutorials, MySQL tutorials, PostgreSQL tutorials

    JavaScript Tabifier automatically create an html tab interface

    JavaScript Tabifier automatically create an html tab interface

    AjaxLibraries < Projects < Osafwiki

    AjaxLibraries < Projects < Osafwiki

    Ajaxian » Ajax Tutorial Round-up

    Ajaxian » Ajax Tutorial Round-up

    Prototype Javascript Windows

    Prototype Javascript Windows

    slayeroffice | Javascript Object Tree Favelet

    slayeroffice | Javascript Object Tree Favelet

    Take AJAX to Your Email Inbox: Developing a Web-based POP 3 Client

    Take AJAX to Your Email Inbox: Developing a Web-based POP 3 Client: "Introduction "

    stu nicholls | CSS PLaY | cross browser multi page photo gallery

    stu nicholls | CSS PLaY | cross browser multi page photo gallery: "
    "

    jueves, febrero 23, 2006

    JMX for WebApps

    Artículo en TSS

    domingo, febrero 12, 2006

    Fedora Core 4 Installation Notes

    Fedora Core 4 Installation Notes

    Fedora Core 4 Installation Notes

    Fedora Core 4 Installation Notes

    Fedora Core 4 Kernel Source Installation Guide

    2 October 2005

    Fedora no longer ships with the kernel-source RPM. You must install it
    separately. This is NOT needed unless you wish to re-compile your
    kernel.


    Kernel Headers (kernel-devel)
    If you need to install a driver (Nvidia, ndiswrapper, Cisco VPN, etc.) that
    requires kernel sources, it may be sufficient to install just the kernel headers
    package (kernel-devel RPM). This can be found on CD4, the DVD or online. If you
    have updated your kernel (using yum or up2date), then use yum to install the
    package ('yum install kernel-devel'). Make sure to match your current kernel
    version (read below for the 'uname' command).

    The default kernel source can be found through any mirror. Look in the
    directory "/4/i386/os/SRPMS/". An example from Fedora:
    http://download.fedora.redhat.com/pub/fedora/linux/core/4/i386/os/SRPMS/.
    If you are using an updated kernel you can also look in the update directory
    on most Fedora mirror sites. For example:
    http://download.fedora.redhat.com/pub/fedora/linux/core/updates/4/SRPMS/.

    If you wish you you can obtain the source of your current running kernel.
    Use the 'uname' command.

    [root@charon fc4]# uname -r
    2.6.11-1.1369_FC4

    Select: kernel-2.6.11-1.1369_FC4.src.rpm 03-Jun-2005 13:32 41M

    Install:
    [root@charon fc4]# rpm -ivh kernel-2.6.11-1.1369_FC4.src.rpm
    1:kernel ########################################### [100%]

    Set it up:

    [root@charon fc4]# rpmbuild -bp --target=noarch /usr/src/redhat/SPECS/kernel-2.6.spec

    The source files will be properly located in '/usr/src/redhat/BUILD/kernel-2.6.11/'

    This is clearly explained in the FC4 Release Notes - Kernel.

    General instructions to recompile a 2.6.x kernel in Fedora can be found in
    my Fedora Core 4 Kernel Compile Notes.

    The Perfect Setup - Fedora Core 4 | HowtoForge - Linux Howtos and Tutorials

    The Perfect Setup - Fedora Core 4 | HowtoForge - Linux Howtos and Tutorials

    Linux Fedora 4 + Apache2 + PHP5 + APC + MySQL + Webmin, linux install

    Linux Fedora 4 + Apache2 + PHP5 + APC + MySQL + Webmin, linux install

    viernes, febrero 10, 2006

    viernes, enero 06, 2006

    Monitor & tests

    Revisar este softare

    http://manageengine.adventnet.com/index.html