crosspoint-reader

After having had a bunch of formatting issues with the XTEINK X4 for EPUB files, I decided to give the crosspoint-reader a try. My god I should have done that right from the get-go. The OS feels a lot faster and it has no problems when displaying EPUB files. Yes the official OS is mainly intended to be used with a specific file format, but since I am lazy the crosspoint-reader with its better EPUB display capability is the simpler solution. The installation was straightforward and the user guide was very instructive as well. For customization, information and other helpful links there is also the community website at readme.club. ...

February 22, 2026 · n1jos

fastfetch

fastfetch is a simple terminal tool that let’s you display a bunch of system information inside the terminal. I primarily use it to show key information every time I start up a new terminal window. Custom Config I would suggest running the fastfetch -c all.jsonc command to see all the options available to you. Furthermore you should also check out the official config template. To change the default config just place config.jsonc and myascii.txt inside ~/.config/fastfetch. ...

December 8, 2025 · n1jos

ExifTool by Phil Harvey

The ExifTool by Phil Harvey is an amazing tool, easily installable through Homebrew, for managing metadata on files. I primarily use it to remove metadata to protect my privacy online. Tool Command Preview metadata exiftool -n <file_path> Strip metadata exiftool -all= <file_path>

August 27, 2025 · n1jos

Visual Studio Code

Setup Install a Nerdfont to use in Visual Studio Code. I primarily use the Terminess Nerd Font. settings.json { "workbench.colorTheme": "Catppuccin Mocha", "workbench.iconTheme": "catppuccin-mocha", "workbench.startupEditor": "none", "window.commandCenter": false, "workbench.layoutControl.enabled": false, "workbench.settings.applyToAllProfiles": [], // "workbench.colorCustomizations": { // "editorWarning.foreground": "#FFA500", // // "minimapGutter.modifiedBackground": "#00ffe5", // // "editorGutter.modifiedBackground": "#00ffe5" // }, "workbench.activityBar.location": "top", "editor.minimap.enabled": false, "editor.fontFamily": "Terminess Nerd Font, monospace", "window.zoomLevel": 1, "editor.fontSize": 16, "editor.smoothScrolling": true, "workbench.list.smoothScrolling": true, "terminal.integrated.smoothScrolling": true, "editor.tabSize": 2, "workbench.tips.enabled": false, "editor.scrollbar.horizontalScrollbarSize": 10, "editor.scrollbar.verticalScrollbarSize": 10, "workbench.tree.renderIndentGuides": "always", "typescript.preferences.quoteStyle": "single", "editor.linkedEditing": true, "editor.accessibilitySupport": "off", "terminal.integrated.fontSize": 14, "debug.console.fontSize": 14, "diffEditor.ignoreTrimWhitespace": false, "window.zoomPerWindow": false, "extensions.ignoreRecommendations": true, "workbench.editor.pinnedTabsOnSeparateRow": true, "git.blame.editorDecoration.enabled": true, "editor.guides.bracketPairs": true, "editor.cursorSmoothCaretAnimation": "on", "chat.commandCenter.enabled": false } workbench.json { "workbench.colorCustomizations": { "statusBar.background" : "#b7ce0e", "statusBar.foreground": "#000000", "statusBar.noFolderBackground" : "#212121", "statusBar.debuggingBackground": "#263238" } } Extensions Astro Catppuccin Catppuccin Icons Live Server Angular Language Service Angular Snippets Auto Rename Tag SVG ESLint Github Copilot Github Copilot Chat Pretty TypeScript Errors

October 1, 2024 · n1jos

Homebrew

This is a living document that might evolve over time. Basics What is Homebrew? It is a fancy package manager primarily for macOS, though it is also available for linux. Update, list & uninstall brew update brew upgrade brew list brew uninstall package Packages Packages & Casks Description VSCodium open-source alternative to VSCode lazygit Terminal visualized version control glow Terminal markdown viewer/editor pop Simple mail sender via SMTP exiftool Image metadata tool tree Show folder tree htop System resource monitor git Version control hugo Static site generator yarn Package manager node Used for web development typescript speedtest-cli Run internet speed tests lazydocker Visualized Docker container info fastfetch Visualize information from the system in terminal ghostty Terminal

May 28, 2024 · n1jos

Static Blog with Hugo

Setup brew install hugo Create site hugo new site name-of-site -f yml Add theme git submodule add --depth=1 https://github.com/adityatelange/hugo-PaperMod.git themes/PaperMod git submodule update --init --recursive # needed when you reclone your repo (submodules may not get cloned automatically) Using HTML in .md files? use the following in config.yml markup: goldmark: renderer: unsafe: true Create Posts hugo new posts/nameOfPost.md Deploy @ localhost (development) hugo server Sources website PaperMod theme

May 8, 2024 · n1jos