
Looking for a secure place to store scanned tax forms
2
Rails
I am looking for something like Cloudinary that I can store w-9s that would be filled out by contractors. They get scanned and need to be stored for access at the end of the year. Do you think clou...
Jeff Wolfram replied
Solved

Does anyone have a pre-made stylesheet for wiki pages?
0
General
Although I wouldn’t mind making a custom style sheet, it would be quicker to find a style sheet that’s already been made. I’m currently trying to make a wiki page for something and I don’t want to ...
MaverickLan posted

Polymorphic Search
0
Databases
I have a basic model structure like this:
```
class History < ActiveRecord::Base
belongs_to :historical, polymorphic: true, touch: true
end
```
with several related models:
`has_many :histo...
Dan Tappin posted

rails binary tree and referral
0
General
Hi, i have an application and that is working clear but i wanna add multi level marketing binary tree module to my application.
i created binarytree page and also created add_to_column to members ...
mustafa kahveci posted

Multi tenant with different template (View)
0
General
I've ask this question once but not clear on implementation, i've a multi tenant application using different template (View). Every tenant required to setup and choose template from setup. after th...
Oyewole Samuel posted

How do I sync ActiveStorage files between development (local) and production (Amazon S3)?
0
Rails
I have a Rails 6 app on Heroku with a Postgresql database and ActiveStorage on Amazon S3.
Sometimes I need to sync my local db with production data to make debug easier. And it works great. I want...

Powerapps import unsuccesfull
0
General
After creating a custom entity and choosing the CSV file that I wish to import, Powerapps is showing the Mapping Status as 'Matched'. However when I go to import data from this CSV I receive a 'Im...
syamala kancharla posted

RSpec w/capybara vs Mini Test
6
Testing
Hey guys,
what are your thoughts on RSpec vs Mini Test. Which one do you use and why?
Cheers,
Drilon
Chris Oliver replied

Jekyll as a support page?
2
Gems / Libraries
Can you use Jekyll (https://github.com/jekyll/jekyll) as a embedded help page?
From the showcase section this is pretty much what I am looking for:
https://dev.twitch.tv/docs/ (says built with Je...
Dan Tappin replied

How to create a progress bar with vertical lines between elements
0
General
I'm having a little trouble creating a css effect and don't even know what to Google to find code snippets. https://birthdaywishes.onl/
I have been tasked with creating a progress bar. The bar has...
MarvinToran posted

Make http POST request that return xml response
1
Rails
I want to make a http POST request that parse XML response and return the value of SessionId field that is inside XML. This is what I tried so far but I want to return SessionId filed that arrives ...
Chris Oliver replied

How do i implement a trending function like twitter or facebook on my rails app?
1
General
I want to implement a trending function for last 24 hours hottest topic discuss or mentioned most in my website,i want to know is there anyway to implement this function in ruby on rails application?
Chris Oliver replied

Rendering simple_calendar content using Turbo Frames
2
Rails
Hi there,
It's a great pleasure to use this gem which is really handy ! I started using Turbo recently on my application and still had troubles wrapping my head around... Idea here is not only to ...
spacerobotTR replied

Implement a hash tags like feature in rails
2
General
Hi ,
I have looking for an actively supported gem to implement a hash tag like feature that can easily be used as a metric in feedback that has a lot of text. I checked-out
https://githu...
JM replied

Simple newsletter sign up?
17
Rails
Hey Chris and all other members of this forum....
I'm trying to create a single page rails site, for a new app that i'm trying to build myself (it's called Nibli, and it's on nibliapp.com).
I've ...
shakycode replied

Data Structure - Going back to the basic with Ruby
1
Ruby
Hi Chris,Could you help me with books, material, videos about Data Structure with Ruby? I have been asked a lot about it in the interview. I am rusty about it and there are tons of pieces about on ...
William Kennedy replied
Solved

RuntimeError (can't modify frozen String)
5
Rails
got this runtime error on heroku, it had been working fine...
I traced it down to this
```
add_breadcrumb 'category / ' << @title, categories_path
```
in my category controller (I've co...
Alan Reid replied

Enable HTTPS SSL in rails localhost
4
Rails
Good day, i tried to enable https secure connection for my rails application.First of all, set config.force_ssl = true in application.rb only. So, re-started rails server, but there was error: "HTT...
Bilal Abbas replied

How to by pass a string that has '???????' when scraping for dates and turning the date into an integer?
6
General
I'm scraping a anime information website. Right now, I'm trying to get the date going, but on some of the anime the date comes out as ???,??,????. I'm tying to figure out how to skip that or put so...
Wes replied
Solved

Performing calculations using scopes
10
General
hello , hopefully this isn’t too ambitious but i am hoping there is a way to do simple summation using defined scopes example is i have these scopes :
scope :present, -> { where(prese...
Chris Oliver replied