diff --git a/json-resume/build.sh b/json-resume/build.sh
deleted file mode 100755
index cfb3de5..0000000
--- a/json-resume/build.sh
+++ /dev/null
@@ -1,101 +0,0 @@
-#! /bin/bash
-
-main() {
- log flags...
- flags "$@"
- log install...
- install
- log build...
- build
-}
-
-flags() {
- set -e
-
- export THEMES="${1:-"${THEME:-"${THEMES:-"onepage"}"}"}"
- export PAGE_SIZE="${PAGE_SIZE:-A4}"
-
- if [ "$THEMES" == "all" ]; then
- export THEMES="jsonresume-theme-ace","jsonresume-theme-actual","jsonresume-theme-apage","jsonresume-theme-autumn","jsonresume-theme-caffeine","jsonresume-theme-class","jsonresume-theme-classy","jsonresume-theme-cora","jsonresume-theme-dave","jsonresume-theme-elegant","jsonresume-theme-elite","jsonresume-theme-eloquent","jsonresume-theme-even","jsonresume-theme-flat","jsonresume-theme-flat-fr","jsonresume-theme-full","jsonresume-theme-github","jsonresume-theme-jacrys","jsonresume-theme-kards","jsonresume-theme-keloran","jsonresume-theme-kendall","jsonresume-theme-kwan","jsonresume-theme-kwan-linkedin","jsonresume-theme-latex","jsonresume-theme-macchiato","jsonresume-theme-mantra","jsonresume-theme-mocha-responsive","jsonresume-theme-modern","jsonresume-theme-msresume","jsonresume-theme-onepage","jsonresume-theme-onepageresume","jsonresume-theme-orbit","jsonresume-theme-paper","jsonresume-theme-paper-plus-plus","jsonresume-theme-papirus","jsonresume-theme-pumpkin","jsonresume-theme-rocketspacer","jsonresume-theme-short","jsonresume-theme-simple-red","jsonresume-theme-slick","jsonresume-theme-spartan","jsonresume-theme-srt","jsonresume-theme-stackoverflow","jsonresume-theme-standard-resume","jsonresume-theme-tachyons-clean","jsonresume-theme-tan-responsive","jsonresume-theme-techlead","jsonresume-theme-verbum","jsonresume-theme-wraypro"
- export THEMES="${THEMES//jsonresume-theme-/}"
- fi
-}
-
-install() {
- install_cli
- install_themes
-
- if ! which wkhtmltopdf &> /dev/null; then
- log installing wkhtmltopdf
- local d=$(mktemp -d)
- apt -y install xfonts-75dpi
- wget https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.focal_amd64.deb -O "$d/wkhtmltox.deb"
- if ! dpkg -i "$d/wkhtmltox.deb"; then
- apt-get -f install
- dpkg -i "$d/wkhtmltox.deb"
- fi
- rm -rf "$d"
- fi
-}
-
-install_cli() {
- if which resume &> /dev/null; then
- return
- fi
-
- _npm install -g resume-cli
- which resume
-}
-
-install_themes() {
- for theme in ${THEMES//,/ }; do
- if [ -d node_modules/jsonresume-theme-$theme ]; then
- return
- fi
- log installing theme $theme
- if ! _npm install jsonresume-theme-$theme; then
- log failed
- export THEMES="${THEMES//,$theme,/,}"
- else
- log ok
- fi
- done
-}
-
-build() {
- if ! [ -f ./resume.json ]; then
- resume init
- fi
-
- for theme in ${THEMES//,/ }; do
- THEME=$theme build_theme
- done
-}
-
-build_theme() {
- log building theme $THEME
-
- (
- resume validate
- mkdir -p ./out
- resume export ./out/resume.$THEME.html --theme $THEME || true
- if [ -f ./out/resume.$THEME.html ]; then
- wkhtmltopdf --page-size $PAGE_SIZE ./out/resume.$THEME.html ./out/resume.$THEME.pdf
- fi
- ) || true
-}
-
-_npm() {
- which npm || exit 1
- echo "> $(which npm) "$@"" >&2
- $(which npm) "$@"
-}
-
-
-log() {
- echo "$(date) > $*" >&2
-}
-
-if [ "$0" == "$BASH_SOURCE" ]; then
- main "$@"
-fi
diff --git a/json-resume/package-lock.json b/json-resume/package-lock.json
deleted file mode 100755
index 3c2586e..0000000
--- a/json-resume/package-lock.json
+++ /dev/null
@@ -1,208 +0,0 @@
-{
- "name": "json-resume",
- "lockfileVersion": 3,
- "requires": true,
- "packages": {
- "": {
- "dependencies": {
- "jsonresume-theme-flat": "^0.3.7",
- "jsonresume-theme-full": "^0.0.4",
- "jsonresume-theme-onepage": "^0.0.3",
- "jsonresume-theme-riga": "^1.0.16",
- "jsonresume-theme-short": "^0.1.7"
- }
- },
- "node_modules/amdefine": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz",
- "integrity": "sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==",
- "optional": true,
- "engines": {
- "node": ">=0.4.2"
- }
- },
- "node_modules/async": {
- "version": "0.2.10",
- "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz",
- "integrity": "sha512-eAkdoKxU6/LkKDBzLpT+t6Ff5EtfSF4wx1WfJiPEEV7WNLnDaRXk0oVysiEPm262roaachGexwUv94WhSgN5TQ==",
- "optional": true
- },
- "node_modules/atob": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
- "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==",
- "bin": {
- "atob": "bin/atob.js"
- },
- "engines": {
- "node": ">= 4.5.0"
- }
- },
- "node_modules/css": {
- "version": "2.2.4",
- "resolved": "https://registry.npmjs.org/css/-/css-2.2.4.tgz",
- "integrity": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==",
- "dependencies": {
- "inherits": "^2.0.3",
- "source-map": "^0.6.1",
- "source-map-resolve": "^0.5.2",
- "urix": "^0.1.0"
- }
- },
- "node_modules/css/node_modules/source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/decode-uri-component": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
- "integrity": "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==",
- "engines": {
- "node": ">=0.10"
- }
- },
- "node_modules/handlebars": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-2.0.0.tgz",
- "integrity": "sha512-OdfkaA0M8qGD5EJBkMw3TpguSWl6lz94jdyVmYs5e4TpwepZJ35Y5XlchsIwcN7NP/yzNa3MJYd/dRTO7Nf/fg==",
- "dependencies": {
- "optimist": "~0.3"
- },
- "bin": {
- "handlebars": "bin/handlebars"
- },
- "engines": {
- "node": ">=0.4.7"
- },
- "optionalDependencies": {
- "uglify-js": "~2.3"
- }
- },
- "node_modules/inherits": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
- },
- "node_modules/jsonresume-theme-flat": {
- "version": "0.3.7",
- "resolved": "https://registry.npmjs.org/jsonresume-theme-flat/-/jsonresume-theme-flat-0.3.7.tgz",
- "integrity": "sha512-sdDkJdmMR4hqV/z/acBQCEWmzUlmsg74F97+aeH7KMhRRipB7j8GO2XKZxK9Zb+lh3ewZ7kmlo5/AX+mvTYcig==",
- "dependencies": {
- "handlebars": "^2.0.0-alpha.4"
- }
- },
- "node_modules/jsonresume-theme-full": {
- "version": "0.0.4",
- "resolved": "https://registry.npmjs.org/jsonresume-theme-full/-/jsonresume-theme-full-0.0.4.tgz",
- "integrity": "sha512-C5Mr7Ttao9H9bff77Z8UT4XIYPnjHSjpQXZSMupOVXpqaQeOj+zdrh+KxRYE7J+JJUWrolFINaeNXyCN8+pZgg==",
- "dependencies": {
- "handlebars": "^2.0.0-alpha.4"
- }
- },
- "node_modules/jsonresume-theme-onepage": {
- "version": "0.0.3",
- "resolved": "https://registry.npmjs.org/jsonresume-theme-onepage/-/jsonresume-theme-onepage-0.0.3.tgz",
- "integrity": "sha512-hfiSUbHHoWJkRxcYe5/bSZxZRmg3DAIBFgxnGOZXFzuytqxpzb9sTfI5fQ+0FNAxfsAcYVOFw0tMpzD6QNO53Q==",
- "dependencies": {
- "css": "2.2.x",
- "handlebars": "^2.0.0-alpha.4"
- }
- },
- "node_modules/jsonresume-theme-riga": {
- "version": "1.0.16",
- "resolved": "https://registry.npmjs.org/jsonresume-theme-riga/-/jsonresume-theme-riga-1.0.16.tgz",
- "integrity": "sha512-CKWd/g+CLBSfoSdQ/kXcvxauzcjTuY3i5NCDP2xTg+cQlxEv0Du729hVXz0V9CynesIYqcJQr+vt5b3zvm7Q4A==",
- "dependencies": {
- "handlebars": "^2.0.0"
- }
- },
- "node_modules/jsonresume-theme-short": {
- "version": "0.1.7",
- "resolved": "https://registry.npmjs.org/jsonresume-theme-short/-/jsonresume-theme-short-0.1.7.tgz",
- "integrity": "sha512-ZEuXWAAh9T0nPrCjJLlGUL8QbCYJAEfF3XheQ2elMGolDZpSz1nY5TPJxoMSyIBurKNs9gdQFh+cD42wySH5gg==",
- "dependencies": {
- "handlebars": "^2.0.0-alpha.4"
- }
- },
- "node_modules/optimist": {
- "version": "0.3.7",
- "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.3.7.tgz",
- "integrity": "sha512-TCx0dXQzVtSCg2OgY/bO9hjM9cV4XYx09TVK+s3+FhkjT6LovsLe+pPMzpWf+6yXK/hUizs2gUoTw3jHM0VaTQ==",
- "dependencies": {
- "wordwrap": "~0.0.2"
- }
- },
- "node_modules/resolve-url": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz",
- "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==",
- "deprecated": "https://github.com/lydell/resolve-url#deprecated"
- },
- "node_modules/source-map": {
- "version": "0.1.43",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz",
- "integrity": "sha512-VtCvB9SIQhk3aF6h+N85EaqIaBFIAfZ9Cu+NJHHVvc8BbEcnvDcFw6sqQ2dQrT6SlOrZq3tIvyD9+EGq/lJryQ==",
- "optional": true,
- "dependencies": {
- "amdefine": ">=0.0.4"
- },
- "engines": {
- "node": ">=0.8.0"
- }
- },
- "node_modules/source-map-resolve": {
- "version": "0.5.3",
- "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz",
- "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==",
- "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated",
- "dependencies": {
- "atob": "^2.1.2",
- "decode-uri-component": "^0.2.0",
- "resolve-url": "^0.2.1",
- "source-map-url": "^0.4.0",
- "urix": "^0.1.0"
- }
- },
- "node_modules/source-map-url": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz",
- "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==",
- "deprecated": "See https://github.com/lydell/source-map-url#deprecated"
- },
- "node_modules/uglify-js": {
- "version": "2.3.6",
- "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.3.6.tgz",
- "integrity": "sha512-T2LWWydxf5+Btpb0S/Gg/yKFmYjnX9jtQ4mdN9YRq73BhN21EhU0Dvw3wYDLqd3TooGUJlCKf3Gfyjjy/RTcWA==",
- "optional": true,
- "dependencies": {
- "async": "~0.2.6",
- "optimist": "~0.3.5",
- "source-map": "~0.1.7"
- },
- "bin": {
- "uglifyjs": "bin/uglifyjs"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/urix": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz",
- "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==",
- "deprecated": "Please see https://github.com/lydell/urix#deprecated"
- },
- "node_modules/wordwrap": {
- "version": "0.0.3",
- "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz",
- "integrity": "sha512-1tMA907+V4QmxV7dbRvb4/8MaRALK6q9Abid3ndMYnbyo8piisCmeONVqVSXqQA3KaP4SLt5b7ud6E2sqP8TFw==",
- "engines": {
- "node": ">=0.4.0"
- }
- }
- }
-}
diff --git a/json-resume/package.json b/json-resume/package.json
deleted file mode 100755
index a158e70..0000000
--- a/json-resume/package.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "dependencies": {
- "jsonresume-theme-flat": "^0.3.7",
- "jsonresume-theme-full": "^0.0.4",
- "jsonresume-theme-onepage": "^0.0.3",
- "jsonresume-theme-riga": "^1.0.16",
- "jsonresume-theme-short": "^0.1.7"
- }
-}
diff --git a/json-resume/resume.json b/json-resume/resume.json
deleted file mode 100755
index 6df4355..0000000
--- a/json-resume/resume.json
+++ /dev/null
@@ -1,154 +0,0 @@
-{
- "$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
- "basics": {
- "name": "Bree LaPointe",
- "label": "Senior Software Engineer",
- "picture": "",
- "email": "contact@blapointe.com",
- "phone": "(336) 701-6159",
- "website": "https://blapointe.com",
- "summary": "",
- "location": {
- "city": "Provo",
- "countryCode": "",
- "region": "UT"
- },
- "profiles": [
- {
- "url": "https://blapointe.com"
- },
- {
- "network": "LinkedIn",
- "username": "lapoba16",
- "url": "https://www.linkedin.com/in/lapoba16"
- }
- ]
- },
- "work": [
- {
- "company": "Qualtrics",
- "position": "Senior Software Engineer, Team Lead",
- "website": "https://www.qualtrics.com",
- "startDate": "May 2022",
- "endDate": "Present",
- "summary": "",
- "details": [
- {"text": "Mentored entry to mid-level engineers on stability, clean code, and distributed systems as team lead.", "comment": ""},
- {"text": "Hosted engineering book and white paper clubs for continuous approvement and cross-team experience sharing for 2 years.", "comment": ""},
- {"text": "Recovered 98% of data lost in critical incident via coordinating cross team efforts and disecting native database operation logs.", "comment": ""}
- ]
- },
- {
- "company": "Qualtrics",
- "position": "Software Engineer II",
- "website": "",
- "startDate": "Oct 2019",
- "endDate": "May 2022",
- "summary": "",
- "details": [
- {"text": "Developed and owned highly available and reliable data storage and operational tooling.", "comment": ""},
- {"text": "Mentored 2 interns, 2 new hires, and 3 mid-level cross team engineers on operational tools, maintainable software, and career development."},
- {"text": "Led genericized AWS asset management tooling ahead of company-wide mass migration initiative."},
- {"text": "Championed disaster recovery by supporting training runs with documentation, tools, and live support across teams and enforced continuous compliance for 17 database clusters with monitoring and alerting."},
- {"text": "Lent expertise owning MongoDB across teams by advising on configuration and data models and genericizing disaster recovery tooling for 21 teams."}
- ]
- },
- {
- "company": "Qualtrics",
- "position": "Software Engineer I",
- "website": "",
- "startDate": "Feb 2018",
- "endDate": "Oct 2019",
- "summary": "",
- "details": [
- {"text": "Automated no-downtime system patching for 30 services and 25 database clusters by creating a modular and testable scripting framework.", "comment": ""},
- {"text": "Increased backend service's availability from 98% to 99.99% and reduced hardware costs by 40% by selecting, training team on, and migrating without service interruption to a different database.", "comment": ""}
- ]
- }
- ],
- "volunteer": [
- ],
- "education": [
- {
- "institution": "Wake Forest University",
- "area": "Computer Science",
- "studyType": "Master of Science",
- "startDate": "Jan 2016",
- "endDate": "Dec 2017",
- "gpa": "3.88/4.00",
- "courses": [
- ]
- },
- {
- "institution": "High Point University",
- "area": "Computer Science",
- "studyType": "Bachelor of Arts",
- "startDate": "Aug 2013",
- "endDate": "Dec 2015",
- "gpa": "3.91/4.00",
- "courses": [
- ]
- }
- ],
- "awards": [
- ],
- "publications": [
- {
- "name": "Arabidopsis thaliana computationally-generated next-state gene interaction models",
- "publisher": "",
- "releaseDate": "Jun 2018",
- "website": "",
- "summary": "Refactored to correct bugs and improve efficiency by orders of magnitude"
- }
- ],
- "skills": [
- {
- "name": "Languages",
- "details": [
- {"text":"Go", "comment":"expert"},
- {"text":"Bash", "comment":"expert"},
- {"text":"Python3", "comment":"proficient"}
- ]
- },
- {
- "name": "Platforms",
- "details": [
- {"text":"Docker", "comment":"expert"},
- {"text":"Hashicorp", "comment":"expert"},
- {"text":"Linux/Unix", "comment":"expert"},
- {"text":"AWS", "comment":"proficient"},
- {"text":"Jenkins", "comment":"proficient"},
- {"text":"REST", "comment":"proficient"},
- {"text":"Microservice Architecture", "comment":"proficient"},
- {"text":"Git", "comment":"proficient"}
- ]
- },
- {
- "name": "Datastores",
- "details": [
- {"text":"MongoDB", "comment":"expert"},
- {"text":"Redis", "comment":"expert"},
- {"text":"S3", "comment":"expert"},
- {"text":"Couchbase", "comment":"proficient"},
- {"text":"DynamoDB", "comment":"proficient"}
- ]
- }
- ],
- "languages": [
- {
- "language": "English",
- "fluency": "Native speaker"
- }
- ],
- "interests": [
- ],
- "references": [
- ],
- "projects": [
- ],
- "meta": {
- "canonical": "https://raw.githubusercontent.com/jsonresume/resume-schema/master/resume.json",
- "version": "v1.0.0",
- "lastModified": "2017-12-24T15:53:00"
- }
-}
diff --git a/json-resume/themes/actual.html b/json-resume/themes/actual.html
deleted file mode 100755
index 19db3b0..0000000
--- a/json-resume/themes/actual.html
+++ /dev/null
@@ -1,363 +0,0 @@
-
Resume Bree LaPointe – Programmer Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
Experience
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
Build an algorithm for artist to detect if their music was violating copy right infringement laws Successfully won Techcrunch Disrupt Optimized an algorithm that holds the current world record for Weisman Scores Projects
A mapping engine that misguides you
-
Won award at AIHacks 2016 Built by all women team of newbie programmers Using modern technologies such as GoogleMaps, Chrome Extension and Javascript Publications
Innovative middle-out compression algorithm that changes the way we store data.
-
Volunteer
Global movement of free coding clubs for young people.
-
Awarded 'Teacher of the Month' References
Erlich Bachman It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
\ No newline at end of file
diff --git a/json-resume/themes/actual.jpg b/json-resume/themes/actual.jpg
deleted file mode 100755
index 589c502..0000000
Binary files a/json-resume/themes/actual.jpg and /dev/null differ
diff --git a/json-resume/themes/autumn.html b/json-resume/themes/autumn.html
deleted file mode 100755
index b644e02..0000000
--- a/json-resume/themes/autumn.html
+++ /dev/null
@@ -1,882 +0,0 @@
-
-
-
-
-
-
- Bree LaPointe
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Bree LaPointe
- Programmer
-
-
-
-
- Location:
-
- San Francisco, California, United States
-
- E-mail:
-
- contact@blapointe.com
-
- Phone:
-
- (912) 555-4321
-
- Twitter:
-
- Twitter
-
-
SoundCloud:
-
-
SoundCloud
-
-
-
-
-
-
Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
- Work
-
-
-
-
- Pied Piper
-
-
- CEO/President
-
-
-
- Dec 2013
- - Dec 2014
-
-
-
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
- Volunteer
-
-
-
-
- CoderDojo
-
-
- Teacher
-
-
-
- Jan 2012
- - Jan 2013
-
-
-
Global movement of free coding clubs for young people.
-
- Awarded 'Teacher of the Month'
-
-
-
- Education
-
-
-
-
- University of Oklahoma
-
-
- Bachelor in Information Technology
-
-
-
- Jun 2011
- - Jan 2014
-
-
-
-
- Awards
-
-
-
-
- Digital Compression Pioneer Award
-
-
- Techcrunch
-
-
-
- Nov 2014
-
-
-
There is no spoon.
-
-
- Publications
-
-
-
-
- Video compression for 3d media
-
-
- Hooli
-
-
-
- Oct 2014
-
-
-
Innovative middle-out compression algorithm that changes the way we store data.
-
-
- References
-
-
- It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
-
-
- Erlich Bachman
-
-
-
-
-
-
- Skills
-
-
Web Development
-
- HTML
- CSS
- Javascript
-
-
-
Compression
-
- Mpeg
- MP4
- GIF
-
-
-
- Languages
-
-
English
-
- Native speaker
-
-
-
- Interests
-
-
Wildlife
-
- Ferrets
- Unicorns
-
-
-
-
-
-
diff --git a/json-resume/themes/autumn.jpg b/json-resume/themes/autumn.jpg
deleted file mode 100755
index a08db1f..0000000
Binary files a/json-resume/themes/autumn.jpg and /dev/null differ
diff --git a/json-resume/themes/caffeine.html b/json-resume/themes/caffeine.html
deleted file mode 100755
index 45433f7..0000000
--- a/json-resume/themes/caffeine.html
+++ /dev/null
@@ -1,512 +0,0 @@
-
-
-
-
-
-
Bree LaPointe
-
-
-
-
-
-
-
-
-
-
-
-
-
-
2712 Broadway St San Francisco, California CA 94115
-
-
-
-
-
-
-
-
neutralthoughts
-
-
-
- Master
-
- HTML
- CSS
- Javascript
-
-
-
-
-
-
-
-
- English (Native speaker)
-
-
-
-
-
-
-
-
- Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
-
-
- CEO/President
-
- Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
-
- Teacher
-
- Global movement of free coding clubs for young people.
-
-
- Awarded 'Teacher of the Month'
-
-
-
-
-
-
-
- Bachelor Information Technology
-
-
-
- DB1101 - Basic SQL
- CS2011 - Java Introduction
-
-
-
-
-
-
-
- Techcrunch
-
- There is no spoon.
-
-
-
-
-
-
- Hooli
-
- Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
-
-
-
-
- It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
-
-
- — Erlich Bachman
-
-
-
-
-
-
-
diff --git a/json-resume/themes/caffeine.jpg b/json-resume/themes/caffeine.jpg
deleted file mode 100755
index 4d55733..0000000
Binary files a/json-resume/themes/caffeine.jpg and /dev/null differ
diff --git a/json-resume/themes/class.html b/json-resume/themes/class.html
deleted file mode 100755
index cbe866e..0000000
--- a/json-resume/themes/class.html
+++ /dev/null
@@ -1,395 +0,0 @@
-
-
-
-
-
-
-
- Bree LaPointe - CV
-
-
-
-
-
-
-
- Bree LaPointe
- Programmer
-
-
-
-
-
-
-
About
-
Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
-
- Work
-
-
-
- CEO/President
-
-
-
-
- 2013-12-01
-
-
- - 2014-12-01
-
-
-
-
-
-
-
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
- Volunteer
-
-
- CoderDojo
-
-
-
- Teacher
-
-
-
Global movement of free coding clubs for young people.
-
-
- Awarded 'Teacher of the Month'
-
-
-
-
-
- Education
-
-
-
- University of Oklahoma
-
-
-
-
- 2011-06-01
-
-
- - 2014-01-01
-
-
-
-
-
- DB1101 - Basic SQL
- CS2011 - Java Introduction
-
-
-
-
-
-
- Skills
-
-
- Web Development
-
-
- Master
-
-
- HTML
- CSS
- Javascript
-
-
-
-
- Compression
-
-
- Master
-
-
-
-
-
-
- Languages
-
-
- English
-
-
- Native speaker
-
-
-
-
-
-
-
- References
-
-
- It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
-
-
- — Erlich Bachman
-
-
-
-
-
-
-
diff --git a/json-resume/themes/class.jpg b/json-resume/themes/class.jpg
deleted file mode 100755
index 9cba4fa..0000000
Binary files a/json-resume/themes/class.jpg and /dev/null differ
diff --git a/json-resume/themes/classy.html b/json-resume/themes/classy.html
deleted file mode 100755
index d5646f5..0000000
--- a/json-resume/themes/classy.html
+++ /dev/null
@@ -1,241 +0,0 @@
-
-
-
-
-
-
- Bree LaPointe
-
-
-
-
-
-
-
-
-
-
ABOUT
-
- Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
VOLUNTEER WORK
-
Teacher, CoderDojo
-
January 2012 - January 2013
-
Global movement of free coding clubs for young people.
-
HIGHLIGHTS
-
- Awarded 'Teacher of the Month'
-
-
-
-
SKILLS
- Web Development
- HTML
- CSS
- Javascript
- Compression
- Mpeg
- MP4
- GIF
-
-
-
EDUCATION
-
Bachelor, Information Technology - University of Oklahoma
-
June 2011 - January 2014
-
COURSES
-
- DB1101 - Basic SQL
- CS2011 - Java Introduction
-
-
-
-
AWARDS
-
Digital Compression Pioneer Award - Techcrunch
-
01 November 2014
-
There is no spoon.
-
-
-
PUBLICATIONS
-
Video compression for 3d media
-
01 October 2014
-
Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
INTERESTS
- Wildlife
- Ferrets
- Unicorns
-
-
-
LANGUAGES
- English
- Fluency: Native speaker
-
-
-
REFERENCES
-
- It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
- - Erlich Bachman
-
-
-
-
-
-
diff --git a/json-resume/themes/classy.jpg b/json-resume/themes/classy.jpg
deleted file mode 100755
index 1ec98e3..0000000
Binary files a/json-resume/themes/classy.jpg and /dev/null differ
diff --git a/json-resume/themes/cora.html b/json-resume/themes/cora.html
deleted file mode 100755
index 95529c7..0000000
--- a/json-resume/themes/cora.html
+++ /dev/null
@@ -1,373 +0,0 @@
-
-
-
-
-
-
-
- Bree LaPointe
-
-
-
-
-
-
-
-
- Bree LaPointe
- Programmer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ABOUT
-
- Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
- WORK EXPERIENCE
-
-
CEO/President,
-
2013-12-01
-
- - 2014-12-01
-
-
-
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
HIGHLIGHTS
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
- SKILLS
-
-
- Web Development
- HTML
- CSS
- Javascript
-
-
- Compression
- Mpeg
- MP4
- GIF
-
-
-
-
- EDUCATION
- Bachelor, Information Technology - University of Oklahoma
- 2011-May - 2013-Dec
-
- COURSES
-
- DB1101 - Basic SQL
- CS2011 - Java Introduction
-
-
-
-
- AWARDS
- Digital Compression Pioneer Award - Techcrunch
-
- 2014-Oct
-
- There is no spoon.
-
-
- PUBLICATIONS
- Video compression for 3d media
- 2014-10-01
- Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
- VOLUNTEER WORK
- Teacher, CoderDojo
- 2011-Dec
-
- - 2012-Dec
-
-
- Global movement of free coding clubs for young people.
- HIGHLIGHTS
-
- Awarded 'Teacher of the Month'
-
-
-
- LANGUAGES
-
- English
- Fluency: Native speaker
-
-
- INTERESTS
- Wildlife
-
- Ferrets
- Unicorns
-
-
- REFERENCES
-
- It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
- - Erlich Bachman
-
-
-
-
-
diff --git a/json-resume/themes/cora.jpg b/json-resume/themes/cora.jpg
deleted file mode 100755
index 6e6a702..0000000
Binary files a/json-resume/themes/cora.jpg and /dev/null differ
diff --git a/json-resume/themes/dave.html b/json-resume/themes/dave.html
deleted file mode 100755
index 944db87..0000000
--- a/json-resume/themes/dave.html
+++ /dev/null
@@ -1,1866 +0,0 @@
-
-
-
-
-
- Bree LaPointe
-
-
-
-
-
-
-
- Bree LaPointe
- Programmer
-
-
-
Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Web Development
-
-
-
- CSS
- HTML
- Javascript
-
-
Compression
-
-
-
-
-
-
-
-
-
-
-
-
-
- English
-
- Native speaker
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 11/2013 to 11/2014
-
-
- CEO/President
-
-
-
-
-
-
-
-
-
-
-
-
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
-
-
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2011 to 2013
-
-
- University of Oklahoma
-
-
-
-
-
- Bachelor,
- Information Technology
-
-
-
-
-
-
- DB1101 - Basic SQL
- CS2011 - Java Introduction
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2011 to 2012
-
-
- CoderDojo
-
-
-
-
-
- Teacher
- Global movement of free coding clubs for young people.
-
-
-
-
-
- Awarded 'Teacher of the Month'
-
-
-
-
-
-
-
-
-
-
-
-
- 09/2014
-
-
- Video compression for 3d media
-
-
-
-
-
-
-
- Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 10/2014
-
-
- Digital Compression Pioneer Award
-
-
-
-
-
- Techcrunch
-
- There is no spoon.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/json-resume/themes/dave.jpg b/json-resume/themes/dave.jpg
deleted file mode 100755
index d6eac7e..0000000
Binary files a/json-resume/themes/dave.jpg and /dev/null differ
diff --git a/json-resume/themes/elegant.html b/json-resume/themes/elegant.html
deleted file mode 100755
index 700a48b..0000000
--- a/json-resume/themes/elegant.html
+++ /dev/null
@@ -1,1062 +0,0 @@
-Bree LaPointe × Background About
About Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
Work Experience
Work Experience CEO/President , Pied Piper
Dec, 2013 - Dec, 2014 1 year
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
Build an algorithm for artist to detect if their music was violating copy right infringement laws
-Successfully won Techcrunch Disrupt
-Optimized an algorithm that holds the current world record for Weisman Scores
-Projects Experience
Projects Experience Miss Direction , Smoogle
Aug, 2016 - Aug, 2016 1 day
A mapping engine that misguides you
-
Won award at AIHacks 2016
-Built by all women team of newbie programmers
-Using modern technologies such as GoogleMaps, Chrome Extension and Javascript
-Education
Education Information Technology, Bachelor, University of Oklahoma
Jun, 2011 - Jan, 2014
DB1101 - Basic SQL
-CS2011 - Java Introduction
-Awards
Awards Digital Compression Pioneer Award , Techcrunch
Awarded on: Nov 01, 2014
Volunteer Work
Volunteer Work Teacher, CoderDojo
Jan, 2012 - Jan, 2013
Global movement of free coding clubs for young people.
-
References
References Erlich BachmanIt is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
-
\ No newline at end of file
diff --git a/json-resume/themes/elegant.jpg b/json-resume/themes/elegant.jpg
deleted file mode 100755
index 164f467..0000000
Binary files a/json-resume/themes/elegant.jpg and /dev/null differ
diff --git a/json-resume/themes/eloquent.html b/json-resume/themes/eloquent.html
deleted file mode 100755
index c94c17a..0000000
--- a/json-resume/themes/eloquent.html
+++ /dev/null
@@ -1,460 +0,0 @@
-
-
-
-
-
-
- Bree LaPointe — Programmer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Bree LaPointe
-
Programmer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
#
-
- CEO/President
-
-
-
- December 2013 —
- December 2014
- a year
-
-
-
-
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
#
-
- CoderDojo
-, Teacher
-
-
-
-
- January 2012 —
- January 2013
- a year
-
-
-
-
Global movement of free coding clubs for young people.
-
-
- Awarded 'Teacher of the Month'
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
#
-
- Information Technology , Bachelor
-
-
-
-
- 2011
- —
- 2014
- 3 years
-
-
-
-
- University of Oklahoma
-
-
- DB1101 - Basic SQL CS2011 - Java Introduction
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
#
-
Web Development — Master
-
-
-
-
-
-
-
#
-
Compression — Master
-
-
-
-
-
-
-
-
-
-
-
-
-
-
#
-
- Digital Compression Pioneer Award , Techcrunch
-
-
-
-
- Awarded on: Nov 01, 2014
-
-
-
-
There is no spoon.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
#
-
-
- Video compression for 3d media
- , Hooli
-
-
-
- Published on: Oct 01, 2014
-
-
-
Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
#
-
- English , Native speaker
-
-
-
-
-
-
-
-
-
-
-
-
-
-
#
-
- It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/json-resume/themes/eloquent.jpg b/json-resume/themes/eloquent.jpg
deleted file mode 100755
index d680f15..0000000
Binary files a/json-resume/themes/eloquent.jpg and /dev/null differ
diff --git a/json-resume/themes/even.html b/json-resume/themes/even.html
deleted file mode 100755
index b0b89e5..0000000
--- a/json-resume/themes/even.html
+++ /dev/null
@@ -1,489 +0,0 @@
-
-
-
-
- Bree LaPointe
-
-
-
-
-
-
-
-
-
- Work
-
-
-
- Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
- Volunteer
-
-
-
- Global movement of free coding clubs for young people.
-
-
-
-
-
- Education
-
-
-
- Bachelor
- Courses
-
-
-
-
-
- Projects
-
-
-
- A mapping engine that misguides you
-
- Won award at AIHacks 2016
- Built by all women team of newbie programmers
- Using modern technologies such as GoogleMaps, Chrome Extension and Javascript
-
-
-
-
-
- Awards
-
-
-
- There is no spoon.
-
-
-
-
- Publications
-
-
-
- Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
- Skills
-
-
-
Web Development
-
- HTML
- CSS
- Javascript
-
-
-
-
-
-
- Languages
-
-
-
English
- Native speaker
-
-
-
-
-
- References
-
-
- It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
-
- Erlich Bachman
-
-
-
-
-
-
diff --git a/json-resume/themes/even.jpg b/json-resume/themes/even.jpg
deleted file mode 100755
index 4a80365..0000000
Binary files a/json-resume/themes/even.jpg and /dev/null differ
diff --git a/json-resume/themes/flat-fr.html b/json-resume/themes/flat-fr.html
deleted file mode 100755
index bda3e3d..0000000
--- a/json-resume/themes/flat-fr.html
+++ /dev/null
@@ -1,490 +0,0 @@
-
-
-
-
-
-
-
- Bree LaPointe
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
-
-
-
-
- Twitter
-
-
- neutralthoughts
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2013-12-01 — 2014-12-01
-
-
-
- CEO/President
-
-
-
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
-
Highlights
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
-
-
-
-
-
-
-
- CoderDojo
-
- 2012-01-01 — 2013-01-01
-
-
-
- Teacher
-
-
-
Global movement of free coding clubs for young people.
-
-
Particularités
-
- Awarded 'Teacher of the Month'
-
-
-
-
-
-
-
-
-
-
-
-
- University of Oklahoma
-
- 2011-06-01 — 2014-01-01
-
-
-
- Information Technology
-
-
- Bachelor
-
-
Cours
-
- DB1101 - Basic SQL
- CS2011 - Java Introduction
-
-
-
-
-
-
-
-
-
-
-
-
- Digital Compression Pioneer Award
-
-
- Certifié le
- 2014-11-01
-
-
- par
- Techcrunch
-
-
- There is no spoon.
-
-
-
-
-
-
-
-
-
-
-
-
- Video compression for 3d media
-
- 2014-10-01
-
-
-
- Publié par
- Hooli
-
-
-
Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
-
-
-
-
-
-
-
-
-
Web Development
-
-
- HTML
- CSS
- Javascript
-
-
-
-
-
-
-
-
-
-
-
-
-
- English
-
-
- Native speaker
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
-
- — Erlich Bachman
-
-
-
-
-
-
-
-
-
-
-
diff --git a/json-resume/themes/flat-fr.jpg b/json-resume/themes/flat-fr.jpg
deleted file mode 100755
index b3b25ac..0000000
Binary files a/json-resume/themes/flat-fr.jpg and /dev/null differ
diff --git a/json-resume/themes/flat.html b/json-resume/themes/flat.html
deleted file mode 100755
index 080265e..0000000
--- a/json-resume/themes/flat.html
+++ /dev/null
@@ -1,490 +0,0 @@
-
-
-
-
-
-
-
- Bree LaPointe
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
-
-
-
-
- Twitter
-
-
- neutralthoughts
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2013-12-01 — 2014-12-01
-
-
-
- CEO/President
-
-
-
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
-
Highlights
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
-
-
-
-
-
-
-
- CoderDojo
-
- 2012-01-01 — 2013-01-01
-
-
-
- Teacher
-
-
-
Global movement of free coding clubs for young people.
-
-
Highlights
-
- Awarded 'Teacher of the Month'
-
-
-
-
-
-
-
-
-
-
-
-
- University of Oklahoma
-
- 2011-06-01 — 2014-01-01
-
-
-
- Information Technology
-
-
- Bachelor
-
-
Courses
-
- DB1101 - Basic SQL
- CS2011 - Java Introduction
-
-
-
-
-
-
-
-
-
-
-
-
- Digital Compression Pioneer Award
-
-
- Awarded
- 2014-11-01
-
-
- by
- Techcrunch
-
-
- There is no spoon.
-
-
-
-
-
-
-
-
-
-
-
-
- Video compression for 3d media
-
- 2014-10-01
-
-
-
- Published by
- Hooli
-
-
-
Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
-
-
-
-
-
-
-
-
-
Web Development
-
-
- HTML
- CSS
- Javascript
-
-
-
-
-
-
-
-
-
-
-
-
-
- English
-
-
- Native speaker
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
-
- — Erlich Bachman
-
-
-
-
-
-
-
-
-
-
-
diff --git a/json-resume/themes/flat.jpg b/json-resume/themes/flat.jpg
deleted file mode 100755
index 17f5a93..0000000
Binary files a/json-resume/themes/flat.jpg and /dev/null differ
diff --git a/json-resume/themes/full.html b/json-resume/themes/full.html
deleted file mode 100755
index 65949f1..0000000
--- a/json-resume/themes/full.html
+++ /dev/null
@@ -1,543 +0,0 @@
-
-
-
-
-
- Bree LaPointe - Programmer
-
-
-
-
-
-
-
-
-
-
-
- Bree LaPointe
-
- Programmer
- Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
- 2712 Broadway St
- San Francisco,
- California
- CA 94115
- US
-
-
-
-
-
- Twitter
-
- neutralthoughts
-
-
-
-
-
-
-
-
-
- https://soundcloud.example.com/dandymusicnl
-
-
-
-
-
-
- Experience
-
- Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
-
Skills
-
Web Development
-
- HTML,
- CSS,
- Javascript
-
-
-
-
Compression
-
- Mpeg,
- MP4,
- GIF
-
-
-
-
-
-
Volunteering
-
-
Global movement of free coding clubs for young people.
-
- Awarded 'Teacher of the Month'
-
-
-
-
-
- Projects
-
- Miss Direction
- Aug 2016
- - Aug 2016
-
- Highlights
-
- Won award at AIHacks 2016
- Built by all women team of newbie programmers
- Using modern technologies such as GoogleMaps, Chrome Extension and Javascript
-
- Keywords
-
- GoogleMaps
- Chrome Extension
- Javascript
-
- Roles
-
- Smoogle
- application
-
-
-
-
-
Education
-
- University of Oklahoma
-
- May 2011
- - Dec 2013
-
-
-
-
Bachelor
-
Information Technology
-
GPA: 4.0
-
-
Courses
-
- DB1101 - Basic SQL
- CS2011 - Java Introduction
-
-
-
-
-
-
-
Awards
-
-
Techcrunch
-
There is no spoon.
-
-
-
-
-
Publications
-
Video compression for 3d media
-
-
Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
-
Languages
-
- English:
- Native speaker
-
-
-
-
-
-
Interests
- Wildlife:
-
- Ferrets ,
- Unicorns
-
-
-
-
-
-
References
-
It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
-
— Erlich Bachman
-
-
-
-
-
diff --git a/json-resume/themes/full.jpg b/json-resume/themes/full.jpg
deleted file mode 100755
index 7839800..0000000
Binary files a/json-resume/themes/full.jpg and /dev/null differ
diff --git a/json-resume/themes/github.html b/json-resume/themes/github.html
deleted file mode 100755
index 28c21ca..0000000
--- a/json-resume/themes/github.html
+++ /dev/null
@@ -1,356 +0,0 @@
-
-
-
-
-
-
-
-
- Bree LaPointe · Programmer
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Bree LaPointe
-
- Programmer
-
-
-
-
-
-
- Contact me
-
-
-
- Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
-
-
-
-
-
Toolkit
-
- Web Development
-
-
- Compression
-
-
-
-
-
-
-
Languages
-
- English
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Experience activity
-
-
- August 2016
-
-
-
-
-
-
-
-
-
-
-
- Started 1 project
-
-
-
-
-
-
-
-
-
-
A mapping engine that misguides you
-
-
-
-
-
- Won award at AIHacks 2016
-
-
-
- Built by all women team of newbie programmers
-
-
-
- Using modern technologies such as GoogleMaps, Chrome Extension and Javascript
-
-
-
-
-
-
-
-
-
- October 2014
-
-
-
-
-
-
-
-
-
-
-
- Earned 1 award
-
-
-
-
-
-
-
-
-
- December 2013
-
-
-
-
-
-
-
-
-
-
-
- Finished 1 degree at University of Oklahoma
-
-
-
-
-
-
-
-
-
- November 2013
-
-
-
-
-
-
-
-
-
- Joined Pied Piper
-
-
-
-
-
-
-
-
-
-
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
-
-
-
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
-
-
-
- Successfully won Techcrunch Disrupt
-
-
-
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
-
-
-
-
- December 2011
-
-
-
-
-
-
-
-
-
-
-
- Volunteered
-
-
-
-
-
-
-
-
-
-
Global movement of free coding clubs for young people.
-
-
-
-
-
- Awarded 'Teacher of the Month'
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/json-resume/themes/github.jpg b/json-resume/themes/github.jpg
deleted file mode 100755
index d9f01b7..0000000
Binary files a/json-resume/themes/github.jpg and /dev/null differ
diff --git a/json-resume/themes/jacrys.html b/json-resume/themes/jacrys.html
deleted file mode 100755
index def5f0f..0000000
--- a/json-resume/themes/jacrys.html
+++ /dev/null
@@ -1,623 +0,0 @@
-
-
-
-
-
-
-
- Resume of Bree LaPointe
-
-
-
-
-
-
-
-
-
-
-
-
-
About
-
Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
Work Experience
-
-
-
-
- Pied Piper
-
- Palo Alto, CA
-
-
-
- Awesome compression company
-
-
-
December 2013 – December 2014
-
-
-
-
-
CEO/President
-
- Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
Highlights
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
-
-
-
-
Awards
-
-
- November 2014
-
-
Techcrunch
-
Digital Compression Pioneer Award
-
There is no spoon.
-
-
-
-
-
-
-
Volunteer
-
-
-
-
CoderDojo
-
-
January 2012 – January 2013
-
-
-
-
-
Teacher
-
- Global movement of free coding clubs for young people.
-
Highlights
-
- Awarded 'Teacher of the Month'
-
-
-
-
-
-
-
-
-
Projects
-
-
- Miss Direction : A mapping engine that misguides you
-
-
-
-
-
-
-
-
-
-
Education
-
-
- 2011 2014
-
-
University of Oklahoma
-
-
-
Bachelor
-
Information Technology
-
- Grade: 4.0
-
-
Courses
-
- DB1101 - Basic SQL
- CS2011 - Java Introduction
-
-
-
-
-
-
-
-
Skills
-
-
- Web Development
- Master
-
-
- HTML
- CSS
- Javascript
-
-
-
-
- Compression
- Master
-
-
- Mpeg
- MP4
- GIF
-
-
-
-
-
-
Publications
-
-
-
Video compression for 3d media
-
-
-
Hooli
-
01 October 2014
-
-
Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
-
-
Interests
-
-
- Wildlife
-
-
- Ferrets
- Unicorns
-
-
-
-
-
References
-
- It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
-
-
-
-
-
-
-
-
-
diff --git a/json-resume/themes/jacrys.jpg b/json-resume/themes/jacrys.jpg
deleted file mode 100755
index 97f9cff..0000000
Binary files a/json-resume/themes/jacrys.jpg and /dev/null differ
diff --git a/json-resume/themes/kards.html b/json-resume/themes/kards.html
deleted file mode 100755
index 7aabf15..0000000
--- a/json-resume/themes/kards.html
+++ /dev/null
@@ -1,6327 +0,0 @@
-
-
-
-
-
-
-
-
- Bree LaPointe
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Hello, World.
-
I'm Bree LaPointe.
-
-
- Programmer
-
-
-
More About Me
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
About
-
Let me introduce myself.
-
-
-
-
-
-
Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
-
-
-
-
-
-
Profile
-
-
-
-
- Fullname:
- Bree LaPointe
-
-
- Job:
- Programmer
-
-
- Website:
- richardhendricks.example.com
-
-
- Email:
- contact@blapointe.com
-
-
-
-
-
-
-
-
Skills
-
-
-
-
- 100%
- Web Development
-
-
- 100%
- Compression
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Resume
- More of my credentials.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Pied Piper
-
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
CoderDojo
-
Global movement of free coding clubs for young people.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Hooli
-
Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
University of Oklahoma
-
Information Technology
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
© Copyright Kards 2016.
-
Design by styleshout
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/json-resume/themes/kards.jpg b/json-resume/themes/kards.jpg
deleted file mode 100755
index ebdcd3e..0000000
Binary files a/json-resume/themes/kards.jpg and /dev/null differ
diff --git a/json-resume/themes/keloran.html b/json-resume/themes/keloran.html
deleted file mode 100755
index d27a413..0000000
--- a/json-resume/themes/keloran.html
+++ /dev/null
@@ -1,603 +0,0 @@
-
-
-
-
-
-
-
- Resume of Bree LaPointe
-
-
-
-
-
-
-
-
-
-
-
-
-
About
-
Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
Work Experience
-
-
-
-
-
December 2013 – December 2014
-
-
-
-
-
CEO/President
-
- Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
Highlights
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
-
-
-
-
Awards
-
-
- November 2014
-
-
Techcrunch
-
Digital Compression Pioneer Award
-
There is no spoon.
-
-
-
-
-
-
-
Volunteer
-
-
-
-
CoderDojo
-
January 2012 – January 2013
-
-
-
-
-
Teacher
-
- Global movement of free coding clubs for young people.
-
Highlights
-
- Awarded 'Teacher of the Month'
-
-
-
-
-
-
-
-
-
-
-
-
-
Education
-
-
- 2011 2014
-
-
University of Oklahoma
-
Bachelor
-
Information Technology
-
Courses
-
- DB1101 - Basic SQL
- CS2011 - Java Introduction
-
-
-
-
-
-
-
-
Skills
-
-
- Web Development
- Master
-
-
- HTML
- CSS
- Javascript
-
-
-
-
- Compression
- Master
-
-
- Mpeg
- MP4
- GIF
-
-
-
-
-
-
Publications
-
-
-
Video compression for 3d media
-
-
-
Hooli
-
01 October 2014
-
Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
-
-
Languages
-
- EnglishNative speaker
-
-
-
-
-
Interests
-
-
- Wildlife
-
-
- Ferrets
- Unicorns
-
-
-
-
-
References
-
- It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
-
-
-
-
-
-
-
-
-
diff --git a/json-resume/themes/keloran.jpg b/json-resume/themes/keloran.jpg
deleted file mode 100755
index e80e410..0000000
Binary files a/json-resume/themes/keloran.jpg and /dev/null differ
diff --git a/json-resume/themes/kendall.html b/json-resume/themes/kendall.html
deleted file mode 100755
index 4e17725..0000000
--- a/json-resume/themes/kendall.html
+++ /dev/null
@@ -1,625 +0,0 @@
-
-
-
-
-
-
-
- Resume of Bree LaPointe
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
About
-
Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
Work Experience
-
-
-
-
- Pied Piper
-
- Palo Alto, CA
-
-
-
- Awesome compression company
-
-
-
December 2013 – December 2014
-
-
-
-
-
CEO/President
-
- Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
Highlights
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
-
-
-
-
Awards
-
-
- November 2014
-
-
Techcrunch
-
Digital Compression Pioneer Award
-
There is no spoon.
-
-
-
-
-
-
-
Volunteer
-
-
-
-
CoderDojo
-
-
January 2012 – January 2013
-
-
-
-
-
Teacher
-
- Global movement of free coding clubs for young people.
-
Highlights
-
- Awarded 'Teacher of the Month'
-
-
-
-
-
-
-
-
-
Projects
-
-
- Miss Direction : A mapping engine that misguides you
-
-
-
-
-
-
-
-
-
-
Education
-
-
- 2011 2014
-
-
University of Oklahoma
-
-
-
Bachelor
-
Information Technology
-
- Grade: 4.0
-
-
Courses
-
- DB1101 - Basic SQL
- CS2011 - Java Introduction
-
-
-
-
-
-
-
-
Skills
-
-
- Web Development
- Master
-
-
- HTML
- CSS
- Javascript
-
-
-
-
- Compression
- Master
-
-
- Mpeg
- MP4
- GIF
-
-
-
-
-
-
Publications
-
-
-
Video compression for 3d media
-
-
-
Hooli
-
01 October 2014
-
-
Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
-
-
Interests
-
-
- Wildlife
-
-
- Ferrets
- Unicorns
-
-
-
-
-
References
-
- It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
-
-
-
-
-
-
-
-
-
diff --git a/json-resume/themes/kendall.jpg b/json-resume/themes/kendall.jpg
deleted file mode 100755
index 732ff30..0000000
Binary files a/json-resume/themes/kendall.jpg and /dev/null differ
diff --git a/json-resume/themes/macchiato.html b/json-resume/themes/macchiato.html
deleted file mode 100755
index 8165789..0000000
--- a/json-resume/themes/macchiato.html
+++ /dev/null
@@ -1,695 +0,0 @@
-
-
-
-
-
-
- Bree LaPointe
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
2712 Broadway St San Francisco California CA 94115 US
-
-
-
-
-
-
-
-
-
-
-
-
neutralthoughts
-
-
-
-
-
- Master
-
-
HTML
- CSS
- Javascript
-
-
-
- Master
-
-
Mpeg
- MP4
- GIF
-
-
-
-
-
-
-
- English (Native speaker)
-
-
-
-
-
-
-
-
- Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
-
-
-
- Awesome compression company
-
-
- CEO/President
-
-
- Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
-
Open Source Projects
-
-
-
-
-
- A mapping engine that misguides you
-
-
-
-
-
GoogleMaps
- Chrome Extension
- Javascript
-
-
-
-
- Won award at AIHacks 2016
- Built by all women team of newbie programmers
- Using modern technologies such as GoogleMaps, Chrome Extension and Javascript
-
-
-
-
-
-
-
-
- Bachelor Information Technology
-
-
-
- DB1101 - Basic SQL
- CS2011 - Java Introduction
-
-
-
-
-
-
-
- Teacher
-
- Global movement of free coding clubs for young people.
-
-
- Awarded 'Teacher of the Month'
-
-
-
-
-
-
-
-
- Techcrunch
-
- There is no spoon.
-
-
-
-
-
-
-
- Hooli
-
- Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
-
-
-
-
- It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
-
-
- — Erlich Bachman
-
-
-
-
-
-
-
-
diff --git a/json-resume/themes/macchiato.jpg b/json-resume/themes/macchiato.jpg
deleted file mode 100755
index a500fcd..0000000
Binary files a/json-resume/themes/macchiato.jpg and /dev/null differ
diff --git a/json-resume/themes/mantra.html b/json-resume/themes/mantra.html
deleted file mode 100755
index e2fe277..0000000
--- a/json-resume/themes/mantra.html
+++ /dev/null
@@ -1,353 +0,0 @@
-
-
-
-
-
-
-
- Bree LaPointe - Programmer
-
-
-
-
-
-
-
-
-
-
- Bree LaPointe
- Programmer
-
-
-
-
-
-
Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
- Profiles
-
-
-
-
- Twitter
-
-
-
- neutralthoughts
-
-
-
-
-
-
-
- Experience
-
-
-
- December 2013
-
-
- - December 2014
-
-
-
- CEO/President
-
-
- Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
- Skills
-
-
- Web Development
-
-
- Master
-
-
- HTML
- CSS
- Javascript
-
-
-
-
- Compression
-
-
- Master
-
-
-
-
-
-
- Volunteer
-
-
- CoderDojo
-
-
-
- 2012
-
-
- - 2013
-
-
-
- Teacher
-
-
-
Global movement of free coding clubs for young people.
-
-
- Awarded 'Teacher of the Month'
-
-
-
-
-
- Education
-
-
-
- 2011
-
-
- - 2014
-
-
-
- University of Oklahoma
-
-
- Information Technology
-
-
- Bachelor
-
-
- DB1101 - Basic SQL
- CS2011 - Java Introduction
-
-
-
-
- Awards
-
-
- Digital Compression Pioneer Award
-
-
- October 17, 2022
-
-
- Techcrunch
-
-
-
-
-
- Publications
-
-
- Video compression for 3d media
-
-
- Hooli
-
-
- 2014-10-01
-
-
-
Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
-
- Languages
-
-
- English
-
-
- Native speaker
-
-
-
-
-
- References
-
-
- It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
-
-
- — Erlich Bachman
-
-
-
-
-
diff --git a/json-resume/themes/mantra.jpg b/json-resume/themes/mantra.jpg
deleted file mode 100755
index 677b570..0000000
Binary files a/json-resume/themes/mantra.jpg and /dev/null differ
diff --git a/json-resume/themes/modern.html b/json-resume/themes/modern.html
deleted file mode 100755
index 3763492..0000000
--- a/json-resume/themes/modern.html
+++ /dev/null
@@ -1,129 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Bree LaPointe
-
- San Francisco
-
-
-
-
-
-
-
-
-
-
-
Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
Phone: (912) 555-4321
-
Email: contact@blapointe.com
-
-
-
-
-
-
-
-
CEO/President
-
2013 - 2014
-
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
-
-
-
-
-
-
University of Oklahoma
-
Information Technology, Bachelor
-
2011 - 2014
-
-
-
-
-
-
-
-
-
-
-
-
-
- Web Development
-
- HTML
- CSS
- Javascript
-
-
-
-
-
-
-
-
-
-
-
-
-
It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company. -
- Erlich Bachman
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/json-resume/themes/modern.jpg b/json-resume/themes/modern.jpg
deleted file mode 100755
index 4dce5e7..0000000
Binary files a/json-resume/themes/modern.jpg and /dev/null differ
diff --git a/json-resume/themes/msresume.html b/json-resume/themes/msresume.html
deleted file mode 100755
index d978a5c..0000000
--- a/json-resume/themes/msresume.html
+++ /dev/null
@@ -1,90 +0,0 @@
-
The Resume of Bree LaPointe Bree LaPointe Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
Experience CEO/President Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
Education Bachelor, Information Technology University of Oklahoma May 2011 – Dec 2013 Proficiencies Web Development Compression
\ No newline at end of file
diff --git a/json-resume/themes/msresume.jpg b/json-resume/themes/msresume.jpg
deleted file mode 100755
index 97d197c..0000000
Binary files a/json-resume/themes/msresume.jpg and /dev/null differ
diff --git a/json-resume/themes/onepage.html b/json-resume/themes/onepage.html
deleted file mode 100755
index 4f53302..0000000
--- a/json-resume/themes/onepage.html
+++ /dev/null
@@ -1,375 +0,0 @@
-
-
-
-
-
-
-
-
Bree LaPointe
-
-
-
-
-
-
-
-
-
- Bree LaPointe,
-
- Programmer
-
-
-
- contact@blapointe.com
- |
- (912) 555-4321
- |
-
- San Francisco, California, US
-
-
-
-
-
-
-
-
- SUMMARY
-
-
- Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
-
-
- EXPERIENCE
-
-
-
-
-
-
- Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
-
-
-
-
- PUBLICATIONS
-
-
-
-
- Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
-
-
-
-
-
-
-
- VOLUNTEERING
-
-
-
-
-
-
-
-
-
-
- EDUCATION
-
-
-
-
- University of Oklahoma
-
-
- 2011-06-01 — 2014-01-01
-
-
- Bachelor - Information Technology
-
-
-
-
- CS2011 - Java Introduction
-
-
-
-
-
-
-
-
-
-
-
- SKILLS
-
-
-
- Web Development (Master) :
- HTML ,
- CSS ,
- Javascript
-
-
- Compression (Master) :
- Mpeg ,
- MP4 ,
- GIF
-
-
-
-
-
-
-
- LANGUAGES
-
-
- English
- (Native speaker)
-
-
-
-
-
-
-
- INTERESTS
-
-
- Wildlife [
- Ferrets,
- Unicorns
- ]
-
-
-
-
-
-
diff --git a/json-resume/themes/onepage.jpg b/json-resume/themes/onepage.jpg
deleted file mode 100755
index 59721d2..0000000
Binary files a/json-resume/themes/onepage.jpg and /dev/null differ
diff --git a/json-resume/themes/onepageresume.html b/json-resume/themes/onepageresume.html
deleted file mode 100755
index 21f986e..0000000
--- a/json-resume/themes/onepageresume.html
+++ /dev/null
@@ -1,169 +0,0 @@
-
-
-
-
-
One Page Resume
-
-
-
-
-
-
-
-
-
Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
- Education
-
- University of Oklahoma
-
- 2011-06-01 -
- 2014-01-01
-
-
- Bachelor - Information Technology
-
-
- Skills
-
- Web Development
- HTML,CSS,Javascript
- Compression
- Mpeg,MP4,GIF
-
-
- Experience
-
-
-
- 2013-12-01 -
- 2014-12-01
-
-
- Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
- Languages
-
- English - Native speaker
-
-
- Hobbies
-
-
- Wildlife
- Ferrets,Unicorns
-
-
- References
- It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
- Erlich Bachman
-
-
-
-
-
-
-
diff --git a/json-resume/themes/onepageresume.jpg b/json-resume/themes/onepageresume.jpg
deleted file mode 100755
index 8d55c49..0000000
Binary files a/json-resume/themes/onepageresume.jpg and /dev/null differ
diff --git a/json-resume/themes/orbit.html b/json-resume/themes/orbit.html
deleted file mode 100755
index a859b9e..0000000
--- a/json-resume/themes/orbit.html
+++ /dev/null
@@ -1,518 +0,0 @@
-
-
-
-
Bree LaPointe
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Personal Summary
-
-
Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
- Work Experience
-
-
-
-
- Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
-
-
-
-
- Volunteer Work
-
-
-
-
- Global movement of free coding clubs for young people.
-
-
-
-
-
- Awards
-
-
-
-
- There is no spoon.
-
-
-
-
-
-
-
- Publications
-
-
-
-
- Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
-
- Skills & Proficiency
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/json-resume/themes/orbit.jpg b/json-resume/themes/orbit.jpg
deleted file mode 100755
index 668bd8e..0000000
Binary files a/json-resume/themes/orbit.jpg and /dev/null differ
diff --git a/json-resume/themes/paper-plus-plus.html b/json-resume/themes/paper-plus-plus.html
deleted file mode 100755
index 4b1216b..0000000
--- a/json-resume/themes/paper-plus-plus.html
+++ /dev/null
@@ -1,842 +0,0 @@
-
-
-
-
-
-
-
Bree LaPointe's Resume
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Contact
-
-
-
-
-
- Phone
- (912) 555-4321
-
-
-
-
-
-
-
-
-
-
-
Location
-
-
-
-
- Address
- 2712 Broadway St
-
-
-
- Country
- United States
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Languages
-
-
-
-
-
- English
-
- Native speaker
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
About Me
-
-
-
- Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
-
-
-
-
-
Work Experience
-
-
2013-12-01 to 2014-12-01
-
-
-
-
-
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
-
Build an algorithm for artist to detect if their music was violating copy right infringement laws
-
Successfully won Techcrunch Disrupt
-
Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
-
-
-
-
-
-
Education
-
-
2011-06-01 to 2014-01-01
-
-
-
-
University of Oklahoma
-
-
- Bachelor:
- Information Technology
-
-
-
-
-
-
-
-
-
-
Awards
-
-
Digital Compression Pioneer Award
-
-
2014-11-01
-
-
-
-
-
Techcrunch
-
-
There is no spoon.
-
-
-
-
-
-
-
-
-
-
-
Volunteer work
-
-
2012-01-01 to 2013-01-01
-
-
-
-
- Teacher at CoderDojo
-
-
-
Global movement of free coding clubs for young people.
-
-
Awarded 'Teacher of the Month'
-
-
-
-
-
-
-
-
-
-
-
Skills
-
-
-
-
-
- Web Development
-
-
-
-
- (Master):
-
- HTML, CSS, Javascript
-
-
-
-
- Compression
-
-
-
-
- (Master):
-
- Mpeg, MP4, GIF
-
-
-
-
-
-
-
-
-
Interests
-
-
-
-
-
- Wildlife:
-
-
- Ferrets, Unicorns
-
-
-
-
-
-
-
-
-
diff --git a/json-resume/themes/paper-plus-plus.jpg b/json-resume/themes/paper-plus-plus.jpg
deleted file mode 100755
index 1f19233..0000000
Binary files a/json-resume/themes/paper-plus-plus.jpg and /dev/null differ
diff --git a/json-resume/themes/paper.html b/json-resume/themes/paper.html
deleted file mode 100755
index 6444d78..0000000
--- a/json-resume/themes/paper.html
+++ /dev/null
@@ -1,668 +0,0 @@
-
-
-
-
-
-
Bree LaPointe
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Contact
-
-
-
-
- Phone
- (912) 555-4321
-
-
-
-
-
-
-
-
- Location
-
-
-
- Address
- 2712 Broadway St
-
-
- Postal Code & City
- CA 94115 San Francisco
-
-
-
-
-
-
-
-
-
- Professional Skills Summary
-
-
-
-
-
- Web Development
-
-
- (Master):
- HTML, CSS, Javascript
-
-
-
-
- Compression
-
-
- (Master):
- Mpeg, MP4, GIF
-
-
-
-
-
-
-
-
-
-
- Work Experience
-
2013-12-01 to 2014-12-01
-
-
-
- CEO/President:
-
-
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
Build an algorithm for artist to detect if their music was violating copy right infringement laws
-
Successfully won Techcrunch Disrupt
-
Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
-
-
- Education
-
2011-06-01 to 2014-01-01
-
-
-
University of Oklahoma
-
- Bachelor:
- Information Technology
-
-
-
-
-
-
-
-
- Volunteering
-
2012-01-01 to 2013-01-01
-
-
-
- CoderDojo
-
-
- Global movement of free coding clubs for young people.
-
-
Awarded 'Teacher of the Month'
-
-
-
-
-
-
-
- Languages
-
-
-
- English
- Native speaker
-
-
-
-
-
-
-
-
-
- Awards
-
Digital Compression Pioneer Award
-
2014-11-01
-
-
-
Techcrunch
-
There is no spoon.
-
-
-
-
-
-
-
-
-
-
-
- Personal
-
-
-
-
-
- Ferrets, Unicorns
-
-
-
-
-
-
-
-
-
-
diff --git a/json-resume/themes/paper.jpg b/json-resume/themes/paper.jpg
deleted file mode 100755
index b086200..0000000
Binary files a/json-resume/themes/paper.jpg and /dev/null differ
diff --git a/json-resume/themes/papirus.html b/json-resume/themes/papirus.html
deleted file mode 100755
index 2e4b163..0000000
--- a/json-resume/themes/papirus.html
+++ /dev/null
@@ -1,920 +0,0 @@
-
-
-
-
-
-
Bree LaPointe
-
-
-
-
-
-
-
-
-
-
-
- Bree LaPointe
- Programmer
-
-
-
- Summary
-
- Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
- Experience
-
-
-
- CEO/President
-
-
-
- |
-
- Dec 2013
-
-
- - Dec 2014
-
-
- (1 year)
-
-
-
-
-
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
- Volunteer
-
-
-
- Teacher
-
-
-
- CoderDojo
-
-
- |
- Jan 2012
-
-
- - Jan 2013
-
-
- (1 year)
-
-
-
-
-
Global movement of free coding clubs for young people.
-
-
- Awarded 'Teacher of the Month'
-
-
-
-
-
-
- Publications
-
-
-
- Video compression for 3d media
-
-
-
-
- Hooli
-
-
- | 2014-10-01
-
-
-
-
-
Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
-
-
- Interests
-
-
-
-
- Wildlife
-
-
- Ferrets
- Unicorns
-
-
-
-
-
- References
-
-
-
- It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
-
-
- — Erlich Bachman
-
-
-
-
-
-
-
-
diff --git a/json-resume/themes/papirus.jpg b/json-resume/themes/papirus.jpg
deleted file mode 100755
index a10a0ee..0000000
Binary files a/json-resume/themes/papirus.jpg and /dev/null differ
diff --git a/json-resume/themes/pumpkin.html b/json-resume/themes/pumpkin.html
deleted file mode 100755
index d58d846..0000000
--- a/json-resume/themes/pumpkin.html
+++ /dev/null
@@ -1,528 +0,0 @@
-
-
-
-
-
-
-
-
Bree LaPointe
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
-
-
-
-
- Twitter
-
-
- neutralthoughts
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Nov 2013 — Nov 2014
-
-
-
- CEO/President
-
-
-
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
-
Highlights
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
-
-
-
-
-
-
-
- CoderDojo
-
- Dec 2011 — Dec 2012
-
-
-
- Teacher
-
-
-
Global movement of free coding clubs for young people.
-
-
Highlights
-
- Awarded 'Teacher of the Month'
-
-
-
-
-
-
-
-
-
-
-
-
- University of Oklahoma
-
- May 2011 — Dec 2013
-
-
-
- Information Technology
-
-
- Bachelor
-
-
Courses
-
- DB1101 - Basic SQL
- CS2011 - Java Introduction
-
-
-
-
-
-
-
-
-
-
-
-
- Digital Compression Pioneer Award
-
-
- Awarded
- Oct 2014
-
-
- by
- Techcrunch
-
-
- There is no spoon.
-
-
-
-
-
-
-
-
-
-
-
-
- Video compression for 3d media
-
- Sep 2014
-
-
-
- Published by
- Hooli
-
-
-
Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
-
-
-
-
-
-
-
-
-
Web Development
-
-
- HTML
- CSS
- Javascript
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- English
-
-
- Native speaker
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
-
- — Erlich Bachman
-
-
-
-
-
-
-
-
-
-
-
diff --git a/json-resume/themes/pumpkin.jpg b/json-resume/themes/pumpkin.jpg
deleted file mode 100755
index 72440a0..0000000
Binary files a/json-resume/themes/pumpkin.jpg and /dev/null differ
diff --git a/json-resume/themes/review.yaml b/json-resume/themes/review.yaml
deleted file mode 100755
index 5d0cc2d..0000000
--- a/json-resume/themes/review.yaml
+++ /dev/null
@@ -1,51 +0,0 @@
-favorites:
-- rocketspacer > flat > pumpkin
-- short
-- caffeine > macchiato
-- onepageresume
-- onepage
-- srt
-- verbum
-- eloquent
-themes:
-- caffeine: 55
-- machiato: 53
-- eloquent: 50
-- verbum: 49
-- srt: 49
-- flat: 49
-- rocketspacer: 48
-- pumpkin: 47
-- elegant: 45
-- short: 44
-- onepageresume: 44
-- onepage: 43
-- paper-plus-plus: 41
-- paper: 41
-- jacrys: 40
-- orbit: 39
-- mantra: 39
-- keloran: 37
-- kendall: 37
-- cora: 35
-- class: 35
-- classy: 30
-- dave: 25
-- standard-resume: 25
-- autumn: 20
-- stackoverflow: 20
-- github: 20
-- papirus: 11
-- full: 10
-- kards: 5
-- simple-red: 5
-- slick: 5
-- spartan: 5
-- tachyons-clean: 1
-- waypro: 1
-- modern: 0
-- tan-responsive: 0
-- techlead: 0
-- msresume: 0
-- even: 0
-- actual: 0
diff --git a/json-resume/themes/rocketspacer.html b/json-resume/themes/rocketspacer.html
deleted file mode 100755
index e30d843..0000000
--- a/json-resume/themes/rocketspacer.html
+++ /dev/null
@@ -1,783 +0,0 @@
-
-
-
-
-
-
-
-
-
Bree LaPointe
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- November 2013 — November 2014
-
-
-
-
- CEO/President
-
-
-
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
-
-
Highlights
-
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
-
- Successfully won Techcrunch Disrupt
-
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Web Development
-
-
-
-
- HTML
-
- CSS
-
- Javascript
-
-
-
-
-
-
-
-
Compression
-
-
-
-
- Mpeg
-
- MP4
-
- GIF
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- University of Oklahoma
-
- May 2011 — December 2013
-
-
-
Information Technology
-
- Bachelor
-
-
-
-
Courses
-
-
-
-
- CS2011 - Java Introduction
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Digital Compression Pioneer Award
-
-
- Awarded
- October 2014
-
-
- by
- Techcrunch
-
-
- There is no spoon.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- CoderDojo
-
- December 2011 — December 2012
-
-
-
-
- Teacher
-
-
-
Global movement of free coding clubs for young people.
-
-
-
- Highlights
-
-
-
- Awarded 'Teacher of the Month'
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Video compression for 3d media
- September 2014
-
-
-
- Published by
- Hooli
-
-
-
Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Wildlife
-
-
-
- Ferrets
-
- Unicorns
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
-
- — Erlich Bachman
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/json-resume/themes/rocketspacer.jpg b/json-resume/themes/rocketspacer.jpg
deleted file mode 100755
index 07a57af..0000000
Binary files a/json-resume/themes/rocketspacer.jpg and /dev/null differ
diff --git a/json-resume/themes/short.html b/json-resume/themes/short.html
deleted file mode 100755
index 8a10dfd..0000000
--- a/json-resume/themes/short.html
+++ /dev/null
@@ -1,386 +0,0 @@
-
-
-
-
-
-
-
-
Bree LaPointe
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
- Twitter
-
-
- neutralthoughts
-
-
-
-
-
-
-
- Skills
-
-
- Web Development
-
-
- HTML,
- CSS,
- Javascript
-
-
-
-
- Compression
-
-
- Mpeg,
- MP4,
- GIF
-
-
-
-
-
- Experience
-
-
-
- CEO/President
-
-
-
- Nov 2013
-
-
- - Nov 2014
-
-
-
-
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
- Volunteering
-
-
-
- Teacher
-
-
-
- Dec 2011
-
-
- - Dec 2012
-
-
-
-
Global movement of free coding clubs for young people.
-
-
- Awarded 'Teacher of the Month'
-
-
-
-
-
- Education
-
-
- University of Oklahoma
-
-
-
-
- May 2011
-
-
- - Dec 2013
-
-
-
-
-
- Bachelor
-
-
-
- - Information Technology
-
-
-
-
-
-
-
-
- Awards
-
-
- Digital Compression Pioneer Award
-
-
- undefined NaN
-
-
- Techcrunch
-
-
-
-
-
-
- Publications
-
-
- Video compression for 3d media
-
-
- Hooli
-
-
- 2014-10-01
-
-
-
Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
-
- Languages
-
-
- English
-
-
- Native speaker
-
-
-
-
-
-
-
- References
-
-
- It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
-
-
- — Erlich Bachman
-
-
-
-
-
-
-
-
diff --git a/json-resume/themes/short.jpg b/json-resume/themes/short.jpg
deleted file mode 100755
index e605efc..0000000
Binary files a/json-resume/themes/short.jpg and /dev/null differ
diff --git a/json-resume/themes/simple-red.html b/json-resume/themes/simple-red.html
deleted file mode 100755
index 7237446..0000000
--- a/json-resume/themes/simple-red.html
+++ /dev/null
@@ -1,657 +0,0 @@
-
-
-
-
-
-
-
-
-
-
Bree LaPointe
-
-
-
-
-
-
-
-
Bree LaPointe
-
Programmer
-
-
Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
- Education
-
-
-
- University of Oklahoma
-
-
-
- June 2011
-
-
- - January 2014
-
-
-
-
-
- Information Technology
-
-
- Bachelor
-
-
-
- DB1101 - Basic SQL
- CS2011 - Java Introduction
-
-
-
-
- Work
-
-
-
-
- Pied Piper
-
-
-
- December 2013
-
-
- - December 2014
-
-
-
-
-
- CEO/President
-
-
-
- Awesome compression company
- Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
-
-
Responsibilities:
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
- Volunteer
-
-
-
-
- CoderDojo
-
-
-
- January 2012
-
-
- - January 2013
-
-
-
-
-
- Teacher
-
-
-
Global movement of free coding clubs for young people.
-
-
Responsibilities:
-
- Awarded 'Teacher of the Month'
-
-
-
-
-
- Awards
-
-
-
-
- Digital Compression Pioneer Award
-
-
-
- November 2014
-
-
-
-
- Techcrunch
-
-
-
-
-
-
- Publications
-
-
-
-
- Video compression for 3d media
-
-
-
- October 2014
-
-
-
-
-
- Hooli
-
-
-
Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
-
- Skills
-
-
-
- Web Development
-
-
- Master
-
-
- HTML
- CSS
- Javascript
-
-
-
-
- Compression
-
-
- Master
-
-
-
-
-
-
- Languages
-
-
-
- English
-
-
- Native speaker
-
-
-
-
-
-
- References
-
-
-
- It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
-
-
- — Erlich Bachman
-
-
-
-
-
- Profiles
-
-
-
- Twitter
-
-
- neutralthoughts
-
-
-
-
-
-
-
-
diff --git a/json-resume/themes/simple-red.jpg b/json-resume/themes/simple-red.jpg
deleted file mode 100755
index ddf0810..0000000
Binary files a/json-resume/themes/simple-red.jpg and /dev/null differ
diff --git a/json-resume/themes/slick.html b/json-resume/themes/slick.html
deleted file mode 100755
index fa9f7e0..0000000
--- a/json-resume/themes/slick.html
+++ /dev/null
@@ -1,809 +0,0 @@
-
-
-
-
-
-
-
-
Bree LaPointe
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Bree LaPointe
-
Programmer
-
-
-
-
-
- 2712 Broadway St
-
- CA 94115
- San Francisco
- California
- US
-
-
-
-
-
-
-
-
-
-
Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
-
-
-
-
-
-
-
Work Experience
-
-
-
-
-
-
-
-
- 2013-12-01
-
-
- - 2014-12-01
-
-
-
-
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
-
-
-
-
-
-
- CoderDojo
-
-
-
-
- 2012-01-01
-
-
- - 2013-01-01
-
-
-
-
Global movement of free coding clubs for young people.
-
-
- Awarded 'Teacher of the Month'
-
-
-
-
-
-
-
-
-
-
University of Oklahoma
-
-
Information Technology
-
-
-
Bachelor
-
-
-
- 2011-06-01
-
-
- - 2014-01-01
-
-
-
- DB1101 - Basic SQL
- CS2011 - Java Introduction
-
-
-
-
-
-
-
-
-
-
Digital Compression Pioneer Award
-
-
- 2014-11-01
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Publications
-
-
-
-
-
-
-
Video compression for 3d media
-
-
-
- 2014-10-01
-
-
-
Innovative middle-out compression algorithm that changes the way we store data.
-
-
-
-
-
-
-
-
-
-
Web Development
-
-
- HTML
- CSS
- Javascript
-
-
-
-
-
-
-
-
-
-
-
English
-
- Native speaker
-
-
-
-
-
-
-
-
-
-
-
-
- It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company proved that he will be a valuable addition to any company.
-
-
- — Erlich Bachman
-
-
-
-
-
-
-
-
-
diff --git a/json-resume/themes/slick.jpg b/json-resume/themes/slick.jpg
deleted file mode 100755
index 5703a6d..0000000
Binary files a/json-resume/themes/slick.jpg and /dev/null differ
diff --git a/json-resume/themes/spartan.html b/json-resume/themes/spartan.html
deleted file mode 100755
index e69d6be..0000000
--- a/json-resume/themes/spartan.html
+++ /dev/null
@@ -1,804 +0,0 @@
-
-
-
-
-
Bree LaPointe
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 2712 Broadway St,
-
-
- CA 94115,
-
-
- San Francisco
-
-
- (US),
-
-
- California
-
-
-
-
-
-
-
-
-
-
- neutralthoughts
-
-
-
-
-
-
-
- About
-
- Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory. He could tell you about it, but THAT would NOT be a “length-limited” conversation!
-
-
-
-
-
-
- Experience
-
-
-
- December 2013
-
-
- - December 2014
-
-
-
-
-
- CEO/President
-
-
-
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of lossless compression.
-
-
- Build an algorithm for artist to detect if their music was violating copy right infringement laws
- Successfully won Techcrunch Disrupt
- Optimized an algorithm that holds the current world record for Weisman Scores
-
-
-
-
-
-
- Education
-
-
-
-
- Bachelor
-
-
- Information Technology
-
-
- DB1101 - Basic SQL
- CS2011 - Java Introduction
-
-
-
-
-
-
-