Category: Programming
-
Fixing Python Pandas / NumPy Binary Incompatibility Error
Python error with Pandas / numpy: This is going to be a quick and easy post. I got following error when running pandas < 2 on python 3.10 Fixed by uninstalling numpy and installing version less than 2. Seems like an issue with the dependency resolver – resolver sees numpy is available and doesn’t check… Read more
-
How to Disable the Fish Shell Bell in WSL: A Step-by-Step Guide
How to Disable the Fish Shell Bell in WSL This seems to be a “zero day” solution, as I haven’t found the correct answer anywhere else. When running Fish Shell on Windows Subsystem for Linux (WSL), the bell would sound every single time I hit enter. Solution Straight to the point: That’s it! Details The… Read more
-
A Painter in a Print Shop My Struggle with Databricks
A Painter in a Print Shop: My Struggle with Databricks This is a cry into the void. A single man against a freight train. As I have become fond of saying, “A painter in a print shop.” I don’t think I can stop Databricks. In a way, what they have done is brilliant and scratches… Read more
-
Maximize Your Terminal Efficiency with TMUX: Configuration and Tips
TMUX Split panes, create new tabs, and move between them quickly and easily! This should be installed by default, but can be installed with sudo apt-get install tmux if it does not exist. Config Use touch ~/.tmux.conf to create the configuration file. Open TMUX by Default Answer found here. Put this into config.fish and restart. Read more
-
Fixing Fish Shell Bookmark Issue with Non-Existent Directories
This note is about how to fix an issue where a directory is removed, but Fish (specifically the Dangerous theme) still has it in the bookmarks. The error can look something like this: In the above case, a directory was stored as the startup directory, but then the directory was removed. Sometimes, just running echo… Read more
-
NVIM on Windows: A Simple Guide
NVIM on Windows I’ve been struggling with setting up a good workflow for NVIM on Windows for a long time. While I am a fairly advanced NVIM user on Ubuntu, replicating my setup on Windows has always been challenging. With a fresh Windows install, I decided it was the perfect time to tackle this issue… Read more
-
How to Set Up Obsidian: Plugins, Daily Notes, and Configuration
Obsidian Setup How Obsidian is set up. This should help me figure out how to configure things for the next time I need to create Obisidan. Plugins Important ones: Less Important: Vimrc Support Vimrc support is important for the VIM commands to work as I want. Need to create a file call .obsidian.vimrc should contain:… Read more