Skip to content

Instantly share code, notes, and snippets.

@neudabei
neudabei / portfolio.md
Last active November 30, 2015 12:29
Portfolio
require 'minitest/autorun'
require_relative 'sieve_of_eratosthenes'
class SieveTest < Minitest::Test
def test_a_few_primes
expected = [2, 3, 5, 7]
assert_equal expected, Sieve.new(10).primes
end
def test_primes
@neudabei
neudabei / jekyll2.html
Created June 13, 2015 15:46
jekyll code
{% for category in page.categories %}
[<a class="post-meta" href="/{{category}}">{{category}}</a>]
{% endfor %}
@neudabei
neudabei / jekyll1.html
Created June 13, 2015 15:43
jekyll code
---
layout: default
---
<div class="home">
<h1 class="page-heading">Posts in the category [coding]</h1>
<ul class="post-list">
{% for post in site.categories.coding %}