Selfhosted
A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.
Rules:
-
Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.
-
No spam posting.
-
Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.
-
Don't duplicate the full text of your blog or github here. Just post the link for folks to click.
-
Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).
-
No trolling.
Resources:
- selfh.st Newsletter and index of selfhosted software and apps
- awesome-selfhosted software
- awesome-sysadmin resources
- Self-Hosted Podcast from Jupiter Broadcasting
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
view the rest of the comments
Would you be able to help me on Humble Bundles feed?
I am using the RSS Feed:
When trying to use the same process you did in the RuneScape feed, it didn't seem to work.
I go to the full articles, I found that the content is listed in the Class
site-content container clearfix
. Attempting to add.site-content container clearfix
in the Article CSS selector on original website area. It says The selector didn’t match anything. As a fallback the original feed text will be displayed instead.Could you tell me what I'm doing wrong?
Using
.site-content container clearfix
didn't work because those are actually three separate CSS classes, so you'd have to use only one - for example.site-content
. However, it looks like.site-content
is too big, as it includes the website's sidebar as well. You may already know this but in Firefox and Chrome you can right click anywhere on the website and use the Inspect option to look at the source, and clicking on a section of the source highlights the corresponding section of the website and this will help you find exactly the CSS class you're looking for. I did this on a couple articles from Humble Bundle and found a couple of options:.post
: This includes only the content of the post, excluding the title and the image..site-main
: This includes the title, author, image and the content.Another useful tool in FreshRSS I forgot to mention is "CSS selector of the elements to remove". You can use it to remove certain section from the full article, I'd recommend removing
.sharedaddy
and.entry-footer
(the sharing links at the end of the article), and also.entry-header
if you use.site-main
as the CSS selector for the full article (.entry-header
is the title of the article, but FreshRSS already fetches it from the RSS feed so you don't need it in the body of the article as well). You can remove multiple sections by using a comma-separated list of CSS classes to remove:.entry-header, .sharedaddy, .entry-footer
Thank you again :). From your explanation, I think I have a good grasp on how to identify the proper CSS elements now.
Have a wonderful day!
No problem! FreshRSS really is amazing so I'm happy to help and spread the love.