Computer, Technology, Databases, Google, Internet, Mobile, Linux, Microsoft, Open Source, Security, Social Media, Web Development, Business, Finance
Tuesday, May 08, 2007
Microsoft + Yahoo VS Google
http://www.pcmag.com/article2/0,1759,2126193,00.asp?kc=PCRSS03069TX1K0001121
Microsoft-Yahoo: Which Products Would Win?
http://www.pcmag.com/article2/0,1759,2126219,00.asp?kc=PCRSS03069TX1K0001121
Microsoft Live Versus Google
http://www.eweek.com/article2/0,1895,2098401,00.asp
Thursday, May 03, 2007
Tuesday, May 01, 2007
Dell to choose Ubuntu
http://www.desktoplinux.com/news/NS8661763902.html
Monday, April 30, 2007
Increase the number of simultaneous downloads in Internet Explorer 7
Refer to below link for the fix.
http://vistarewired.com/2007/04/16/increase-the-number-of-simultaneous-downloads-in-internet-explorer-7/
Saturday, April 28, 2007
Xplorer2 file manager (Windows)
I am using it at the moment.
http://lifehacker.com/software/download-of-the-day/xplorer2-file-manager-windows-255405.php
Friday, April 27, 2007
<ADV> tag on email subject
Read More
http://www.asiamedia.ucla.edu/article.asp?parentid=67613
Thursday, April 26, 2007
Workers with ESS certification can now join the Civil Service
http://www.channelnewsasia.com/stories/singaporelocalnews/view/272662/1/.html
Wednesday, April 25, 2007
Try Google's Next Design Before It Goes Live
One significant addition is the menu at the top.
http://googlesystem.blogspot.com/2007/04/be-first-to-try-googles-next-design.html
IE 7 Cannot Access Netvibes?
My FF 2.0 has got no problem with that.
It's kinda weird for Netvibes to break only from today onwards.
Monday, April 23, 2007
God Bless
RCL has lost 2 capable employees.
Tiring Week Ahead
Let's wait and see how many hours of sleep will I be able to enjoy.
Friday, April 20, 2007
Wednesday, April 18, 2007
Google Spreadsheets Adds Charts
http://googlesystem.blogspot.com/2007/04/google-spreadsheets-charts.html
Tuesday, April 17, 2007
New Adobe Player Takes Web Video Offline
http://www.pcmag.com/article2/0,1759,2114465,00.asp?kc=PCRSS03069TX1K0001121
Sunday, April 15, 2007
Remove Windows Messenger 4.7
To uninstall Windows Messenger 4.7 on your system do not delete the programs files directly instead do the below:
- Start -> Run
- Enter “RunDll32 advpack.dll,LaunchINFSection %windir%\INF\msmsgs.inf,BLC.Remove” into your run box without the speech marks.
- Click "Yes" upon seeing below prompt.
Windows Messenger 4.7 is uninstalled.
Google to Acquire DoubleClick
http://www.google.com/intl/en/press/pressrel/doubleclick.html
Learn more about DoubleClick
http://www.doubleclick.com
Thursday, April 12, 2007
J2EE Practices
Taken from the book: More Java Pitfalls
Client Tier
- Use the new Preference API to store preferences instead of Properties.
- Take advantage of interfaces when hiding implementation detail.
- Be wary of not handling exceptions properly. Instead of returning a value from a method (such as false or null), thinks about the cause of your returning these values. If there could be multiple causes, throw an exception.
- Instead of taking some information from one exception and placing it in a new exception, take advantage of the new JDK 1.4 changes to Throwable and add the original exception to your new exception.
- Make use of the Java Assertion Facility instead of putting a lot of print statement.
- When using assertion, follows the following rules:
- Do use assertions to test postconditions on methods.
- Do use assertions to test places where you believe control flow should not execute.
- Do not use assertions to test preconditions on public methods.
- Do use assertions to test preconditions on helper methods.
- Do not use assertions that affect the normal operation of the code.
- Use Xpath expression to search a DOM.
- Use Apache Ant to facilitate application builds and deployments.
- Other opensource tools:
- Use Junit for unit test.
- Use BugRat to track issues.
- Use CVS for code repositories.
- Use Jdepend to generate metric measurement to determine the software quality.
- Use JavaNCSS to detect noncommented code.
- Use checkstyle to ensure that previously established coding rules are incorporated into each individual source code components.
- Use CruiseControl to automate the build process.
- When deciding whether to create a Singleton class, first ask yourself the following questions:
- Does there needs to be one global entry point to this class?
- Should there be only one instance to this class in the VM?
If answer is yes, then use Singleton. If no, don’t use.
- When using Singleton, make sure to:
- Use private constructor.
- Synchronize methods that need to be synchronized.
- Don’t use Singleton as global variables and never let Singletons to become non-Singleton.
Web Tier
- It is a good practice to make use of a Web tier framework to implements Web application. While it is possible to implements application using independent servlet and jsp, it will be a maintenance nightmare.
- Be careful about your use of HttpSession in servlets. Be aware of the collision problem that could await you in regard to naming data objects with putVaue (). Avoid using common names to storing types in HttpSession with the putValue method.
- Use removeValue instead of invalidate () when removing object specific to the application from HttpSession.
- When building distributed business systems, keep in mind that transactional data should be handled in a database instead of LDAP which don’t have transactional protections. LDAP should be used to organize and search for relatively static information in an efficient manner, while database systems can accommodate frequent fluctuations in data.
- Make use of the Java Regular Expressions introduced in Jdk 1.4 for form field validation.
- Don’t declare instance variables in Servlet as it may cause concurrent issues.
- A J2EE application does not need to have EJB tier in it. The EJB tier is necessary if:
- You need to deal with distributed or complex transaction scenarios (multiple systems, phased transactions).
- Reliability (how well the system responds to something going wrong) is a major concern.
- When your applications need to be spread over several containers in a transparent way to support things like clustering, load-balancing, and failover.
- When design network applications:
- Abstract details from the client.
- Abstract things in a multi-tired solution.
- When the network has the potential to be a bottleneck, use the “plan and execute” strategy - it is often better to send one large message with lots of information than to send smaller messages over the network.
- Use local interface to improve performance of the EJB tier. Use local interface if your Web container and EJB container are in the same process.
- Be aware of using more than one ResultSet at once. While many JDBC drivers will support the use of multiple concurrent ResultSet objects many will not. Many databases will exceed the number of maximum open cursors. To achieve maximum portability, rethink your design so that you only have one open at a time.
- Don’t use Entity bean because you need a object persistence mechanism. Consider JDO as it is lightweight, minimizes database transaction implementation, and it supports reuse, particularly with Java components.
- Don’t spawn thread in EJB.
- Avoid using file operation in EJB.
Sunday, April 08, 2007
Remove Dual Boot Menu After Uninstalling Windows Vista
To remove boot menu, follow below steps.
- Boot your computer in to Windows XP.
- Ensure you have the Vista DVD image emulated or in the DVD drive.
- Go to “Start” and “Run”. Type in “e:\boot\bootsect.exe /nt52 ALL /force” (without quotes, and replacing e: with the drive letter of your Vista DVD).
- Restart the computer, and you will notice the boot selection menu is gone.
- Format the partition/drive where you had Vista installed.
- Remove two files (Boot.BAK & Bootsect.BAK) on your XP drive’s root folder (C:), these were backup files of your previous bootloader, now no longer useful.
- Optional: Restart to ensure it still works.
- Use your partition software to merge your partitions together.
Extracted from http://www.istartedsomething.com/20060622/installing-and-uninstall-vista-beta-2-for-dual-boot-with-xp/
My Brinkster Website Reached Its Limit Yet Again!
Dear Brinkster Member,
This is an automated message generated to inform you that yesterday your site[hongjun] reached its maximum daily data transfer/bandwidth limit of 16.7 MB andwas stopped at or about 3/29/2007 10:35:00 AM(EDT).
Don't worry! All stopped sites restart automatically at midnight, EDT.
With the General (free) Solution, you are allowed a generous 16.7 MB per day of data transfer/bandwidth (500 MB per month). Brinkster defines bandwidth as the overall amount of data (or bytes)transferred.
If you have received this message more than once, you may wish to take steps toprevent your site from using up its bandwidth too quickly. Alternatively, youmay wish to consider upgrading your account to either our Premium X4 or GeneralSE Solution.
The General SE Solution ($3.95 per month, $3.95 setup) offers 2000 MB ofbandwidth per month (68 MB per day), ftp access and access to Premium e-mailsupport via premiumsupport@brinkster.com.
Saturday, April 07, 2007
Friday, April 06, 2007
So so sad
That was my very last email sent out using my company's mail account before leaving for Hong Kong. In Hong Kong, I tried to login to my mail account but it has been disabled. I am not able to read any replies :'(
Google's SearchMash & Yahoo's Alpha
http://www.searchmash.com
http://hongjun.blogspot.com/2006/10/searchmash-new-google-search-site.html
http://hongjun.blogspot.com/2006/11/googles-searchmast-update.html
Yahoo's Alpha
http://au.alpha.yahoo.com/
Yahoo's Alpha is so similar to Google's SearchMash.
Anothr Beta
User can simply input any RSS/Atom feed link to the bot on Skype/Gtalk/MSN to subscribe, then to be notified in the future.
I have tried it myself. I feel Anothr is useful for feeds that don't expect many updates per day. If feeds get updated very frequently, I feel a RSS reader like NetVibes would be more useful.
http://www.anothr.com/
Send a Fax By Email
http://www.tpc.int/faxbyemail.html
Country Code List (Singapore is supported)
http://www.tpc.int/servers/iddd.html
Gmail Paper
http://mail.google.com/mail/help/paper/
http://mail.google.com/mail/help/paper/more.html
Hong Kong Trip
It's a bit short because I need to be back to attend my brother's ROM which falls on 5th Apr.
Thursday, April 05, 2007
Thursday, March 29, 2007
Microsoft: Wii Gamers Will Look to Bigger And Better Things When They Grow Up
Monday, March 26, 2007
Overwhelming Things to Do
- Documentation for handover session
- Summary Report for the Documentation Department
- Project Closure
- Ad-hoc incidents
Sunday, March 25, 2007
Snooze, You Win
http://www.mensjournal.com/healthFitness/0601/napping_power.html
Saturday, March 24, 2007
Top 30 Container Carriers Ranked by Capacity
http://glscs.texterity.com/glscs/200603/?pg=62
Saturday, March 17, 2007
Handover Session
Next week, I hope to be able to come out with all necessary documents.
Saturday, March 10, 2007
Moving On
My new job will be for ST Electronics (Info-Software Systems) Pte Ltd. However, I will be attached to DSO to work on a project. 9th April 2007 will be my 1st day of employment for ST Electronics.
QuickEE Task List
Wonder if there is anyone out there interested in this Open Source project.
https://sourceforge.net/pm/task.php?group_id=190246&set=custom&group_project_id=51659&_assigned_to=100&_status=1&SUBMIT=Browse
Wikipedia Founder Says Intends to Challenge Google, Yahoo
http://www.pcmag.com/article2/0,1759,2102337,00.asp?kc=PCRSS03069TX1K0001121
Friday, March 09, 2007
QuickEE/TubbPost
http://www.experts-exchange.com/Community_Support/Input/Q_22438617.html
**Associated Links**
Download (full project): http://www.geocities.com/wstaylor76/TubbPost.zip
EXE: http://quickee.svn.sourceforge.net/viewvc/*checkout*/quickee/TubbPost/bin/TubbPost.exe
SF Discussion: http://quickee.svn.sourceforge.net/viewvc/quickee/
Wishlists thread: http://www.experts-exchange.com/Community_Support/Input/Q_22433302.html
.Net Framework:
v1.1
http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=262D25E3-F589-4842-8157-034D1E7CF3A3
v2.0
http://www.microsoft.com/downloads/details.aspx?familyid=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&displaylang=en
Windows Installer
http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=CEBBACD8-C094-4255-B702-DE3BB768148F
Sunday, March 04, 2007
No Internet At Home
Living like ancient man.
Friday, February 23, 2007
Windows Powershell
I think it will need at least 2 years before this gets popular.
http://blogs.msdn.com/powershell/
Google Docs And Spreadsheets Face No Competition
http://www.nielsen-netratings.com/pr/pr_070220.pdf [ PDF ]
Wednesday, February 21, 2007
Gates Sets Limits on Kids' Online Time
http://www.pcmag.com/article2/0,1759,2097075,00.asp?kc=PCRSS03069TX1K0001121
Happie Piggie Year!
Pigs = eat + sleep
Hence, Human = Pigs + work + enjoy
if, Human - enjoy = Pigs + work
in other words,
Human that don't know enjoy = pigs that work
Men = eat + sleep + earn money
Pigs = eat + sleep
Hence, Men = Pigs + earn money
if Men - earn money = Pigs
in other words,
Men that don't earn money = Pigs
Women = eat + sleep + spend
Pigs = eat + sleep
Hence, Women = Pigs + spend
if, Women - spend = Pigs
In other words,
Women that don't spend = Pigs
Summary:
Men earn money not to let women become pigs!
Women spend not to let men become pigs!
Men + Women = 2 Pigs
Wish all the pigs happy forever.
Minimum wage for Philippine maids overseas may upset supply
IMHO, this move will cause more harm than good.
http://www.channelnewsasia.com/stories/singaporelocalnews/view/259802/1/.html
Tuesday, February 20, 2007
Saturday, February 17, 2007
The Story of Sergey Brin
http://www.momentmag.com/Exclusive/2007/2007-02/200702-BrinFeature.html
Microsoft SoapBox
http://soapbox.msn.com/
Monday, February 12, 2007
How to Backup a Blogger Blog
http://googlesystem.blogspot.com/2007/02/how-to-backup-blogger-blog.html
Monday, February 05, 2007
The Google Story
http://www.amazon.com/Google-Story-Hottest-Business-Technology/dp/0553383663/sr=11-1/qid=1170685995/ref=sr_11_1/105-8298249-7184407
Sunday, February 04, 2007
Google Translator Interface
It is a product created that uses Google Translation Engine.
http://mcrenox.com.ar/gtrans/
Microsoft Jumps to No. 1 in National Corporate Reputation Survey
http://uk.us.biz.yahoo.com/prnews/070201/nyth185.html?.v=45
Saturday, February 03, 2007
Wednesday, January 31, 2007
Official Launch of Windows Vista
12 years later, the 1st 32 bit Microsoft Windows 95 came and now long filenames is possible.
12 years later (Year 2007), Microsoft Windows Vista is launched.
Sunday, January 28, 2007
How Brain Works
Brain is so complicated. Try out below:
- WITHOUT anyone watching you (they will think you are GOOFY.....) andwhile sitting where you are at your desk in front of your computer, liftyour right foot off the floor and make clockwise circles.
- Now, while doing this, draw the number " 6" in the air with youright hand.
Continue making the 6 in the air.......
Your foot will change direction. It works every time.
Explanation from "Infinity08", Experts-Exchange member.
"Those two movements are very basic, but your brain is not accustomed to doing them together. It can't consciously do two different things at the same time : in this case clockwise and anti-clockwise movements of foot and hand ON THE SAME SIDE of the body.However, you can train yourself to do this correctly, by doing it so often that it becomes an unconscious action. When you start to think about it actively (consciously), it fails.
Compare it to learning to drive a car. Driving a car requires a lot of different actions executed at the same time : handling the pedals, steering wheel, gear shifter, while at the same time looking around and having a global view of traffic around you. When you start learning, you'll have a lot of difficulties doing any two of these actions at the same time (eg. steering while shifting gear etc.). After a while though, when you've driven around for a while, those actions become "second nature" to your brain, and you don't even realise that you're doing them (because they're handled by the unconscious).
I mentioned earlier that the foot and hand have to be at the same side of the body (right or left) for this to work (or better : fail). Try the same exercise with your left foot and right hand and it shouldn't be a problem. The reason for this is that the right part of your body is controlled by the left half of your brain, and vice versa."
Friday, January 26, 2007
Googlebombing
Related articles
http://googleblog.blogspot.com/2005/09/googlebombing-failure.html
http://en.wikipedia.org/wiki/Political_Google_bombs
http://googlesystem.blogspot.com/2007/01/google-tries-to-make-googlebombs.html
Wednesday, January 24, 2007
Tuesday, January 23, 2007
How to Disable GPRS on Your PDA Phone?
You will need to first install a registry editor. Windows Mobile does not come together readily with a Registry Editor. Do not ask me the reason as to why the decision was made like this/that because I don't know why. Nevertheless, there is a freeware downloadable from the Internet that provides us with a GUI to "mess" with the registry. Download and install PHM Registry Editor now. Perform a soft reset after installation.
PHM Registry Editor: http://www.freewarepocketpc.net/ppc-download-phm-registry-editor-v0-70.html
Tweak your registry
- Open your registry editor
- Go to the key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ConnMgr\Providers\{7C4B7A38-5FF7-4bc1-80F6-5DA7870BB1AA}\Connections\IDEAS Internet (GPRS)\Enabled
- Edit the key 'Enabled' by double-tapping or otherwise.
- Change its DWORD Data from '1' to '0'.
- Go to the key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ConnMgr\Providers\{7C4B7A38-5FF7-4bc1-80F6-5DA7870BB1AA}\Connections\IDEAS WAP (GPRS)\Enabled
- Edit the key 'Enabled' by double-tapping or otherwise.
- Change its DWORD Data from '1' to '0'.
- Soft-reset.
- Open your registry editor
- Go to the key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ConnMgr\Providers\{7C4B7A38-5FF7-4bc1-80F6-5DA7870BB1AA}\Connections\IDEAS MMS\Enabled
- Edit the key 'Enabled' by double-tapping or otherwise.
- Change its DWORD Data from '1' to '0'.
- Soft-reset.
Sunday, January 21, 2007
Run Ad-Aware In Background (Save CPU Juice)
This may already be known to some who actually explore Ad-Aware options. But I thought it is good to post it.
http://www.tech-recipes.com/rx/1994/ad_aware_reduce_cpu_usage_scan_in_background
Google Search History
Now, you can search your previously keywords search using the new Google History (Beta). Pretty cool. To stop tracking, click on "Pause".
http://www.google.com/searchhistory/
Saturday, January 20, 2007
The 3rd Annual Expert Awards | 2007
http://www.experts-exchange.com/expertAwards2007.jsp
Thursday, January 18, 2007
Wednesday, January 17, 2007
Fake Google Belarus Homepage
The top result turns out to be a site that mimics Google's Homepage. This site though is a copy of Google, it is not a malicious site. A search made on the copy site will simply do a post to genuine Google.
Google Mimic
http://www.google.by/
Google's Localized Version for Belarus (Genuine)
http://www.google.com/intl/be/
Live.Com Is Trying To Be Simple
http://www.live.com/
Tuesday, January 16, 2007
Sunday, January 14, 2007
Shopping for CNY
Met up with Regine at Takashimaya Coffee Bean at 10.30am for breakfast before kicking off our CNY shopping spree. We did our shopping at Takashimaya, Bugis, and Queensway Shopping Centre.
All in all, I bought a pair of black leather shoes at Takashimaya and 2 shirts at Queensway Shopping Centre.
Friday, January 12, 2007
Charts for Google Spreadsheets
http://imagine-it.org/google/spreadsheets/makechart.htm
Google Is the Best Company to Work For
Top 100 List
http://money.cnn.com/magazines/fortune/bestcompanies/2007/full_list/
Video from NBC on Google's Unique Corporate Culture
http://video.msn.com/v/us/fv/msnbc/fv.htm??f=00&g=fefdd320-1bd9-461f-8d5e-88927f341523&p=hotvideo_m_edpicks&t=m5&rf=http://www.msnbc.msn.com/id/3032633/&fg
Saturday, December 30, 2006
Thursday, December 28, 2006
Tuesday, December 26, 2006
How to dual-boot Windows XP and Windows Vista
http://www.lifehacker.com/software/windows-vista-beta/windows-vista-beta--how-to-dualboot-windows-xp-and-windows-vista-179906.php
Monday, December 25, 2006
Friday, December 22, 2006
Going to Clear My Sch Fees By Next Week
All my school fees debt is going to be cleared by next week before end of year 2006!
It is going to be record breaking! It is going to take me less than a year to clear.
Thursday, December 21, 2006
Fauxto... like photo.
Another innovative product.
http://www.fauxto.com/
Wednesday, December 20, 2006
PayPal Integration Completed
I can finally catch some sleep :)
Sunday, December 17, 2006
Fast Typing Skills Training
To play, type the name of the enemies you see and then hit RETURN.
I am ranked 38th (Difficulty level: Medium).
Username is hongjun
http://cognitivelabs.com/word_shoot.htm
Saturday, December 16, 2006
Summary of Blogs Mentioning EditGrids
The reason as to why my blog is mentioned is because I actually quoted "EditGrid" as one of my entries previously. The below link actually points correctly to my previous post - http://hongjun.blogspot.com/2006/08/gsheet-google-spreadsheet-and-writely.html.
Internet is so threatening. No one can hide anything once something has posted live on the Internet.
Check it out!
http://www.editgrid.com/tnc/cliff/Summary_of_blogs_mentioning_EditGrid
Friday, December 15, 2006
How to login to an expired Windows
http://tomorrowtimes.blogspot.com/2006/12/how-to-login-to-expired-windows.html
Friday, December 08, 2006
Microsoft SQL vs Oracle
Do also take a look at the pdf files posted in the below link as well.
http://blogs.technet.com/security/archive/2006/11/27/microsoft-sql-vs-oracle-david-litchfield-comparison-paper.aspx
Sunday, December 03, 2006
Knoppix 5.0 OS
Had a try on this bootable OS on a CD-ROM and realized I almost forgotten how to use Linux!
It has been almost 2 years since I used a Linux.
Overall Rating: Good
Friday, December 01, 2006
Interview On Myself
How did you first find Experts Exchange?
Well, I first get to know Experts-Exchange during my poly days. A friend of mine introduced EE to me when we were stucked with some C Programming logic.
First EE question asked by me: Simple scanf question (C Programming)
What made you start answering questions?
Ever since I asked my first question, I often rely on EE to get quality and prompt replies to my technical questions.
Few months later, I realized there are some questions out there where I can also provide my assistance. I realized the need to give back to the community and to share knowledge.
First EE question answered by me: string requires char type but how to add all entries and get total? (C++ Programming)
What do you get out of answering questions?
In short: Knowledge
When I attempt to answer questions, I actually go through the process of looking for solutions all over the place. Through this process, I begin to know where to get the right solution at the right place at the fastest time. I also get to know a problem can be solved by many different methods and which is truely the most efficient and effective.
I must admit my bookmarks database is rather huge.
EE Profile
http://www.experts-exchange.com/M_237966.html
http://www9.brinkster.com/hongjun/ee/ee-profile.asp
Free Wireless@SG
http://www.ida.gov.sg/idaweb/marketing/infopage.jsp?infopagecategory=&infopageid=I3967&versionid=3
iCell Network
http://www.icellnetwork.com/
QMax
http://www.qmax.com.sg/wirelessatsg/index.html
SingTel
http://home.singtel.com/wirelessSG/wsg_index.htm
Coverage
http://www.ida.gov.sg/idaweb/marketing/infopage.jsp?infopagecategory=factsheet:wireless&versionid=1&infopageid=I3929
Thursday, November 30, 2006
Knoppix 5.0
Good - Learn Linux
Bad - Hack into one's Windows and copy out the entire harddisk contents.
http://www.knopper.net/knoppix/index-en.html
http://linux.softpedia.com/get/System/Operating-Systems/Linux-Distributions/KNOPPIX-Live-DVD-2621.shtml
Got Myself A Free Book
It took me 3 tries on 3 separate questions before they finally gave me that book.
Book Link from Amazon (Cool right)
http://www.amazon.com/Programming-Microsoft-ASP-NET-Core-Reference/dp/0735621764
Popular Posts
-
新加坡人口400万,亚洲人口4亿,全世界人口6亿。 但是,我一人可能就很有可能是世界最傻的了。我真是个不折不扣的大木头。真是受不了自己。
-
Just yesterday, popular food blogger, Brad Lau, who owns food blog ladyironchef , who had refused to pay the full cost of his 4-persons meal...
-
Singapore’s Land Transport Authority has just released an updated official MRT map including seven new stations on the Thomson-East Coast Li...
-
Despite the implementation of a mandatory plastic bag charge in local supermarkets in July 2023, recent data reveals that consumers still pu...
-
I recently wrote a code snippet to fill arrays with a value. The below method is a generic method that will accept different data types. Hop...

