Sunday, December 29, 2013

Improving the Syntax Highlighting in VIM/Gvim

Improving the Syntax Highlighting in VIM/Gvim

GVim The default syntax highlighting VIM Editor is not that much upto the expectation of the programmers. It's also one of my favourite text editor. So, i've modified the original source code of the syntax highlighting files...

Installing GIT on Linux

Installing GIT on Linux

Git is a distributed revision control and source code management (SCM) system with an emphasis on speed. Git was initially designed and developed by Linus Torvalds for Linux kernel development...

Friday, December 27, 2013

Setting proxy in Brackets(code editor for the Web).

Setting proxy in Brackets(code editor for the Web).

Brackets Brackets is an open source code editor for the web. It's entirely developed using JavaScript, HTML and CSS by web developers like you. It's one of my favourite code editors besides WebStorm,PyCharm,Bluefish,etc.. As...

Wednesday, October 23, 2013

GUI development using PyQt4

GUI development using PyQt4

super(AssetDelegate, self).__init__(parent) The initializer is typical of most delegate subclasses, simply calling the base class. def paint(self, painter, option, index): myoption = QStyleOptionViewItem(option) if index.column()...

Python PyQt app development

Python PyQt app development

class MainForm(QDialog): def __init__(self): super(MainForm, self).__init__() self.assetModel = QSqlRelationalTableModel(self) self.assetModel.setTable("assets") self.assetModel.setRelation(CATEGORYID, QSqlRelation("categories",...