Skip to content

Instantly share code, notes, and snippets.

"Break out" of a parent's containing width to take the full screen of a page w/this nice utility class:
```
.full-width {
width: 100vw;
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
#########################
# .gitignore file for Xcode4 / OS X Source projects
#
# Version 2.0
# For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects
#
# 2013 updates:
# - fixed the broken "save personal Schemes"
#
# NB: if you are storing "built" products, this WILL NOT WORK,
@chasmfiend
chasmfiend / awk: Starting Template
Last active December 20, 2015 03:39
Start template for AWK file
BEGIN {
# The Field Separator. Should almost always be left as a tab.
FS = "\t";
}
# ROW-BY-ROW PROCESSING
{
}
END{
}