Twitter: chmouel
- a review of the auditing tools available on @OpenStack #swift http://t.co/tLZICf4y 08:36:21 AM February 02, 2012 from web ReplyRetweetFavorite
- RT @matthewbaldwin: The Facebook IPO gives you the unique opportunity to own part of a company that sells you as its product. 08:32:07 AM February 02, 2012 from web ReplyRetweetFavorite
- RT @OpenStack: Important date tomorrow for OpenStack community: Bug Squashing Day to make Essex the best release ever until Folsom :) ht ... 06:48:15 PM February 01, 2012 from Plume for Android ReplyRetweetFavorite
- The lazy script of the linux laptop owner travelling in different timezones often https://t.co/XiFL7nBY 11:31:36 AM February 01, 2012 from web ReplyRetweetFavorite
- pretty cool python library to access shell commands within python https://t.co/wXJp2trU 09:03:28 AM February 01, 2012 from web ReplyRetweetFavorite
Archives
- February 2012
- December 2011
- November 2011
- September 2011
- July 2011
- May 2011
- April 2011
- February 2011
- January 2011
- November 2010
- October 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- January 2010
- December 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- February 2009
- January 2009
- December 2008
- October 2008
- July 2008
- May 2008
- March 2008
- September 2007
- August 2007
- July 2007
- May 2007
- April 2007
- February 2007
- January 2007
- December 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
Meta
Category Archives: Programming
Better output from sqlite3 command line
That weird output from sqlite3 command line is annoying you as well ? Just set this up to get something better : cat < <EOF>~/.sqliterc .mode "column" .headers on .explain on EOF
Posted in Programming
Leave a comment
Ruby XMLRPC over a Self Certified SSL with a warning
If you use the XMLRPC client in ruby over a self certified SSL you have this warning : warning: peer certificate won’t be verified in this SSL session You can get override that warning cleanly (i have seen some people … Continue reading
Posted in Programming, Ruby
2 Comments
Yum Force Exclude List
While talking with my fellow colleague Darren Birkett about what seems a design limitation of yum to not be able to force listing the excludes from yum. I had a shoot to make a yum plugin to force listing the … Continue reading
Posted in Programming, Python, RedHat
8 Comments
Moving from Australia and going back to Paris.
Finally after three years (almost i arrived on 29 September 2004 here) i am following all my french friends (except Aurelien whos staying here) and i am moving back to France. It is a heartbreak since this is one (if … Continue reading
Generating md5 encrypted password for chpasswd
If you want to generate properly encrypted password to feed to chpasswd, the most easier and proper way is to do that from command line : [code lang="bash"] echo "encryptedpassword"|openssl passwd -1 -stdin [/code] If you want to generate in … Continue reading
Posted in Programming, Python, Scripts, Solaris, Travel
3 Comments
Linus Torvalds on GIT
Pretty good video to look if you like to know more about git and its creation : http://www.youtube.com/watch?v=4XpnKHJAok8
Posted in Programming
Leave a comment
Access Gajim within Emacs
Here is some function to launch a gajim window from Emacs : (defvar gajim-remote "/usr/bin/gajim-remote") (defvar gajim-user-list ()) (defun my-gajim-get-list() (save-excursion (with-temp-buffer (call-process gajim-remote nil t nil "list_contacts") (goto-char (point-min)) (while (re-search-forward "^jid[ ]*:[ ]*\\(.*\\)$" (point-max) t ) (setq … Continue reading
Posted in Emacs, Programming
Leave a comment
crypt(3) on unix maximal length
When i have a password comparaison function using crypt(3) i really should remember that the comparaison stop at the 7 bytes, because that stuff is weird for me : In [1]: import crypt In [2]: seed=’foo!bar’ In [3]: crypt.crypt(‘abcdefghaa123456681′, seed) … Continue reading
Posted in Programming
2 Comments
Jabber/Asterisk and Gajim notification
At work we are using Asterisk and Jabber and i am using Gajim as my client. I did a quick patch to have a notification on my desktop when someone call me and i get my big headphones (not that … Continue reading
Posted in Misc, Programming, Python
Leave a comment