Skip to content

Instantly share code, notes, and snippets.

@rainhead
rainhead / Resume - Alexandra "Andie" Wheeler.md
Created July 27, 2015 20:23
Resume - Ada Developers Academy Application

#Alexandra "Andie" Wheeler ##Seattle, WA LinkedIn | Email | Cell: 206-795-9273


###EXPERIENCE Sales Representative Olympic Athletic Club – Seattle, WA Sept. 2009 – Present (5 years, 9 months) Employee of the Year - 2012

🌺SARAH ◇ CAMPBELL🌺

SEATTLE ⫷ 503-784-8759 ⫸ SARAHCAMPBELL307@GMAIL.COM

I'm energetic, obsessed with details, and driven to challenge myself and make others’ lives better. For the past nine years I have been a physical therapist assistant, and now I am on a quest for my next craft: one that grants me the ability to bring joy to others while working with an inspiring team.

EDUCATION 🎓

  • Northeast Wisconsin Technical College Associate’s Degree, Physical Therapist Assistant ▹ May 2005
  • Received yearly physical therapy continuing education ▹ 2005–2014

WORK EXPERIENCE 🏥

class ApplicationController < ActionController::Base
protect_from_forgery
protected
def current_user
@current_user ||= User.find_by_id(session[:user_id]) if signed_in?
end
def signed_in?
!! session[:user_id]
/**
* Adds a method to the Y.Base prototype to handle events so that when a widget
* or plugin becomes destroyed all events attached are detached.
*
* Requires Y.Lang & Y.Array
*/
YUI.add('event-handler', function(Y) {
var YLang = Y.Lang,
YArray = Y.Array;
YUI.add('paginator', function(Y) {
Y.Test = Y.Base.create('test', Y.Widget, [Y.WidgetParent, Y.WidgetChild], {
initializer: function (config) { ... }
}, {
CONTENT_TEMPLATE: '<ul></ul>',
ATTRS: { ... }
});
}, '0.1', {requires: ['widget', 'selector-css3', 'widget-parent', 'widget-child'] });