PhpED: Get back Tortoise SVN in the shell menu
After I reinstalled my system with Windows 7 64 bit, the very handy SVN Tortoise icons were all gone from the shell menu in Nusphere PhpED. This made SVN actions so much more time consuming.
Install PHP 5.3.3 on WAMP
The latest PHP version provided by WAMP is currently PHP 5.3.1. Continue reading if you want to install a later version.
Fixing audio glitches and delay with Realtek HD audio / ALC892 and optical / toslink connected speakers
Earlier this summer I finally came around to put down some money on a new computer. This is an all work - no fun rig, kicking some six-core action and other hefty figures.
Design miss #1 - Limiting a list in PHP/Javascript/Ruby/other
In this series I will whine about other's design mistakes and bad interface choices, while boasting about my own and mimmin's superior solutions! And vice versa :-)
This first example is from the interface guru's at 37signals, and their product Basecamp. But it's quite the common problem actually; having a list that is capped, with a "show all"-button that only adds one more item.
Css: Fix floated divs that overflow the wrapping
It's a common problem. The floated sidebar (or whatever you've floated this time ;-) get's to much content, and suddenly it overflows the wrapping div. The code might look like something below.
<div id="wrapper">
<div id="sidebar"></div>
<div id="content"></div>
</div>
Now if the sidebar is floated, and has longer content than #content, it will expand outside #wrapper. This problem is often solved by appending an extra element inside #wrapper, and apply CSS clear:both to it.