diff --git a/.GitImages/hexclock.png b/.GitImages/hexclock.png
new file mode 100644
index 0000000..8485da3
Binary files /dev/null and b/.GitImages/hexclock.png differ
diff --git a/.GitImages/passwordy.png b/.GitImages/passwordy.png
new file mode 100644
index 0000000..1daba06
Binary files /dev/null and b/.GitImages/passwordy.png differ
diff --git a/.GitImages/tkdraw.png b/.GitImages/tkdraw.png
new file mode 100644
index 0000000..17df050
Binary files /dev/null and b/.GitImages/tkdraw.png differ
diff --git a/Editor/textfiles.db b/Editor/textfiles.db
index ed529a4..40851fe 100644
Binary files a/Editor/textfiles.db and b/Editor/textfiles.db differ
diff --git a/Hexclock/README.md b/Hexclock/README.md
new file mode 100644
index 0000000..29a4cfc
--- /dev/null
+++ b/Hexclock/README.md
@@ -0,0 +1,8 @@
+Hexclock
+========
+
+I know, it's been done a million times before. But not by me. Now it has.
+
+
+
+
\ No newline at end of file
diff --git a/Hexclock/hexclock.py b/Hexclock/hexclock.pyw
similarity index 92%
rename from Hexclock/hexclock.py
rename to Hexclock/hexclock.pyw
index 0874daa..fa7d04a 100644
--- a/Hexclock/hexclock.py
+++ b/Hexclock/hexclock.pyw
@@ -3,11 +3,7 @@ import tkinter
import time
SHIFT_SPEED = 0.2
-
-degree = 359
-r = 0
-g = 0
-b = 0
+# Higher numbers make the color wheel spin faster
def cval(degree, hueshift):
y = math.sin(math.pi*(degree+hueshift)/180)
@@ -32,6 +28,7 @@ def clocking():
t.after(50, clocking)
t = tkinter.Tk()
+t.title('Hexclock')
l = tkinter.Label(text='')
l.pack(expand=True, fill='both')
w = 450
diff --git a/Passwordy/README.md b/Passwordy/README.md
index a8fd698..78aab1e 100644
--- a/Passwordy/README.md
+++ b/Passwordy/README.md
@@ -28,4 +28,8 @@ Generates randomized strings, useful for making passwords and such.
---------------------------------------------------------------
-To use the `sentence` function, you can download [this dictionary](https://github.com/voussoir/else/tree/master/Dictionary)
\ No newline at end of file
+To use the `sentence` function, you can download [this dictionary](https://github.com/voussoir/else/tree/master/Dictionary)
+
+
+
+
\ No newline at end of file
diff --git a/Passwordy/passwordy.py b/Passwordy/passwordy.py
index affafda..1e4451a 100644
--- a/Passwordy/passwordy.py
+++ b/Passwordy/passwordy.py
@@ -76,6 +76,10 @@ if __name__ == '__main__':
mode = 'password'
length = int(args[1])
+ elif args[1] in 'DdPp':
+ mode = 'password'
+ length = DEFAULT_LENGTH
+
elif 'sent' in args[1].lower() and argc == 1:
mode = 'sentence'
length = DEFAULT_SENTENCE
diff --git a/Sudoku/sudoku.py b/Sudoku/sudoku.py
index 0876515..c490344 100644
--- a/Sudoku/sudoku.py
+++ b/Sudoku/sudoku.py
@@ -269,8 +269,8 @@ class Sudoku:
else:
print('Some mistakes')
- print(self.entries_solution)
- print(self.entries_current)
+ #print(self.entries_solution)
+ #print(self.entries_current)
soduku = Sudoku()
diff --git a/TKdraw/README.md b/TKdraw/README.md
new file mode 100644
index 0000000..3aca3c7
--- /dev/null
+++ b/TKdraw/README.md
@@ -0,0 +1,8 @@
+TKDraw
+=======
+
+Unfortunately, there's no TKErase ...
+
+
+
+
\ No newline at end of file
diff --git a/TKdraw/tkdraw.py b/TKdraw/tkdraw.pyw
similarity index 100%
rename from TKdraw/tkdraw.py
rename to TKdraw/tkdraw.pyw