Skip to content

Instantly share code, notes, and snippets.

@apucacao
apucacao / README.md
Last active February 8, 2018 15:18 — forked from anonymous/index.html
Exported from Popcode.

Example Code

Math functions

function operation(input A, inputB){
    return ;
}
@apucacao
apucacao / README.md
Last active October 19, 2017 16:11 — forked from anonymous/index.html
03.P Extra project

Instructions

  1. Use classes and IDs to change the text color of the following tech leaders so they match the color of their companies' brands
  2. BONUS Use all of these new CSS properties to change the look of the site: opacity, border, text-align, border-radius
  • You may use Google for help on how to use these new CSS properties
@apucacao
apucacao / pitchfork_backbone.js
Created November 28, 2012 06:12 — forked from jdjkelly/pitchfork_backbone.js
Core Pitchfork Backbone App
// This is the core part of Pitchfork.com's Backbone app.
// The autobahn object in particular is a great example of how to layer backbone on to a traditional, CMS-driven media site while maintaing server-side view rendering.
var p4k = window.p4k || {};
$(function() {
var a = p4k.core = p4k.core || {};
a.Task = function(c, b) {
this.fn = c;
this.initialize(b)
};