this post was submitted on 11 Oct 2023
62 points (98.4% liked)

Selfhosted

39250 readers
259 users here now

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:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. 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.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
62
Cost-cutting tips? (discuss.tchncs.de)
submitted 11 months ago* (last edited 11 months ago) by [email protected] to c/[email protected]
 

What are your favourite, or least favourite but necessary, cost-cutting methods?

I feel I am spending too many resources on unnecessary stuff.

Edit: I feel the need to reduce both – the resources, to host multiple things on one system, and cost, to buy/pay for multiple systems. Currently, I have 2 ARM VPSes and 1 old MacBook Air as a home server.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 10 points 11 months ago (1 children)

cron instead of a calendar

What do you mean by that?

Do you use crontab to save events?

[–] [email protected] 13 points 11 months ago* (last edited 11 months ago) (2 children)

Basically, yes. You can configure most cron programs to mail task output to you (it's usually done by setting the MAILTO variable in the crontab, provided sendmail is available on your system).

I use that to do things like:

0 9 11 10 * echo 'lunch with John Doe at 12:20'

It sends me a mail, and I can see the upcoming events with crontab -l. If it's not a recurring event, I then delete the rule.

[–] [email protected] 6 points 11 months ago (1 children)

And to expand further on simplicity, one can avoid using email and send messages over ntfy with just a POST curl call.

I like your setup!

[–] [email protected] 2 points 11 months ago

This is excellent. Thank you

[–] [email protected] 4 points 11 months ago

Damn, I'm doing *nixes for nearly 30 years. But never went to that level of minimalism. Nice trick.