Skip to content

Instantly share code, notes, and snippets.

Year All Majors High School Improvement
1 $23,547.14 $8,285.10 $15,262.03
2 $30,378.72 $11,045.55 $19,333.17
3 $35,256.05 $13,649.26 $21,606.79
4 $38,668.06 $15,829.55 $22,838.51
5 $41,211.73 $17,689.56 $23,522.17
6 $43,506.84 $19,310.89 $24,195.95
7 $45,295.31 $20,768.99 $24,526.31
8 $47,122.52 $21,531.17 $25,591.35
9 $49,270.37 $22,362.06 $26,908.31
Year All Majors High School Improvement PV of Improvement
1 $23,547.14 $8,285.10 $15,262.03 $14,197.24
2 $30,378.72 $11,045.55 $19,333.17 $16,729.62
3 $35,256.05 $13,649.26 $21,606.79 $17,392.61
4 $38,668.06 $15,829.55 $22,838.51 $17,101.49
5 $41,211.73 $17,689.56 $23,522.17 $16,384.57
6 $43,506.84 $19,310.89 $24,195.95 $15,678.05
7 $45,295.31 $20,768.99 $24,526.31 $14,783.36
8 $47,122.52 $21,531.17 $25,591.35 $14,349.13
9 $49,270.37 $22,362.06 $26,908.31 $14,034.93
Major NPV
Nursing $130,310.92
Accounting and Actuarial Scien $139,089.92
Computer Science $257,393.72
Civil Engineering $301,920.17
General Engineering $305,356.11
Industrial and Manufacturing E $337,390.02
Mechanical Engineering $390,823.44
Electrical Engineering $420,395.61
Aerospace Engineering $431,794.46
Major NPV
Early Childhood Education $-181,717.41
Drama and Theater Arts $-162,835.42
Fine and Studio Arts $-162,779.78
Theology and Religious Vocatio $-162,479.97
Social Work $-156,309.17
Associates Degree $-155,907.80
Family and Consumer Sciences $-155,081.33
Music $-146,648.91
Composition and Speech $-141,897.80
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 1.
Year,All Majors,Accounting and Actuarial Science,Advertising and Public Relations,Aerospace Engineering,Agricultural Economics,Animal Sciences,Anthropology and Archeology,Architecture,"Area, Ethnic, and Civilization Studies",Art and Music Education,Art History and Criticism,Associates Degree,Biochemistry and Molecular Biology,"Biological, Biomedical, and Environmental Engineering",Biology,"Botany, Ecology, and Zoology",Business Management and Administration,Chemical Engineering,Chemistry,Civil Engineering,Commercial Art and Graphic Design,Communication Technologies,Communications,Composition and Speech,Computer Engineering,Computer Science,Construction Services,Criminology and Criminal Justice,Drama and Theater Arts,Early Childhood Education,Earth and Other Physical Sciences,Economics,Electrical Engineering,Elementary Education,Energy and Extraction Engineering,Engineering Technologies,English Language and Literature,Environment and Natural Resources,Family and Consumer Sciences,"Film, Video and Photographic
import csv
import sys
import json
import numpy as np
def money(n):
try:
return "${:,.2f}".format(n)

What / Why

Deploy key is a SSH key set in your repo to grant client read-only (as well as r/w, if you want) access to your repo.

As the name says, its primary function is to be used in the deploy process, where only read access is needed. Therefore keep the repo safe from the attack, in case the server side is fallen.

How to

  1. Generate a ssh key

Keybase proof

I hereby claim:

  • I am fsnlarson on github.
  • I am francislarson (https://keybase.io/francislarson) on keybase.
  • I have a public key ASBXN4B3YW_Qqyi7OBYbFOCUgiouNCpytm4qIY1PVTHdPgo

To claim this, I am signing this object:

@fsnlarson
fsnlarson / gist:ab6bbe70ab4ee154235ab7ee9d51ac78
Created August 7, 2017 00:02 — forked from skyuplam/gist:ffb1b5f12d7ad787f6e4
Flask-Security and Flask-Admin example by Steve Saporata
# Example of combining Flask-Security and Flask-Admin.
# by Steve Saporta
# April 15, 2014
#
# Uses Flask-Security to control access to the application, with "admin" and "end-user" roles.
# Uses Flask-Admin to provide an admin UI for the lists of users and roles.
# SQLAlchemy ORM, Flask-Mail and WTForms are used in supporting roles, as well.
from flask import Flask, render_template
from flask.ext.sqlalchemy import SQLAlchemy
@fsnlarson
fsnlarson / tinder-api-documentation.md
Last active August 29, 2015 14:26 — forked from rtt/tinder-api-documentation.md
Tinder API Documentation

Tinder API documentation

http://rsty.org/

I've sniffed most of the Tinder API to see how it works. You can use this to create bots (etc) very trivially. Some example python bot code is here -> https://gist.github.com/rtt/5a2e0cfa638c938cca59 (horribly quick and dirty, you've been warned!)

Note: this was written in April/May 2014 and the API may have changed since

API Details