Skip to content

Instantly share code, notes, and snippets.

@DonAbney
DonAbney / gist:37074d7ce2c1864518d110edcdb47cff
Created April 9, 2018 17:27 — forked from ddaugher/gist:11013038
code review exercise for PCA 2014
package com.somecompany.app.process;
import java.awt.image.BufferedImage;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import javax.imageio.ImageIO;
@DonAbney
DonAbney / index.page.js
Created November 29, 2014 15:36
An approach for finding a selected option in Protractor that works with PhantomJS and gives useful output
'use strict';
var IndexPage = function() {
};
IndexPage.prototype = Object.create({}, {
load: {
value: function(){
browser.get('app/index.html');
}