Thinking In Software
Thursday, February 20, 2025
ChatCommit: Auto-Generated Git Commit Message Summarizer
›
Friday, January 24, 2025
Remove trailing spaces from file
›
sed -i '' 's/[[:space:]]*$//' my_file_path.ext
Thursday, December 19, 2024
Uninstalling python from windows where no uninstaller can be found
›
1. Find out the exact version installed for the package you want to remove. In this case 3.12: PS > py --list -V:3.13 * Python 3...
Friday, October 18, 2024
Find content of all relevant files in a project respecting .gitignore
›
fd -t f -0 | xargs -0 -I {} sh -c 'echo "File: {}"; cat {}'
Tuesday, August 06, 2024
Remove server header in IIS to stop disclosing running version(s)
›
Set attribute removeServerHeader="true" in web.config node configuration."system.webServer".security.requestFiltering.
Thursday, July 18, 2024
When the clock on MAC OSX goes off
›
To sync your macOS clock and prevent it from drifting after sleep cycles, follow these steps: - Run this command to sync time: sudo sntp -...
Monday, May 27, 2024
Use specific keys for git commands
›
export GIT_SSH_COMMAND="ssh -i ~/.ssh/my.key"
›
Home
View web version