https://github.com/atomantic/unlocked
🔓 fun scripts to execute on machines where people walk away without locking the screen
https://github.com/atomantic/unlocked
Last synced: over 1 year ago
JSON representation
🔓 fun scripts to execute on machines where people walk away without locking the screen
- Host: GitHub
- URL: https://github.com/atomantic/unlocked
- Owner: atomantic
- Created: 2018-09-04T21:35:57.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-11T21:48:17.000Z (over 7 years ago)
- Last Synced: 2025-02-01T03:41:38.065Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 1.95 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Did someone just walk away from their computer without locking their screen?
> Please note that I have never done this as our current cyber laws classify this as terrorism.
# Hex Dump
```
cat /dev/urandom | hexdump -C | grep "34 32"
```
# Nyan Cat
https://www.npmjs.com/package/nyancat
```
curl -o- https://raw.githubusercontent.com/atomantic/unlocked/master/nyan.sh | bash
```
# Lol Cat
https://github.com/busyloop/lolcat
```
gem install lolcat
#or: brew install lolcat
```
Then you can do things like this:
```
ls -lart /* | lolcat -a
# or hexdump
cat /dev/urandom | hexdump -C | grep "34 32" | lolcat -a
```
or start a new shell, where the output of every command is piped to `lolcat`
```
bash | lolcat -a -s 250
# zsh | lolcat -a -s 250
# etc
```