Skip to content

Commit bde0419

Browse files
committed
feat: commit and commence tracking experiments
1 parent c8be419 commit bde0419

File tree

108 files changed

+832
-206
lines changed

Some content is hidden

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

108 files changed

+832
-206
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,5 +162,5 @@ cython_debug/
162162
.DS_Store
163163
.vscode
164164

165-
tools/
166-
experiments/
165+
ecosystem/
166+
scratch_pad.py

.spellcheck_exceptions_dictionary.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ exe
5757

5858
# python keywords
5959
pprint
60+
getitem
6061
stdtypes
62+
iterobject
6163
builtins
6264
str
6365
eval
@@ -106,6 +108,9 @@ conda
106108
beeware
107109
gz
108110
AppImage
111+
WebAssembly
112+
emscripten
113+
wasi
109114

110115

111116
# institutions:
@@ -121,6 +126,7 @@ stackoverflow
121126
vidhya
122127
redhat
123128
Openstack
129+
PyData
124130

125131

126132
# urls:
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
def decorators:
2+
- formal: 𝑓: 𝑓 ↦ Modified[𝑓]
3+
4+
- in words: a high order function to modify and execute functions/methods
5+
6+
- plain english: syntactic sugar for invoking a high order function directly and returning the parameter function's result.
7+
8+
- intuition: ???
9+
10+
- properties:
11+
- specification: https://peps.python.org/pep-0318/
12+
13+
- examples:
14+
- see function runtime tracker below: def timed
15+
16+
- use cases:
17+
- aspect orientated programming:
18+
- logging
19+
20+
- proof: ???
21+
22+
References: ???
23+
24+

README.md

Lines changed: 19 additions & 19 deletions
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/applications/standard_library/3_built_in_types/4_iterator_types/fibonacci.py renamed to experiments/applications/math/fibonacci.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
"""
2+
uses: standard_library/3_built_in_types/4_iterator_types/2_generator.py
3+
"""
4+
5+
16
def fibonacci():
27
a = 0
38
b = 1

0 commit comments

Comments
 (0)