Note: This post is a summary of information paraphrased from an excellent blog post by Christian Sepulveda.
Create the app and download the necessary dependencies.
| qApp.setStyle("Fusion") | |
| dark_palette = QPalette() | |
| dark_palette.setColor(QPalette.Window, QColor(53, 53, 53)) | |
| dark_palette.setColor(QPalette.WindowText, Qt.white) | |
| dark_palette.setColor(QPalette.Base, QColor(25, 25, 25)) | |
| dark_palette.setColor(QPalette.AlternateBase, QColor(53, 53, 53)) | |
| dark_palette.setColor(QPalette.ToolTipBase, Qt.white) | |
| dark_palette.setColor(QPalette.ToolTipText, Qt.white) | 
| # -*- coding: utf-8 -*- | |
| # Form implementation generated from reading ui file 'threading_design.ui' | |
| # | |
| # Created: Thu Aug 6 13:47:18 2015 | |
| # by: PyQt4 UI code generator 4.10.4 | |
| # | |
| # WARNING! All changes made in this file will be lost! | |
| from PyQt4 import QtCore, QtGui | 
| /*! | |
| * Dynamically changing favicons with JavaScript | |
| * Works in all A-grade browsers except Safari and Internet Explorer | |
| * Demo: http://mathiasbynens.be/demo/dynamic-favicons | |
| */ | |
| // HTML5™, baby! http://mathiasbynens.be/notes/document-head | |
| document.head || (document.head = document.getElementsByTagName('head')[0]); | |
| function changeFavicon(src) { | 
Create the app and download the necessary dependencies.
Custom recipe to get full Node.js Cloud Environment in DigitalOcean Dokku droplet running from scratch. Yes. Your own Heroku for $5 per month.
I use this gist to keep track of the important configuration steps required to have a functioning system after fresh install.
When you have executed that's all step by step you will get a new working and stable system which is ready to host & serve your Node.js application and databases.