Saturday, January 4, 2014

Compiling/Executing a program with One Key Press in Vim/Gvim

Eventhough there are more than one way to compile/execute programs in Vim/Gvim, the normal method to compile and execute C,C++,Java,Python programs are: C:  !gcc % -o %:r  !./%:r C++: !g++ % -o %:r !./%:r Python: !python...

Sunday, December 29, 2013

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

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).

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

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

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