I read a post by Sonia on Copyblogger about Kumbaya bloggers and saw a lot of parallels to Open Source Communities. Worth a read, especially if you are involved in Open Source commercially.
Category: Articles
Kindle – Ruby scripts to manage my Kindle notes
I’ve finally open sourced the set of Ruby scripts I’ve been using to manage my Kindle notes. The code is on Github and can be downloaded by anyone. The readme goes into more depth but basically this code lets you manage the Kindle notes file to: List all of the books you have taken notes …
ChiliProject 2.0.0 RC2 Released
I just released ChiliProject 2.0.0RC2. It fixed some of the data bugs we found in the new ActsAsJournalized feature. I’m hoping this will be the final release candidate and that the next one will be the final release. Some of the new features we’ve added in 2.0.0 are really going to help me develop plugins …
Redmine Tip – Edit User Email Notifications
Redmine sends email notifications when specific events occur. Who gets notified about the event depends on the event and each user’s preference. Normally you will want to let users choose the setting that fits their email usage but on fast moving projects it can be useful to make sure everyone is notified of every change. …
Hide specific input field in CSS by name
Just learned that this trick works in browsers too (not just assert_select and jQuery). <input id="q" class="small" name="q" size="20" type="text" accesskey="f" /><input id="q" class="small" name="q" size="20" type="text" accesskey="f" /> input[name=q] {display: none;}input[name=q] {display: none;}