Software Development Notes
A Collection of Common Software Issues
Latest Content
Joomla: Redirect to same page after login - 29 days ago
Here's some code to redirect Joomla to the page you want, after forcing a user to login first. $uri =& JFactory::getURI(); $redirect = '&return='.base64_encode($uri- toString()); $this-... Topics: Joomla, tips
A TAB is 4 Spaces - 31 days ago
A TAB is 4 Spaces. In .vimrc or _vimrc add these lines: set autoindent set smartindent set tabstop=4 shiftwidth=4 set expandtab Topics: TAB, VIM
Ubuntu Mouse Scroll and Vmware - 298 days ago
Edit the xorg.conf file to : Section "InputDevice" Identifier "Configured Mouse" Driver "vmmouse" Option "CorePointer" Option "Device" "/dev/input/mice" Option "Protocol"... Topics: tips, Ubuntu, Vmware
Flash Slideshow: ActionScript to Load an XML File - 316 days ago
I've seen a few various ways to load an xml file with flash . Each of them suffer from the same problem. They are hard coded for a specific file, and riddled with magic numbers to access xml node data. Here's some actionscript to load an XML in.. Topics: ActionScript, Flash, XML
Cross Browser CSS Opacity - 350 days ago
Here's a simple CSS Tip from arbnet.net . If you want your transparency to translate to all browsers, then make sure to use all four of the elements shown below. .class { opacity: 0.7; filter:alpha(opacity=70); -moz-opacity:0.7; -khtml-opacity:0.5; }. Topics: CSS Opacity




