web metrics
April 2008 - Posts - Technoeuphoria!

April 2008 - Posts

Live it up!

For quick stuff you can actually type up these queries in your address bar (yes you read right, you can search using the address bar :))

image

image

image

image

image

image

// just taking a break.. back to work..

Posted by jocelyn | with no comments

I didn't know search results depended on the browser as well '_'

I did a self search (yes, for a few minutes, i thought of nothing better to do) on the 2 search engines & 2 browsers I know and love (one I know, the other I love ;p) and here were the results.

FF IE8
image image
image image

  FF seems to want to remind me that I had "become retarded 08.51 PM Nov 08, 2007 from web" :)

Posted by jocelyn | with no comments
Filed under:

Making MapCruncher (MSR version) generated maps work

Virtual Earth just came up with a new release and I noticed that the little app I built using MSR Cruncher wasn't working anymore. Not sure if the commercial version has the same problem. When I tried to load the page, I was getting a "VE is undefined" error. I looked at the existing samples and found they were still working. So I figured "THERE MUST BE A WAY!". I checked the source and found that they were referencing V5 scripts and so basically, I looked for the part of the html page referencing the scripts:

<script src="http://dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6" type="text/javascript"></script>
<script src="http://dev.virtualearth.net/mapcontrol/v6/mapcruncher/CrunchControl.js" type="text/javascript"></script>
<link href="http://dev.virtualearth.net/mapcontrol/v6/mapcruncher/LegendStyle.css" rel="stylesheet" type="text/css"> 

and changed them to what was on the existing samples, referencing version 5:

        <script src="http://dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=5" type="text/javascript"></script> 
        <script src="http://research.microsoft.com/mapcruncher/scripts/v5.5/CrunchControl.js" type="text/javascript"></script> 
        <link href="http://research.microsoft.com/mapcruncher/scripts/v5.3/LegendStyle.css" rel="stylesheet" type="text/css">

After that, everything worked as expected!

Okay, so a little about this app, it's actually a proof of concept of what can be done with the existing set of tools from Microsoft (released and otherwise) with regards to mapping.

So many people are talking about how the map data is not updated, not enough detail, yadda yadda. Well, it will be good to know that something CAN be done! The great thing about being a developer, you get to make things better than what they currently are. Okay before you go into tears, here's a rundown of what's happening.

If you use VE and view say the area around Microsoft Singapore, you can't go any deeper than this.

image image

* they've improved the experience by the way. It used to be the case that the users can actually zoom into a level deeper than they have data for and you end up with something like:

image

Kudos to the live team for that!

So anyway, what happens with Map Cruncher, is you can basically take an image and map it (pun intended Tongue out) on an area on Virtual Earth, so you end up with something like this:

image

Note this is something I quickly hacked up. I basically took some screen shots from the more detailed, streetdirectory.com and did a quick stitch (not very neatly done if you've noticed) but it proves the point. And depending on the resolution/quality of your source image, you can even do stuff like overlay the floor plan of a building/complex or what have you, with no problem.

The software is pretty straight forward to use, and what it does is once you're done mapping the image onto VE, you click render, and it comes up with a folder which you can just dump on any server and you're good to go. It takes care of creating the tiles for you so you can stream your map down to your clients. I haven't really explored it more but apparently you should be able "expose" this custom map so that other people can then overlay their stuff onto the map you've created. Pretty cool stuff!

If you want to find out more, there are two versions, one is the MS Research version, and there's the commercial Map Cruncher Beta version. For this POC, I made use of the MS Research one. Maybe that explains why it doesn't seem to work with the new version of VE.

Happy Mapping!

Posted by jocelyn | 2 comment(s)

ORION'S BELT!!!!!

I was touring the universe with the Worldwide Telescope and I found Orion's belt! This is the one part of the sky that I always look for when the skies are clear and it always makes me happy. ^^,

image

Posted by jocelyn | with no comments
Filed under:

Gone Phishing...

Here's an interesting video that shows how it is possible to do a Phishing attack with OpenID authentication.

OpenID Phishing

Developers of the technology will continue to do what they can to help reduce the chances of its misuse, but at the end of the day, end-users should always be vigilant about these things.

Just the other day, I received this email from the "IRS"

image

Off the bat, I knew it was suspicious mail simply because I wasn't a US citizen :p But just out of curiosity, i visited the link and it took me to quite a convincing site if you simply looked at the body of the web site. I would post screen shots but they've apparently taken the site down. Things you would notice wrong would be the root URL being not of the IRS, it wasn't even in a ".gov" domain. It looked pretty normal so I played along with where the pages were leading me and of course, eventually I hit the page that asked for credit card information.

Immediately i did a live search on "Report Phishing" and hit the first site that came up and followed the steps to report the site.

image

I don't know what came of that but at least I know I did what I could. Like I mentioned, the site is now down, but I'm sure whoever the perpetrators were, there's a high chance they could have gathered a considerable amount of information.

Be vigilant!

Posted by jocelyn | with no comments
Filed under:

Microsoft Surface is Surfacing :)

Exciting! It's great to see that this product is starting to get more and more public appearances. Now if only we can get one into the Microsoft Innovation Center, that would really be exciting! It would be great to see all sorts of applications built for this device. Check out the video of the surface at AT&T stores in the US.

Multi-grope: Interacting with Microsoft Surface at the AT&T Store

Posted by jocelyn | with no comments
Filed under:

Innovation.NEXT()

http://www.facebook.com/pages/Singapore/InnovationNEXT/14319176125

I want to get a hold on partners who are eager to start building the next generation web applications. Innovation.NEXT() is a program we are running for dev companies who are eager to take our tools and start building with them. Be a fan of Innovation.NEXT() on facebook and get updates on all the upcoming activities we have.

Keep an eye out for the details! Information on this program will also be published at http://sgpartners.spaces.live.com

 

// Facebook is becoming quite an interesting platform. Let's see if I can use this to my advantage

Posted by jocelyn | with no comments
Filed under:

Breaking Changes in Silverlight 2

For those who have worked previously on Silverlight 1.1, here the documentation on the breaking changes for Silverlight 2 (not Silverlight 2.0, just Silverlight 2 ;))

Breaking Changes in Silverlight 2

Posted by jocelyn | with no comments
Filed under: