Setting background color of SWT buttons in Windows not supported
Just wasted a while to figure this out only to find out that it’s not supported because it’s not supported in the Windows native widget.
Just wasted a while to figure this out only to find out that it’s not supported because it’s not supported in the Windows native widget.
As a response to the Top 30 Ruby on Rails Tutorials, I’ve compiled a list of the top 30 Django tutorials and articles. These links are in addition to the great documentation on the Django project site.
For those who don’t know, Django is a Python web development framework that makes development super fast.
The list in no particular order…
Note: keep an eye out at Django’s community page for new tutorials and articles.
Related Links
If you have an additional tutorial, put it in the comments.
I’ve been using Vim for the last couple years on and off. Over the last few months (since the Vim 7 release) I’ve been forcing myself to use it exclusively. To make working with Vim more intuitive for me, I’ve been trying to get my vimrc just right. Of course, this will probably be a never ending quest.
Currently it looks like this…
" set appearance
syn on
colorscheme torte
set vb " visual beep instead of audible beep
set nu
" tab behavior
set ai
set tabstop=4
set sts=4
set et
set shiftwidth=4
" backspace behavior
set backspace=2
set backspace=indent,eol,start " redundent?
" backup behavior
set backup
set backupdir=~/.vim/backup/
" search behavior
set incsearch
I’ve been googling and adding, googling and adding. I’ve tried to avoid the complicated stuff so far. The vim documentation is great but a little overwhelming at first. Jonathan McPherson has a nice series of articles that gives a really friendly intro to Vim.
I’m mostly doing python programming so if you have any tips please leave a comment.
A friend of mine just finished up his Masters of Arts thesis project. Basically the project consists of two moody boxes, Otto and Ada, blogging about how they feel. So you ask, “How do the know how they feel?” Otto and Ada have built in sensors that detect changes in their environment. They then express themselves via their blog. Their grammar is not always great but they are both still quite young.
In a recent post, Sam discusses his experience with Python which he used for the project. In the post, Sam mentions the aspects of Python that make it ideal for artists. Those points are equally as valid for general programmers, though.
As a side note, I hereby take credit for introducing him to Python. Seems as if my persistant nudging paid off.
Late last night (or early this morning), I submitted my first ever patch. Hopefully this is the start of a long line of contributions. It fixes a problem in Monodevelop with the Code Template drop-down in the options panel. It’s bug #78082.
Every day I work on my soon-to-be-announced project I get more confident in C#. For anybody learning C# on linux with Mono, I recommend you look at Banshee for an example to help you along. The ActionManager class is very helpfull. Here is another good resource for tutorials. And lastly, You can go to the Mono Project sight for a good intro to the Gtk Treeview widget. Treeview is a beast at first but is really nice once you get the hang of it.