Refactors – WHO ARE WE?



Refactors – WHO ARE WE?

0 0


RefactorsPresentation

RefactorsPresentation

On Github skilowg / RefactorsPresentation

Refactors

Because every line of code is an opportunity for optimization.

WHO ARE WE?

Rails Developers

  • Steve Buckley
  • Kevin Staiger
  • Tony Chung

UX/UI Developers

  • Gabe Pelegrin
  • Max Brockman

EVER SEEN THIS?

                    class Rectangle
                    def initialize(width, height)
                    @width = width
                    @height = height
                    end

                    def area
                    @width * @height
                    end

                    def perimeter
                    2 * (@width + @height)
                    end
                    end

                    r = Rectangle.new(23.45, 34.67)
                    puts "Area is = #{r.area}"
                    puts "Perimeter is = #{r.perimeter}"
                    view raw

that is some ugly a** code...

The Problem

Our users want a better way to ask help refactoring their code and help others refactor their code so that we can make the world a better place.

WHAT IS IT?

Refactors is a community of like-minded coders seeking to improve their code together. Post code to be refactored or browse code to refactor and help each other.

Our Approach

Narrowed our target audience Discuss with UX/UI user-flow Wireframe Test Build features Design Integrate design
View Demo