Skip to content

Commit 14970e9

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

107 files changed

Lines changed: 826 additions & 206 deletions

File tree

Some content is hidden

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

.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
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)