This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE TypeSynonymInstances, DeriveDataTypeable, MultiParamTypeClasses, NoMonomorphismRestriction #-} | |
-- Ty Levad - [email protected] | |
-- xmonad.hs | |
-- Core Modules | |
import System.Exit | |
import XMonad hiding ((|||)) | |
import qualified XMonad.StackSet as W | |
-- Action Modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# - Finds C99 standard support | |
# This internally calls the check_c_source_compiles macro to determine the | |
# appropriate flags for a C99 standard compilation. | |
#============================================================================= | |
# Copyright 2013 Ian Liu Rodrigues <[email protected]> | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# This script sorts static libraries in the topological order suitable for | |
# passing to ld. No need for --start-group/--end-group anymore. Should speed | |
# up the linking a bit. When the libraries contain actual circular dependecies | |
# the script will detect minimal groups of those and surround them with | |
# --start-group/--end-group. | |
# | |
# To run you need Linux (maybe OS X), Ruby 1.9+ and the rgl gem installed: | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main exposing (..) | |
import Html exposing (Html, div, hr, text) | |
import Html.App as App | |
import Navigation | |
-- APP IMPORTS | |
import FirstPage |