New pages
Jump to navigation
Jump to search
- 17:22, 11 March 2026 Lab One (hist | edit) [1,216 bytes] Marcin (talk | contribs) (Created page with "* Infrastructure goal is PV with thermal batteries for 100% renewable residential and industrial power, and documentation of closed loop wastewater and materials systems, including plastic, biomass, metal, concrete - and consumer goods manufacturing. Full agriculture system provides excellent local food for the community and for market.")
- 17:05, 11 March 2026 Appropriate Transhumanism (hist | edit) [411 bytes] Marcin (talk | contribs) (Created page with "Human augmentation done in an inclusive, transparent, and collaborative way - shifting the field from scarcity transhumanism to abundance transhanism. The first claim is massive and universal augmentation of societal capacity, not of only a few individuals in society.")
- 17:01, 11 March 2026 Applied Psychology (hist | edit) [508 bytes] Marcin (talk | contribs) (Created page with "*blends with neuroscience *practical ability to 'rewrite story' *practical skills of mental housecleaning for processing emotion using primal intelligence, to extract learning *various psychology methods for motivation, clarity, focus, meaning, purpose *direct consequences on macro level in terms of social pressure, herd mentality, independent thinking, loneliness, and other insecurities")
- 03:05, 11 March 2026 Wall Part Library (hist | edit) [24 bytes] Marcin (talk | contribs) (Created page with "File:cad_library.zip")
- 02:28, 11 March 2026 Validate wall geometry.py (hist | edit) [3,302 bytes] Marcin (talk | contribs) (Created page with "#!/usr/bin/env python3 import sys from pathlib import Path import yaml import FreeCAD CAD_DIR = Path("cad_library") def ft_to_in(ft): return ft * 12.0 def nominal_to_actual_lumber(nominal): table = { "2x2": (1.5, 1.5), "2x3": (1.5, 2.5), "2x4": (1.5, 3.5), "2x6": (1.5, 5.5), "2x8": (1.5, 7.25), "2x10": (1.5, 9.25), "2x12": (1.5, 11.25), } return table[nominal] def load_yaml(path): with op...")
- 02:26, 11 March 2026 Validate syntax.py (hist | edit) [8,357 bytes] Marcin (talk | contribs) (Created page with "#!/usr/bin/env python3 import sys from pathlib import Path from typing import Any import yaml def load_yaml(path: Path) -> Any: with path.open("r", encoding="utf-8") as f: return yaml.safe_load(f) def is_number(value: Any) -> bool: return isinstance(value, (int, float)) and not isinstance(value, bool) def validate_enum(instance_name: str, field_name: str, value: Any, allowed: list[Any], errors: list[str]) -> None: if value not in allowed:...")
- 01:51, 11 March 2026 Generate wall library.py (hist | edit) [4,005 bytes] Marcin (talk | contribs) (Created page with "#!/usr/bin/env python3 from pathlib import Path from typing import Any import math import sys import yaml import FreeCAD import Part OUTPUT_DIR = Path("cad_library") def load_yaml(path: Path) -> Any: with path.open("r", encoding="utf-8") as f: return yaml.safe_load(f) def nominal_to_actual_lumber(nominal: str) -> tuple[float, float]: mapping = { "2x2": (1.5, 1.5), "2x3": (1.5, 2.5), "2x4": (1.5, 3.5), "2x6": (1.5,...")
- 01:49, 11 March 2026 Wall instances.yaml (hist | edit) [942 bytes] Marcin (talk | contribs) (Created page with "instances: - id: wall_4x8_2x6_24oc_osb716_south family: framed_wall_panel parameters: nominal_width_ft: 4.0 nominal_height_ft: 8.0 stud_lumber_nominal: "2x6" stud_spacing_oc_in: 24 osb_thickness_in: 0.4375 exterior_face: south reference_house_orientation: faces_south - id: wall_4x8_2x6_16oc_osb716_south family: framed_wall_panel parameters: nominal_width_ft: 4.0 nominal_height_ft: 8.0 stud_...")
- 01:48, 11 March 2026 Framed wall panel schema.yaml (hist | edit) [1,716 bytes] Marcin (talk | contribs) (Created page with "family: framed_wall_panel version: 1.0 description: > Parametric framed wall panel with selectable framed height, module width, stud lumber size, stud spacing, and exterior sheathing orientation. dimension_convention: nominal_width_ft_means: framed_module_width nominal_height_ft_means: framed_panel_height description: > Module height refers to the framed panel height (bottom plate to top plate). Exterior OSB sheathing may extend above the framing and...")
- 01:16, 11 March 2026 Validate semantics.py (hist | edit) [7,778 bytes] Marcin (talk | contribs) (Created page with "#!/usr/bin/env python3 import math import sys from pathlib import Path from typing import Any import yaml def load_yaml(path: Path) -> Any: with path.open("r", encoding="utf-8") as f: return yaml.safe_load(f) def is_number(value: Any) -> bool: return isinstance(value, (int, float)) and not isinstance(value, bool) def nominal_to_actual_lumber(nominal: str) -> tuple[float, float]: """ Returns (actual_thickness_in, actual_depth_in) for no...")
- 20:56, 10 March 2026 Iconic CAD Workflow Concept Detail (hist | edit) [7,441 bytes] Marcin (talk | contribs) (Created page with "= How to Map Icons to CAD = Icon-to-CAD mapping is a compiler workflow. A human arranges icons visually. The system interprets each icon as a semantic module. A compiler then generates actual CAD geometry from those module definitions. The full workflow is: {| class="wikitable" ! Step ! Name ! What Happens ! Output |- | 1 | Define module ontology | Define the universe of parts or assemblies that the system supports, such as walls, windows, doors, beams, motors, shaft...")
- 23:26, 9 March 2026 Iconic CAD Workflow Example (hist | edit) [28,844 bytes] Marcin (talk | contribs) (Created page with " = Iconic CAD Workflow for Wall Modules = # Author wall family schema # Run syntactic validator # Run semantic validator # Compile batch of wall modules # Publish module CAD + icon library # Arrange icons in graphics tool # Export to SVG # Normalize SVG # Parse icon positions, IDs, rotations, adjacency # Run assembly syntax validator # Run assembly semantic validator # Compile full CAD assembly # Run post-processing # Export BOM, cut list, and reports")
- 23:14, 9 March 2026 LEGO (hist | edit) [92 bytes] Marcin (talk | contribs) (Created page with "https://en.wikipedia.org/wiki/Lego Lego House - headquarters - is made of 25 million legos.")
- 23:12, 9 March 2026 Parametric CAD (hist | edit) [46 bytes] Marcin (talk | contribs) (Created page with "https://www.google.com/search?q=parametric+cad")
- 23:11, 9 March 2026 SimCity (hist | edit) [37 bytes] Marcin (talk | contribs) (Created page with "https://en.wikipedia.org/wiki/SimCity")
- 22:16, 9 March 2026 Extreme Degeneracy (hist | edit) [67 bytes] Marcin (talk | contribs) (Created page with "Or Radical Degeneracy - is taking Dgeneracy to its limit.")
- 21:23, 9 March 2026 Induction Outcomes (hist | edit) [3,100 bytes] Marcin (talk | contribs) (Created page with "=FBA Induction Outcomes= *Upgrading one's goals to civilizations grade relevance of life-work integration - or influencing, innovating, and creating institutions of civilization")
- 18:57, 9 March 2026 Iconic CAD Automation (hist | edit) [2,425 bytes] Marcin (talk | contribs) (Created page with "Iconic CAD automation is a process for enabing CAD design using icons that can be manipulated to generate technical designs in CAD. The goal is to")
- 17:41, 9 March 2026 Iconic CAD Workflow Specification (hist | edit) [9,084 bytes] Marcin (talk | contribs) (Created page with "=Current Scope= Current scope is the Seed Eco-Home, to be applied to all machines in a distributed way. *1000 parts *1000 modules *1000 tools *1000 skills Require 12 minutes each. Icon Thumbnail CAD Schema") originally created as "Iconic CAD Workflow Specifiation"
- 16:57, 9 March 2026 Drill Bill of Materials (hist | edit) [283 bytes] NikoR (talk | contribs) (Created page with "<html> <iframe src="https://docs.google.com/spreadsheets/d/e/2PACX-1vRZNOlKGNIbJGJqS0bWlyqj4lCpU5j-8ZZ4Xgzz3t3joZcJS84ijqR4IT28AkXSDktGZFtFJBqzq08D/pubhtml?widget=true&headers=false"></iframe> </html>")
- 16:36, 9 March 2026 Initial Part Research (hist | edit) [330 bytes] NikoR (talk | contribs) (Created page with "<html> <iframe src="https://docs.google.com/presentation/d/e/2PACX-1vTpI94PWmIVcexP2kneGgLJb6zVgEuYCBaumhF80F-ErUcnYtFrcZR7FF40IiykTohsA6aB7FsFG0Aa/pubembed?start=false&loop=false&delayms=3000" frameborder="0" width="960" height="569" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"></iframe> </html>")
- 16:34, 9 March 2026 Drill Battery Research (hist | edit) [330 bytes] NikoR (talk | contribs) (Created page with "<iframe src="https://docs.google.com/presentation/d/e/2PACX-1vTQjMhCLu7_32T6HXw7Wdl-f1hVS1LkyiINXa-zTA68003nP5pOGa5j-x98uXX-PvfvJom9TOX0BW9N/pubembed?start=false&loop=false&delayms=3000" frameborder="0" width="960" height="569" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"></iframe>")
- 04:21, 9 March 2026 AI X-Risk (hist | edit) [2,017 bytes] Marcin (talk | contribs) (Created page with "Key presentations: Stuart Russell - Nobel Prize winner - balanced discussion - https://www.youtube.com/watch?app=desktop&v=P7Y-fynYsgE https://www.youtube.com/watch?v=O4XXkO3uo8c https://www.youtube.com/watch?v=0QmDcQIvSDc&t=3s https://www.youtube.com/watch?v=xoVJKj8lcNQ https://www.youtube.com/watch?v=EV7WhVT270Q&t=5s")
- 03:52, 9 March 2026 Applied Civilization Lab (hist | edit) [2,256 bytes] Marcin (talk | contribs) (Created page with "= Applied Civilization Lab = The Applied Civilization Lab develops and tests the foundations of a flourishing human civilization. Humanity possesses extraordinary technological capability, yet current systems of economics, technology development, and artificial intelligence are creating existential risks, ecological collapse, and extreme concentrations of power. The Applied Civilization Lab exists to prototype a different trajectory. We conduct real-world experiments...")
- 03:47, 9 March 2026 Human Flourishing (hist | edit) [5,891 bytes] Marcin (talk | contribs) (Created page with "= Definition of Human Flourishing = Human flourishing is the condition in which human societies organize technology, institutions, and knowledge systems to reliably produce freedom, prosperity, ecological balance, and meaningful participation in civilization through open collaboration between humans and machines. Flourishing occurs when civilization satisfies the following structural conditions. = Universal Human Well-Being = Human flourishing requires that all peopl...")
- 03:26, 9 March 2026 OSE Institutional Architecture (hist | edit) [3,641 bytes] Marcin (talk | contribs) (Created page with "= Institutional Architecture for Collaborative Civilization = Open Source Ecology operates as a mission-driven ecosystem designed to develop the infrastructure, knowledge systems, and institutions required for a collaborative civilization. The program functions as an integrated research, education, and field experimentation architecture. == Research Institutes == * '''Applied Civilization Lab''' ** Research and development of civilization-scale systems ** Ethical inte...")
- 02:46, 9 March 2026 Open Source X-Ray Software (hist | edit) [83 bytes] Marcin (talk | contribs) (Created page with "https://home.cern/news/news/knowledge-sharing/new-open-source-medical-imaging-tools")
- 23:55, 8 March 2026 Civilization-Scale Intelligence Systems (hist | edit) [2,285 bytes] Marcin (talk | contribs) (Created page with "Some thinkers propose abandoning the “superintelligence agent” model entirely. Instead build civilization-scale intelligence systems. Instead of one brain: distributed cognition: humans AI assistants institutions open knowledge This resembles: scientific communities open-source development Interestingly, this is close to the philosophy behind Open Source Ecology — distributed collaborative intelligence building infrastructure. In that model: AI is not...")
- 23:42, 8 March 2026 If Anyone Builds It, Everyone Dies (hist | edit) [63 bytes] Marcin (talk | contribs) (Created page with "Yudkowsky book on the dangers of artificial super intelligence.")
- 23:36, 8 March 2026 AI Ethics (hist | edit) [1,595 bytes] Marcin (talk | contribs) (Created page with "*People do non share common values universally - thus wthics cannot be defined. *Most people are assholes, namely not fully developed intellectually, ethically, etc. See Theories of Human Development. Poor mental models of reality abound. This is a fundamental consequence of General Semantics, which was proposed by Korzybski as a seminal work in civilization engineering. The problem is summarized: The map is not the territory. Thus, 'the quest for truth' must be...")
- 23:20, 8 March 2026 Transformers (hist | edit) [375 bytes] Marcin (talk | contribs) (Created page with "Transformers compute relationships between tokens, and the tokenization scheme must reflect the natural structure of the input data so that meaningful relationships can be learned.")
- 22:59, 8 March 2026 Docker Isolation (hist | edit) [640 bytes] Marcin (talk | contribs) (Created page with "Docker has its own filesystem namespace, process namespace, network namespace, and its own apps. You cannot see filesystem of host inside a container. You can mount host filesystem, and can don't read only as well. To mount, Run -v hostfilesys : dockerfilesys")
- 18:52, 7 March 2026 If Anyone Builds it Everyone Dies (hist | edit) [310 bytes] Marcin (talk | contribs) (Created page with "=About= Book on SAI by Yudlowsky. =Notes= *Experts estimate 1 in 6 chance of human extintion from AI today. =For= *We don't understand it *Reasonable speculation *Comparison to nuke annihilation - 1% in the next 100 years. =Against= *AI abstraction can understand it? Some way to understrand via abstraction.")
- 18:21, 7 March 2026 Genie Garage Door Opener (hist | edit) [43 bytes] Marcin (talk | contribs) (Created page with "https://photos.app.goo.gl/tBThyUKJFn1epPEC8")
- 01:05, 7 March 2026 Civilization Builder Skill Stack (hist | edit) [10,861 bytes] Marcin (talk | contribs) (Created page with "https://chatgpt.com/share/69ab79b5-ca1c-8010-b310-0c66fe07fa1d = Civilization Builder Skill Stack = A civilization builder in the Open Source Ecology sense is not merely a specialist, manager, or inventor. The role is to understand and integrate the full stack required to design, build, document, replicate, and govern open-source productive civilization. The aim is not that every person becomes world-class in every domain. The aim is that one develops sufficient embod...")
- 18:54, 6 March 2026 Open Collaborative Deep Generalists (hist | edit) [341 bytes] Marcin (talk | contribs) (Created page with "https://chatgpt.com/share/69ab2249-bcbc-8010-8422-c92c770400ec 20th century was an anomaly regarding theoretical guys making most of the innovations such as Einstein? Not really, Einstein built stiff early on in his life. But it remains that the university separated theory from practice, solidifying specialization. OSE is changing that.")
- 07:30, 6 March 2026 Lifehacking (hist | edit) [88 bytes] Marcin (talk | contribs) (Created page with "https://www.youtube.com/watch?v=RYxaX1RYwK8 With James Norris of https://upgradable.com")
- 07:28, 6 March 2026 Builder Crash Course + 6 Weeks Production Idea (hist | edit) [175 bytes] Marcin (talk | contribs) (Created page with "Framed around skill-heavy Crash Course, and production build in next 6 weeks - with R&D workflow around that. progressive system building")
- 05:54, 6 March 2026 4-8 Hour Benchmark of AI (hist | edit) [321 bytes] Marcin (talk | contribs) (Created page with "Equivalent of 4-8 human hours achieved in one prompt (seconds to minutes) - [https://chatgpt.com/share/69aa6bd2-071c-8010-8644-25ad208ea557]")
- 05:49, 6 March 2026 The Economics of Abundance: Achieving it and Sustaining It (hist | edit) [453 bytes] Marcin (talk | contribs) (Created page with "https://www.youtube.com/watch?v=nGhzciTUz9E")
- 00:14, 6 March 2026 Diagnosing and Fixing Open Grounds (hist | edit) [2,226 bytes] Marcin (talk | contribs) (Created page with "= Diagnosing and Fixing an Open Ground = {| class="wikitable" ! Step ! Diagnostic Action ! What You Are Checking ! Expected Result ! If Problem Found ! Typical Fix |- | 1 | Confirm tester reading on multiple outlets on the same circuit | Determine if the problem is local to one receptacle or circuit-wide | Only one outlet shows open ground | Ground likely disconnected at that box | Proceed to inspect that receptacle box |- | 2 | Turn off breaker and remove receptacle co...")
- 23:44, 5 March 2026 MSR WhisperLite Universal (hist | edit) [7,221 bytes] Eric (talk | contribs) (Created Page + Added Basic Sections/Info)
- 22:25, 5 March 2026 Proof of Production of an Open Industrial Ecosystem (hist | edit) [233 bytes] Marcin (talk | contribs) (Created page with "Seed Eco-Home could be a proof-of-production for an open industrial ecosystem. With 100 builds by 10 independent teams, this means prime time and industrial inflection. https://chatgpt.com/share/69aa02ce-7f4c-8010-ae49-d037cf981600")
- 22:16, 5 March 2026 Open Collaborative Industry (hist | edit) [108 bytes] Marcin (talk | contribs) (Created page with "Is a prerequisite for distribution of power. https://chatgpt.com/share/69aa0074-7f14-8010-947f-eb066ce4d713")
- 20:51, 5 March 2026 Seed Eco-Home 4 Troubleshooting and Repair (hist | edit) [140 bytes] Marcin (talk | contribs) (Created page with "https://docs.google.com/presentation/d/13SA2f-QDnyPuDqmNcQlBoj_M85DHxOB1XWWdJGw1CyY/edit?slide=id.g2d1808d871e_0_6#slide=id.g2d1808d871e_0_6")
- 19:06, 5 March 2026 OSE Extreme Manufacturing Specification (hist | edit) [261 bytes] Marcin (talk | contribs) (Created page with "*Workpiece pokayoke *tool-level pokayoke *Design pokayoke")
- 18:49, 5 March 2026 Swarm Productivity (hist | edit) [151 bytes] Marcin (talk | contribs) (Created page with "Source [https://chatgpt.com/share/69a9cfe9-79b8-8010-aed4-9d1b59b85ed9] Labor productivity = skill breadth × task availability × workflow modularity")
- 18:07, 5 March 2026 Freedom is Responsibility (hist | edit) [107 bytes] Marcin (talk | contribs) (Created page with "https://chatgpt.com/share/69a9c627-3088-8010-a6ce-576bb0b14d8a Sartre says we are ''condemned to be free''")
- 17:31, 5 March 2026 Waste Ops Specification (hist | edit) [825 bytes] Marcin (talk | contribs) (Created page with "*Rock, ceramic shredded or crushed =Equipment= *gasifier incinerator for space heating - with integrated thermal battery and cement tank storage or metal tank storage *recycling center *Rock crusher - aggregate from all rock ceramic,inert material. Encapsulation in concrete for other material. *Chipper *pelletizer *plastic to fuel reactor *3D printer *Composting, soil making *sawdust for biodigester or wood pellets *charcoal kiln *charcoal engine *biidigeater *dehydrato...")
- 05:08, 5 March 2026 Chokepoint Hypothesis for AGI (hist | edit) [176 bytes] Marcin (talk | contribs) (Created page with "https://chatgpt.com/share/69a90f47-0dbc-8010-8e0c-93ffa4ce714f AGI will not kill us because it's enabling centralized technosphere is fragile and can be shut down to intervene")