Sun CTO: Incremental open-sourcing of Java is the way
Contributed by Joe
Monday, 24 July 2006
Expect the open-sourcing of the Java programming language to be done in incremental steps, with some pieces available by next June -- but not the entire platform, Robert Brewin, co-CTO of Sun Microsystems' software group, said Monday afternoon.
SimplyMEPIS 6.0 Linux Final Release: Complete and Safe Desktop Computing
Contributed by Joe
Saturday, 22 July 2006
Morgantown, WV, July 21, 2006 -- MEPIS has released SimplyMEPIS 6.0. This is the first public release of SimplyMEPIS to incorporate an Ubuntu foundation. Based on the Dapper LTS package pool, 6.0 is designed for stable long term use and support.
Multilingual CMS project jumps leaps and bounds for Java
Contributed by Joe
Saturday, 22 July 2006
Managing your own Web apps just got easier. An upgrade to a free, multilingual Java Content Management System (CMS), with a full-text search engine, now provides customized questionnaires, visitor statistics and topic-based forums.
Although HTML was first designed and used by scientists, it has yet to support mathematical and scientific notation with any degree of complexity. HTML does give you two tags to help write simple equations. Together with the codes for special characters, the <sub> (subscript) and <sup> (superscript) tags go a long way toward creating equations, as shown below
How to Validate E-mail Addresses in javascript (javascript email validating)
Contributed by Joe
Friday, 21 July 2006
How to Validate E-mail Addresses in javascript (javascript email validating)
How to conform to a format of a valid email address, you should think about the following logic:
Syntax Check-Validates the address for syntax, whether it has all of the mandatory characters present (e.g. @) and any illegal characters present (i.e. ~). It will also check for multiple occurrences of required characters (i.e. @@).
DNS/MX Record Check-Validates the domain name with DNS server to ensure that the email domain is a valid registered domain.
Mail Server Check-Validates an email address (e.g.
) by mail server (e.g. mail.devx.biz) to ensure that the mail server indeed has the email address. This method has very good performance. (Attention: a few mail servers don't support this method(e.g. yahoo))
But to java script,we only can do Syntax Check-Validates,see ollowing logic:
Check if the e-mail address is empty; if it is, the field is not valid.
Check for illegal characters, and if they occur, the field is not valid.
Check if the @ symbol is missing; if it is, the field is not valid.
Check for the occurrence of a dot; if there is none, the field isn’t valid.