quote of the day
Question: If Jesus Christ comes back, will he enjoy Family Guy? Answer: No
Question: If Jesus Christ comes back, will he enjoy Family Guy? Answer: No
Linux User Group, Bangalore have a meetup at the ThoughtWorks office on Saturday 21st February 2009, 4:30 PM onwards. The details of the meeting are here. There are 2 talks lined up- "Introduction to the Android Platform" and "Device Mapper - How it works and why you should be using it". And there will be a key signing party as well.
Go, check it out and help revive the LUG meetings at Bangalore.
This tip saved a lot of pain.
If the application you're switching to has windows that are minimized, you can unminimize them by holding the option key, then letting go of the Cmd key.
Thanks to Lig for tagging me. 7 things you may or may not know about me:
knowing you can still understand output from diff, even though it has been months you touched any code.
I tried installing linux on my SO's (significant other) laptop today. WHAT IS WRONG WITH UBUNTU!! It takes ages to load up and the install process is resource intensive enough to make the laptop totally unresponsive. Finally installed Fedora and I am not happy with it. I will install debian for her, once I find out where to get blank CD here.
I saw this mail in one of the mailing lists I am on and thought it might be useful to a wider audience. This reply was given by Ben Finney
I have some ambitious plans for enhancing the module, but I feel that it won't be practical to do it in the current conditions. I tried to soft-talk the maintainer into giving me repository access, but then the conversation got diverted into applying my latest patch, which he said he'd like to perform the next day. He didn't and it's been at least two weeks since then.
Since you talk about asking for “commit accessâ€, I presume it's in an old-school centralised-only VCS. I'll assume Subversion.
What are your thoughts about a situation like this?
Use a distributed VCS to track your changes. I prefer Bazaar, so I'll discuss that below.
$ sudo aptitude install bzr bzrtools bzr-svn svn$ bzr checkout svn+ssh://vcs.example.org/foo/trunk/ foo.trunk/$ bzr branch foo.trunk/ foo.interesting-new-feature/
$ cd foo.interesting-new-feature/
$ emacs spam.py # hack hack hack
$ make test # or however you run your full test suite
$ bzr commit --message "One-line description"
$ cd foo.trunk/
$ bzr update
$ cd foo.interesting-new-feature/
$ bzr send --output ../foo.interesting-new-feature.patch --no-bundle
--no-bundle option turns off the ?patch bundle? blob, which would be useful to a Bazaar-using remote user to merge the resulting patch and have identical revisions to you. Since you'll be sending it to a Subversion user, that blob won't be useful to them so we disable it.The Bazaar documentation, both online at <http://bazaar-vcs.org/> and in the bzr help foo commands, is comprehensive and should fill the many gaps I've no doubt left from the above explanation.
Page 14 of 50, totaling 350 entries