Skip to content

Instantly share code, notes, and snippets.

View strwbzzy's full-sized avatar
🎯
Focusing

chiyoko strwbzzy

🎯
Focusing
View GitHub Profile
@kirinelf
kirinelf / clock.html
Last active September 1, 2024 18:20 — forked from sam0737/clock.html
OBS Studio: A HTML page for showing current date and time in the video
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>A simple clock</title>
</head>
<body translate="no" >
@musale
musale / fix.md
Last active August 5, 2024 01:51
How to fix and recover a “corrupt history file” in zsh
# move to home directory
cd ~

# move the .zsh_history file into another .zsh_history_bad file
mv .zsh_history .zsh_history_bad

# write all printable strings into a new .zsh_history file
strings .zsh_history_bad > .zsh_history