Remove nu shell notes and fix random page filter logic#547
Merged
RamVasuthevan merged 2 commits intomainfrom Apr 12, 2026
Merged
Remove nu shell notes and fix random page filter logic#547RamVasuthevan merged 2 commits intomainfrom
RamVasuthevan merged 2 commits intomainfrom
Conversation
- Fix random.html: separate two `contains` checks with `or` operator - Remove notes/nu.markdown (duplicate of notes/nu.md) https://claude.ai/code/session_014YCNmiZRBFvEevFGX7W1Np
Deploying personal-website with
|
| Latest commit: |
e09430c
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://e105faea.personal-website-a13.pages.dev |
| Branch Preview URL: | https://claude-fix-make-serve-4nsgt.personal-website-a13.pages.dev |
Combined unique content from both files: video reference, useful commands list, and all references into a single nu.md file. https://claude.ai/code/session_014YCNmiZRBFvEevFGX7W1Np
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.
Summary
This PR removes the nu shell notes page and fixes a logic error in the random page generator.
Key Changes
website/notes/nu.markdown- The notes page about Nu shell is no longer neededwebsite/random.html- Corrected the conditional logic in the page filter by changingcontains 'random.html' contains 'robots.txt'tocontains 'random.html' or page.url contains 'robots.txt'Implementation Details
The random.html fix addresses a syntax error where the second
containsoperator was missing its operand (page.url). The corrected logic now properly excludes bothrandom.htmlandrobots.txtfrom the random page selection, along with stylesheet and XML files.https://claude.ai/code/session_014YCNmiZRBFvEevFGX7W1Np