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
#!/bin/bash | |
flowcycle() { | |
EDITOR=vim | |
TAG=$(git tag | tail -1) | |
NEXTTAG="${TAG%.*}.$((${TAG##*.}+1))" | |
REL=$NEXTTAG | |
DIR="$( pwd )" | |
DOCKER_REPO="docker.nanofab.utah.edu:5000" | |
DOCKER_IMAGE="$(echo $DIR | perl -pe 's!.*/docker\-!!')" |
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
http://docs.neo4j.org/chunked/stable/ha-haproxy.html | |
global | |
daemon | |
maxconn 256 | |
defaults | |
mode http | |
timeout connect 5000ms | |
timeout client 50000ms |
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 pywinauto import application, timings | |
import subprocess, pywinauto, time | |
def activation_window(app): | |
actwin = repeated_check(app, 'Dragon NaturallySpeaking 12.0 Activation') | |
actwinbutton = repeated_check(actwin, 'Activate Later') | |
repeated_check_generic(actwinbutton, 'Activate Later', button_ready) | |
return actwin | |
def profile_window(app): |
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
C:\Users\Administrator.MILESTONENVRMAS>route print | |
=========================================================================== | |
Interface List | |
17...d8 9d 67 78 9b 8e ......HP Ethernet 1Gb 4-port 366i Adapter #4 | |
15...d8 9d 67 78 9b 8d ......HP Ethernet 1Gb 4-port 366i Adapter #3 | |
13...d8 9d 67 78 9b 8c ......HP Ethernet 1Gb 4-port 366i Adapter #2 | |
11...d8 9d 67 78 9b 8f ......HP Ethernet 1Gb 4-port 366i Adapter | |
1...........................Software Loopback Interface 1 | |
14...00 00 00 00 00 00 00 e0 Microsoft ISATAP Adapter #2 | |
16...00 00 00 00 00 00 00 e0 Microsoft ISATAP Adapter #3 |
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 version="1.0" encoding="utf-8"?> | |
<jnlp spec="1.0+" codebase="http://localhost:8000/" href="Hello.jnlp"> | |
<information> | |
<title>Jnlp Testing</title> | |
<vendor>Example</vendor> | |
<homepage href="http://localhost:8000/" /> | |
<description>Hello World JNLP</description> | |
</information> | |
<security> | |
<all-permissions/> |
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 java.awt.*; | |
import javax.swing.*; | |
import java.net.*; | |
import javax.jnlp.*; | |
import java.awt.event.ActionListener; | |
import java.awt.event.ActionEvent; | |
public class Hello { | |
static BasicService basicService = null; | |
public static void main(String args[]) { |
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
<?php | |
//set POST variables | |
$url = 'https://myhost/rt-path/REST/1.0/search/ticket'; | |
$fields = array( | |
'user' => ('rtuser'), | |
'pass' => ('rtpass'), | |
'format' => ('l'), //long format | |
'query' => ("Queue='mysupportqueue' and status !='resolved' and Created > '2013-03-10'") | |
); |
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 pywinauto import application, timings | |
import subprocess, pywinauto, time | |
def activation_window(app): | |
actwin = repeated_check(app, 'Dragon NaturallySpeaking 12.0 Activation') | |
actwinbutton = repeated_check(actwin, 'Activate Later') | |
repeated_check_generic(actwinbutton, 'Activate Later', button_ready) | |
return actwin | |
def profile_window(app): |