An Alternative Medium Frontend
Go to file
Aravinth Manivannan f106f0a9cc
ci/woodpecker/push/woodpecker Pipeline was successful Details
Merge pull request 'fix: assign unique IDs to gist permanent links' (#11) from gh-32 into master
Reviewed-on: #11
2024-04-13 22:24:20 +05:30
.github feat: use cargo-tarpaulin for generating coverage 2022-01-05 13:03:27 +05:30
config fix: update default source code config param 2024-04-13 06:59:15 +05:30
schemas light weight graphql query to fetch data to construct post URL 2021-11-25 12:35:47 +05:30
scripts use grcov to get rust code coverage 2021-11-25 14:09:42 +05:30
src fix: update default source code config param 2024-04-13 06:59:15 +05:30
templates fix: update default source code config param 2024-04-13 06:59:15 +05:30
tests fix: update tests to reflect new permanent linking scheme 2024-04-13 16:31:56 +05:30
.dockerignore pkg docker 2021-10-31 22:55:47 +05:30
.gitignore feat: use cargo-tarpaulin for generating coverage 2022-01-05 13:03:27 +05:30
.woodpecker.yml fix: guard steps with events and rm secret in PR workflow 2024-04-13 06:21:50 +05:30
Cargo.lock fix: assign unique IDs to gist permanent links 2024-04-13 06:50:07 +05:30
Cargo.toml fix: assign unique IDs to gist permanent links 2024-04-13 06:50:07 +05:30
Dockerfile feat: update docker base img 2023-10-20 14:25:51 +05:30
LICENSE.md add license 2021-10-31 15:11:25 +05:30
Makefile feat: make: add check subroutine 2023-02-19 19:52:11 +05:30
README.md Fix typo 2023-12-14 16:46:29 -05:00
build.rs chore: linting 2023-02-19 20:08:50 +05:30
libmedium.user.js userscript: proxy using post ID 2021-11-25 13:50:57 +05:30
sailfish.toml chore: update deps 2023-02-19 19:52:14 +05:30

README.md

LibMedium

Privacy-focused proxy for medium.com

Awesome Humane Tech status-badge codecov

Status

Usable. Should you run into a HTTP 500 Internal Server Error, please file a bug report with the URL of the post you were trying to read and the git commit hash of the build. Git commit hash can be obtained from /api/v1/meta/build.

This proxy works by interacting with Medium's undocumented(probably private but unauthenticated) API. So I've had to make assumptions and tweak API schematics as I run into errors.

Features

  • proxy images
  • proxy GitHub gists
  • render posts
  • syntax highlighting for gists
  • user pages(WIP)
  • RSS feeds

Why?

Knowledge is the true wealth of humanity. If it weren't for our ancestors, who chose to pass down their knowledge and experiences, we would still be a primitive species. Whatever advancement that we as a species have achieved is because we chose to share information.

To put a paywall on knowledge like that is both obscene and goes against the very nature of humanity.

It is possible to run a sustainable publication business while still respecting freedom. LWN.net is one of my favourite publications that has been around forever. So it is possible. I hope medium.com comes up with other, non-harmful ways to run a sustainable business.

Instances

Instance Country Provider Host
https://libmedium.batsense.net India Airtel @realaravinth
https://md.vern.cc US Hetzner ~vern
http://md.vernccvbvyi5qhfzyqengccj7lkove6bjot2xhh5kajhwvidqafczrad.onion/ N/A Hetzner ~vern
http://vernaqj2qr2pijpgvf3od6ssc3ulz3nv52gwr3hba5l6humuzmgq.b32.i2p/ N/A Hetzner ~vern
https://medium.hostux.net France Gandi hostux
https://read.sudovanilla.com US Cloudflare SudoVanilla

Deploy

  1. Grab ./config/default.toml and make necessary changes

  2. AMD64 pre-compiled images are available on DockerHub.

docker run -d \
  -v ./config/default.toml:/etc/libmedium/config.toml \
  -p 8082:7000 \
  --restart always \
  --name libmedium \
  realaravinth/libmedium

If you are on a different architecture, run make docker and then run the above command.

make docker

Inspired by Scribe - An Alternative Medium Frontend