Aug 04

Wateen Connector is one of my projects that got me interested in Visual Studio .NET – some of the team members of CyberPK helped and contributed to this small utility.
I actually made this on a request from a CyberPK’s Loyal and Regular user, i didn’t thought that other users would be experiencing the same problem like him, Until i recently fell into it myself.
It sure is annoying, having to keep logging in to your Wateen WiMAX account – so Wateen Connector was created. Wateen Connector is Exclusively made for Wateen WiMAX users.
About Pakistan’s Wateen Telcom
Wateen Telecom is a Internet Service Provider in Pakistan, its a new venture of Warid Telcom – Wateen Telecom established one of the largest country-wide WiMAX Network in the world.

Wateen Connector lets you log into your Wateen Services as you usually do. The extra features that you get is that Wateen Connector allows you to Monitor your internet connection and if it goes down it will let you know about it, And will ask if you like to keep monitoring it. If you set monitoring on you will be notified as soon as you disconnect or get connected – Wateen Connector also has a Auto-Login feature that logs you into your Wateen Account easily and effort-lessly!.
Wateen Connector now lets you chat with other Wateen users using the chat services implemented on our website. One of the useful features that we added was the ability to view your bandwidth usage from the application.
For complete detail and information visit Wateen Connector’s Homepage.
Feb 05
class.upload.php – Free PHP Upload Class
This PHP script uploads files and manipulates images very easily. The perfect script to generate thumbnails or create a photo gallery! It can convert, resize and work on uploaded images in many ways, add labels, watermarks and reflections and other image editing features. You can use it for files uploaded through an HTML form, a Flash uploader, or on local files. It uses the GD library.
This script is released under the GPL Version 2. If your project is not GPL, commercial licenses are available.
Look at the example below:
$foo = new Upload($_FILES['form_field']);
if ($foo->uploaded) {
// save uploaded image with no changes
$foo->Process('/home/user/files/');
if ($foo->processed) {
echo 'original image copied';
} else {
echo 'error : ' . $foo->error;
}
// save uploaded image with a new name
$foo->file_new_name_body = 'foo';
$foo->Process('/home/user/files/');
if ($foo->processed) {
echo 'image renamed "foo" copied';
} else {
echo 'error : ' . $foo->error;
}
// save uploaded image with a new name,
// resized to 100px wide
$foo->file_new_name_body = 'image_resized';
$foo->image_resize = true;
$foo->image_convert = gif;
$foo->image_x = 100;
$foo->image_ratio_y = true;
$foo->Process('/home/user/files/');
if ($foo->processed) {
echo 'image renamed, resized x=100
and converted to GIF';
$foo->Clean();
} else {
echo 'error : ' . $foo->error;
}
}
Continue reading »
Oct 29
Determining if you or your application is connected to the internet may sound like an easy task – But it really wasn’t as easy as it sounds for me when i was trying to figure a way out to find a way to know if my computer is connected to the internet using VB.net / Visual Basic 2005.
I have done quite a search on this…
In my search results, I have only seen people praising to use the wininet.dll API, I do not know why people even bothered to post useless code like that, it really does not work!
Continue reading »
Oct 12

I just start programming in the .NET Environment recently – i have used Visual Basic 6 before, but the .NET Environment was new for me but still it was not so tough after all. I’m not an old VB 6 guru either
I just used to make stuff on it for fun – the only i remember that i ever made on it was a Web Browser
– which i think all the new VB programmers try to make
and another app i made was for MSN Messenger which was to check if a certain user doesn’t have you on their contact list or has blocked you.
This was done along time ago back in the days when we used to use MSN Messenger 7.5 – now i trying to get deeper into .NET programming. I recently started and felt very comfortable programming in it; The first application i made was a small application which i personally made for one of our site users and myself.
Now, i’m currently working on another application its a System Cleaner quite similar to www.cCleaner.com.
I am using Microsoft’s Visual Studio 2005 right now, i will soon switch to Visual Studio 2008 - I have both installed, but only using VB 2005 for development; Microsoft Visual Studio 2005 and 2008 both are available Free of charge from Microsoft Website.
I’ll be writting useful snippets and functions that i have found to be very useful along my learning experience.
Sep 27

This site will now be running under wordpress – Wordpress is no doubt the simplest solution to your biggest problems.
I installed wordpress 2.6.2 as this is the latest release right now, Wordpress 2.7 is in development but i just couldn’t wait that long. I had free time in my hands so i thought why not setup a blog here – It’ll be taking me time to make my portfolio.
I’ll try my best to keep this place Alive
- One important reason i am using wordpress here is that i think it should be much easier for me to maintain snippets and tutorials that i will be posting here – and i really like the new wordpress admin user interface that is given to us to right our post
Thanks for taking the time to read this boring post