Skip to content

Instantly share code, notes, and snippets.

@bernos
bernos / css_resources.md
Created March 16, 2014 01:31 — forked from jookyboi/css_resources.md
CSS libraries and guides to bring some order to the chaos.

Libraries

  • 960 Grid System - An effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. There are two variants: 12 and 16 columns, which can be used separately or in tandem.
  • Compass - Open source CSS Authoring Framework.
  • Bootstrap - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
  • Font Awesome - The iconic font designed for Bootstrap.
  • Zurb Foundation - Framework for writing responsive web sites.
  • SASS - CSS extension language which allows variables, mixins and rules nesting.
  • Skeleton - Boilerplate for responsive, mobile-friendly development.

Guides

@bernos
bernos / ProgramOwinHost.cs
Created May 22, 2014 11:36
Vagrant - Ubuntu precise 32 with mono 3.28 and nancy hosting examples
/**
* Uses Owin HttpListener to host the app. To get this working you'll need to
* install the following nuget packages
*
* install-package Microsoft.Owin.Hosting
* install-package Microsoft.Owin.Host.HttpListener
* install-package Nancy.Owin
*/
using Microsoft.Owin.Hosting;
using Owin;
@bernos
bernos / new_gist_file
Created September 10, 2014 06:25
Nancyfx Json Serializer configuration
using Nancy;
using Nancy.Bootstrapper;
using Nancy.Serialization.JsonNet;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace Templify.NancyAspNetRazor.Web.Config
{
@bernos
bernos / template.sh
Created January 5, 2017 23:01
Standard bash template
#!/usr/bin/env bash
usage() {
cat <<EOF
NAME:
$(basename $0)
DESCRIPTION:
TODO: describe me
SYNOPSIS:
@bernos
bernos / Makefile.golang
Last active April 30, 2018 01:47 — forked from dnishimura/Makefile.golang
Makefile for Golang projects
# Makefile for a go project
#
# Author: Jon Eisen
# site: joneisen.me
#
# Targets:
# all: Builds the code
# build: Builds the code
# fmt: Formats the source files
# clean: cleans the code