I think I'm gonna start writing again. I'm doing some interesting stuff with Python, MySQL involving bioinformatics that may be useful for someone else besides me. Also I'm entering the world of iPhone development. I already made some very basic stuff and I really like it. So, yeah, I'm gonna write from time to time about it. I know nobody is reading this at this point but hopefully someday someone will, if not, well, I'll read it!
Popular posts from this blog
Using wx.stc.StyledTextCtrl
I started to use wxpython a couple of weeks ago. Actually I tried it for a while before but decided to use PyGtk that time for my Copymanager. Anyway, yesterday I needed to use a text control with style support; in wx the widget for that is StyledTextCtrl . When I added it to my window I noticed the horizontal scrollbar appeared by default, even if the content of the widget didn't fill the view. Thinking this control should behave somehow similar to TextCtrl I tried using wx.TE_MULTILINE but this had no effect on the StyledTextCtrl. After reading its entire documentation and trying a couple of options I found WrapMode property that finally gave me what I wanted. styledTextCtrl = wx.stc.StyledTextCtrl(parent) styledTextCtrl.WrapMode = True
All my old posts imported
Well, as you may notice I imported all my all posts from Weblog de Julio Carlos to this one. I googled for a while looking for a tool to do it and tried 2 of them but this one made it really easy and fast. Now I only need to move all the images from my previous server in the University of Habana to Blogger. Maybe I'll translate a few ones. Dunno, depending of how much free time I have (not too much this days).
Comments
Post a Comment