The last few days I was answering questions on stackoverflow - mainly related to python and db2. It came out a bit addictive. Now I have 20 answers, raised my reputation to 449 and reached top 10% this week :).
Check my profile at http://stackoverflow.com/users/565525/robert-lujo .
Destructuring assignment (a.k.a. tuple unpack) in Python, seems to be very useful thing. The most basic variant:
»> x,y = 1,2
»> x,y
(1, 2)
what is identical to:
»> x, y = [1,2]
»> x, y = (1,2)
I had just released 0.20 version of permset.
Permset is simple standalone utility script to manage *nix permissions on file and directory trees based on patterns.
Check the example session to get into the idea behind.
I use Twitter primarly as a bookmarking service.
I know that Twitter is not bookmarking service and there are specialized services for such needs. In my case, using this way started as an experiment, but later I found this way very convenient.
I wrote a script that enables me to incrementally backup all my tweets in a textual file in YAML format, by parsing HTML Twitter pages. Explanation and the script follows …
Mercurial provides many ways to do branch based development. I was searchingfor the best in-repo branch solution. I chose named branches …
The article provides some information and tips on the subject: how to count characters, bytes and words in Vim.
Recently I invested some time to learn about new and popular language Go. I wanna give a test-drive, and since I have Windows XP and there is no GO official windows Go port, I needed to do some manual work.
Tubmlr supports tagging. This post is tagged with “tumblr”. The page that lists all posts tagged with “tubmlr” is:
Although the page provides RSS feed:
this is not per-tag feed, you RSS feed for all posts :(.
Hopefully there is solution, RSS feed that provides only posts tagged with tag “tumblr” is:
And it works !!!