Archive for July, 2008
Speed up Vista Boot Time
I recently found a tip to minimize Vista Booting Time. When Vista boots up it uses only one core of your CPU. If you have a multicore CPU based system you can do a quick modification.
Click Start -> type “msconfig”
This screen will appear. Select the 2nd tab (boot).
The click Advanced options Add Change [...]
Filed under: hardware, tips, tutorials, tweaks, vista, windows | 1 Comment
Vista 4gb Problem – Solution
First of all i d like to remind that In most new pc configurations Vista cant be installed in 4gb systems. You have to uninstal 2gb and then when Windows setup is complete you can use the other 2gb.
How to Enable More Than 3.5 GB of Memory in 32-Bit Windows Vista
You’re probably wondering why I [...]
Filed under: .net, hardware, tips, tutorials, tweaks, vista, windows | 1 Comment
If you’re using XHTML, add this:
<link rel=”shortcut icon” href=”/favicon.ico” type=”image/x-icon” />
If you’re using HTML, add this instead:
<link rel=”shortcut icon” href=”/favicon.ico” type=”image/x-icon”>
Here is a nice tutorial to make your own favicons in PhotoshopSupport.
Filed under: css, design, photoshop, tips, tutorials | 1 Comment
MySQL Command List
This is a list of the most common used mySQL Commands
General Commands
USE database_name
Change to this database. You need to change to some database when you first connect to MySQL.
SHOW DATABASES
Lists all MySQL databases on the system.
SHOW TABLES [FROM database_name]
Lists all tables from the current database or from the database given in the command.
DESCRIBE table_name
SHOW [...]
Filed under: apache, php, programming | Leave a Comment
Header(“Location”) on PHP
So check out this code…..
if(1== 1)
{
header(“Location: index.php”);
}
header(“Location: http://www.google.com”);
This simple code will be expected to redirect to index.php since 1==1 is always true. And for a weird reason it returns to redirect to www.google.com.
Maybe for a reason i didn’t quite understand this, but it should be written like this
if(1== 1)
{
header(“Location: index.php”);
}
else
{
header(“Location: http://www.google.com”);
}
As mentioned before the only [...]
Filed under: php, tips | 6 Comments
This is a utility to convert text to valid html or ulr characters and back.
click picture to download
Filed under: .net, software, tips, windows | 2 Comments
Vista needs childs caring
I ve been using Vista for some time now. I run into several weird problems. Finally I got everything fixed. Here is a list of some. Hoping i ll be able to save someones hours of searching.
1. Vista cant work well with network printers
And I mean it. If you are setting a new PC [...]
Filed under: software, tips, tweaks, windows | Leave a Comment
Mozilla is for many reasons the favorite browsers for all web developers. To use it faster you need to know its keyboard shortcuts.
Filed under: tips, tutorials | Leave a Comment
VelociRaptor 10.000rpm
A new hard-disk is on the market. Look at WD site to
see allso the a nice 3D display of this drive.
see it’s full specs
Filed under: hardware, news, tech news | Leave a Comment
Tags: hardware
jGrowl popup messages
jGrowl is a nicely developed pluggin, hopefully in a mature version 1.10(for now), for displaying messages like this in your browser
The style is similar to the way that OS X’s Growl Framework works.
Here u can download the pluggin
http://plugins.jquery.com/project/jgrowl
Filed under: jQuery | Leave a Comment