Search Results for "post-reaction-feature"
Lessons
Forum Threads
Pull data from another table in a lookup
Sweet, I'll have to play around with it, I love a good editor! :)
Did you ever mess with Summernote? http://summernote.org/examples/#hint-for-mention
They support mentions out the box it looks lik...

54
Rails
Must Read / Must Watch
This is all well and good but if one wants to maintain a sense of mistery and awe about programming, i recommend "We really don't know how to compute" by Jerry Sussman. :)
https://www.youtube.com/w...

20
General
Sponsored Post Model?
i want to build a feature where on certain pages I could highlight different posts or jobs. Think of it like a sponsored google ad at the top of the rankings or a sponsored job post.
It should be ...

1
Rails
Rails form post creates a 'Do you want to download “<form target>”' prompt on mobile
Hey everyone,
I'm just testing my first Rails app on mobile and whenever I submit a form I get a prompt to download the form target. See the screenshot below:
[Download Prompt on iPhone8](https:/...

1
Rails
Make http POST request that return xml response
You can run that code in the console by running the same code as you would in your app. `response = Documents::CreateSession.new.start`
The response will be the return value of start as it current...

2
Rails
How to post remote action and no redirect? ActionCable Series
Trying to submit a form that has a create action in another controller but does not redirect to or render the page (just stay on the page).
Error:
```
MessagesController#create is missing a templa...

1
Rails
Following "Scheduling post" episode with background jobs
@Christophe Estanol
Have you manage to solve this issue with the turbolinks caching has mentioned? I have intalled the jquery-turbolinks gem and restart the server as per the comments of another u...

5
General
Creating A Blog Post Model Discussion
For future travellers, the `sqlite3` database is under `/storage` now

5
General
FTX.com REST API POST Authentication FAILS with Ruby on Rails and net/https
Hoping for some help as this one has me baffled...
I created a user account and API credentials at FTX.com.
They have an interesting Auth setup which is detailed here: xhxtxtxpxsx://docs.ftx.com/...

1
Rails
How do I post a client ID in a different controllers view?
Hey Spohnz,
Assuming you have an appliance controller, you might want to add @client in `appliance_controller.rb` under the index or show methods. e.g.
```
class ApplianceController < Applica...

2
Rails
How do I post comment with ajax in rails 4.2 ? Can I please have a detailed example?

6
General
Adding a New Blog Post Action Discussion
I believe reusability of @blog_post in different methods is due to the scoping rules of instance variables within the class. Each HTTP request is a fresh start, and Rails sets up new instance varia...

4
General
How to mark a post as read, so that it won't show up again for a user?
Hi Ivan,
Above you wrote: "You will have to create the new and create methods for the journal of course for the form to work."
But later you said that "You would be initiating the form from your ...

7
Rails
Show each users each post.
So you'll need a join table between Movies and Users. Something like `UserMovie` is a standard naming scheme for that. You could also give them a name like `Favorite`.
In essence you'll do this:
...

2
Rails