Does anyone have experience with ruby motion to develop mobile app in ruby?
unfortunately not. I have just got used to it recently
2 player games

2
Tips
Your biggest aha! moment?
Exactly. And that's why I tend not to talk in buzzwords as best I can on GoRails. Most of what we do is really not that complicated, it just appears that way because we try to name every little det...

6
Tips
How do I do the following in a better way?
You could build the conditions first then use them in the query:
```
conditions = { category: params[:category] }
conditions[:author_id] = author.id if author
Article.find(:all, conditions: conditi...

3
Tips
What are you best recommendations for Ruby on Rails books I should read?
I have also read a lot of books and watched tutorials to learn ruby on rails. But all of them, Ruby on Rails Tutorial by Michael Hartl was the best to me. It teaches Rails by guiding you through th...

4
Tips
How do I do this???
Hi,
I have a App "myApp" and contains users. than there is an external App "ExtApp". myApp & ExtApp have a partnership. So when one user of myApp want to join ExtApp the user should automa...

1
Tips
How do i create a rails app so admin creates user accounts
Hello there I am new at rails and I got kinda a suggestion/request to make an app similar to slack, basecamp etc.. For the company ( where i am an intern). So I got no idea how to make the part whe...

1
Tips
How would you implement an authorization system in Rails?
Let's say you have users-or-members in your application and each user has his/her own contacts. How would you implement the functionality to allow user1 to add/modify contacts for user2, but not de...

1
Tips
rails 5.2.2 template.rb sqlite3 versions issue
I'm hoping they release an update that fixes this soon! I've hit this a few times myself and am always surprised this is an issue. Thanks for posting the solution!

2
Tips
Anyone had experience with Wasabi Cloud Storage?
I'm looking at Wasabi for storing our user videos. Their pricing model is very keen but slightly misleading. The 'free egress' definitely has limits. The downloads of your stored files are free as ...

3
Tips
cloudflare vs cloudfront vs ?
If you are using S3 it is pretty trivial to use it as as origin for cloudfront.
On an aside, you should also look at using webp w/poly fills to speed up your images
.

4
Tips
Create dynamic table for existing resource
Just front end really Abdul. Basically looking to have the user be able to filter the results without the page reloading.

4
Tips
How does Chris open NERDTree by default when he runs "mvim ." ?
I recommend using RubyMine , it's not free but worth the money.
Especially if you're taking Ruby/Rails as a serious job.
They also have a pretty good vim mode (coming from a vim only guy).

3
Tips
Where should I start?
Hey Kelvin! I'd recommend starting at the first episodes and working your way through them. I don't have a particular order or anything with GoRails, although I probably should. :)
GoRails is mo...

2
Tips
ActiveRecord
Alright further testing:
=> #
irb(main):002:0> u.email = "[email protected]"
=> "[email protected]"
irb(main):003:0> u.save
(0.2ms) begin transaction
SQL (0.7ms) UPDATE "user...

4
Tips
API design/routing with nested resources
Let us know how the implementation goes!

5
Tips