Skip to content

Instantly share code, notes, and snippets.

View iamsebastian's full-sized avatar

Sebastian Blei iamsebastian

View GitHub Profile
@iamsebastian
iamsebastian / playground.rs
Created October 18, 2015 18:30 — forked from anonymous/playground.rs
Shared via Rust Playground
fn main() {
let i_start: i8 = 50;
let i_end: i8 = 64;
for i in i_start..i_end {
let l = twice(i);
println!("{}", l);
}
}
fn twice(a: i8) -> i8 {
@iamsebastian
iamsebastian / dabblet.css
Created August 8, 2014 13:41 — forked from anonymous/dabblet.css
Untitled
html {
background: url("http://subtlepatterns.com/patterns/pixel_weave.png");
font-family: Silom;
color: hsla(0,0%,0%,.6);
min-height: 100%;
}
code {font-size:1.2rem;font-weight:900;color:#F2877D}
h1 {color: #1A6C8C}
pre {border: 2px solid #F2877D; font-weight:bold; font-size:1.1rem;padding:8px; background-color: #F2E4BC;}