This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| [ | |
| { | |
| "caption": "Sync: Pull", | |
| "command": "sync_pull" | |
| } | |
| ,{ | |
| "caption": "Sync: Push", | |
| "command": "sync_push" | |
| } | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| import os | |
| import sys | |
| import subprocess | |
| APP = 'demo_app' | |
| REMOTE_USER = 'gfreezy' | |
| REMOTE_HOST = 'norida.me' | |
| REMOTE_DIR = '/home/gfreezy/rails/' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| from PyQt4.QtCore import (pyqtSlot, pyqtSignal, QObject, QSize, QUrl, | |
| SIGNAL) | |
| from PyQt4.QtGui import (QApplication, QImage, QPainter) | |
| from PyQt4.QtWebKit import QWebPage | |
| class Thumbnailer(QObject): | |
| finished = pyqtSignal() | |
| def __init__(self, parent=None): |
NewerOlder