-
Bash Completion, Along with SVN and Git Tab Completion
Time is precious. I installed these utilities to save some of it: bash-completion svn-completion git-completion I install bash-completion via MacPorts on my Macs. sudo port install bash-completion I then saved this svn-completion script to locally, and did a sudo cp: sudo cp bash_completion /opt/local/etc/bash_completion.d/svn-completion.sh Note: “bash_completion” is the file linked on “svn-completion script“. I hope…
-
Git Info – Almost Like “svn info”
I have been trying to find something like svn info but for Git. Luckily, I stumbled upon Duane Johnson’s script. Here’s git-info.sh: [gist id=3937631 file=git-info.sh bump=1] I made an alias in my .profile to make it a bit more accessible: [gist id=3937631 file=.profile]
-
Clearfix Revisited
The new style rules I’m using: .clear:after { content:” “; display:block; height:0; clear:both; visibility:hidden; font-size:0; } .clear { display: inline-block; } /* Hides from IE-mac \*/ * html .clear { height:1%; } .clear { display:block; } /* End hide from IE-mac */ For more information on the update, have a read over at Jeff Starr’s…
-
IE Web Developer Toolbar
Just stumbled on a link of a link and found that there is too a “web developer toolbar” for IE. Although (currently) unrated, it seems to provide some useful functionality: Explore and modify the document object model (DOM) of a web page. Locate and select specific elements on a web page through a variety of…