Become a member
Sign in
johnny Marcus
johnny Marcus

johnny Marcus

91 Following
11 Followers
·
  • Profile
  • Claps
  • Highlights

Highlighted by johnny Marcus

See more

From Code your next android app using RxJava by Keval Patel

In the previous Part 1, we get the basic concept of the reactive programming. If you did not read yet, I will encourage you to first go through Part 1 and get the basic idea ab…

From Building Golang Restful API with Echo framework (part - 1) by Kyaw Myint Thein

// Middleware
e.Use(middleware.Logger())
e.Use(middleware.Recover())
e.Use(middleware.CORSWithConfig(middleware.CORSConfig{
AllowOrigins: []string{"*"},
AllowMethods: []string{echo.GET, echo.HEAD, echo.PUT, echo.PATCH, echo.POST, echo.DELETE},
}))

From A cartoon intro to Redux by Lin Clark

…ifferent pattern? Redux creator Dan Abramov saw an opportunity to improve on Flux. He wanted better developer tools. He saw that if you moved a couple of things around, you could make better developer tools po…

Claps from johnny Marcus

See more

Keep webpack Fast: A Field Guide for Better Build Performance

Rowan Oulton

Where do I put my business logic in a React-Redux application?

Jeff Barczewski

Presentational and Container Components

Dan Abramov