Archive for the 'tips' Category
ADD IDENTITY TO COLUMN
If you have an existing table (in my case products)
This is the code you ll use to Alter a column and Add Identity to it. This is the Only Solution found on the NET. Even SSIS Cant to this procedure automatically. I guess this is caused due to constrains bound to a table.
– ALTER COLUMN [...]
Filed under: SQL, tips | 2 Comments
Let’s say you have an image with no transparency.
This is a technique i found to make photos transparent to a specific color.
In the following tut color was black.
You can follow these step to add the desired transparency
PHOTOSHOP NEEDED
Step no 1.
Make a copy of the image. Make it in grayscale. Play a little with the levels [...]
Filed under: design, photoshop, tips, tutorials | Leave a Comment
Vista User Switching Options
Here is a list of tips to change the style you logon to your OS.
Filed under: tips, tutorials, tweaks, vista, windows | Leave a Comment
Recover Browser Hidden Passwords
Have you ever used remember the password option in you browser and later forget that password. If you want to see what the password you typed there is small trick that can be used. Simply type this JavaScript in the address bar of your browser.
Copy – Paste Following code (in browser’s address bar)
javascript:(function(){var s,F,j,f,i; s [...]
Filed under: javascript, tips, tweaks | Leave a Comment
Direct Email Login
This is what happens when you accidentally try to login to your web mail account
Enter your email address like this
You Get this security message
And Finally you are being redirected to your mail provider. If Cookies are enabled then the user and password fields will autocomplete with default user saved in your browser.
Filed under: tips, weird | 1 Comment
Upload in Firefox 3
Recently i tried to use a swfupload pluggin, using php. I couldnt meke it work in Firefox 3. But in all other browsers worked like a charm. I couldnt stand the idea that this was the only time that firefox was the sticky browser. So I decided to test it in another computer with firefox [...]
Filed under: jQuery, javascript, php, tips, weird | Leave a Comment
Jquery and Swfobject conflicts
This is the right way to use swfobject and jquery framework. To avoid the known issues between these two.
<script type=“text/javascript”>
$(document).ready(function(){
var so = new SWFObject(“movie.swf”, ”mymovie”, ”400″, ”100%”, ”8″, ”#336699″);
so.addParam(“quality”, ”low”);
so.addParam(“wmode”, ”transparent”);
so.addParam(“salign”, ”t”);
so.write(“flashcontent”);
});
</script>
Filed under: flash, jQuery, javascript, tips, tweaks | Leave a Comment
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