Skip to content

Instantly share code, notes, and snippets.

View amy-mac's full-sized avatar

Amy St. John amy-mac

View GitHub Profile
@courte
courte / 2019_oss_resources.md
Last active August 18, 2019 21:51
Write/Speak/Code 2019 Open Source Projects

Featured Projects

dev.to

Ruby, Rails, Javascript

GitHub | labels: wsc2019, good first issue | Website

dev.to is where programmers share ideas and help each other grow. It is an online community for sharing and discovering great ideas, having debates, and making friends.

New Sanctuary Asylum

// ==UserScript==
// @name GitHub Branch Sort
// @namespace bryankaplan
// @description Sort branches in GitHub pull-downs.
// @include https://github.com/*
// @version 1
// @grant none
// ==/UserScript==
(function () {
@elijahmanor
elijahmanor / colors.scss
Last active July 9, 2020 06:21
Dynamic Repeating Sass Colors
$chartColors: #56c7fa, #f76540, #ffcb05, #62cd9f, #b67baa;
@for $i from 1 through length($chartColors) {
$chartColors: append($chartColors, darken(nth($chartColors, $i), 25));
}
@bobbygrace
bobbygrace / trello-css-guide.md
Last active April 22, 2024 10:15
Trello CSS Guide

Hello, visitors! If you want an updated version of this styleguide in repo form with tons of real-life examples… check out Trellisheets! https://github.com/trello/trellisheets


Trello CSS Guide

“I perfectly understand our CSS. I never have any issues with cascading rules. I never have to use !important or inline styles. Even though somebody else wrote this bit of CSS, I know exactly how it works and how to extend it. Fixes are easy! I have a hard time breaking our CSS. I know exactly where to put new CSS. We use all of our CSS and it’s pretty small overall. When I delete a template, I know the exact corresponding CSS file and I can delete it all at once. Nothing gets left behind.”

You often hear updog saying stuff like this. Who’s updog? Not much, who is up with you?

@kyledrake
kyledrake / ferengi-plan.txt
Last active April 6, 2024 00:30
How to throttle the FCC to dial up modem speeds on your website using Nginx
# The blog post that started it all: https://neocities.org/blog/the-fcc-is-now-rate-limited
#
# Current known FCC address ranges:
# https://news.ycombinator.com/item?id=7716915
#
# Confirm/locate FCC IP ranges with this: http://whois.arin.net/rest/net/NET-165-135-0-0-1/pft
#
# In your nginx.conf:
location / {
@micahbf
micahbf / github_status_hipchat_notify.rb
Last active August 29, 2015 13:57
Get HipChat notifications when GitHub has service issues. Now dependency-free!
#!/usr/bin/env ruby
require 'net/https'
require 'json'
LAST_MESSAGE_FILE = "#{File.dirname(__FILE__)}/last_github_status.json"
HIPCHAT_API_KEY = 'secret'
HIPCHAT_ROOM = 'Notifications'
class GithubStatus
@OfTheDelmer
OfTheDelmer / angular_workshop.md
Last active October 6, 2015 23:33
an angular workshop

Angular Workshop

An Brief Introduction

Objective
To identify the basic compenents of a Angular application and integrate them together in a manner that creates a canonical example for one to further develop or rexamine afterward.

Outline

@OfTheDelmer
OfTheDelmer / cs_lecture.md
Last active December 30, 2015 00:19
lecture for CS:DS

CS WEEK: Data Structures

Intro to Linked Lists and Trees

  • What is Computer Science?
    • Types of knowledge
  • Why Data Structures?
    • Background Checkpoint
      • What are some familiar data structures…
      • What are some means of combination…
      • What are some means of abstracting…
@Colt
Colt / ZooLab
Created November 22, 2013 07:31
What I have so far for the Zoo Lab. Uses a model, view, and collection to append new animals to the page.
jQuery ->
#Let's make a model guys!!
class Animal extends Backbone.Model
#Let's make a collection of those models
class Animals extends Backbone.Collection
model: Animal
// 1. We are going to make an ajax request.
// 2. We are going to GET some response TEXT.
// 3. We are going to append the TEXT to the DOM.
// Callback to wait for DOM load event
$(function(){