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
#!/bin_bash | |
# Directory to search for git repositories | |
# Defaults to current directory if no argument is provided | |
SEARCH_DIR="${1:-.}" | |
# Find all .git directories, then go to their parent directory and run git pull | |
find "$SEARCH_DIR" -name ".git" -type d -prune | while IFS= read -r d; do | |
REPO_DIR="$(dirname "$d")" | |
echo "Pulling changes in: $REPO_DIR" |
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
<!DOCTYPE html> | |
<html lang="en" class="scroll-smooth"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>The Augmented Architect: A Cursor Power User's Guide (2025)</title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script> | |
<link rel="preconnect" href="https://fonts.googleapis.com"> | |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
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
import psutil | |
import time | |
import datetime | |
import csv | |
import os | |
# --- Configuration --- | |
LOG_INTERVAL_SECONDS = 5 # How often to log data (in seconds) | |
LOG_DURATION_MINUTES = 60 # How long to run the monitoring (in minutes). Set to 0 for indefinite. | |
LOG_FILE_NAME = "system_performance_log.csv" |
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
#!/bin/bash | |
echo -e "\nFind and optionally delete all top level node_modules in a specific directory.\n" | |
# Initialize an array to store paths | |
NODE_MODULES_PATHS=() | |
while IFS= read -r line; do | |
size=$(echo "$line" | awk '{print $1}') | |
path=$(echo "$line" | awk '{print $2}') |
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
# Add the 3rd party PPA | |
sudo add-apt-repository ppa:krifa75/eog-ordissimo | |
# Update package cache and install library | |
sudo apt update && sudo apt install webp-pixbuf-loader | |
# remove the Ubuntu PPA, because it also contains the variant | |
# of eog (Eye of GNOME, GNOME’s default image viewer) that | |
# might break your other packages | |
sudo add-apt-repository --remove ppa:krifa75/eog-ordissimo |
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
/** Entry header */ | |
.site-content .entry-header .entry-title { | |
text-align: left; | |
} | |
.entry-title { | |
margin: 0 0 0 10px; | |
} | |
/** fil up more of page */ |
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
sudo apt install snapd && sudo snap install snap-store && sudo reboot |
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
{ | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/coverage/**": true, | |
"**/node_modules/*/**": true, | |
"**/server/data/**": true, | |
"**/dist/**": true, | |
"**/modules/**": true, | |
"**/info_gathering/**": true, |
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
# Check disk usage by journal | |
journalctl --disk-usage | |
# Mark current journal files as archived so they are no longer being written to | |
sudo journalctl --rotate | |
# Delete journal logs older than X days | |
sudo journalctl --vacuum-time=1day | |
# Delete log files until the disk space taken falls below the specified size |
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
# Add support for more packages | |
sudo add-apt-repository universe | |
# Add support for even more packages | |
sudo add-apt-repository multiverse | |
sudo apt update | |
# Add support for exfat filesystem |
NewerOlder