Related Posts
SQL SERVER – Reset sa Password
1.Open the SQL Server express management studio 2.Connect to SQL Server using windows authentication 3.Right click the server name and…
Javascript commands for the most common actions
Some of the most common javascript commands that i quickly managed to collect. This list is going to grow quickly.…
Css trick – Preload images
[sourcecode lang=”CSS”] #preloadedimages { width: 0px; height: 0px; background-image: url(‘path/to/image1.png’); background-image: url(‘path/to/image2.png’); background-image: url(‘path/to/image3.png’); } [/sourcecode] You dont even have…