Skip to content

Instantly share code, notes, and snippets.

View caycefischer's full-sized avatar

Cayce caycefischer

  • Toronto
View GitHub Profile
@caycefischer
caycefischer / lemonPoppyseedMuffins.md
Created September 7, 2012 00:02
Lemon-Poppyseed Muffins

Lemon Poppy-seed Muffins

  • 2 eggs
  • ¼ cup canola oil + ½ cup plain yogourt (can substitute with ¾ cup canola oil)
  • ¾ cup milk
  • ½ tsp vanilla
  • ¼ cup poppy seeds

Combine all that in one bowl, then in another bowl mix the following:

@caycefischer
caycefischer / index.html
Created September 23, 2012 20:01
Just Harry Roberts' nav abstraction, robust-ified with code to eliminate the whitespace between inline-block elements. I have to do this every time anyway, so now it's built into the snippet. Monospace font is set to ensure the amount of space is as cons
<div class="nav">
<li class="box"><a href="">One</a></li>
<li class="box"><a href="">Two</a></li>
<li class="box"><a href="">Three</a></li>
</div>
@caycefischer
caycefischer / mq.scss
Created September 26, 2012 02:56 — forked from antsa/mq.scss
Media Query mixin - @MQ
// A mixin for media queries: @mq
//
// Use with keywords in $medias array:
// @include mq($media: wide) {
// ...
// }
//
// Or use with manual queries:
// @include mq("all and (min-width:33em)") {
// ...
@caycefischer
caycefischer / html5.haml
Created October 12, 2012 06:02 — forked from fnhipster/html5.haml
HTML5 HAML Template
!!! 5
%html
%head
%title= "Your Website"
%meta{ :content => "", :name => "description" }
%meta{ :content => "", :name => "author" }
%meta{ :content => "3 days", :name => "revisit-after" }
%link{ :href => "http://creativecommons.org/licenses/by/3.0/", :rel => "license", :title => "Creative Commons Attribution 3.0 Unported License" }
%link{ :href => "/feed", :rel => "alternate", :title => "Atom", :type => "application/atom+xml" }
%link{ :href => "/css/screen.css", :media => "screen", :rel => "stylesheet" }
@caycefischer
caycefischer / index.html
Created November 2, 2012 03:16
A CodePen by Zak Kain. More Responsive Grid Systems - by @zakkain, forked from the ever-clever @chriscoyier's "Don't Overthink it Grid". Read my blog post here: http://amperedesign.com/blog/more-responsive-grid-systems/
<h1>
A More Responsive Grid System
<em>based off of the Don't Overthink it Grid</em>
</h1>
<h2><a href="http://amperedesign.com/blog/more-responsive-grid-systems/">Read the full article here</a></h2>
<!-- let the show begin -->
<div class="grid grid-pad">
Single line, no attribution:
<figure class="quote">
<blockquote>It is the unofficial force—the Baker Street irregulars.</blockquote>
</figure>
Single line, with attribution and optional cite:
<figure class="quote">
<blockquote>It is the unofficial force—the Baker Street irregulars.</blockquote>
@caycefischer
caycefischer / markdownify.html
Created February 12, 2013 04:47
Get Jekyll to parse markdown inside .html files
{% capture md %}
# {{page.title}}
> blockquote
Hello!
{% endcapture %}
{{ md | markdownify }}
@caycefischer
caycefischer / .htaccess
Created February 18, 2013 09:40
.htaccess shenanigans
# redirect www to no-www
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www.domain.com [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [L,R=301]
# custom error pages
ErrorDocument 401 /error/401.php
ErrorDocument 403 /error/403.php
ErrorDocument 404 /error/404.php
<style>
@media (min-width: 45em) {
body:after {
content: 'widescreen';
display: none;
}
}
</style>
<script>
// '$' helper function
window.$ = function(selector) {
return document.querySelector(selector);
};
// usage
$('#nic').src = 'http://placecage.com/c/400/300';