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
| """ | |
| client.py contains all of the functionality required to interact with a client in your lab. | |
| """ | |
| #imports | |
| import logging | |
| import sh | |
| import simplejson | |
| import json | |
| import os |
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
| from sandman import app | |
| app.config['SQLALCHEMY_DATABASE_URI'] = 'db_account_info_here' | |
| from sandman.model import register, activate, Model | |
| class User(Model): | |
| __tablename__ = "ppv_user" | |
| class DataSet(Model): |
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
| description "Gunicorn Web Server" | |
| start on runlevel [2345] | |
| stop on runlevel [!2345] | |
| #Send KILL after 5 seconds | |
| kill timeout 5 | |
| respawn | |
| #Serve Gunicorn locally | |
| script |
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
| <xml?> | |
| <order> | |
| <credit_card>234892384923849238492348</credit_card> | |
| <exp_date>1120</exp_date> | |
| <name>Billy Bob</name> | |
| </order> |
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
| def sort_existing_bisect_changes(self, change_list): | |
| """ | |
| First we take in a changelist, then iterate over each change number, | |
| if a test has been executed on that change number, we move it to the | |
| end of the list. | |
| The results are returned. | |
| :param change_list: list of changes | |
| :return change_list: list of changes after things have been moved |
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| # All Vagrant configuration is done here. The most common configuration | |
| # options are documented and commented below. For a complete reference, | |
| # please see the online documentation at vagrantup.com. |
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
| <iframe id="sbg_video_frame" marginheight="0" scrolling="no" marginwidth="0" frameborder="no" allowfullscreen="yes" src="http://myrdctv.com/template/flashplayers/jwplayer/dev/files/embed.html?video=2014/06/clips/OWI4ZWRhZmFkZjlh&cdn=wrdc&adzone=/4756/WRDC/Web/Community&autoP=true&poster=http://myrdctv.com/sections/community/features/community-matters/images/stop_320x240.jpg&event=iframe player&googleID=UA-11902348-9&parent=http://myrdctv.com"></iframe><script src="http://myrdctv.com/template/flashplayers/jwplayer/dev/files/embed.js"></script> |
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
| set nocompatible " be iMproved, required | |
| filetype off " required | |
| " set the runtime path to include Vundle and initialize | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| " alternatively, pass a path where Vundle should install plugins | |
| "call vundle#begin('~/some/path/here') | |
| " let Vundle manage Vundle, required |
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
| //Checking for HOST OS to determine maven command | |
| def maven_command = ""; | |
| if (System.properties['os.name'].toLowerCase().contains('windows')) { | |
| //Is Windows | |
| maven_command = "mvn.bat"; | |
| } else { | |
| //Is Not Windows | |
| maven_command = "mvn"; | |
| } |
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
| Environment: | |
| Request Method: GET | |
| Request URL: http://arguet.kilncode.com:8000/igloo/repo/gatemodelversion/ | |
| Django Version: 1.6.2 | |
| Python Version: 2.7.6 | |
| Installed Applications: | |
| ('django.contrib.auth', |