├── .gitignore ├── BreitbartEDA.ipynb ├── DiscursiveEDA.ipynb ├── Hello.ipynb ├── LICENSE ├── README.md ├── Seattle_building_permits.ipynb ├── featA.log ├── fibonacci_gen.py ├── fixxx.txt ├── git-commands.md ├── hello.py ├── hello_from_cesar.py ├── hello_from_hg.py ├── hello_nanda.py ├── hello_test.py ├── hello_world.py ├── hourglass copy.py ├── hourglass.py ├── mdat_training_branch └── test01 ├── mg_hello.py ├── mjc-hello.py └── sayhi.md /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /BreitbartEDA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data4Democracy/github-playground/HEAD/BreitbartEDA.ipynb -------------------------------------------------------------------------------- /DiscursiveEDA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data4Democracy/github-playground/HEAD/DiscursiveEDA.ipynb -------------------------------------------------------------------------------- /Hello.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data4Democracy/github-playground/HEAD/Hello.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data4Democracy/github-playground/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data4Democracy/github-playground/HEAD/README.md -------------------------------------------------------------------------------- /Seattle_building_permits.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data4Democracy/github-playground/HEAD/Seattle_building_permits.ipynb -------------------------------------------------------------------------------- /featA.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fibonacci_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data4Democracy/github-playground/HEAD/fibonacci_gen.py -------------------------------------------------------------------------------- /fixxx.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /git-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data4Democracy/github-playground/HEAD/git-commands.md -------------------------------------------------------------------------------- /hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data4Democracy/github-playground/HEAD/hello.py -------------------------------------------------------------------------------- /hello_from_cesar.py: -------------------------------------------------------------------------------- 1 | #this is my first commit to D4D 2 | print("helllo from Cesar Hernandez") 3 | -------------------------------------------------------------------------------- /hello_from_hg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data4Democracy/github-playground/HEAD/hello_from_hg.py -------------------------------------------------------------------------------- /hello_nanda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data4Democracy/github-playground/HEAD/hello_nanda.py -------------------------------------------------------------------------------- /hello_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data4Democracy/github-playground/HEAD/hello_test.py -------------------------------------------------------------------------------- /hello_world.py: -------------------------------------------------------------------------------- 1 | #Practicing my git commits and pulls 2 | print("hello D4D github page!") 3 | -------------------------------------------------------------------------------- /hourglass copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data4Democracy/github-playground/HEAD/hourglass copy.py -------------------------------------------------------------------------------- /hourglass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data4Democracy/github-playground/HEAD/hourglass.py -------------------------------------------------------------------------------- /mdat_training_branch/test01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data4Democracy/github-playground/HEAD/mdat_training_branch/test01 -------------------------------------------------------------------------------- /mg_hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data4Democracy/github-playground/HEAD/mg_hello.py -------------------------------------------------------------------------------- /mjc-hello.py: -------------------------------------------------------------------------------- 1 | # First commit to D4D by mjc 2 | print("Hello from Michael Crawford!") 3 | -------------------------------------------------------------------------------- /sayhi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Data4Democracy/github-playground/HEAD/sayhi.md --------------------------------------------------------------------------------