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.
-
Posts here are to be centered around self-hosting. Please ensure it is clear in your post how it relates to self-hosting.
-
Don't duplicate the full text of your blog or git here. Just post the link for folks to click.
-
Submission headline should match the article title.
-
No trolling.
-
Promotion posts require your active participation in selfhosting or related communities, or the post will be removed. No more than 10% of your posts or comments may be self-promotional, or your post will be removed. F/LOSS Exception: If your post is about a project that is completely open source & can be self-hosted in full without payment, your post is exempt from this rule as long as you continue to engage in comments.
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
Y'all are too creative for me... I have:
I have to ask, why start with 0? I never understood this with infrastructure. I would do something like 00000 if I did numbers so it would be easy to sort, but I always started with 1. I'm just curious.
One possibility could be because in conventional "computer counting" in (most) coding languages, it starts at zero. Like if I make an array of things
[monke, chimp, peanut]monke would be
[0]chimp would be
[1]peanut would be
[2]Once I learned about this concept I started naming enumerated things from 0 usually just to keep a kind of consistency. Maybe I think if it's a habit, I won't make those mistakes as often with code. I dunno. :p
Use Lua, it uses one-based arrays. This is nice for a few reasons:
+ 1and- 1in my codeIt feels wrong coming from C, but it's actually really nice, especially since the reasons C does it don't apply (i.e. index is just a memory offset).
First non negative integer so easy for computer to display.
I only really use zero in networking names to correspond with an IPv4 address that ends with dot zero.
I think it's just what you're used to. Like counting bottom to top in teleco versus counting top to bottom in IT.
Finally someone who actually uses a Vostro. Always found that name unreasonably funny.
This is basically how I do it too.
I used to be more creative but then I got in the habit of running more servers and swapping hardware more frequently so it got harder to remember what hardware I was actually connecting to. Now they get hardware based names and everything else is named by service-based Ansible roles.