mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 02:57:12 -05:00
This commit introduces the foundational specification for Lucidia v1.0 - a set of 100 working example programs that DEFINE the language through demonstration rather than formal grammar. Key Philosophy: - Examples ARE the spec (not documentation OF the spec) - AI systems learn by reading all 100 examples and extracting patterns - Humans learn by working through examples sequentially - No feature exists unless demonstrated in these examples Structure: - 001-010: Fundamentals (hello world → functions) - 011-020: Data & Collections (lists, maps, sets) - 021-030: Control Flow (if, loops, pattern matching) - 031-040: Functions & Composition (map, filter, reduce, closures) - 041-050: UI Basics (forms, inputs, validation) - 051-060: Reactive Programming (state, watchers, events) - 061-070: Consent & Privacy (permission system - CORE DIFFERENTIATOR) - 071-080: Storage & Sync (local-first, cloud-optional) - 081-090: AI Integration (intent → code, learning user style) - 091-100: Complete Applications (todo, notes, chat, e-commerce) Core Language Features Demonstrated: ✓ Intent over ceremony (write WHAT, not HOW) ✓ Consent as syntax (ask permission for: resource) ✓ Local-first storage (store locally, sync to cloud optional) ✓ AI-collaborative (### Intent comments become code) ✓ Reactive by default (state, watch, computed) ✓ Zero setup (runs in browser via WASM) ✓ Multi-paradigm (functional, OOP, reactive, agent-based) ✓ Gradual complexity (hello world → production apps) Files Created: - README.md - Learning philosophy and path - INDEX.md - Complete reference table - 001-100.lucidia - All example programs Total: 102 files, ~3,500+ lines of example code Why This Matters: This is not just documentation. This IS Lucidia. Every parser, compiler, AI assistant, and developer tool will be trained on these examples. They are the permanent, immutable foundation of the language. Next Steps: 1. Build parser that learns from these examples 2. Train AI to recognize and generate Lucidia patterns 3. Create browser playground with these as gallery 4. Use for academic paper and conference presentations Designed by: Cece (Principal Language & Runtime Architect) For: BlackRoad Operating System / Lucidia Programming Language Status: Complete foundation for implementation
106 lines
2.4 KiB
Plaintext
106 lines
2.4 KiB
Plaintext
# 093: Contact Manager
|
|
# Store and organize contacts locally
|
|
|
|
state contacts = load "contacts" locally or []
|
|
state editing = null
|
|
|
|
# Add contact
|
|
form add_contact:
|
|
input firstname -> new_contact.firstname
|
|
input lastname -> new_contact.lastname
|
|
input email -> new_contact.email
|
|
validate: is_email
|
|
input phone -> new_contact.phone
|
|
input company -> new_contact.company
|
|
|
|
button "Save Contact" -> save_contact(new_contact)
|
|
|
|
save_contact(contact):
|
|
contact.id = generate_id()
|
|
contact.created_at = now()
|
|
contact.favorite = false
|
|
|
|
contacts.append(contact)
|
|
store contacts locally as "contacts"
|
|
|
|
# Clear form
|
|
new_contact = {}
|
|
show "Contact saved"
|
|
|
|
# Edit contact
|
|
edit_contact(id):
|
|
editing = contacts.find(c => c.id == id)
|
|
|
|
save_edit():
|
|
contacts = contacts.map(c => {
|
|
if c.id == editing.id:
|
|
editing
|
|
else:
|
|
c
|
|
})
|
|
|
|
store contacts locally as "contacts"
|
|
editing = null
|
|
show "Contact updated"
|
|
|
|
# Delete contact
|
|
delete_contact(id):
|
|
ask "Delete this contact?" -> confirm
|
|
|
|
if confirm == "yes":
|
|
contacts = contacts.filter(c => c.id != id)
|
|
store contacts locally as "contacts"
|
|
show "Contact deleted"
|
|
|
|
# Toggle favorite
|
|
toggle_favorite(id):
|
|
contacts = contacts.map(c => {
|
|
if c.id == id:
|
|
{ ...c, favorite: not c.favorite }
|
|
else:
|
|
c
|
|
})
|
|
|
|
store contacts locally as "contacts"
|
|
|
|
# Sort and filter
|
|
state sort_by = "lastname"
|
|
state show_favorites_only = false
|
|
|
|
computed sorted_contacts = contacts
|
|
.filter(c => not show_favorites_only or c.favorite)
|
|
.sort_by(c => c[sort_by])
|
|
|
|
# Export contacts
|
|
export_contacts():
|
|
csv = ai.transform(contacts, { to: "csv" })
|
|
save_file("contacts.csv", csv)
|
|
show "Contacts exported"
|
|
|
|
# Import from phone (with consent)
|
|
import_from_phone():
|
|
ask permission for: device.contacts
|
|
purpose: "Import your phone contacts"
|
|
|
|
if granted:
|
|
with consent.record:
|
|
phone_contacts = read_device_contacts()
|
|
contacts = contacts.concat(phone_contacts)
|
|
store contacts locally as "contacts"
|
|
show "Imported {phone_contacts.length} contacts"
|
|
|
|
# Display
|
|
for contact in sorted_contacts:
|
|
show_contact_card:
|
|
name: "{contact.firstname} {contact.lastname}"
|
|
email: contact.email
|
|
phone: contact.phone
|
|
company: contact.company
|
|
favorite: contact.favorite
|
|
on_favorite: () => toggle_favorite(contact.id)
|
|
on_edit: () => edit_contact(contact.id)
|
|
on_delete: () => delete_contact(contact.id)
|
|
|
|
generate_id():
|
|
return now() + Math.random()
|