Hi,
I am beginner in ruby/rails.
I have a rails api which when curled directly works as excpected.
But, when invoked through vent(wrapper on kafka queue) returns 4xx error. I have verified ...
My server is located in Norway. My clients live in Norway, Japan, Hong Kong, USA and South Africa. Due to the fact that the server is located in Norway, the ping for customers is very long. I'm usi...
I am looking for a rich text format editor that is compatible with rails 4, any good ones out there, I want to make beautiful text-areas with rich text.
cheers
There really dosent seem to me good documentation any where on how to crop images with active storage, I know it can be done just seems pretty complex and would be a cool video
Hi Chris - I am running Sierra (not high Sierra) on my fairly new Mac (summer 2017). I need to upgrade to Mojave and am afraid I will break my ruby/rails dev environment (like I did when I upgraded...
Hello all,
I am new to rails and was hoping someone could help me out. I built an app and at first it said it couldnt find Ruby so I reinstalled it, then it said compiling error so I updated the...
Really great series, thank you for doing it. One question:
I have a comment form below the comments and it is not clearing out. However, when I move above the comments it does. Any thoughts?
Hello! I am building an app with Accounts/Users & Memberships via has_many through. I am using Devise and want to create a new user from 'accounts#new" via 'accepts_nested_attributes_for.'
W...
I have a view file index.html.erb in my view folder and there I am showing some data in the form of Table(bootstrap table) and this is a static table so I had to write so many lines of HTML for thi...
I'm having some trouble setting up Paperclip gem to setup profile pictures for the users of my app and I need to access users_controller. Since I'm using Devise, I don't really know where I can fin...
Hey!
I have two different workers
```
#app/workers/website_worker.rb
class WebsiteWorker
def perform(website)
do_this_action(website)
end
def do_this_action(website)
...
Hello,Im gettingCould not find "Procfile" in any of your source paths. Your current source paths are:
/Users/my_user/Documents/dev/my_app/https:/raw.githubusercontent.com/excid3/jumpstart/masterUs...
I have action(strong parameters) in controller:
```
def home_task_params
params.require(:home_task).permit(:subject, :description, :data)
end
```
i want do something similar to this
``...
Hi everyone,
I'm asking this question because it seems pretty hard to setup, between Image Magick and all the mecanics there is to put to work... I saw there was another solution Carrierwave but...
I am trying to get the top 5 products, based on the impressions that product has recieved.
Now the code below is working ok, but its not in the right order, and I cant work out a better way to g...