-
Recent Posts
Recent Comments
Archives
Categories
Meta
Monthly Archives: July 2012
Debian: show a list of all packages that are to be upgraded with apt
This is a super easy one, and can easily be found in the man page, but I’ve googled it enough times that I think it’s worth including here. To see packages with available upgrades, without installing them, use the -u option: apt-get upgrade -u […] Continue Reading
Posted in Googling for Answers, Linux
Tagged Apt, debian, linux
jQuery: Execute a callback once, after a class based animation completes
I was developing some web recently and ran into a jQuery problem that was new to me. I was using a class selector to fade a group of elements, and using a callback function which would fire after the fade was complete. Something like this:
[note color=#DDD] $('.myclass').fadeOut('fast', function() { […] Continue Reading
Posted in Googling for Answers, Web Development
Tagged jQuery