docs: add hosted website link to README#2
Open
err0rgod wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi @dariubs,
I love Postgres by Example! To make it even more accessible and engaging for learners, I have created a fully static, interactive web-based reader hosted at
https://psql.zerodaily.in.
This PR proposes adding a link to this web reader in the main README.md right before the Table of Contents, allowing readers to choose between learning
directly on GitHub or using the interactive web app.
Key Features of the Web Reader:
• Interactive Progress Tracker: Persists chapter completion state and theme preferences locally in the browser ( localStorage ), helping users keep track of
their learning journey.
• Instant Fuzzy Search: Real-time searching across all 57 chapters to instantly find specific commands or topics.
• Keyboard Shortcuts: Designed for power-users with Vim-friendly navigation ( ← / → arrows for chapters, Ctrl + K or / to search, Alt + C to complete,
and Alt + F to toggle focus mode).
• Focus Mode: A distraction-free reading layout that collapses sidebars with a single click.
• Enhanced Code Cards: Code blocks format beautifully with click-to-copy functionality and syntax highlighting.
• Estimated Reading Times: Automatically computes estimated reading time per chapter.
• Attribution: The website footer prominently attributes the inspiration and original content to this repository and yourself.
The web app is entirely client-side, serverless, and respects privacy (no analytics or tracking scripts).
I believe this will add great value to beginners working through your excellent course. Thank you for creating this tutorial!***