This file contains hidden or 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
| TEXFILES := $(shell find . -name "*.tex") | |
| PDFFILES := $(patsubst %.tex,%.pdf,$(TEXFILES)) | |
| all: $(PDFFILES) clean | |
| %.pdf: %.tex | |
| @latexmk -pdf $< | |
| clean: | |
| @rm -f *.aux |
This file contains hidden or 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
| html { | |
| margin: 0; | |
| padding: 0; | |
| border: 0; | |
| } | |
| body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,code,del,dfn,em,img,q,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,dialog,figure,footer,header,hgroup,nav,section { | |
| margin: 0; | |
| padding: 0; |
This file contains hidden or 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
| (╯°□°)╯︵ ┻━┻) |
This file contains hidden or 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
| <script src="//raw.github.com/impressivewebs/HTML9-Responsive-Boilerstrap-js/master/js/html9responsiveboilerstrap.js"></script> |
This file contains hidden or 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
| require 'nokogiri' | |
| class Ruhoh | |
| module Compiler | |
| # This rss compiler is provided by David Long | |
| # http://www.davejlong.com/ | |
| # https://github.com/davejlong | |
| # Thanks David! | |
| module Rss | |
| # TODO: This renders the page content even though we already need to | |
| # render the content to save to disk. This will be a problem when posts numbers expand. Merge this in later. |
This file contains hidden or 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
| 1.) | |
| ║▌║││ █ ▌│║║ | |
| 2.) | |
| ▄▀▄▀▄▀▄▀ | |
| 3.) |
This file contains hidden or 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
| cd /System/Library/Frameworks | |
| sudo mv WebKit.framework WebKit.framework.old | |
| sudo cp -a /Applications/WebKit.app/Contents/Frameworks/10.8/WebKit.framework . | |
| sudo mkdir -p WebKit.framework/Versions/A/Frameworks | |
| sudo cp -a /Applications/WebKit.app/Contents/Frameworks/10.8/WebCore.framework WebKit.framework/Versions/A/Frameworks | |
| sudo mv JavaScriptCore.framework JavaScriptCore.framework.old | |
| sudo cp -a /Applications/WebKit.app/Contents/Frameworks/10.8/JavaScriptCore.framework . | |
| cd /System/Library/PrivateFrameworks | |
| sudo mv WebKit2.framework WebKit2.framework.old | |
| sudo cp -a /Applications/WebKit.app/Contents/Frameworks/10.8/WebKit2.framework . |
This file contains hidden or 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
| aliceblue { color:#f0f8ff; } | |
| antiquewhite { color:#faebd7; } | |
| aqua { color:#00ffff; } | |
| aquamarine { color:#7fffd4; } | |
| azure { color:#f0ffff; } | |
| beige { color:#f5f5dc; } | |
| bisque { color:#ffe4c4; } | |
| black { color:#000000; } | |
| blanchedalmond { color:#ffebcd; } | |
| blue { color:#0000ff; } |
This file contains hidden or 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
| /* | |
| |-------------------------------------------------------------------------- | |
| | Register | |
| |-------------------------------------------------------------------------- | |
| */ | |
| Route::get('register', function() | |
| { | |
| return View::make('register'); | |
| }); |
OlderNewer