timeliner VS boringproxy

Compare timeliner vs boringproxy and see what are their differences.

timeliner

All your digital life on a single timeline, stored locally -- DEPRECATED, SEE TIMELINIZE (link below) (by mholt)

boringproxy

Simple tunneling reverse proxy with a fast web UI and auto HTTPS. Designed for self-hosters. (by boringproxy)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
timeliner boringproxy
5 9
3,548 1,101
- 4.6%
4.0 2.8
3 months ago 5 months ago
Go Go
GNU Affero General Public License v3.0 MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

timeliner

Posts with mentions or reviews of timeliner. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-03-23.
  • I Ditched Google Photos
    1 project | news.ycombinator.com | 31 Aug 2023
    Heya! I'm the author of PhotoStructure, and my Google Photos account (before I started working on PhotoStructure) is about that size, too.

    I wrote up some tips here: https://photostructure.com/faq/takeout/

    This is what I did:

    1. First try to fetch all your Google Photos via Takeout in one archive. If it fails (like it did for me), try different-sized .tgz archives. I had to use the 10 Gb option (using 50gb caused an internal-to-google error).

    If that fails to work, the last resort is to manually create by-year albums, shove all photos from that year into that album, and do a takeout of just that album. Repeat as necessary for every year.

    2. Install an app on your phone to *directly* upload the original photos and videos from your phone to your NAS/home server. I have several recommended apps here: https://photostructure.com/faq/how-do-i-safely-store-files/#...

    At this point, you can still use Google Photos (for viewing and as a last-ditch backup), but your originals are safe (without all the Google Photo downsampling and metadata shenanigans), and you're free to use whatever self-hosted software you want (like PhotoStructure, but there are a ton of alternatives, as well).

    FWIW, I also tried this software: https://github.com/mholt/timeliner -- it does what it can, but the files you get via the API has a bunch of metadata stripped from it. I even had captured-at times get mangled with older photos.

  • Start Self Hosting
    30 projects | news.ycombinator.com | 23 Mar 2022
    This is why I'm building Timelinize [1]. It's a follow-up to my open source Timeliner project [2], which has the potential to download all your digital life onto your own computer locally, and projects it all onto a single timeline, across all data sources (text messages, social media sites, photos, location history, and more).

    It's a little different from "self hosting" but it does have a similar effect of bringing all your data home and putting it in your control.

    The backend and underlying processing engine is all functional and working very well; now I'm just getting the UI put together, so I hope to have something to share later this year.

    [1]: https://twitter.com/timelinize (website coming eventually)

    [2]: https://github.com/mholt/timeliner

  • Consider SQLite
    13 projects | news.ycombinator.com | 29 Dec 2021
    Not a "big project/service" but a Go project that uses Sqlite is one of my own, Timeliner[1] and its successor, Timelinize[2] (still in development). Yeah the cgo dependency kinda sucks but you don't feel it in code, just compilation. And it easily manages Timeline databases of a million and more entries just fine.

    [1]: https://github.com/mholt/timeliner

    [2]: https://twitter.com/timelinize

  • Can you synchronise Google photos to/from phones and computer bidirectionally?
    1 project | /r/googlephotos | 17 Nov 2021
    This looks promising but might be a bit complicated for you: https://github.com/mholt/timeliner
  • What is the equivalent of "Apple removed 3.5mm jack" of your favorite products ?
    5 projects | /r/AskReddit | 21 Jan 2021
    I made Timeliner to download my Google Photos: https://github.com/mholt/timeliner -- requires some tech prowess for now, though.

boringproxy

Posts with mentions or reviews of boringproxy. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-05.
  • Ask HN: Remote access to self hosted (back end) software
    1 project | news.ycombinator.com | 4 Jun 2023
    A couple of years ago I've read about this concept (already forgot the name) of using self hosted data storage with cloud applications. Basically, you as a user own your data and only permit the cloud hosted web application to access it - not own it and manage in your place.

    I was thinking of a similar concept, but in the context of mobile applications. The mobile application itself would be accessible via Google Play Store/App Store, but the backend part would be self hosted and upon opening the application you would have to specify how to access backend.

    My question is how would I access the backend if it was hosted on let's say rpi running in the living room? It's not a problem as long as I'm within the home network, but I want seemless network transition without losing access when entering/leaving the house. I was told https://www.cloudflare.com/en-gb/products/zero-trust/access/ could be used for this, but to me it sounds a bit of an overkill to use it for an application which would never be used by more than a single digit amount of users. This looks more suitable: https://github.com/boringproxy/boringproxy

  • Replacing cloudflare with a VPS - My journey
    3 projects | /r/selfhosted | 5 May 2023
    Finally, someone in the above project's Matrix room directed me towards boringproxy - https://github.com/boringproxy/boringproxy. This was the perfect solution. No lengthy config files, easy to use and automate. Setup took about an hour and now everything is back up and running. The only issue I've currently not been able to solve is one where the container seems to use a websocket, which keeps getting timed out (will investigate this further tomorrow).
  • zrok: open-source peer-to-peer sharing (alternative to ngrok)
    2 projects | /r/opensource | 8 Mar 2023
    boringproxy (GitHub) is my go-to for this sort of thing. Thanks for the announcement, I'll have to do a head-to-head and see how they stack up!
  • What's the best way to host Jellyfin to be accessed outside of my home network?
    1 project | /r/jellyfin | 24 Jul 2022
    boringproxy
  • Consider SQLite
    13 projects | news.ycombinator.com | 29 Dec 2021
    Am I the only one who thinks SQLite is still too complicated for many programs? Maybe it's just the particular type of software I normally work on, which tends towards small, self-hosted networking services[0] that would often have a single user, or maybe federated with <100 users. These programs need a small amount of state for things like tokens, users accounts, and maybe a bit of domain-specific things. This can all live in memory, but needs to be persisted to disk on writes. I've reached for SQLite several times, and always come back to just keeping a struct of hashmaps[1] in memory and dumping JSON to disk. It's worked great for my needs.

    Now obviously if I wanted to scale up, at some point you would have too many users to fit in memory. But do programs at that scale actually need to exist? Why can't everyone be on a federated server with state that fits in memory/JSON? I guess that's more of a philosophical question about big tech. But I think it's interesting that most of our tech stack choices are driven by projects designed to work at a scale most of us will never need, and maybe nobody needs.

    [0]: https://boringproxy.io/

    [1]: https://github.com/boringproxy/boringproxy/blob/master/datab...

  • Architecture issue with running a docker project - have a crack at this
    2 projects | /r/docker | 31 Mar 2021
    This is the commit that seems to have broken the docker image.
  • Problems with port forwarding
    1 project | /r/PFSENSE | 12 Feb 2021
  • How does pricing work for making and maintaining a website?
    1 project | /r/softwaredevelopment | 16 Jan 2021
    I use https://github.com/boringproxy/boringproxy

What are some alternatives?

When comparing timeliner and boringproxy you can also consider the following projects:

CasaOS - CasaOS - A simple, easy-to-use, elegant open-source Personal Cloud system.

Gravitational Teleport - The easiest, and most secure way to access and protect all of your infrastructure.

EverythingToolbar - Everything integration for the Windows taskbar. [Moved to: https://github.com/srwi/EverythingToolbar]

dqlite - Embeddable, replicated and fault-tolerant SQL engine.

MarkdownSite - Create a website from a git repository in one click

Lunar - Intelligent adaptive brightness for your external monitors

yunohost - YunoHost is an operating system aiming to simplify as much as possible the administration of a server. This repository corresponds to the core code, written mostly in Python and Bash.

ngrok - Expose your localhost to the web. Node wrapper for ngrok.

PhotoPrism - AI-Powered Photos App for the Decentralized Web 🌈💎✨

yjs - Shared data types for building collaborative software

LevelDB - LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string keys to string values.

selfhosted-gateway - Self-hosted Docker native tunneling to localhost. Expose local docker containers to the public Internet with a docker compose interface.