Skip to content

Instantly share code, notes, and snippets.

View marshall007's full-sized avatar

Marshall Cottrell marshall007

View GitHub Profile
@marshall007
marshall007 / gist:1457874
Created December 11, 2011 02:43
Christmas Wish List

Christmas List - 2011

Item Qty Retail Notes
@marshall007
marshall007 / gist:1486128
Created December 16, 2011 13:54
Web Design Podcast

Use-Cases: (user journies) what will users want to do and how will they achieve it.

Card Sorting: group of web developers sit down with the users/client and guide them through a process to develop the structure of a site.

  • Open card sorting is not useful.
  • Maybe ok for very large projects.

1. Site Structure:

  • Podcast: must be first because it's what most people are looking for upon visiting the site. Also, main goal of team is to publish podcasts.
  • Archive: discussion as to whether it should be first in the list. Actually contains old podcasts as well, making it slightly confusing to the user. Goal is to draw people into the older content, encouraging them to subscribe.
  • Community: social networking tools and user forum. Helping people by answering specific questions and "creating passionate participants".
@marshall007
marshall007 / gist:1561486
Created January 4, 2012 19:03
Draggable Table Test
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="https://raw.github.com/isocra/TableDnD/5c362af5ecc7c83db83ac786d3cb6bc545e81686/js/jquery.tablednd.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#ppCart").tableDnD({});
});
<html>
<head>
<title>comTools Admin Home</title>
</head>
<frameset frameborder="0" framespacing="0" border="0" rows="133px, *, 24px">
<frame scrolling="no" frameborder="0" noresize="" src="../../header/header.aspx?status=2" name="frmHeader">
<html>
<head>
<title>LocalhostHeader</title>
<link rel="stylesheet" type="text/css" href="/comdatabase/casite/css/custom/mtd/mtdCss.css">
@marshall007
marshall007 / gist:1711042
Created January 31, 2012 15:22
ProductPicker Error Dialogue
ProductPicker.Error = function (opts) {
// private data
var self = {};
var defaults = {
target: $('#ppAlert'),
severity: $('#ppAlertSeverity'),
message: $('#ppAlertMessage'),
error: {
header: 'Alert',

# Header 1

## Header 2

### Header 3

#### Header 4

##### Header 5

comfortablyscrum.com agilenashville.com

Agile Development

Philosophy

Short Feedback Loops (Iterative)

Just in Time Requirements

Tools: Fitness, Selinium, Cucumber

Intro to Extreme Programming (XP)

What?

  • Improve quality and responsiveness in the face of changing requirements.

Why?

  • Tired of failed development efforts.
  • Tracking percentage complete.
  • Lots of bugs, latency, horrible UAT.

Lean Programming

History

  • Started with the Toyota Production System.
  • Has always focused on system flow over local efficiency.
  • Similar to Agile in that we focus on iterative, small batches.

Flow

  • Keep the work moving be eliminating bottlenecks.
@marshall007
marshall007 / index.html
Created March 22, 2012 15:56
CSS3 List Bullet Test
<!DOCTYPE html>
<html>
<head>
<title>CSS3 List Bullet Demo</title>
</head>
<style>
.custom-bullets {
list-style-type: none;
}