From c6c10c60bdc699a93b63ab5f1f85c3837468b7c0 Mon Sep 17 00:00:00 2001 From: manetta Date: Sat, 8 May 2021 14:34:31 +0200 Subject: [PATCH 1/5] restructuring the repo --- .gitignore | 2 ++ {asciiWriter => examples}/draw.py | 0 image.py => examples/image.py | 0 .../image_random_char.py | 0 image_rotate.py => examples/image_rotate.py | 0 image_sentence.py => examples/image_sentence.py | 0 line.py => examples/line.py | 0 line_random_char.py => examples/line_random_char.py | 0 {images => examples/masks}/blobs-small.png | Bin {images => examples/masks}/blobs.png | Bin {images => examples/masks}/shapes.png | Bin .../multi_column_page.py | 0 repeated_line.py => examples/repeated_line.py | 0 repeated_sinus.py => examples/repeated_sinus.py | 0 .../repeated_sinus_amplitude_variation.py | 0 .../single_column_page.py | 0 sinus.py => examples/sinus.py | 0 test.py => examples/test.py | 0 {texts => examples/texts}/language.txt | 0 19 files changed, 2 insertions(+) create mode 100644 .gitignore rename {asciiWriter => examples}/draw.py (100%) rename image.py => examples/image.py (100%) rename image_random_char.py => examples/image_random_char.py (100%) rename image_rotate.py => examples/image_rotate.py (100%) rename image_sentence.py => examples/image_sentence.py (100%) rename line.py => examples/line.py (100%) rename line_random_char.py => examples/line_random_char.py (100%) rename {images => examples/masks}/blobs-small.png (100%) rename {images => examples/masks}/blobs.png (100%) rename {images => examples/masks}/shapes.png (100%) rename multi_column_page.py => examples/multi_column_page.py (100%) rename repeated_line.py => examples/repeated_line.py (100%) rename repeated_sinus.py => examples/repeated_sinus.py (100%) rename repeated_sinus_amplitude_variation.py => examples/repeated_sinus_amplitude_variation.py (100%) rename single_column_page.py => examples/single_column_page.py (100%) rename sinus.py => examples/sinus.py (100%) rename test.py => examples/test.py (100%) rename {texts => examples/texts}/language.txt (100%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..14f5a21 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +./asciiWriter/__pycache__/ +./asciiWriter/__pycache__/* diff --git a/asciiWriter/draw.py b/examples/draw.py similarity index 100% rename from asciiWriter/draw.py rename to examples/draw.py diff --git a/image.py b/examples/image.py similarity index 100% rename from image.py rename to examples/image.py diff --git a/image_random_char.py b/examples/image_random_char.py similarity index 100% rename from image_random_char.py rename to examples/image_random_char.py diff --git a/image_rotate.py b/examples/image_rotate.py similarity index 100% rename from image_rotate.py rename to examples/image_rotate.py diff --git a/image_sentence.py b/examples/image_sentence.py similarity index 100% rename from image_sentence.py rename to examples/image_sentence.py diff --git a/line.py b/examples/line.py similarity index 100% rename from line.py rename to examples/line.py diff --git a/line_random_char.py b/examples/line_random_char.py similarity index 100% rename from line_random_char.py rename to examples/line_random_char.py diff --git a/images/blobs-small.png b/examples/masks/blobs-small.png similarity index 100% rename from images/blobs-small.png rename to examples/masks/blobs-small.png diff --git a/images/blobs.png b/examples/masks/blobs.png similarity index 100% rename from images/blobs.png rename to examples/masks/blobs.png diff --git a/images/shapes.png b/examples/masks/shapes.png similarity index 100% rename from images/shapes.png rename to examples/masks/shapes.png diff --git a/multi_column_page.py b/examples/multi_column_page.py similarity index 100% rename from multi_column_page.py rename to examples/multi_column_page.py diff --git a/repeated_line.py b/examples/repeated_line.py similarity index 100% rename from repeated_line.py rename to examples/repeated_line.py diff --git a/repeated_sinus.py b/examples/repeated_sinus.py similarity index 100% rename from repeated_sinus.py rename to examples/repeated_sinus.py diff --git a/repeated_sinus_amplitude_variation.py b/examples/repeated_sinus_amplitude_variation.py similarity index 100% rename from repeated_sinus_amplitude_variation.py rename to examples/repeated_sinus_amplitude_variation.py diff --git a/single_column_page.py b/examples/single_column_page.py similarity index 100% rename from single_column_page.py rename to examples/single_column_page.py diff --git a/sinus.py b/examples/sinus.py similarity index 100% rename from sinus.py rename to examples/sinus.py diff --git a/test.py b/examples/test.py similarity index 100% rename from test.py rename to examples/test.py diff --git a/texts/language.txt b/examples/texts/language.txt similarity index 100% rename from texts/language.txt rename to examples/texts/language.txt From 3f5e70c4f6a8edcbfd5a86b6247b87ae8102e01c Mon Sep 17 00:00:00 2001 From: manetta Date: Sat, 8 May 2021 14:35:10 +0200 Subject: [PATCH 2/5] updated the gitignore --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 14f5a21..0ac82fe 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -./asciiWriter/__pycache__/ -./asciiWriter/__pycache__/* +asciiWriter/__pycache__/ +asciiWriter/__pycache__/* From dc030edc7a9fd75754bd86cb4c0f669119812008 Mon Sep 17 00:00:00 2001 From: manetta Date: Sat, 8 May 2021 14:35:43 +0200 Subject: [PATCH 3/5] updated the gitignore --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 0ac82fe..8d1d42f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -asciiWriter/__pycache__/ +asciiWriter/__pycache__ asciiWriter/__pycache__/* From 9cb6c679442a5a5357b01d6d388b95c8ecf64c83 Mon Sep 17 00:00:00 2001 From: manetta Date: Sat, 8 May 2021 14:36:05 +0200 Subject: [PATCH 4/5] updated the gitignore --- .gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 8d1d42f..0d20b64 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ -asciiWriter/__pycache__ -asciiWriter/__pycache__/* +*.pyc From 3af6274f898493ceabc78a247d1ded98af9d4b8a Mon Sep 17 00:00:00 2001 From: manetta Date: Sat, 8 May 2021 14:39:12 +0200 Subject: [PATCH 5/5] removing the pyc files --- asciiWriter/__pycache__/__init__.cpython-37.pyc | Bin 180 -> 0 bytes asciiWriter/__pycache__/marks.cpython-37.pyc | Bin 1047 -> 0 bytes asciiWriter/__pycache__/text.cpython-37.pyc | Bin 1459 -> 0 bytes asciiWriter/__pycache__/utils.cpython-37.pyc | Bin 2933 -> 0 bytes .../__pycache__/wrap_single_line.cpython-37.pyc | Bin 2805 -> 0 bytes 5 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 asciiWriter/__pycache__/__init__.cpython-37.pyc delete mode 100644 asciiWriter/__pycache__/marks.cpython-37.pyc delete mode 100644 asciiWriter/__pycache__/text.cpython-37.pyc delete mode 100644 asciiWriter/__pycache__/utils.cpython-37.pyc delete mode 100644 asciiWriter/__pycache__/wrap_single_line.cpython-37.pyc diff --git a/asciiWriter/__pycache__/__init__.cpython-37.pyc b/asciiWriter/__pycache__/__init__.cpython-37.pyc deleted file mode 100644 index 0d61401254692a6ca13a2b477f9eebb802dbf8c3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 180 zcmZ?b<>g`kf=P`GaS}lKF^B^Lj6jA15Erumi4=xl22Do4l?+87VFd9jRzD*@H&s73 zN#7+uximL5ucTN%J10M{B(*3rFFiF+zo00;B)_DxAhlROu{b$1Q#Y}wL^r9lM7KP% xBty3}FEcqmB^4qSUX%&crXL@lnU`4-AFo$Xd5gm)H$SB`C)EyQ?Pnln008wYFv9=< diff --git a/asciiWriter/__pycache__/marks.cpython-37.pyc b/asciiWriter/__pycache__/marks.cpython-37.pyc deleted file mode 100644 index 6978a3f556f3fc7731abd646fdb0a79c4cc5f09a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1047 zcma)5v2NQi5WSORMRn|;X$rJsR}Hq-4na_)oxK!j0S^Tfl8J>#qCnDU6F5Ur19jJa zK{NK3w07z*Wa=FixgLU|G)NuEdw2I9&!^+@5NLe=3?JShz%SnPBP8P$P5Y7-2@*@F zaE=HvxWIFip^Vlz2RV@O8s>rAlL>u8IhI4YPdAYqy@mAPH=!ZLHWmwA2-Sk1M1BOc zauS~QF)d$#!lDe;$qlZMz~M~L@pdrah^9?waj=0e?1Zxv4PX7_G=nNPm)1nIznf8~8zQc#Ah|;RAOsOKCk2TJMV;leU=b^<$b$8K;R^31jkq`v12F{6mW~+BnfgY$l8arj zC+>;;8*4?u+kQsE!!?CNL)z^vRZ_=IR!(yn=UFL3*7;f`Ws@gbc6K4vRIZzl@-Pk{})^8nc8Gl7v-*|%0E%mFgh4YeVZoCzJO5jfa zh=A38WgGubc=ToP9C9(v1%t=CldrxDt!}hvWIVgBXR=ImrJ{W$>pV$iyqslPHZ`cx zu25BdXG7s@Q>+~h2GfH13}&+jVoD78$!n<~zp+aWSJBDe1S-l-KJ93%d~oT->mSCm zs*vO2eEhUZ7lkZ!GoI&FsilHe$Z}k(N>}>2md!Y6(kwepls-OR=;LLkXUB^&ODiEa zrsoRMRbwr$^htgFIylX}QIsdAd6g!4a|X(-Z|HPZ zF3ZjXL!O-HQej}n(V?>eh^g$Hq^@Nt!l2`LTNfZO@iG&7);TkoO=ntp7`4+Is*8(8 zLNG3x&R4QXvJ#%x+1rq<1Kd%{x5ZI|{)jvIB5uuxAPD1>vwh~#J;t~40rNn6z(!0x z1dsJ6C@}XmhNajr93ze&85W0pLYHY!7H~<&4 zE`UboTzw1s{D>IufV4Y+ZD4i)OzXyK1LMD9CP3H_%FjsaU5)^{jlTu{1Auk_r#gTx zZ--`R+#W}J(o+>$>HyMGhbXX$zzx0X=(XxURo=f&A#Q3P1xJ^Wx{o@>M1xIpH~o0C zN~=YwqhM>BCUt*y6!d(@=`2y|9f=S1rdO$ropd%X40mEPQF<3h c{&_un-f2;ZMJ~?}qXzRC0C2&>;LxN00~?lKjsO4v diff --git a/asciiWriter/__pycache__/utils.cpython-37.pyc b/asciiWriter/__pycache__/utils.cpython-37.pyc deleted file mode 100644 index a93222b94178c878c00aafacbc21f14c960ea65f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2933 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