Assignment 4 - Conclusion
6:43
2 ай бұрын
Пікірлер
@HutS-e5c
@HutS-e5c 3 күн бұрын
There is no libpg-dev package.
@ShyamSolanki-q6z
@ShyamSolanki-q6z 5 күн бұрын
Can anyone provide me stages of life cycle video link ?
@dr__ey
@dr__ey 6 күн бұрын
thank u so much for this!!!! so helpful!!!
@angeloc700
@angeloc700 29 күн бұрын
Very helpful. Thank you for posting!
@ricardomordaunt1101
@ricardomordaunt1101 Ай бұрын
I have a question. what would happen if you update all these records from the rails console?
@APPSIMPACTAcademy
@APPSIMPACTAcademy Ай бұрын
@@ricardomordaunt1101 it's just not recommended but doable. The only concern is that we can not track schema changes with rails console. And for production console their might be some chances of timeout if the database is too large. That may lead to inconsistent state. On recommended for test and dev environment
@ricardomordaunt1101
@ricardomordaunt1101 Ай бұрын
@APPSIMPACTAcademy Thank you for clarifying that..
@ricardomordaunt1101
@ricardomordaunt1101 Ай бұрын
Mr Ravi.. Thank you...
@FactzPunch
@FactzPunch Ай бұрын
Sir, I'm using rails version 7 but following your steps. I did all the things correctly but now I facing a problem I add theme code but I'm only seeing words not theme colour and other things😢 What should i do now?
@crabop1127
@crabop1127 Ай бұрын
Great Explanantion Sir
@shifalirajput2597
@shifalirajput2597 Ай бұрын
As always "Great Informative lecture"
@danielmwambalafoundation
@danielmwambalafoundation Ай бұрын
Thanks buddy, you helped me sort some bugs
@seamusgilchrist8100
@seamusgilchrist8100 2 ай бұрын
Hi, excellent! Could you provide a link to the prior video that you reference?
@codewithmani485
@codewithmani485 2 ай бұрын
Your Ruby version is 3.1.2, but your Gemfile specified 3.1.4 I clone source code but this error I am using windows system how to solve please make separate video
@ascar66
@ascar66 2 ай бұрын
works without reversible block class AddDummyRecordsToDemoTable < ActiveRecord::Migration[7.2] def up 10.times do |i| puts "Creating Demo #{i + 1}" Demo.create( title: "Demo Title #{i + 1}", description: "Demo Description #{i + 1}" ) end end def down 10.times do |i| puts "Deleting Demo #{i + 1}" demo = Demo.find_by(title: "Demo Title #{i + 1}") demo.destroy if demo.present? end end end
@ascar66
@ascar66 2 ай бұрын
now change_column can receive 4 arguments :table_name, :column_name, :new_type, new_option. something like null: false or default: "value"
@ascar66
@ascar66 2 ай бұрын
I've done the assignment. Thank for sharing knowledge
@ascar66
@ascar66 2 ай бұрын
if students table disappeared from you schema.rb file you can always use command rails db:rollback and after fixing add_attrs_to_students.rb file you can run rails db:migration. Use it and be safe 🦠
@ascar66
@ascar66 2 ай бұрын
If you have an error with validation. try to add data:{turbo:false} <h1>New Student</h1> <%= form_with model: @student, data: { turbo: false } do |form| %> <% if @student.errors.any? %> <% @student.errors.full_messages.each do |message| %> <p><%= message %></p> <% end %> <% end %> <div> <%= form.label :first_name %><br> <%= form.text_field :first_name %> </div> <div> <%= form.label :last_name %><br> <%= form.text_field :last_name %> </div> <div> <%= form.label :email %><br> <%= form.email_field :email %> </div> <div><br> <%= form.submit %> </div> <% end %>
@ricardomordaunt1101
@ricardomordaunt1101 2 ай бұрын
Thank you..
@aabbaayy
@aabbaayy 2 ай бұрын
"I know Node.js and am now learning Ruby on Rails. The market is filled with Node.js and MERN stack developers, so I believe that learning Ruby on Rails, along with my knowledge of React, will open up better job opportunities for me. Additionally, I think that Rails and Ruby will become more popular in the upcoming years. What is your view on this topic?"
@APPSIMPACTAcademy
@APPSIMPACTAcademy 2 ай бұрын
@@aabbaayy I say yes, i have no doubt on this. Happy learning
@aabbaayy
@aabbaayy 2 ай бұрын
working with ruby in windows is a pain a i tired it failed switch to ubantu now everything is working fine
@sunilkumarjaiswar6773
@sunilkumarjaiswar6773 2 ай бұрын
Thanks for this awesome useful learning videos
@AliHaider-mb7fd
@AliHaider-mb7fd 2 ай бұрын
Hi Sir when will you be uploading videos regarding rails 8?
@ricardomordaunt1101
@ricardomordaunt1101 2 ай бұрын
Thank you.. very helpful..
@AshishKumar-DIYCode
@AshishKumar-DIYCode 2 ай бұрын
Thankyou very much sir 🙌
@ricardomordaunt1101
@ricardomordaunt1101 3 ай бұрын
Thank you..
@ricardomordaunt1101
@ricardomordaunt1101 3 ай бұрын
Thank you
@IsabelBertin
@IsabelBertin 3 ай бұрын
From Copacabana Brazil ❤RJ guru
@ledockol
@ledockol 3 ай бұрын
Good, but you can simplify the logic in the model: - add enum instead of JOB_TYPE constant and scopes (:active_jobs...). PS 1) When creating an enum, you can specify the default value and, if necessary, a suffix. 2) This attribute should have the format integer
@DheerajkumarLeetPTG
@DheerajkumarLeetPTG 3 ай бұрын
Hi @ravi Pls create one more project using websocket
@junioraos4074
@junioraos4074 3 ай бұрын
Very good material. I am a beginner in rails and this is helping a lot!!!
@muneebrehman5296
@muneebrehman5296 3 ай бұрын
Please make video on Docker in development mode, 1- Building a Rails app with Docker 2- Applying Docker to an existing Rails app
@muneebrehman5296
@muneebrehman5296 3 ай бұрын
Please make video on Docker in development mode, 1- Building a Rails app with Docker 2- Applying Docker to an existing Rails app
@muneebrehman5296
@muneebrehman5296 3 ай бұрын
Please make video on Docker in development mode, 1- Building a Rails app with Docker 2- Applying Docker to an existing Rails app
@MarilynMarquez-ib4or
@MarilynMarquez-ib4or 3 ай бұрын
Thank you, sir. I have been struggling with React for a couple of years now, and your explanations helped me finally understand basic concepts I always struggled with. Thank you
@muneebrehman5296
@muneebrehman5296 3 ай бұрын
Please make video on Docker in development mode, 1- Building a Rails app with Docker 2- Applying Docker to an existing Rails app
@muneebrehman5296
@muneebrehman5296 3 ай бұрын
Please make video on Docker in development mode, 1- Building a Rails app with Docker 2- Applying Docker to an existing Rails app
@hemantsahu4100
@hemantsahu4100 3 ай бұрын
Thanks sir my question is To which account does the amount go on Stripe? The person who created the account on Stripe?
@APPSIMPACTAcademy
@APPSIMPACTAcademy 3 ай бұрын
Yes, the account whose credentials are in use
@ShitalPatil-p5z
@ShitalPatil-p5z 3 ай бұрын
yes i am also getting same error. please provide solution.
@APPSIMPACTAcademy
@APPSIMPACTAcademy 3 ай бұрын
@@ShitalPatil-p5z can you please check your node version?
@Jaquen_hgar
@Jaquen_hgar 3 ай бұрын
Hii Sir, i want to follow this series from beginning so is there any way that i can get old code from onsight typo issue currently i am cloning this repo so its fixed please guide me how can i get old code so that i could try to fix it by myself to learn. Thankyou and you are doing great for rails community, keep it up sir.
@infinity_nepal
@infinity_nepal 3 ай бұрын
thank you so much for the opportunity 😊
@infinity_nepal
@infinity_nepal 3 ай бұрын
your fan from nepal❤❤ i will start doing this assignment from now
@MCDinggo
@MCDinggo 3 ай бұрын
Great lecture but I got issue when I click the button "Connect", nothing happened after click and the log showing ActionController::ParameterMissing (param is missing or the value is empty: connection): app/controllers/connections_controller.rb:21:in `connection_params' app/controllers/connections_controller.rb:6:in `create' Checked all code and same as yours. Also in rails console when I input "Connection.last.update(status: 'accepted')", it shows err message "undefined method `update' for nil (NoMethodError) Connection.last.update(status: 'accepted')" Could you please help? Thank you.
@vinaysankhla175
@vinaysankhla175 4 ай бұрын
Amazing I am waiting for this kind of playlist. It's Helpful Sir!
@muneebrehman5296
@muneebrehman5296 4 ай бұрын
@muneebrehman5296
@muneebrehman5296 4 ай бұрын
@muneebrehman5296
@muneebrehman5296 4 ай бұрын
@rajmankar8900
@rajmankar8900 4 ай бұрын
Thanks sir ❤
@muneebrehman5296
@muneebrehman5296 4 ай бұрын
Very informative video; I learned many things from it
@muneebrehman5296
@muneebrehman5296 4 ай бұрын
great job