Skip to content

Instantly share code, notes, and snippets.

View dfrnswrth's full-sized avatar

Dylan dfrnswrth

  • Burlington, VT
  • 02:25 (UTC -04:00)
View GitHub Profile
@dfrnswrth
dfrnswrth / developer_evaluation.md
Last active February 15, 2023 15:26
Developer Evaluation

Developer Evaluation

Overview

We would like you to build a simple lead-generation website according to the specs provided below. We currently have a legacy site with similar functionality, and seek other example implementations for comparison purposes. The evaluation will consist of two phases:

Phase 1

Please provide a proposal that you believe is reasonable and sufficient to complete the project. At this time we are looking for a prototype-level delivery. As such, the system does not necessarily need to be immediately production ready. Please include:

  • Technologies to be used
  • Timeframe
  • Cost

Keybase proof

I hereby claim:

  • I am dfrnswrth on github.
  • I am farnsworth (https://keybase.io/farnsworth) on keybase.
  • I have a public key whose fingerprint is 99C2 B329 5DFF 9ADE 74A9 39BF 6E81 51E9 6BF8 F70C

To claim this, I am signing this object:

" .VIMRC
set nocompatible
set hidden
set history=1000
set undolevels=1000
set encoding=utf8
set fileencoding=utf8
if filereadable(expand("~/.vimrc.bundles"))
source ~/.vimrc.bundles
@dfrnswrth
dfrnswrth / breakpoints.js
Created September 4, 2013 00:15
Breakpoint triggers in jQuery
/**
* Breakpoints
*/
/*global jQuery define*/
(function (factory) {
if (typeof define === 'function' && define.amd) {
define(['jquery'], factory);
} else {
factory(jQuery);
}
@dfrnswrth
dfrnswrth / grid.css
Created September 4, 2013 00:11
GridLESS - a simple grid generator in {LESS}
/* Example Output */
[class*="grid_"] { float: left; margin-right: 2.127659574468086%; *zoom: 1; }
[class*="grid_"]:before, [class*="grid_"]:after { content: ""; display: table; }
[class*="grid_"]:after { clear: both; }
.omega { margin-right: 0; }
.grid_12 { width: 100%; }
.push_12 { margin-left: 102.12765957446808%; }
.grid_11 { width: 91.48936170212767%; }
.push_11 { margin-left: 93.61702127659575%; }
.grid_10 { width: 82.97872340425533%; }
@dfrnswrth
dfrnswrth / Gruntfile.coffee
Created September 2, 2013 23:48
A Grunt config for better Jekyll development. The goal here is to enhance the Jekyll dev process, but allow falling-back to vanilla Jekyll tasks. All directories are named per Jekyll defaults.
# A Grunt config for Jekyll
# =========================
# The goal here is to enhance the Jekyll dev process, but allow falling-back
# to vanilla Jekyll tasks. All directories are named per Jekyll defaults.
module.exports = (grunt) ->
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks)
# loads:
# grunt-contrib-clean
# grunt-contrib-connect
# grunt-contrib-copy