Skip to content

Instantly share code, notes, and snippets.

View CristinaSolana's full-sized avatar
💭
Making things.

Cristina Solana CristinaSolana

💭
Making things.
View GitHub Profile
// This #include statement was automatically added by the Spark IDE.
#include "Adafruit_GPS.h"
#include <math.h>
#define mySerial Serial1
Adafruit_GPS GPS(&mySerial);
// Set GPSECHO to 'false' to turn off echoing the GPS data to the Serial console
@CristinaSolana
CristinaSolana / responsive-table.scss
Last active December 13, 2015 17:19
Simplified responsive table for simple data sets. Wrapped all the unnecessary styling with: // Purely aesthetic ... // end aesthetic
@import "compass";
@mixin visuallyhidden {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0 0 0 0);
border: 0;
@CristinaSolana
CristinaSolana / Non-system Python on Mac
Created November 23, 2012 02:58
Use non system version of Python on Mac
1. Install Python.
2. Change default version of Python:
Add to .bashprofile or whatever file PATH is defined (for me, in: .zshrc) in:
alias python="python3"
@CristinaSolana
CristinaSolana / colorbar.scss
Created August 30, 2012 18:31
Sass Generated Colorbar
// MARKUP EXAMPLE
// For styleguide use only
// <section class="colorbar-accent">
// <div class="colorbar-range-25"></div>
// <div class="colorbar-range-50"></div>
// <div class="colorbar-range-75"></div>
// <div class="colorbar-range-100"></div>
// </section>
%colorbar-props {