Skip to content

Instantly share code, notes, and snippets.

View ChrisManess's full-sized avatar

Chris Maness ChrisManess

  • nCino
  • Wilmington NC
View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ChrisManess
ChrisManess / setup.sh
Last active February 6, 2019 05:58 — forked from bradp/setup.sh
New Mac Setup Script
echo "Creating an SSH key for you..."
ssh-keygen -t rsa
echo "Please add this public key to Github \n"
echo "https://github.com/account/ssh \n"
read -p "Press [Enter] key after this..."
echo "Please add this public key to any other provider \n"
read -p "Press [Enter] key after this..."
@ChrisManess
ChrisManess / .block
Last active July 27, 2021 12:50
Alluvial-Growth
license: gpl-3.0
@ChrisManess
ChrisManess / .block
Last active February 16, 2016 20:41
Norm Stacked Bars Widget Inc. Example
license: gpl-3.0
@ChrisManess
ChrisManess / .block
Last active February 16, 2016 20:15
Stacked Bars Widget Inc. Example
license: gpl-3.0
@ChrisManess
ChrisManess / csvParser.html
Created May 1, 2013 01:41
Reading a CSV file with HTML5's FileReader
<html>
<head>
<script>
// Check for the various File API support.
if (window.File && window.FileReader && window.FileList && window.Blob) {
// Great success! All the File APIs are supported.
} else {