Opening a WebPage in the Default Browser (C# .net)

Filed Under (Code) by Mystalia on 28-06-2008

Tagged Under : , , , ,

When you just want to open a webpage in the systems default browser there are many complicated methods to do it, like going through the registry and finding out what the default browser is… blah blah…

SO! Why not just hand the task over to windows…

    using System.Diagnostics;

    // In one line of code look...
    Process.Start("http://www.google.com");

And there you go, windows will handle the url as if you had just clicked a shortcut on the desktop and open it with the default browser.

Easy.

Why protect links with fileblip.com? Does it really matter?

Filed Under (Tech News) by Mystalia on 12-06-2008

Tagged Under : , , , , ,

First we need to realise exactly what people are going to use such a service for, and that is basically one of two things. URL Shortening and File Location Protection.

Software companys like beepa are working hard to protect their software and remove files from pirate websites. Which, technically, is a nice and easy task unless pirates are careful about exactly what they display to a user OR a crawling bot.

What fileblip does is to remove the url to the file even from its own source code so an average user would have no idea where the file is located. Therefore there is no link to report and nobody to report it to.

So how is this legal? Well if the file is publically available and in breach of copyright then the only people committing the crime is the host of the file, all fileblip is programmed to do is hide the host site using standard web scripts.