Skip to content

Commit 6155611

Browse files
authored
Added collatz.py
1 parent 5997858 commit 6155611

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ Linuxsys.pdf
6868
Learn_Linux_In_5_Days.pdf
6969
```
7070

71+
---
7172
#### [Scanner](https://github.com/herokunt/python-scripts/blob/main/scanner.py)
7273
A simple but functional port scanner to find out which ports are open in your local network. Specify the host by IP or name, and optionally the range of ports to scan in the host.
7374

@@ -79,6 +80,11 @@ Zombie Dice is a "press your luck" party dice game created by Steve Jackson Game
7980
#### [Conway's Game of Life](https://github.com/herokunt/python-scripts/blob/main/conway.py)
8081
The classic Game of Life has three simple rules, but can be complex enough to build entire computational systems with it; I highly recommend to watch the first few minutes of this [great talk about The Art of Code](https://www.youtube.com/watch?v=gdSlcxxYAA8). Following along the "Automating the Boring Stuff With Python" book by Al Sweigart this is an attempt to write the game in a (hopefully) cleaner and more pythonic way.
8182

83+
84+
---
85+
#### [Collatz Sequence](https://github.com/herokunt/python-scripts/blob/main/collatz.py)
86+
Following along the "Automating the Boring Stuff With Python" book by Al Sweigart this is a script that runs from the terminal, taking one number and following the "Collatz Conjecture" rules where any positive number will eventually and invariable be reduced down to 1.
87+
8288
---
8389
#### [Caesar's cipher](https://github.com/herokunt/python-scripts/blob/main/caesar-chiper.py)
8490
One of the most popular ciphers used over 2000 years ago. Following along the "Cracking Codes With Python" book by Al Sweigart, this is an attempt to create an improved and flexible implementation of the cipher that works from the command line. It supports the expected operations of encryption, decryption as well as key derivation and brute forcing.

0 commit comments

Comments
 (0)