Skip to content

Instantly share code, notes, and snippets.

View taylorruizchiu's full-sized avatar

Taylor Ruiz Chiu taylorruizchiu

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:

@taylorruizchiu
taylorruizchiu / js_frameworks_comparison.md
Last active May 30, 2020 20:27
Javascript Frameworks: Angular vs. Meteor vs. Backbone

Javascript Frameworks: What's the difference?

Meteor vs. Angular vs. Backbone

All frameworks are not created equal...but what really is the difference? And when should I use which one?

All the things

An awesome site to compare all the codes:

todomvc.com

@taylorruizchiu
taylorruizchiu / week1_day1.rb
Created April 8, 2014 05:52
Week 1, Day 1 HW
#TEMPERATURE CONVERTER
puts "Type 1 to convert from Celsius to Fahrenheit"
puts "Type 2 to convert from Fahrenheit to Celsius"
convertor = gets.chomp
if convertor == "1"
puts "Enter temperature in Celsius: "
temp1 = gets.chomp.to_i