-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunding.json
More file actions
90 lines (90 loc) · 4.17 KB
/
funding.json
File metadata and controls
90 lines (90 loc) · 4.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"$schema": "https://fundingjson.org/schema/v1.1.0.json",
"version": "v1.1.0",
"entity": {
"type": "individual",
"role": "owner",
"name": "Oleksandr Tepliuk",
"email": "teolex2017@gmail.com",
"phone": "",
"description": "Software engineer based in Ukraine with 15+ years of experience in full-stack development, AI/ML systems, and embedded computing. Creator of Aura Memory — a sovereign pattern classification engine. Working independently under wartime conditions to build open-source tools for edge AI and digital sovereignty. U.S. Provisional Patent filed for the Aura Memory architecture.",
"webpageUrl": {
"url": "https://github.com/teolex2020"
}
},
"projects": [
{
"guid": "aura-core",
"name": "Aura Core",
"description": "Ultra-fast offline pattern classification engine built in Rust. Encodes text into Sparse Distributed Representations (SDR) — 256K-bit sparse binary vectors — and performs similarity-based retrieval using Tanimoto coefficient matching with inverted bitmap indexing. Achieves 60-200 microsecond classification in a 3MB binary with zero cloud dependencies. Designed for sovereign edge deployment: IoT devices, defense platforms, privacy-sensitive applications. Features include append-only crash-safe storage, RoaringBitmap O(k) indexing, full Unicode support, and 25-40% noise tolerance. 146 Rust tests, 212 Python integration tests. Patent Pending.",
"webpageUrl": {
"url": "https://github.com/teolex2020/aura-core"
},
"repositoryUrl": {
"url": "https://github.com/teolex2020/aura-core"
},
"licenses": ["spdx:Apache-2.0"],
"tags": [
"rust",
"pattern-matching",
"edge-ai",
"sdr",
"classification",
"embedded",
"offline",
"sovereign",
"privacy",
"iot"
]
}
],
"funding": {
"channels": [
{
"guid": "github-sponsors",
"type": "payment-provider",
"address": "https://github.com/sponsors/teolex2020",
"description": "GitHub Sponsors — recurring or one-time contributions."
},
{
"guid": "bank-transfer",
"type": "bank",
"address": "",
"description": "Direct bank transfer available for grants and larger contributions. Contact via email for details."
}
],
"plans": [
{
"guid": "open-source-development",
"status": "active",
"name": "Open Source Development & Documentation",
"description": "Fund continued development of Aura Core open-source engine: API documentation, integration libraries (Python PyO3, C FFI, WebAssembly), cross-platform testing, and community building. Covers 6 months of focused full-time development.",
"amount": 35000,
"currency": "EUR",
"frequency": "one-time",
"channels": ["bank-transfer"]
},
{
"guid": "monthly-maintenance",
"status": "active",
"name": "Monthly Maintenance & Support",
"description": "Ongoing maintenance: bug fixes, security patches, dependency updates, community support, and incremental improvements.",
"amount": 500,
"currency": "USD",
"frequency": "monthly",
"channels": ["github-sponsors"]
},
{
"guid": "hosting",
"status": "active",
"name": "Demo & Infrastructure Hosting",
"description": "Hosting costs for interactive web demo, CI/CD pipeline, and documentation site.",
"amount": 50,
"currency": "USD",
"frequency": "monthly",
"channels": ["github-sponsors"]
}
],
"history": []
}
}