Skip to content

Instantly share code, notes, and snippets.

@hhuuggoo
hhuuggoo / gist:c256a82178253dbd3d4e
Last active August 29, 2015 14:01
conda deploy command

###Conda Deploy Conda deploy command is a command used to auto-tag and deploy multiple packages. The idea would be to make it a one step operation to auto-tag a bunch of packages, and build a bunch of packages which point to the versions that were just tagged

Usage

conda deploy deploy.yaml

deploy.yaml contains

project1:
import sys
#url = "http://localhost:5006/bokeh/doc/line/show"
url = "http://10.10.0.121:5006/bokeh/doc/line/show"
def start():
app_created = False
app = QtCore.QCoreApplication.instance()
if app is None:
app = QtGui.QApplication(sys.argv)
app_created = True
return app
// This file was generated by modules-webmake (modules for web) project.
// See: https://github.com/medikoo/modules-webmake
(function (modules) {
var getModule, getRequire, require;
getModule = (function (wrap) {
return function (scope, tree, path, fullpath) {
var name, dir, exports, module, fn, isDir;
path = path.split('/');
name = path.pop();
@hhuuggoo
hhuuggoo / build.py
Created October 12, 2012 01:39
Simple script to watch and build your coffeescript files.
"""
Grunt.js was too complex for me. after adding a third project,
we ran into some wierd timer.js errors and gave up.
This python solution is pretty straightforward
and works well enough.
"""
import subprocess
import sys
import time
from watchdog.observers import Observer