This file contains hidden or 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
class Profile < ActiveRecord::Base | |
belongs_to :user, :class_name => 'User' | |
attr_accessible :name, :owner | |
attr_accessor :name, :owner | |
attr_reader :owner |
This file contains hidden or 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
A vaga | |
- posicão full-time (40 horas/semana); | |
- remoto, com reuniões diárias via Skype e presenciais de 1 a 2 vezes por mês; | |
- horário flexível; | |
- profissional no Rio de Janeiro ou com disposição de viajar pelo menos 1 vez por mês; | |
- foco no desenvolvimento de back-end para aplicação Web; | |
- remuneração à combinar; | |
- elegibilidade para entrar para o pool de stock options da empresa; | |
O projeto |
This file contains hidden or 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
Requisitos da vaga: | |
- OO | |
- HTML/CSS/JS | |
- Experiência comprovada em desenvolvimento web (2 anos) em qualquer linguagem de preferência ruby | |
- Rails 3 >= | |
- Postgresql ou Mysql | |
- Unix/Linux | |
- posição full-time (40 horas/semana); | |
- remoto, com reuniões diárias via Skype e presenciais de 1 a 2 vezes por mês; | |
- horário flexível; |
This file contains hidden or 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
Requisitos da vaga: | |
- Experiência em ruby (2 anos); | |
- Rails 3 >= | |
- HTML/CSS/JS; | |
- Postgresql; | |
- Unix/Linux; | |
- posição full-time (40 horas/semana); | |
- remoto, com reuniões diárias via Skype e presenciais de 1 a 2 vezes por mês; | |
- horário flexível; |
This file contains hidden or 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
source 'https://rubygems.org' | |
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
gem 'rails', '4.0.2' | |
# Use sqlite3 as the database for Active Record | |
#gem 'sqlite3' | |
gem 'pg' | |
# Use SCSS for stylesheets |
This file contains hidden or 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
GEM | |
remote: https://rubygems.org/ | |
specs: | |
actionmailer (4.0.2) | |
actionpack (= 4.0.2) | |
mail (~> 2.5.4) | |
actionpack (4.0.2) | |
activesupport (= 4.0.2) | |
builder (~> 3.1.0) | |
erubis (~> 2.7.0) |
This file contains hidden or 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
### Keybase proof | |
I hereby claim: | |
* I am fredguth on github. | |
* I am fred (https://keybase.io/fred) on keybase. | |
* I have a public key whose fingerprint is 4DB2 E86F 0029 93C6 3E83 E52B 2879 0B5A 97A9 4FB2 | |
To claim this, I am signing this object: |
This file contains hidden or 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
/** | |
* Show metabox on post format | |
* @author @fredguth | |
* @link https://github.com/jaredatch/Custom-Metaboxes-and-Fields-for-WordPress/wiki/Adding-your-own-show_on-filters | |
* | |
* @param bool $display | |
* @param array $meta_box | |
* @return bool display metabox | |
*/ | |
function fg_metabox_show_on_post_format( $display, $meta_box ) { |
This file contains hidden or 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 Graphics.Element exposing (..) | |
import Graphics.Collage exposing (..) | |
import Color exposing (..) | |
import Mouse | |
import Window | |
relativeMouse : (Int, Int) -> (Int, Int) -> (Int, Int) | |
relativeMouse (origin_x, origin_y) (x, y) = | |
(x-origin_x, origin_y - y) | |
This file contains hidden or 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 Graphics.Element exposing (..) | |
import Graphics.Collage exposing (..) | |
import Color exposing (..) | |
import Mouse | |
import Window | |
import Time exposing (..) | |
import Signal exposing (foldp) | |
--Model |
OlderNewer