Skip to content

Instantly share code, notes, and snippets.

View colinhunt's full-sized avatar

Colin Hunt colinhunt

  • Canada
View GitHub Profile
@colinhunt
colinhunt / git_submodules.md
Last active March 9, 2018 16:20 — forked from gitaarik/git_submodules.md
Git Submodules basic explanation

Git Submodules basic explanation

Why submodules?

In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of advantages of using submodules:

  • You can separate the code into different repositories.
'''
***
Modified generic daemon class
***
Author: http://www.jejik.com/articles/2007/02/
a_simple_unix_linux_daemon_in_python/www.boxedice.com
License: http://creativecommons.org/licenses/by-sa/3.0/
@colinhunt
colinhunt / BootstrapLayout.elm
Created April 16, 2017 17:08 — forked from anonymous/BootstrapLayout.elm
elm-bootstrap-layout
module BootstrapLayout exposing (main)
import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (onClick)
import Navigation exposing (Location)
import UrlParser exposing ((</>))
import Bootstrap.Navbar as Navbar
import Bootstrap.Grid as Grid
import Bootstrap.Grid.Col as Col