Skip to content

Commit f8240db

Browse files
committed
Initial union of previous attemps
1 parent af29fcc commit f8240db

File tree

260 files changed

+28087
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

260 files changed

+28087
-0
lines changed

.gitignore

+242
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,242 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,clojure,go,python,elixir
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,clojure,go,python,elixir
3+
4+
### Clojure ###
5+
pom.xml
6+
pom.xml.asc
7+
*.jar
8+
*.class
9+
/lib/
10+
/classes/
11+
/target/
12+
/checkouts/
13+
.lein-deps-sum
14+
.lein-repl-history
15+
.lein-plugins/
16+
.lein-failures
17+
.nrepl-port
18+
.cpcache/
19+
20+
### Elixir ###
21+
/_build
22+
/cover
23+
/deps
24+
/doc
25+
/.fetch
26+
erl_crash.dump
27+
*.ez
28+
*.beam
29+
/config/*.secret.exs
30+
.elixir_ls/
31+
32+
### Elixir Patch ###
33+
34+
### Go ###
35+
# If you prefer the allow list template instead of the deny list, see community template:
36+
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
37+
#
38+
# Binaries for programs and plugins
39+
*.exe
40+
*.exe~
41+
*.dll
42+
*.so
43+
*.dylib
44+
45+
# Test binary, built with `go test -c`
46+
*.test
47+
48+
# Output of the go coverage tool, specifically when used with LiteIDE
49+
*.out
50+
51+
# Dependency directories (remove the comment below to include it)
52+
# vendor/
53+
54+
# Go workspace file
55+
go.work
56+
57+
### Python ###
58+
# Byte-compiled / optimized / DLL files
59+
__pycache__/
60+
*.py[cod]
61+
*$py.class
62+
63+
# C extensions
64+
65+
# Distribution / packaging
66+
.Python
67+
build/
68+
develop-eggs/
69+
dist/
70+
downloads/
71+
eggs/
72+
.eggs/
73+
lib/
74+
lib64/
75+
parts/
76+
sdist/
77+
var/
78+
wheels/
79+
share/python-wheels/
80+
*.egg-info/
81+
.installed.cfg
82+
*.egg
83+
MANIFEST
84+
85+
# PyInstaller
86+
# Usually these files are written by a python script from a template
87+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
88+
*.manifest
89+
*.spec
90+
91+
# Installer logs
92+
pip-log.txt
93+
pip-delete-this-directory.txt
94+
95+
# Unit test / coverage reports
96+
htmlcov/
97+
.tox/
98+
.nox/
99+
.coverage
100+
.coverage.*
101+
.cache
102+
nosetests.xml
103+
coverage.xml
104+
*.cover
105+
*.py,cover
106+
.hypothesis/
107+
.pytest_cache/
108+
cover/
109+
110+
# Translations
111+
*.mo
112+
*.pot
113+
114+
# Django stuff:
115+
*.log
116+
local_settings.py
117+
db.sqlite3
118+
db.sqlite3-journal
119+
120+
# Flask stuff:
121+
instance/
122+
.webassets-cache
123+
124+
# Scrapy stuff:
125+
.scrapy
126+
127+
# Sphinx documentation
128+
docs/_build/
129+
130+
# PyBuilder
131+
.pybuilder/
132+
target/
133+
134+
# Jupyter Notebook
135+
.ipynb_checkpoints
136+
137+
# IPython
138+
profile_default/
139+
ipython_config.py
140+
141+
# pyenv
142+
# For a library or package, you might want to ignore these files since the code is
143+
# intended to run in multiple environments; otherwise, check them in:
144+
# .python-version
145+
146+
# pipenv
147+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
148+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
149+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
150+
# install all needed dependencies.
151+
#Pipfile.lock
152+
153+
# poetry
154+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
155+
# This is especially recommended for binary packages to ensure reproducibility, and is more
156+
# commonly ignored for libraries.
157+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
158+
#poetry.lock
159+
160+
# pdm
161+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
162+
#pdm.lock
163+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
164+
# in version control.
165+
# https://pdm.fming.dev/#use-with-ide
166+
.pdm.toml
167+
168+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
169+
__pypackages__/
170+
171+
# Celery stuff
172+
celerybeat-schedule
173+
celerybeat.pid
174+
175+
# SageMath parsed files
176+
*.sage.py
177+
178+
# Environments
179+
.env
180+
.venv
181+
env/
182+
venv/
183+
ENV/
184+
env.bak/
185+
venv.bak/
186+
187+
# Spyder project settings
188+
.spyderproject
189+
.spyproject
190+
191+
# Rope project settings
192+
.ropeproject
193+
194+
# mkdocs documentation
195+
/site
196+
197+
# mypy
198+
.mypy_cache/
199+
.dmypy.json
200+
dmypy.json
201+
202+
# Pyre type checker
203+
.pyre/
204+
205+
# pytype static type analyzer
206+
.pytype/
207+
208+
# Cython debug symbols
209+
cython_debug/
210+
211+
# PyCharm
212+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
213+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
214+
# and can be added to the global gitignore or merged into this file. For a more nuclear
215+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
216+
#.idea/
217+
218+
### Python Patch ###
219+
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
220+
poetry.toml
221+
222+
223+
### VisualStudioCode ###
224+
.vscode/*
225+
!.vscode/settings.json
226+
!.vscode/tasks.json
227+
!.vscode/launch.json
228+
!.vscode/extensions.json
229+
!.vscode/*.code-snippets
230+
231+
# Local History for Visual Studio Code
232+
.history/
233+
234+
# Built Visual Studio Code Extensions
235+
*.vsix
236+
237+
### VisualStudioCode Patch ###
238+
# Ignore all local history of files
239+
.history
240+
.ionide
241+
242+
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,clojure,go,python,elixir

2019/Clojure/day1/.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/target
2+
/classes
3+
/checkouts
4+
profiles.clj
5+
pom.xml
6+
pom.xml.asc
7+
*.jar
8+
*.class
9+
/.lein-*
10+
/.nrepl-port
11+
/.prepl-port
12+
.hgignore
13+
.hg/

2019/Clojure/day1/CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Change Log
2+
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).
3+
4+
## [Unreleased]
5+
### Changed
6+
- Add a new arity to `make-widget-async` to provide a different widget shape.
7+
8+
## [0.1.1] - 2020-11-04
9+
### Changed
10+
- Documentation on how to make the widgets.
11+
12+
### Removed
13+
- `make-widget-sync` - we're all async, all the time.
14+
15+
### Fixed
16+
- Fixed widget maker to keep working when daylight savings switches over.
17+
18+
## 0.1.0 - 2020-11-04
19+
### Added
20+
- Files from the new template.
21+
- Widget maker public API - `make-widget-sync`.
22+
23+
[Unreleased]: https://github.com/your-name/day1/compare/0.1.1...HEAD
24+
[0.1.1]: https://github.com/your-name/day1/compare/0.1.0...0.1.1

0 commit comments

Comments
 (0)