Skip to content

Instantly share code, notes, and snippets.

View skylarmb's full-sized avatar
🎯
Focusing

Skylar skylarmb

🎯
Focusing
View GitHub Profile
@taylorruizchiu
taylorruizchiu / how_to_add_icons.md
Last active April 14, 2016 23:07
How to add icons to Zozi's fontpack

How to add icons to Zozi's fontpack

###Load the current fontpack into the Icomoon App

  1. Download the most current version of the fontpack from app/assets/fonts/
  2. Open a browser and go to icomoon.io/app
  3. In the top left corner, click the purple button that says "Import Icons" enter image description here
  4. Find app/assets/fonts/fontawesome_some_version.svg and upload the SVG fontpack

###Acquire SVGs of your new icons ####If you have a sketch file:

@alboyadjian
alboyadjian / report-coverage
Created February 21, 2018 17:16
Bash script for aggregating code-climate coverage stats across multiple parallel job runs on SemaphoreCI (e.g. with boosters)
#!/bin/bash
# Configuration via Environment Variables
# COVERAGE_BUCKET name of s3 bucket where coverage files will be sent.
# AWS_ACCESS_KEY_ID
# AWS_SECRET_ACCESS_KEY credentials for an IAM user with
# read/write permissions on the s3 bucket
# NON_COVERAGE_JOB_COUNT Number of semaphore tasks that do not generate coverage
# Defaults to 0
@noahub
noahub / form_submit.js
Last active November 28, 2018 18:26
Fire Code on Form Submission
<script type="text/javascript">
//runs on form submission
function yourSubmitFunction(e, $) {
e.preventDefault();
try {
//ADD CUSTOM CODE HERE
}
catch(err) {
//code to handle errors. console.log is just an example
console.log(err);