- Twitter
- Tweetdeck column per topics
- Stalking people
- Martin Fowler RSS
- Github Explore
- podcasts
- tech
- Ruby Rogues
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{:ok, agent} = Agent.start_link(fn -> [] end) | |
Agent.get(agent, fn list -> list end) # => [] | |
Agent.update(agent, fn list -> ["eggs"|list] end) # => :ok | |
Agent.get(agent, fn list -> list end) # => ["eggs"] | |
Agent.stop(agent) # => :ok |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
begin | |
require "bundler/inline" | |
rescue LoadError => e | |
$stderr.puts "Bundler version 1.10 or later is required. Please update your Bundler" | |
raise e | |
end | |
gemfile(true) do | |
source "https://rubygems.org" | |
# Activate the gem you are reporting the issue against. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Html exposing (..) | |
import Html.Events exposing (onClick) | |
import Html.App exposing (beginnerProgram) | |
type Msg | |
= Increment | |
| Decrement | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body> | |
Aborted! | |
</body> |