Skip to content

Instantly share code, notes, and snippets.

View adbatista's full-sized avatar

Alessandro Dias Batista adbatista

View GitHub Profile
- Programming Elixir https://pragprog.com/book/elixir16/programming-elixir-1-6
- Programming Phoenix https://pragprog.com/book/phoenix14/programming-phoenix-1-4
- The Little Elixir & OTP Guidebook https://www.manning.com/books/the-little-elixir-and-otp-guidebook
- https://elixirschool.com/en/
- https://elixir-lang.org/
- https://www.phoenixframework.org/
- https://exercism.io/my/tracks/elixir (tem exercicios em elixir e tem mentor que te da feedback, gratuito)
- https://confreaks.tv/videos/elixirconfeu2016-from-a-ruby-on-rails-monolith-to-elixir-and-elm-microservices
- https://confreaks.tv/videos/railsconf2016-activerecord-vs-ecto-a-tale-of-two-orms
- https://confreaks.tv/videos/elixirconf2014-rise-of-the-phoenix-building-an-elixir-web-framework
Ruby e Rails
Guias:
http://guides.rubyonrails.org/
Livros (Free mas vale pagar um café para o autor ;) ):
https://leanpub.com/conhecendo-ruby
Livros (Pagos):
https://leanpub.com/conhecendo-rails

Keybase proof

I hereby claim:

  • I am adbatista on github.
  • I am adias (https://keybase.io/adias) on keybase.
  • I have a public key ASBgEOcnOdiLVZ2T6zezwm0F2125R-Yhj--SkAhvMmSy0wo

To claim this, I am signing this object:

require "rails"
require "action_controller/railtie"
class SampleFile < Rails::Application
config.secret_key_base = "pa34u13hsleuowi1aisejkez12u39201pluaep2ejlkwhkj"
routes.append do
root to: 'foo#index'
get 'foo/bar'
end
@adbatista
adbatista / save_the_princess.rb
Created April 16, 2014 15:11
Challengers Hackerrank
#!/bin/ruby
Position = Struct.new(:x,:y) do
def ==(pos)
x == pos.x && y == pos.y
end
end
class Finder
def self.princess(grid)
edge = grid.length - 1
@adbatista
adbatista / README.md
Created September 12, 2013 16:34 — forked from netmute/README.md

Game of Life

An implementation of Conway's Game of Life in 140 characters of Ruby.

Author

Created by Simon Ernst (@sier).