Computerized WorldComputerized WorldDiscussion on latest News and Events in my computerized world Articles
Cartridge World operations automated using NetSuite - With my implementatio
2007-03-14 06:03:00 Today is a pretty happy day in my life as one of the projects implemented by me has received a good reputation with this article by Yahoo! Finance. Basically the requirement was to integrate two systems, so that Cartridge World can use the full blown features of NetSuite. This integration is implemented by me with the coordination and help of my CEO and other members at Celigo Technologies. I'm proved to be part of a success story.Cartridge World, is a world's fastest growing ink refilling retailer in printer cartridge industry. NetSuite, is a leader in on-demand business software suites. Cartridge World wanted to use NetSuite system to automate their e-commerce operations and it is implemented throw integrations with Java. The article shows how far the project succeeded. More About: Ridge , Mate , Sing , Menta
Eclipse - cvc-elt.1: Cannot find the declaration of element error
2007-01-09 13:48:00 When working with XML files in Eclipse, a common error developers encounter is; cvc-elt.1: Cannot find the declaration of element "some-element-name". The error message gives a clue on which file the error exists by pointing to the element name, but does not give any information on why this error is shown or how it could be fixed. Given error is generated if parser could not find any specification on the given elements when Eclipse tries to parse the XML file using Xerces XML parser. To over come the error, XML file must be provided with a specification (a schema file or a DTD file).Examples of such files may look like below.<!DOCTYPE mule-configuration PUBLIC "-//Comp //DTD configuration XML V1.0//EN" "http://www.comp.com/dtds/proj/project-co nfiguration.dtd">or <element xmlns="http://www.comp.com/schema/element " xmlns:xsi="http://www.w3.org/2001/XMLSche ma-instance" xsi:schemaLocation="http://www.comp.com/s chema/element http://www.comp.com/schema/element/elemen ts-... More About: Declaration , Tech , Find , Clips , Lips
Patent damages tripled in 2006
2007-01-04 05:32:00 Trend of Patent lawsuits are increasing drametically. According to sources, the total amount awarded in 2006 is $1 billion. Compared to $379 million which was awarded in 2005, this is almost a threefold increase.The top winner of the year was Rambus who won the case over Hynix Semiconductor with $307 million. Rambus has a ton of patents on their list.Even though there are pros/cons on having the patent concept, it seems companies are willing to goto courts to protect their technologies while few companies do it for the sake of grabbing some money from a company who misuses a technology or concept. More About: News , Trip , Damages , Damage
Gmail hacked? All contacts and messages deleted in some accounts
2007-01-02 11:29:00 Recently some gmail users made complains saying all their mails and contacts were automatically deleted from their mail accounts. And this was first reported on 19-12-2006 saying "Lost Everything in My Account..email,contacts,sent mail..". It further explained the issue as; Found my account clean..nothing in Inbox, contacts ,sent mail..How can all these information residing in different folders disappear? ..How to write to gmail help team to restore the account..is it possible? ..Where to report this abuse?. This message received so many replies saying others also faced the issue. But one important point came up there was that they were using Firefox 2.0. Another user pointed out that the following message was left after deleting all the mails."This is not a mistake. All your emails and contacts have been deletedon purpose. This was a malicious attack and not an error. Have a niceday. =)" People who got attacked had kept the Gmail opened under Firefox 2.0. I was also used to keep my... More About: News , Google , Tech , E-Mail
Blessings for a very happy new year 2007
2007-01-02 05:15:00 I wish you Health...So you may enjoy each day in comfort.I wish you the Love of friends and family...And Peace within your heart.I wish you the Beauty of nature...That you may enjoy the work of God.I wish you Wisdom to choose priorities...For those things that really matter in life.I wish you Generousity so you may share...All good things that come to you.I wish you Happiness and Joy...And Blessings for the New Year .I wish you the best of everything...That you so well deserve.Happy New Year!(Author unknown, if you do let me know). More About: About , Happy New Year
The input line is too long - Windows command line error
2006-12-29 07:35:00 Today I wanted to run the bat file shown below to run a java program. This file is mainly used to set the classpath as you can see below.@echo offsetlocalset BROKER_HOME=C:/Documents and Settings/user/workspace/myProjectset CP=%BROKER_HOME%/out/lib/activation-1.0.2 .jar;%CP%set CP=%BROKER_HOME%/out/lib/activeio-2.1.jar ;%CP%set CP=%BROKER_HOME%/out/lib/axis.jar;%CP%set CP=%BROKER_HOME%/out/lib/axis.ns.jar;%CP% set CP=%BROKER_HOME%/out/lib/axis.org.jar;%CP %set CP=%BROKER_HOME%/out/lib/axis-ant.jar;%CP %set CP=%BROKER_HOME%/out/lib/connector.jar;%C P%set CP=%BROKER_HOME%/out/lib/csv.jar;%CP%set CP=%BROKER_HOME%/out/lib/csvman.jar;%CP%s et CP=%BROKER_HOME%/out/lib/jakarta-oro-2.0. 8.jar;%CP%set CP=%BROKER_HOME%/out/lib/jaxrpc.jar;%CP%s et CP=%BROKER_HOME%/out/lib/jmxri-1.2.jar;%C P%set CP=%BROKER_HOME%/out/lib/jmxtools-1.2.jar ;%CP%set CP=%BROKER_HOME%/out/lib/log4j-1.2.8.jar; %CP%set CP=%BROKER_HOME%/out/lib/mail.jar;%CP%set CP=%BROKER_HOME%/out/lib/mule/backport-ut il-concurrent-3.0.jar;%CP%set ... More About: Windows , Tech , Long , Indo , Error
Margin Vs Padding - CSS Properties
2006-12-21 10:59:00 CSS provides two properties named margin and padding for keeping space between HTML Box type elements. But why do we have two properties for the same reason? Are they similar?No. They have a main difference.Padding - defines space between border and element content Margin - defines space between border and other outer elements(Look at the above diagram)So when elements needs space between them, better to use margins. When text or an inner element needs space between the parent box and itself go for paddings.Look at this example for visual clarification generated with this code.<div style="margin: 25px; background: #cccccc; border: #000000 2px dashed;">Text inside element</div><div style="padding: 25px; background: #cccccc; border: #000000 2px dashed;">Text inside element</div> Text inside elementText inside elementIn the first <div>, space is set between the border and outside elements but in the second one it is between the boder a... More About: Tech , Properties , Prop
Setting Java classpath option with spaces and quotes under Windows®
2006-12-19 04:53:00 Java provides two methods for setting paths of the classes.1. Set the command line option classpath2. Set the CLASSPATH environment variableThe second option is easy, but has a draw back as a common CLASSPATH is shared within all the projects and classes, which makes it harder to test different projects with different classes.So the first option is the prefered way. It is used as;java -classpath first.jar;second.jar TestClientWhen the paths to the jar files have spaces, the command line classpath option causes errors. Under Windows installation like 2000/NT/XP, all the users get a folder with the user name under a folder named "Documents and Settings" (which has a space). And if the jar files are under the user folder, path would look like "C:/Documents and Settings/someUser/.." which would cause the above error.How to over come this issue1. Put quotes and group the whole class pathjava -classpath "C:/Documents and Settings/user/project/lib/axis.jar; C:/Documents and Settings/user/p... More About: Java , Tech , Quotes , Class
Do not complain on what you haven't got
2006-12-18 04:39:00 As human beings we always tend to complain on what we haven't got. Many people forget to appreciate the things that they have received; even they forget that they have so much to appreciate on their living status than looking at the negative sides.For example think how you feel when your (expensive) meals are little less tasty than how it used to be. You get so annoyed, right? Have a look at the images as they tell a lot on the above topic.See how much you are fortunate to have this type of a life (even having a chance to have access to computers to do internet surfing while some people do not have a chance to get a drop of water.(I have no idea on who is the owner of these images, but thanks for the nice images). More About: Haven
Change of "My day time world"
2006-12-13 14:36:00 Yes, I said "My day time world". The company I'm working always becomes my day time world, but there are sometimes I happend to make it "My full day world" when project deadlines are getting closer.Hey all, now I'm in a new company as I left the previous one after 2 1/2 years of experience there. It's about 1 1/2 months now in my new world. I could not do any blogging after I joined here, not because my new company do restrict it, since I had to do some home work and put extra time and effort to get to the speed on the new projects and all that.Now I'm planning to spend some time here as well. So don't forget to come back often. More About: World , Change , Time , About , Chang
[JBoss] Logging JBoss CMP SQL
2006-10-09 07:25:00 In many occassions developers tend to get errors when calling the CMP finders. The best method to fix such issues is to view the generated SQL queries, as it's easy to understand the error in terms of general SQL rather than looking at the EJB-QLs.With the help of log4j, CMP generated SQLs can be logged into a file as follows.1. Goto the conf folder inside your server instance.2. Open the log4j.xml file and add the following two entries to it.<appender name="CMP" class="org.jboss.logging.appender.Rolling FileAppender"> <errorHandler class="org.jboss.logging.util.OnlyOnceErr orHandler"/> <param name="File" value="/log/cmpSQL.log"/> <param name="Append" value="false"/> <param name="MaxFileSize" value="800KB"/> <param name="MaxBackupIndex" value="1"/> <layout class="org.apache.log4j.xml.XMLLayout"/&g t; <layout class="org.apache.log4j.PatternLayout"> ; <param name="ConversionPattern" value="%d %-5p [%c] %m%n"/> ... More About: Boss
[JBoss 4] How to change port 8080 in JBoss?
2006-09-11 11:10:00 With default configurations, JBoss listens on port 8080 for web connections. But this can be changed easily as this port is defined in an configuration xml file.This is how port 8080 is changed on JBoss 4.1. Goto the deploy folder of the server instance you use.2. Goto the jbossweb-tomcat55.sar inside that deploy folder.3. Find the file named server.xml inside that folder. (tomcat service file).Look for the HTTP Connector section inside the server.xml where 8080 configuration is available. Chan g e the port value to what ever the required port number. This change wiill be available when JBoss is restarted. More About: Port
What is ACID?
2006-09-06 11:48:00 In database world, ACID is an acronym. It stands for; Atomicity, Consistency, Isolation and Durability. Databases should have these four features for them to become a reliable databases. All of these four features relate with transactions.Atomicity: A transaction has to be completely commited or roll-backed, a portion of the transaction should not be committed to the database due to any issue even on a hardware failure. Consistancy:After any transaction the data in the database should be correct and vailid according to the requirements. Database should not be having any illegal data after a transaction.Isolation:When two or more transactions exists, one's behaviour should not give invalid data for the other transaction. That is, when one transaction is in progress, the data alterations made by that transaction should not be visible to any other transactions. Durability:After the commit operation is aknowledged by the database, the data inside that transaction should not be lost. Th... More About: Acid
My first ever article published
2006-08-02 08:22:00 I'm really happy to announce that my first ever article (a tutorial) got published yesterday, which was related to JUnit one of the greatest unit testing tools for Java. You can have a look the tutorial at JUnit - Getting StartedThis was first published on my blog and due to the comments and appreciations from the readers, I decided to publish it. More About: Article , Published , Publish , Ever , First
World Record Test Cricket Partnership - 624
2006-08-02 07:42:00 The two Sri Lankan cricketers Mahela Jayawardana (captain) and Kumara Sangakkara (vice captain) put a world record partnership - 624 for any wicket on last Saturday (29/07/2007) against South Africa, a leading cricket team. This is the first time a partnership grew over 600 mark in cricket history.In this brilliant knock the scorecard of the two players;Mahela J - 374 (752 mins, 572 balls) with 43x4 & 1x6 Sangakkara K - 287 (675 mins, 457 balls) with 35x4 This is Sangakkara's 4th double hundred (& carrier best) while Mahela's first ever 300. This is the 21st time a player passed the 300 mark ever in history.Updates for record booksWorld Best partnership for any wicket - 624 runs (& so the best partnership for the 3rd wicket as well)576 - Sanath Jayasuriya & Roshan Mahanama (SL) v IND 1997467 - Andrew Jones & Martin Crowe (NZ) v SL 1990Best scores by two batsmen in the same innings.Garfield Sobers (unbeaten 365) and Conrad Hunte (260) for the West Indies against Pakistan in ... More About: Cricket , World Record , Part , Test
[UNIX Tips] Learn tar utility in 5 minutes
2006-02-10 06:45:00 tar is a facility in Linux that creates archived file using a set of files. One file will be created that contains all the files in it. But do not get misunderstand, ".tar" file is not a compressed file. It is only a collection of files within a single uncompressed file. TAR1. Create tar archive $ tar -cf tarFileName.tar file1 file2 file3This will create an achive named tarFileName.tar and that will include the files specified there (ie: file1, file2, file3).2. View the list of files $ tar -tf tarFileName.tarThis will list the details of the files inside the archive.3. Extract tar archive $ tar -xf tarFileName.tarThis will extract the archive and create the files that were inside the archive.The above options have the meanings as:c - create an archivef - archive filet - list the content of the archivex - extract an archiveGZIPIf the file is a ".tar.gz" or ".tgz" file it is a collection of files that is compressed. ... More About: Unix , Tips , Utility , Learn , Minutes
More new Gmail features
2005-12-08 04:58:00 Even though Google introduced Anti-Virus capabilities to GMail recently, now they have introduced another set of new features which are available at What's New page.Features Web ClipsThis will allow users to view news and RSS feeds inside GMail, without having to leave the GMail page.View AttachmentsWith this you will not need to download or open attachments of many file types as it provides a "View as HTML" feature.Supported file types are;.pdf, .doc, .xls, .ppt, .rtf, .sxw, .sxc, .sxi, .sdw, .sdc, .sdd, and .wml.read more | digg story More About: Gmail , E-Mail , More
Rename a database in MySQL through Linux console
2005-12-06 13:38:00 Steps to follow to rename a database in a Linux environment can be listed as follows.1. Stop mysql Use $ kill -9 [processID]2. Search the place where the database folders are stored Use $ mysqladmin variables | grep datadir3. Goto the folder which contains the database folders4. Rename the folder Use $ mv 5. Start mysql Use $ mysqld_safe & More About: Tech , Database , Console , Mysql
If you think Internet Explorer is great, read this
2005-11-23 11:55:00 Many internet users happen to use Internet Explorer as the default browser, since it is provided with Microsoft Windows. So the users do not think of other choices, and stuck to IE.It's still not too late to switch to a great browser like "Firefox". www.stopie.com is a site completely related for this matter. More About: Internet Explorer , Tech , Great , Read
A Baby Named Google
2005-11-23 07:40:00 Today only I heard that a child is named Googl e , actually Oliver Google Kai born on September 17th 2005 as son of Walid Elias Kai (a Ph.D. holder in search engine marketing) who is also a Google fan.He is having his own home page, and also a blog.Read More>> More About: News , Baby
A poem by an African Man
2005-11-11 11:30:00 Dear White fella............ Couple of things you should know.....When I born, I Black,When I grow up, I Black,When I go in Sun, I Black,When I scared, I Black,When I sick, I Black,And when I die, I still black.......And you White fella,When you born, you Pink,When you grow up, you White,When you go in Sun, you Red,When you cold, you Blue,When you scared, you Yellow,When you sick, you Green,And when you die, you Gray.................And you calling me Colored ???????????Quite correct but innocent idea. I love this poem very much. More About: Interesting , Poem , African
Have you ever used EJB?
2005-11-09 06:55:00 View cartoon story: EJBHammerNice and a completely true idea from TSS. Without XDoclet, writing an EJB is a huge work. I totally agree with this. What do you think? More About: Tech
Google set to display books
2005-11-04 06:59:00 Google Print resumes its work from today for books and other contents that are not covered by Copy Right Law. So the authors of the books can decide whether they want their books to be available on Google print or not.Google print also would be a great help for people who are trying to find a good book to buy since it allows you to read some parts of the book. More About: News , Google , Books , Display , Googl
Scored 98% - Sun Certified Programmer for Java 2 Platform 1.4 (CX-310-035)
2005-10-22 10:30:00 I scored 98%.Today is a very special day for me as I could comprehensively complete the Sun Certified Programmer for Java 2 Platform 1.4 (CX-310-035) exam. I could score 98% which is believed as to be a great score.I got ready for this while I was too busy with a new project in my office. But I was able to some how manage and complete the exam with a great score.And if you are having any questions or clarifications I may be able to help you. Just put me a mail with an explanation, so that I will help you on clarifying those. More About: About , Gramme , Form
Google vs Microsoft - Case over Dr. Kai-Fu Lee
2005-09-14 16:36:00 According to a news after the court case over Dr. Kai-Fu Lee, from today Dr. Lee will be working for Googl e on the lab at China, but he is not allowed to work on the areas that he was working under Microsoft such as Search and Speech Recognition.Both of the companies say that they have won the case. Anyway hearing that Dr. Lee is back on work is nice.Anyway in this case there are two sides as I feel. Microsoft has a right to say that Dr. Lee should not be using what he gained at Microsoft in a competing company like Google. In the other way if he is not using those, then it is ethical for him to work in a competing company.See also>> More About: News , Case
eBay is on fire
2005-09-13 05:05:00 Today I heard two impressive news on eBay.One news is that eBay is buying Skype for $2.6 billion. The next is eBay plans to acquire Shopping.com in a $620 million cash transaction. Buying Skype would be great communication tool for the buyers and sellers at eBay. But according to an older news, Google and Yahoo were in the battle for buying Skype (which did not come true). Now eBay will have to take part in the competition with Google (VoIP-bound Google Talk), AOL (VoIP-bound AIM), and Yahoo (VoIP-bound Dialpad integration).According to these news, is eBay moving to a competition with other internet gients. More About: News , Ebay , Fire
Google hires the Father of the Internet
2005-09-12 12:50:00 A big event happend at Google . As a news said Google has hired Vint Cerf (Vinton Gray Cerf), the Father of the Internet .Cerf's job title will be 'Chief Internet Evangelist', as though Google needs one of those. His role will be to build network infrastructure, architectures, systems, and standards for the next generation of Internet applications.He will also continue in his role as the Chairman of the Internet Corporation for Assigned Names and Numbers (ICANN).Read More>>This must be related to the news on Google's plan of launching their Own WI_FI network. So is that news going to become true? More About: News , The Internet
By concentrating only on the cup, we fail to enjoy the coffee in it
2005-09-09 06:38:00 Today I found a nice little story which reminds us that we have a great life to live.A group of alumni, highly established in their careers, got together to visit their old University of Notre Dame lecturer.Conversation soon turned into complaints about stress in work and life. Offering his guests coffee, the lecturer went to the kitchen and returned with a large pot of coffee and an assortment of cups: porcelain, plastic, glass, some plain-looking and some expensive and exquisite, telling them to help themselves to hot coffee.When all the students had a cup of coffee in hand, the lecturer said: "If you noticed, all the nice-looking, expensive cups were taken up, leaving behind the plain and cheap ones. While it is but normal for you to want only the best for yourselves, that is the source of your problems and stress.What all of you really wanted was coffee, not the cup, but you consciously went for the better cups and are eyeing each other's cups." "Now, if Life is coffee, then th... More About: Interesting , Coffee , Enjoy , Once
What's Special About This Number?
2005-09-05 07:00:00 What's Special About This Number ?Nice job. His home site has much more interesting stuff. More About: Interesting
Is Google building their own WI-FI network
More articles from this author:2005-09-05 05:35:00 Today morning I so an impressive news related to Google , the search giant.Google seems like building their own network through out America. As google has bought resources for providing network services this may become real soon. As Business 2.0 says, Google is already building such a network, though ostensibly for many reasons. It's also acquiring superfast connections from Cogent Communications and WilTel, among others, between East Coast cities including Atlanta, Miami, and New York. Google has sponsored Wi-Fi hotspot, built by a local startup called Feeva. Feeva is reportedly readying more free hotspots.Read More>>But will Google become a free ISP? How huge will be the impact on ISP industry? What do you feel? More About: News , Building , Network , Build 1, 2, 3, 4, 5, 6 |



