Skip to content

Instantly share code, notes, and snippets.

View konart's full-sized avatar

Artem Kondratev konart

View GitHub Profile
@steveklabnik
steveklabnik / foo_test.rb
Created April 27, 2013 23:25
shared examples in MiniTest As usual, "Just Use Ruby"
require 'test_helper'
describe "foo" do
include SupportsCount
end
@moraes
moraes / gist:2141121
Last active January 30, 2025 10:45
LIFO Stack and FIFO Queue in golang
package main
import (
"fmt"
)
type Node struct {
Value int
}