- Bytes and Blobs by David Flanagan
- Conference Wifi Redux by Malte Ubi
- Sashimi - https://github.com/cramforce/Sashimi
- Run Your JS everywhere with Jellyfish by Adam Christian - http://jelly.io Project
- Fighting Crime and Kicking Apps with Batman.js by Nick Small
- Hello Jo by Dave Balmer - Project - http://joapp.com
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | |
"http://www.w3.org/TR/html4/loose.dtd"> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<title>untitled</title> | |
<meta name="generator" content="TextMate http://macromates.com/"> | |
<meta name="author" content="jheady"> | |
<!-- Date: 2012-01-30 --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Carl Smith @carlsmith | |
nGen | |
- Monkey say monkey do. | |
- "5 years until the kids know we're poor." Lesson is do what you love, don't be a dick. | |
- Two column worksheet: winning and losing. Manage showed up in losing column a lot. | |
- Stopped reading business books, more about nature, science, history. | |
- Start with a new business process. Step aside, create circles, empower people to do better than you. | |
- Jellyfish example. Group is called a smack. Smack attack. Reach out to the "army of awesome". | |
- UX asked if they could branch out and do some more business stuff: encourage people with passion to jump in and do it. | |
- Months later person X didn't say that, they said this. Confusion and angst. Don't do that. Allow organic growth. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#main { | |
margin: 0px; | |
width: 480px; | |
height: 300px; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SMACSS May 18 | |
Part 1 | |
- Don't use .button.large ... no subclassing for size or color definitions, try to use .button-large and sibling classes instead | |
- Naming convention clarifies intent (you should be able to read semantic HTML or CSS and know what it does) | |
- Create an internal style guide that the team refers to (!) - relates to docs efforts ongoing | |
State: active and default states; .tab and .is-tab-active (indication that JS will be used) - isolate JS classes so that you only have to make changes to the CSS | |
- is- prefix indicates likelihood of JS dependency |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Velocity Conference 2012 | |
DAY 1, Monday | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# available at http://j.mp/rbromotools | |
# quick use: | |
## curl -sLO http://j.mp/rbromotools; source rbromotools | |
## mcurl http://www.palmbeachpost.com | |
# header only curls | |
hcurl() { echo "cURLing ${@: -1}"; curl -sL -o /dev/null -D /dev/stdout -b /tmp/cookies.txt -c /tmp/cookies.txt "${@}" | grep -Ei '^(.?$|(HTTP|Server|Set-Cookie|Location)[:/])'; echo; } | |
# mobile (Android) header only curls | |
mcurl() { hcurl -A "Mozilla/5.0 (Linux; Android 2.3) AppleWebKit/533.1 (like Gecko) Version/4.0 Mobile Safari/533.1" "${@}"; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 media/web/common/javascript/jquery-1.7.1.min.js | |
38 media/web/common/javascript/cmg-utility.js | |
11 media/web/common/javascript/jquery.cookie.min.js | |
830 media/web/common/javascript/writeCapture.js | |
139 media/web/common/javascript/jquery.writeCapture.js | |
396 media/web/common/javascript/mustache.js | |
478 media/web/common/javascript/marimo.js | |
691 media/web/common/javascript/widgets.js | |
70 media/web/common/javascript/features/lib/features.js | |
439 media/web/common/javascript/janrain/lib/janrain.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a template .gitignore file for git-managed WordPress projects. | |
# | |
# Fact: you don't want WordPress core files, or your server-specific | |
# configuration files etc., in your project's repository. You just don't. | |
# | |
# Solution: stick this file up your repository root (which it assumes is | |
# also the WordPress root directory) and add exceptions for any plugins, | |
# themes, and other directories that should be under version control. | |
# | |
# See the comments below for more info on how to add exceptions for your |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function (grunt) { | |
grunt.initConfig({ | |
less: { | |
development: { | |
options: { | |
paths: ["media/web/common/premium/less"], | |
yuicompress: false | |
}, | |
files: { | |
"media/web/common/premium/css/master.css": "media/web/common/premium/less/master.less", |
OlderNewer