ads

Tuesday, September 30, 2008

Calvin's Hub

First of all i would like to greet Calvin's Hub a happy birthday and more traffic to come. In celebration to his first year anniversary Calvin's hub launch it's first contest and it is dubbed as "Calvin's Hub Domain Name Giveaway Contest" obviously the winner will get a free domain name and hopefully it comes with a free domain hosting too. :) so if you want to win your own Domain Name join now. oh before i forget please put me as your referral :) ..

visit : www.calvinshub.com

Friday, June 6, 2008

Backup MySQL Database to a file

Backup MySQL Database to a file

Backing up your database is a very important system administration task, and should generally be run from a cron job at scheduled intervals. We will use the mysqldump utility included with mysql to dump the contents of the database to a text file that can be easily re-imported.

Syntax:

mysqldump -h localhost -u root -pmypassword databasename > dumpfile.sql

Example:

mysqldump -h localhost -u root -p2Uad7as9 database01 > dumpfile.sql

This will give you a text file containing all the commands required to recreate the database.


Wednesday, May 21, 2008

Site Keyword Rank

Search Keyword Ranking is a SEO Desktop application tool, I made that will automatically check the position of your URL for a specified Keyword on Google.

System Requirement:

Windows XP/Vista and .NET Framework 3.5

Download Site Keyword Rank

Sunday, May 4, 2008

Clipboard Monitor + Source

Here is a sample program that will monitor your clipboard , as of right now it can only monitor text or images...

Download the Source Code :ClipboardMonitor.rar

Code:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{


public Form1()
{
InitializeComponent();
timer1.Enabled = true;
}

private void button1_Click(object sender, EventArgs e)
{

this.Close();
}

private void timer1_Tick(object sender, EventArgs e)
{
object cbText = "";
object cbFormat;
cbFormat = Clipboard.GetDataObject();

if (Clipboard.ContainsText() == true)
{
textBox1.Visible = true;
pictureBox1.Visible = false;
cbText = Clipboard.GetData(DataFormats.Text);
textBox1.Text = cbText.ToString();
}

if (Clipboard.ContainsImage() == true)
{
Object imgBMP;
textBox1.Visible = false;
pictureBox1.Visible = true;
imgBMP = Clipboard.GetImage();
pictureBox1.Image = ( Clipboard.GetImage() );
}

}
}
}

Google Search