/r/LearnRubyonRails

Photograph via snooOG

A reddit to start your Ruby on Rails path

  • Before RoR remember to start with Ruby

Join our Slack team!

Slack channel for /r/learnrubyonrails

Beginner Ruby Tutorials

Try Ruby

Codecademy's Ruby Track

Ruby Monk

Why's Poignant Guide to Ruby

Beginner Ruby on Rails Tutorials

Michael Hartl's Rails Tutorial

Learn Ruby on Rails, by Daniel Kehoe

Best way to learn Ruby on Rails

Odin Project

Codelearn

Related Subreddits

Ruby on Rails related

/r/rubyonrails

/r/rails

/r/learnruby

/r/ruby

General

/r/learnprogramming

/r/programming

/r/webdev

Open positions for moderators!

/r/LearnRubyonRails

2,213 Subscribers

2

Here鈥檚 a playlist of 7 hours of music I use to focus when I鈥檓 coding/developing. Post yours as well if you also have one!

0 Comments
2022/08/20
17:18 UTC

2

What do I need to learn to make a basic post scheduler website?

I want to make a website which can schedule posts on Facebook or Instagram similar to this. I know the basics of Rails, Bootstrap and a little bit of Python, is that going to be enough? What other things do I need to know to make this project? Thanks in advance for replying!

1 Comment
2022/07/21
14:01 UTC

3

High Tech Hacks 2022! ! !

Hey guys! I鈥檓 excited to share with you an exciting upcoming hackathon, High Tech Hacks 2.0! High Tech Hacks is a free, international 24-hour hackathon on May 21-22nd, 2022 open to all high schoolers hoping to learn a new coding skill, compete for awesome prizes, or work with other like-minded hackers. Let鈥檚 invent, create, and push the boundaries of technology (as much as we can at one hackathon)!

What to expect:

  • Last year, participants learned the basics of web development, Python, virtual reality, and how to make a Discord bot from current software engineers at Microsoft, Amazon, Twilio, other tech companies, and Columbia University SHPE.
  • Thanks to our company sponsors, each participant last year received nearly $400 worth of free software and swag.
  • Register to earn FREE swag (t-shirts, water bottles, stickers!)
  • Network with other passionate STEM high school students from around the world! (Last year we had participants from 26 countries signed up already!)

This year we have even bigger prizes, competitions, and speakers so stay tuned!

Reach out to me with more questions or email hightechhackathon@gmail.com. Happy hacking! :D

Sign up here to confirm your interest and get on our mailing list: Click Here to Register!

Also, meet other hackers by Joining our Discord!

For more, Check out our Website

0 Comments
2022/04/21
15:21 UTC

3

Rails seems to be adding parameters in

hey all, can anyone help me understand why i'm getting the unpermitted parameters message and where the address parameter is coming from in the first place? I have not previously had to explicitly include the id parameter but have never run into it being unpermitted, also i'm not including an address parameter, but there seems to be one anyway. if someone could help me figure out what's going on, i would greatly appreciate it https://gist.github.com/njmbb8/b752ffa443540da5d8b669f3263a709b

0 Comments
2022/03/25
17:34 UTC

3

creating new record instead of update

I have a simple app to track goals. I'm having an issue with a simple update.

scaffold update works great to edit the entire goal, however I have a simple update on the index page to only update 1 item on the tracker, the current value of the tracked goal.

I cannot find a solution for the problem. My simple form_with to select the existing goal

    <%= onpageupdate.select :name, options_for_select(@goals.collect { | goal | [goal.name] } )%>

and update the current goal

    <%= onpageupdate.label "New Attempt"  %>
    <%= onpageupdate.text_field :curvalue, type: "number" %>
    <%= onpageupdate.submit %>

This only creates a new record. the controller for this function reads

 def onpageupdate
    @goal = Goal.find(params[:id])
    @goal.update(goal_params)
  end

wat am i missing?

0 Comments
2022/01/26
02:53 UTC

2

Ruby on Rails writing competition (with a cash prize)

For the month of August, Hashnode (https://hashnode.com) has a writing competition and one of the primary topics is Ruby on Rails.

If you have written articles in the past and you put a lot of effort you can use them by republishing (use the canonical URL馃槑) or write new ones!

The cash prize is $50 and there is a lot of room. (not many people have joined so far)

https://townhall.hashnode.com/special-august-giveaway-for-the-top-150-writers-of-javascript-aws-and-ruby-on-rails

0 Comments
2021/08/12
06:21 UTC

2

Rails social layer

Currently working on a Rails build with a social layer. Need resources for user relationships such as following, blocking, liking

2 Comments
2021/07/14
15:51 UTC

3

PHP or Ruby on Rails?

I'm a php developer, sadly I seen post that php is dead so I'm having doubts to continue studying it. They say Ruby on Rails is more in demand over it. I want to get your opinion about this, should I continue study it or should I just study the more in demand language

1 Comment
2021/06/23
23:07 UTC

2

Creating kahoot-like app

I have just finished the Udemy to-do list app course, and im wanting to start my first project. I want to create an app similar to kahoot (Heres the sort of thing I want to build) The important thing I want to do is have players able to react in real time, so you can see the exact moment each other player locks in their guess. However I have no idea how I could even start to approach this.

1 Comment
2021/05/30
19:52 UTC

1

Does any one have any experience with University XI

Hi

I'm looking to become a junior developer and have seen that University XI have a 5 month intensive program where they teach Ruby on Rails and other full stack "stuff" with a guaranteed* job at the end of the course.

It's $12,000 Australian and quite expensive and the guaranteed* job seem to have lots of conditions with it.

Having tried to learn online before with a number of universities and finding the quality of the lectures and support terrible, I'm pretty nervous about spending money on something like this.

I can find many reviews online and hoped to reach out to this community to see if anyone has any direct experience or knows of someone who has.

Thanks in advance for any help you can give.

0 Comments
2021/05/10
21:13 UTC

1

Payment portals easy?

Stripe API seems pretty simple to integrate from reading the Docs.

Am I missing something, or is it really simple?

0 Comments
2020/08/11
19:11 UTC

1

Running tests in containers with docker-compose

The main advantages of this way are to have an independent environment for the tests running and to reduce the complexity of the test environment setup.

What we want to achieve:

  • Running the tests should be easy.
  • Test runs should be isolated and repeatable.
  • Test environment should be as close to the production environment as possible.

How to setup and use docker-compose for Ruby on Rails tests you can find in the article: https://jtway.co/running-tests-in-containers-with-docker-compose-97480726c1e3

0 Comments
2020/08/04
09:06 UTC

4

How to use a Transaction Script(aka Service Objects) in Ruby on Rails. Simple example

The logic of small applications can be present as a series of transactions. Using the Transaction Scripts pattern, we get an application that is easier to maintain, to cover with tests, and to scale.

In the tutorial we will develop an application that has Post, User, and Like models. Users should be able to like posts. The first version of the controller will contain extra code, which we will extract into a separate Transaction Script. We also describe when we need to use the Transaction Scripts and the pros of the transaction script usage.

Full tutorial: How to use a Transaction Script (aka Service Objects) in Ruby on Rails. Simple example

0 Comments
2020/07/17
09:19 UTC

5

Automatic Book Tracker built with ruby on rails

Hey everyone!

I have recently finished my tutorial on building a ruby on rails based tracker. My videos assume no knowledge of the rails framework and teach how to get started whilst building a simple projects.

If you are interested starting out with ruby on rails with a cool project this is the place for you!

https://www.youtube.com/watch?v=uEwu7D5G-hU&list=PLB4RncStK2LUbl9VWLQAHznLJrYz2YMB4

Hope you enjoy!

0 Comments
2020/07/05
02:58 UTC

Back To Top