-
Some useful Sublime Text 2 Plugins
I have been trying different setups and IDEs to do some python development work and while Eclipse remains my favorite for Java, I decided to start using Sublime Text 2 for proper python/ruby development.  These are the plugins that I have been using so far that make ST2 even better than what it is. Package Control You…
-
Python RE Module: Word Boundaries
In regular expressions, the token “\b” is used for “word boundaries”. Â It will match at the start or at the end of a word. Â It is called an “anchor“. Â To match a full word in a string, it should be used as “\bcat\b” if we are looking for the word cat and will match the…