Skip to content

Instantly share code, notes, and snippets.

View alice-em's full-sized avatar
👽
Abducted

Alice Maldonado alice-em

👽
Abducted
  • Capital One
  • Chicago
View GitHub Profile
@alice-em
alice-em / frontendDevlopmentBookmarks.md
Created August 17, 2016 17:01 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.
@alice-em
alice-em / sublime-text-2.sh
Created January 21, 2016 20:27
Install Sublime Text on Fedora.
#!/usr/bin/env bash
# Usage: {script} [ OPTIONS ] TARGET VERSION
#
# TARGET Default target is "/usr/local".
# VERSION If not defined tries to get the build into the Sublime Text 2 website.
#
# OPTIONS
#
# -h, --help Displays this help message.
#
@alice-em
alice-em / FizzBuzz.js
Last active November 26, 2015 19:56 — forked from jaysonrowe/FizzBuzz.js
FizzBuzz JavaScript solution
for (var i=1; i <= 100; i++)
{
if (i % 15 === 0)
console.log("FizzBuzz");
else if (i % 3 === 0)
console.log("Fizz");
else if (i % 5 === 0)
console.log("Buzz");
else
console.log(i);