References:
- http://blog.bekijkhet.com/2012/05/install-teamcity-continuous-integration.html
- https://gist.github.com/ianbattersby/4641450
sudo apt-get update
class CheckableDirModel(QtGui.QFileSystemModel): | |
def __init__(self, resultFormats, parent=None): | |
QtGui.QFileSystemModel.__init__(self, None) | |
filters = QStringList() | |
#import ipdb;ipdb.set_trace() | |
filters.append('*.odb') | |
resultFormats = resultFormats.split(',') | |
for resultFormat in resultFormats: | |
filters.append('*.' + resultFormat) |
References:
sudo apt-get update
The azure cli tool is used to do this publication. To install it follow below. For further questions see Azure CLI Install
# add ~/bin and add it to path
mkdir -p ~/bin/
[ "${PATH#*$HOME/bin}" = "$PATH" ] || PATH=$HOME/bin:$PATH
Go to http://nodejs.org/ and choose your installer
@if "%SCM_TRACE_LEVEL%" NEQ "4" @echo off | |
:: ---------------------- | |
:: KUDU Deployment Script | |
:: Version: 1.0.15 | |
:: ---------------------- | |
:: Prerequisites | |
:: ------------- |
Step by step from command line by Michael Hsu
$ express myfirstexpress && cd myfirstexpress
Just use these two guides from Heroku:
This is a 5-minute crash course to start using vagrant. We will host our vagrant files in /home/USER/vms
. That's
my convention working with many vagrant machines.
vagrant: https://docs.vagrantup.com/v2/installation/
virtualbox: https://www.virtualbox.org/wiki/Downloads
By Adam Anderson
These notes are mostly just summaries of the provided references. The purpose of this document is to centralize the resources I found useful so they would be easy to find. Most definitions and explanations are paraphrased or quoted directly from the sources.