Ahhh finally found the right options,
pip install ipdb --install-option="--user"
Name: Tristan Hill
Member since: 2009-03-16 21:44:05
Last Login: 2012-02-27 14:59:56
No personal information is available.
pip install ipdb --install-option="--user"
bzr export --format=tar - | ssh -C server tar x -C /path/to/overwrite/files/in
git archive --format=tar HEAD | ssh -C server tar x -C /path/to/overwrite/files/in
mount -t ecryptfs directly.Got annoying
`menu_proxy_module_load': gedit: undefined symbol: menu_proxy_module_loaderrors? do
dpkg --purge appmenu-gtkto get rid of
/etc/X11/Xsession.d/80appmenuthat causes this
Here's my python implementation of Rob Pike's minimal regex
(only supports ^.*$ special characters)
algorithm:
def match(regexp, text):
if regexp.startswith("^"):
return
matchhere(regexp[1:], text)
for i in range(len(text) or 1):
if
matchhere(regexp, text[i:]):
return True
return False
def matchhere(regexp, text):
if len(regexp) == 0:
return
True
if regexp[1:].startswith("*"):
return
matchstar(regexp[0], regexp[2:], text)
if regexp == "$":
return
len(text) == 0
if len(text) > 0 and (regexp[0] ==
"." or regexp[0] == text[0]):
return
matchhere(regexp[1:], text[1:])
return False
def matchstar(c, regexp, text):
for i in range(len(text) or 1):
if
matchhere(regexp, text[i:]):
return True
if len(text)
< 0 or c not in (text[i], "."):
return False
import unittest
class Test(unittest.TestCase):
def test(self):
self.assert_
(match("a", "a"))
self.assert_
(not match("a", "b"))
self.assert_
(match("^a$", "a"))
self.assert_
(match("^a*b$", "aaaab"))
self.assert_
(not match("^a*b$", "aaacb"))
self.assert_
(match("a*a", "aa"))
Here's hoping there's no other major bugs.
Others have certified stan as follows:
[ Certification disabled because you're not logged in. ]
New HTML Parser: The long-awaited libxml2 based HTML parser code is live. It needs further work but already handles most markup better than the original parser.
Keep up with the latest Advogato features by reading the Advogato status blog.
If you're a C programmer with some spare time, take a look at the mod_virgule project page and help us with one of the tasks on the ToDo list!