Skip to content

Instantly share code, notes, and snippets.

View Ronnie76er's full-sized avatar
💕
Welp

Ron Alleva Ronnie76er

💕
Welp
View GitHub Profile

Keybase proof

I hereby claim:

  • I am ronnie76er on github.
  • I am ronnie76er (https://keybase.io/ronnie76er) on keybase.
  • I have a public key whose fingerprint is 6776 83C4 F092 10F5 087D 5C41 8223 6421 1AE3 8970

To claim this, I am signing this object:

@Ronnie76er
Ronnie76er / gist:3300633
Created August 9, 2012 03:22
Software Engineer @ konciergeMD

konciergeMD is an early stage startup in the Philly suburbs. We're building a product that changes how caregivers and providers collaborate to deliver healthcare. We're a small, polyglot team with diverse backgrounds. Our stack is Java/Scala on the back end and HTML5/CSS3/Javascript on the front end. We care deeply about aesthetics. We care deeply about coffee. We are seeking developers who are equally comfortable with front and back end development and who understand web-scale, high-availability, high-traffic application architectures.

We're looking to bring on a top-notch software engineer, a pragmatist focused on shipping. We are open to contract or full-time work candidates. You will play a role in shaping this product -- this is core to our culture, so bring your opinions. We're generalists, but the path we're blazing will heavily rely on Javascript, jQuery, Backbone.js, HTML5, CSS3, Java, Scala, Play Framework, and Amazon Web Services. We're web first but mobile is quick

public class ProviderTest extends FakeApplicationTest {
@Test
public void findProviderInvalidUser() {
assertThat(Provider.findProviderByUser(UserUtils.INVALID_USER_ID))
.isNull();
assertThat(Provider.findProviderByUser(null))
.isNull();
}
@Ronnie76er
Ronnie76er / post-receive
Created September 6, 2011 02:44
post-receive for deploying jekyll blog on webfaction
#!/bin/sh
export GIT_WORK_TREE=$HOME/gitwebsite/ronalleva.com
export GEM_HOME=$HOME/gems
export RUBYLIB=$HOME/lib
export PATH=$PATH:$HOME/gems/bin:$HOME/bin
export PYTHONPATH=$PYTHONPATH:$HOME/lib/python
git checkout -f
cd $GIT_WORK_TREE
jekyll --no-auto $HOME/webapps/main
#!/usr/bin/python
#
# git-create-review.py
# based on script created here: http://mojodna.net/2009/02/24/my-work-git-workflow.html
# especially for the command to turn a git diff into a svn diff
import subprocess
from subprocess import Popen, PIPE, STDOUT
import sys
findRevCmd = 'git svn find-rev %s'
#!/bin/sh
#
# git-create-review
# Generates a diff based on a grep in the comments of the commits
REV_NUMS=`git log --grep=$1 --oneline -i --reverse | awk '{print $1;}'`
for revhash in $REV_NUMS; do
PREV_SVN_REV=`git svn find-rev $revhash^`
SVN_REV=`git svn find-rev $revhash`