aRo`

automating your e-commerce

This is an awesome feature of MS visio that a lot of poeple don’t know. I use it mostly for documentation purpuses at the end of a development cycle.
1. Enable your MySQL to listen for network connections.
2. Allow privileges for your MySQL for the XP client to connect
3. Install the MySQL ODBC connector
http://www.mysql.com/products/connector/j/
4. Create the [...]

my top 5 Firefox plugins

Since i recently installed vista and had to install every Firefox plugin again i can tell you wich add-ons i definately use on a daily basis:

Adsense
fireform
Live HTTP headers
firebug
lori

compare 2 files

When you are working in different environments development/quality/production you cant get lost in file management.
With examdiff you can compare files and it even shows you what and where there are some differences.

How to kill a process from code

The following code shows how you can kill a process using vb6 code. 
Example
Private Sub cmdKill_Click()
‘ Usage:
Dim pID As Long
Dim i As Integer
Dim strExe As String
strExe = “calc.Exe”
For i = 0 To 4
pID = Shell(strExe, vbNormalFocus)
Next i
‘Five instances of notpade.exe is now created
Debug.Assert False
MsgBox “It is ” & _
KillApp(strExe) & _
” that all instances of ” & [...]

These HTTP Status codes are returned by the server to the client software to determine the outcome of a request.
The first digit of the status code specifies one of five classes of response.

1xx Informational
2xx Success
3xx Redirection
4xx Client Error
5xx Server Error

Each Status-Code is described below.

200: request completed (OK)
201: object created, reason = new URI
202: async completion [...]

« Previous Entries