Skip to content

Instantly share code, notes, and snippets.

@enile8
enile8 / style.css
Created July 23, 2012 19:51
Horizontal Subnav On The Twenty Eleven Theme
/*
Theme Name: Twenty Eleven Child
Description: Twenty Eleven Child Theme with Horizontal Subnav.
Author: Blake <-- That's me!
Template: twentyeleven
*/
@import url("../twentyeleven/style.css");
/* =Menu
@enile8
enile8 / news.css
Created April 21, 2012 23:58
My Hacker News Style
body {
margin: 0;
background-image: url(http://subtlepatterns.com/patterns/furley_bg.png);
}
body > center > table {
width: 100%;
background-color: transparent;
}
@enile8
enile8 / FizzBuzz.cc
Created January 5, 2012 03:58
FizzBuzz in C++
#include <iostream>
using namespace std;
int main(){
int i;
for (i = 0; i < 100; i++)
if (i % 3 == 0 && i % 5 == 0)
cout<<i<<" FizzBuzz\n";
else if (i % 3 == 0)
cout<<i<<" Fizz\n";