Skip to content

Instantly share code, notes, and snippets.

View vin-droid's full-sized avatar
🐢
Keep going

vinspro vin-droid

🐢
Keep going
View GitHub Profile
@vin-droid
vin-droid / rails-interview-questions-README.md
Last active September 13, 2019 04:36
Currently, I am searching for a job as a ruby on rails developer, I had many interviews and still going on hunting. I hope when you will be on the same track, these question will definitely help you to prepare for rails interview.

Rails Interview questions

lntro: Currently, I am searching for a job as a ruby on rails developer, I had many interviews and still going on hunting. I hope when you will be on the same track, these question will definitely help you to prepare for rails interview.  If you find some new question please comment here. For now I am adding just a list of questions but next, I will add solutions and links too.

Mostly Interviewer asks whatever you have mentioned in your resume/cv:

  • about your project
  • about your role in that project
  • gems which you used in the project
@akshaymohite
akshaymohite / bulk_creator.rb
Created January 15, 2018 09:45
Concern to help inserting records in Bulk in Rails
module BulkCreator
extend ActiveSupport::Concern
module ClassMethods
def bulk_create(columns, values, *args)
records_to_create(values, args).each_slice(500) do |records|
self.connection.execute bulk_insert_sql(columns, records)
end
end

Advanced JavaScript Learning Resources

This is a list of advanced JavaScript learning resources from people who responded to this [Tweet][13] and this [Tweet][20].

  • [You Don't Know JS][3]

  • [Frontend Masters courses by Kyle Simpson][12]

  • [@mpjme][6]'s [YouTube videos][5]

@akshaymohite
akshaymohite / storage_services.yml
Created July 19, 2017 11:45
ActiveStorage: storage_services.yml
test:
service: Disk
root: <%= Rails.root.join("tmp/storage") %>
local:
service: Disk
root: <%= Rails.root.join("storage") %>
amazon:
service: S3