Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

23 total results found

Issues

Issues that I've run into in various places

Setup

Common Commands

Programming

Solved Issues

New OS Setup

Linux

React

Laravel

Hugo

Graphics Issues

Solved Issues

Power Management Issues

Solved Issues

fish issues

Solved Issues

New Hugo Site Setup

Hugo

Weird green and blue artifacts after opening and closing laptop lid

Solved Issues Graphics Issues

OS: Fedora 40 (Gnome) Hardware: Asus ROG Laptop, NVIDIA graphics Issue: Was trying to get my laptop to "ignore" on lid switch status. However, after editing the logind.conf, when I would close and open my laptop lid, the screen would go black and there were...

HandleLidSwitch status being ignored

Solved Issues Power Management Issues

OS: Fedora 40 (GNOME) Hardware: Asus ROG, NVIDIA graphics Issue: I edited logind.conf to ignore HandleLidSwitch but every time, closing the lid would log me out of the session. Solution: See Weird green and blue artifacts after opening and closing laptop ...

Closing laptop lid causes laptop to suspend (want it do nothing)

Solved Issues Power Management Issues

OS: Fedora 40 (GNOME) Hardware: Asus ROG, NVIDIA graphics Issue: When I close the laptop lid, I don't want anything to happen. When I open it, the screen should be the same as when I closed it. Solution: Edit /etc/systemd/logind.conf so that it contains t...

Common OS Setup

New OS Setup

Setup KeepassXC Install: https://keepassxc.org/ Do not install the flatpak, it will not be possible to connect browsers to the databasee Open database Configure the usual Setup Firefox Install: https://www.mozilla.org/en-US/firefox/downlo...

Add environment variable in fish

Solved Issues fish issues

Inside ~/.config/fish/config.fish add the following: set -gx <ENV_VAR_NAME> <VALUE>  

Add to PATH in fish

Solved Issues fish issues

Run the command: fish_add_path -p <PATH> Check the path:  

Create new SSH key and add it to ssh-agent

Linux

ssh-keygen -t ed25519 -C "your_email@example.com" eval "$(ssh-agent -s)" ssh-add ~/.ssh/id_ed25519  

Enable new SSH key for login

Linux

On the local computer: ssh-copy-id -i ~/.ssh/<KEY_NAME>.pub <USERNAME>@<REMOTE>  

Creating a Laravel project

Laravel

Install compose Create project composer create-project --prefer-dist laravel/laravel <project-name> Edit .env with database details Install composer dependencies composer install Run db migrations php artisan migrate Add breeze (for authe...