Search Results for "can-t-duplicate-photoshop-gradient-overlay-in-css-anyone-encountered-that-527d1e4c-3913-43ed-b17b-b45e9cb484fd"

Lessons





















Forum Threads

Webpack Bundle Analyzer Discussion

2
General
Cant wait for the split chunks episode!
Marc Köhlbrugge replied

Looking for Rails work? / Hiring Rails developers?

52
General
Similar to the Hacker News thread, I thought we might start up a thread for anyone looking to hire a Ruby / Rails freelancer or if you're a freelancer looking for work. *Please lead with either SE...
Azmat Ulhaq replied

How do I make an app to get a video by url from youtube download it / process it/ and uploaded to a local db?

2
Gems / Libraries
I liked the shrine tutorials and would like to use that as an upload to local disk solution. I also found a gem called youtube-dl (https://github.com/layer8x/youtube-dl.rb) to help download from Yo...
Solved

Code Review: Run Number Refactoring Discussion

17
General
Very useful, code review series is awesome
Marc Gayle replied

Retrieve all Project Threads where a given users has posted a Project Post

3
Ruby
A user belogns to a ProjectThread. And a ProjectThread has_many Users through ProjectPosts. On the Project Thread Index I want to display only threads where a given users has posted a Project Pos...
Jacob Montgomery replied
Solved

Rails csv import with associations

8
Rails
I am building a rails application that associates posts with many different categories. For example, I have a Post and need to be able to assign it to the categories Sports, News and Science throug...
Chris Oliver replied
Solved

Override CSS in Gem with CSS from app

0
Rails
Hi, I'm working on a Rails Gem. The gem provides one view and a basic stylesheet for it. When installed in an app, i'd like to be able to override the basic styles with other styles in the app it...
Neil Tonge posted

Help parsing a string down to what I need it to be.

2
Ruby
I am working on an API integration and I have to authenticate via one call, take cookie values from the response, and use them in a new call. Using HTTParty I can make all the calls I need to, but ...
RJ McCollam replied
Solved

Using form_with produces odd results for nested namespaced resources.

0
Rails
I'm having an issue with sharing a the `new` and `edit` form for a shallow nested resource in a module/namespace. Most everything works as expected. The issue I'm running into is using `form_with`...
Chris Born posted

How do I duplicate or move a carrierwave image that's stored on S3?

0
Rails
Media page for controller: User can upload an image. User can also create a folder. I want the user to have the choice to either move or copy the uploaded image into the folder. I've looked around...
Josh Zandman posted

Stripe Subscriptions: Duplicate Customers

14
Rails
Hey Eeveryone, I'm creating a subscription site using Stripe v3. For the most part everything is working fine, but I noticed in my Stripe Customer dashboard there are duplicate customers (for all ...
Stephen Swann replied
Solved

Where do this code go? (Refactoring Rails Workers)

5
Rails
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) ... end ...
Arjun Rajkumar replied
Solved

How do I give Users the option of either selecting from a dropdown menu or inputting their own and adding it DB for other users

3
Rails
I apologize for the newbie question. But, I've been trying to create a special type of association and all my efforts have been failing. I would like to give users the ability to select their home ...
Solved

Auto-submitting Forms & Custom Turbo Stream Actions Discussion

14
General
Awsome work Chris. Thanks!
Ahmed Nadar replied

Checking if Forum_Thread is updating?

3
General
Now the actual update is simple it's just @forum_thread.update params and redirect, but as you can see it redirects to the forum_thread which renders the show.html.erb which then causes @forum_pos...
Chris Oliver replied

Recording pattern (Basecamp 3)

7
Rails
Has anyone tried to unravel the recording pattern used in Basecamp 3 ? You can find breadcrumbs in the "On Writing Software Well" video series (https://www.youtube.com/playlist?list=PL9wALaIpe0Py6...
Patrick replied

Backing up uploaded files (hundreds of gigs) to S3 using Backup gem without duplication on HD

1
Servers
Let's say I have 400GB of uploaded images inside a 800GB VPN machine. So we're confortably using 50% of storage.Even tough we have our hosting's backup enabled, we want to have an extra backup sitt...

data consistency for invitation registration

9
General
Hey! At the moment I have a user and a product table and products are created by users. So the user can create his own product he is working on. User `has_many :products` and `product belongs_to :...
Sean M replied
Solved

Multi Model Sign-up Wizard

7
Rails
Related to my previous thread (https://gorails.com/forum/structure-guidance-multi-tenancy-authentication-authorization) I plan to have authorization with Devise and some sort of role based system (...
Dan Tappin replied
Solved

Share scopes/nested routes/inherited resources?

0
Rails
I'm in the process of learning Rails (loving it so far) and my play project (A task list, obvs) is structured a little like this: Task -> belong to project/project has many tasks Task has scope...