The popular open-source contract for web designers and developers by Stuff & Nonsense
- Originally published: 23/12/2008
- Revised date: 15/12/2013
- Original post
[alias] | |
co = checkout | |
ec = config --global -e | |
up = !git pull --rebase --prune $@ && git submodule update --init --recursive | |
cob = checkout -b | |
cm = commit | |
save = !git add -A && git commit -m 'chore: savepoint' | |
wip = !git add -u && git commit -m 'chore: wip' | |
undo = reset HEAD~1 --mixed | |
amend = commit -a --amend |
# Aliases | |
alias c='code .' | |
# GIT dirty state | |
source /usr/local/etc/bash_completion.d/git-prompt.sh | |
GIT_PS1_SHOWDIRTYSTATE=true | |
export PS1='\u@mbp \w$(__git_ps1) \$ ' | |
export NVM_DIR="$HOME/.nvm" |
/** | |
* @overview Bouncing sine wave | |
* @author ljd | |
* @source http://codepen.io/laustdeleuran/pen/GjBwKm | |
*/ | |
/** | |
* @class Sine | |
*/ | |
class Sine { |
/** | |
* Grid helpers | |
* | |
* Basic home-rolled grid created by @ljd. | |
* | |
* @section Framework | |
* @author ljd | |
*/ | |
$grid-gutter: 30px !default; | |
$grid-columns: 8 !default; |
/** @module app/app */ | |
'use strict'; | |
// Modernizr (https://www.npmjs.org/package/browsernizr, https://github.com/jnordberg/browsernizr) | |
require('browsernizr/lib/html5shiv'); | |
require('browsernizr/lib/addTest'); | |
require('browsernizr/test/svg'); | |
var Modernizr = require('browsernizr'); | |
// Detect mobile - yay |
/** | |
* Grid helpers | |
* | |
* @section Framework | |
* @author ljd | |
*/ | |
$grid-columns: 16; | |
$grid-gutter-width: $base-line-height; | |
$grid-col-width: percentage(1/$grid-columns); |
We're front-end developers. We take wireframes, sketches, mockups and fully fledged designs and bring them to life. That's our job and our responsibility.
More often than not, we're the last people to see, touch and tinker with a design before a project is released to the users. So, remember that:
Source: My LinkedIn profile
I've dabbled in web development and design since my early teens, and created my first professional website when I was 17. I love working with and creating for the web. The constant development of the medium forces you to be on the frontlines in order to deliver the greatest work. I find that clash of emerging technologies and the need to provide value for our customers and create high quality work to be just the place where I want to be.
Specialties: HTML(5), CSS(3), JavaScript, Photoshop, UX and interaction design
(function(){ | |
var $content = $site.find('.site-content'), | |
lastSeenHeight = -1, | |
lastSeenWidth = -1, | |
lastSeenContentHeight = -1, | |
$win = $(window); | |
$win.smartresize(function(){ | |
var winHeight = $win.height(), | |
winWidth = $win.width(); |