Git Product home page Git Product logo

frexity.com's People

Contributors

frexuz avatar

Watchers

 avatar

frexity.com's Issues

Rails queries pattern

Which should we use?

  1. https://gist.github.com/Frexuz/5bd61e26b4e5799ce6bfa07d98f93df2
    Cons:
  • Too simple?
  • Bad code encapsulation
  • One file per query
  • Object not reusable. But we might not need it to be.
  1. https://gist.github.com/Frexuz/33da935ee4fc1b9230b3e37dddf832bb
    Pros:
  • Good code encapsulation
  • Can possibly have all queries inside one file
    Cons:
  • Object not reusable. But we might not need it to be.
  1. https://gist.github.com/Frexuz/b4e8f097bcfac09f1cf9989eeffa53ce
    Pros:
  • Reusable query objects
    Cons:
  • Slight less consistent looking, as you don't call results on the object, which is less clear

Thoughts?

Model organization suggestion

class User < ActiveRecord::Base
# keep the default scope first (if any)
default_scope { where(active: true) }

# constants come up next
COLORS = %w(red green blue)

# afterwards we put attr related macros
attr_accessor :formatted_date_of_birth

# followed by association macros
belongs_to :country

# and validation macros
validates :email, presence: true

# next we have callbacks
before_save :cook

# other macros (like devise's) should be placed after the callbacks 21

end

What do you guy think?

Office

Thoughts about the office.

  • General comments
  • Suggestions to add/change
  • Photos for inspiration

Anything goes :) We will consider each idea/request.

Todo

  • Sofa
  • Chest of drawers to acts as kitchen kabinett (pickup on July 1st)
  • Something for the walls (#secret) ;)
  • Logo/text for the glass door

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.