Skip to content

Instantly share code, notes, and snippets.

View sethrylan's full-sized avatar

Seth Rylan Gainey sethrylan

View GitHub Profile
{
"name": "VistA",
"children": [
{
"name": "Provider Services",
"children": [
{
"name": "Laboratory",
"children": [
{
[
{
"dependents": [
"Methicillin Resistant Staph Aurerus Initiative Reports",
"Authorization Subscription",
"Clinical Procedures",
"VistALink",
"CMOP",
"Enterprise Health Management Platform",
"HINQ",
/* BMP085 + Data Logger
by: Seth Rylan Gainey
date: 2012/07/08
license: http://sethrylan.mit-license.org/
Retrieve pressure and temperature from the BMP085 and calculate altitude.
Serial.print it out at 9600 baud to serial monitor and store on SD card.
"If you're using an Arduino Pro 3.3V/8MHz, or the like, you may need to
increase some of the delays in the bmp085ReadUP and
@sethrylan
sethrylan / vistacore_goto.txt
Created July 29, 2014 17:44
vistacore_goto.txt
1. Please join my meeting.
https://www2.gotomeeting.com/join/832632170
2. Use your microphone and speakers (VoIP) - a headset is recommended. Or, call in using your telephone.
Dial +1 (805) 309-0033
Access Code: 832-632-170
Audio PIN: Shown after joining the meeting
Meeting ID: 832-632-170
@sethrylan
sethrylan / gist:11234738
Created April 23, 2014 22:29
mock_nexus.gradle
apply plugin:'jetty'
jettyRun {
httpPort = 8000
webAppSourceDirectory = projectDir
contextPath = "/"
}
task wrapper(type: Wrapper) {
gradleVersion = '1.11'
@sethrylan
sethrylan / techscreen.md
Last active August 29, 2015 13:56
techscreen

Are you local and available to work on site?

Tell me about yourself; where you are today and how did you get there.

Why are you leaving you current position?

What type of job are you looking for?

@sethrylan
sethrylan / Audited.java
Last active January 3, 2016 21:09
Audit Logging
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Audited {
@sethrylan
sethrylan / checkstyle.gradle
Last active December 25, 2018 07:09
Code Quality Tasks for Android
configurations {
codequality
}
repositories {
mavenCentral()
}
dependencies {
codequality 'com.puppycrawl.tools:checkstyle:5.6'
@sethrylan
sethrylan / gist:5969486
Created July 10, 2013 19:36
gradle-r-plugin error
C:\Projects\src\rsql>gradle clean build
The ConfigurationContainer.add() method has been deprecated and is scheduled to be removed in Gradle 2.0. Please use the
create() method instead.
:clean UP-TO-DATE
:DESCRIPTION
Setting DESCRIPTION for package rsql
:roxygenize
> library(roxygen2,quietly=TRUE,verbose=FALSE);roxygenize(package.dir='pkg',roxygen.dir='build\rsql',roclets = c(collate
, namespace, rd, testthat));warnings()
Loading required package: stringr
@sethrylan
sethrylan / scalaConsole2
Last active December 19, 2015 06:19
ScalaConsole from org.ScalaConsole library
apply plugin: 'scala'
repositories {
flatDir name: 'localLib', dirs: 'lib'
mavenCentral()
}
ext {
versions = [
scala: '2.9.2',