All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Open Source Ecology. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 04:54, 12 March 2026 Marcin talk contribs created page Cool Podcasts (Created page with "*Diary of a CEO - [https://www.youtube.com/@TheDiaryOfACEO]")
- 00:33, 12 March 2026 Marcin talk contribs uploaded File:House1meta.svg
- 00:33, 12 March 2026 Marcin talk contribs created page File:House1meta.svg
- 22:12, 11 March 2026 Marcin talk contribs created page From Factory to Foreclosure (Created page with "Berkshire Hathaway. Mofos buyin up homes and land and everything in between. Ok now generate house. You probably need to give me a compiler?")
- 21:53, 11 March 2026 Marcin talk contribs uploaded File:1005inspection.pdf
- 21:53, 11 March 2026 Marcin talk contribs created page File:1005inspection.pdf
- 20:41, 11 March 2026 Marcin talk contribs created page Edit PDF (Redirected page to Fillable PDF Forms) Tag: New redirect
- 17:42, 11 March 2026 Marcin talk contribs created page Induction Program (Created page with " *Each student takes on a certain infrastructure -/governance, manufacturing, education, law, healthcare, agriculture, etc - and stewards that enterprise area for DMS Distributive Enterprise goals. *2 days work 50/50 net revenue share *Toms shoes model for housing - R&D dedicated to a.sound revenue model for free.housing.")
- 17:35, 11 March 2026 Marcin talk contribs created page Abundance Money (Created page with "Non inflationary money of unlimited supply. Huh?")
- 17:22, 11 March 2026 Marcin talk contribs created page Lab One (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 Marcin talk contribs created page Appropriate Transhumanism (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 Marcin talk contribs created page Applied Psychology (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")
- 05:24, 11 March 2026 Marcin talk contribs uploaded File:Iconic cad icons.zip
- 05:24, 11 March 2026 Marcin talk contribs created page File:Iconic cad icons.zip
- 05:23, 11 March 2026 Marcin talk contribs uploaded File:Workingfile.svg
- 05:23, 11 March 2026 Marcin talk contribs created page File:Workingfile.svg
- 03:05, 11 March 2026 Marcin talk contribs uploaded File:Cad library.zip
- 03:05, 11 March 2026 Marcin talk contribs created page File:Cad library.zip
- 03:05, 11 March 2026 Marcin talk contribs created page Wall Part Library (Created page with "File:cad_library.zip")
- 02:28, 11 March 2026 Marcin talk contribs created page Validate wall geometry.py (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 Marcin talk contribs created page Validate syntax.py (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 Marcin talk contribs created page Generate wall library.py (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 Marcin talk contribs created page Wall instances.yaml (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 Marcin talk contribs created page Framed wall panel schema.yaml (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 Marcin talk contribs created page Validate semantics.py (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...")
- 01:02, 11 March 2026 Marcin talk contribs created page Wall Syntactic Validator (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:...")
- 21:44, 10 March 2026 Marcin talk contribs created page 3 Instances of Walls (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_...")
- 21:35, 10 March 2026 Marcin talk contribs created page Wall Schema for Iconic CAD Workflow (Created page with "family: framed_wall_panel version: 1.0 description: > Parametric framed wall panel with selectable nominal width, nominal height, stud lumber size, stud spacing, and exterior sheathing orientation. parameters: nominal_width_ft: type: float unit: ft min: 1.0 max: 8.0 default: 4.0 description: Overall nominal module width nominal_height_ft: type: float unit: ft min: 4.0 max: 20.0 default: 9.0 description: Overall n...")
- 20:56, 10 March 2026 Marcin talk contribs created page Iconic CAD Workflow Concept Detail (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 Marcin talk contribs created page Iconic CAD Workflow Example (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 Marcin talk contribs created page LEGO (Created page with "https://en.wikipedia.org/wiki/Lego Lego House - headquarters - is made of 25 million legos.")
- 23:12, 9 March 2026 Marcin talk contribs created page Parametric CAD (Created page with "https://www.google.com/search?q=parametric+cad")
- 23:11, 9 March 2026 Marcin talk contribs created page SimCity (Created page with "https://en.wikipedia.org/wiki/SimCity")
- 22:16, 9 March 2026 Marcin talk contribs created page Extreme Degeneracy (Created page with "Or Radical Degeneracy - is taking Dgeneracy to its limit.")
- 22:02, 9 March 2026 Marcin talk contribs uploaded File:Underconstruction2026.png
- 22:02, 9 March 2026 Marcin talk contribs created page File:Underconstruction2026.png
- 21:23, 9 March 2026 Marcin talk contribs created page Induction Outcomes (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")
- 19:06, 9 March 2026 Marcin talk contribs created page Expertise Embedded Design Principle (Redirected page to Expertise-Embedded Design Principle) Tag: New redirect
- 18:57, 9 March 2026 Marcin talk contribs created page Iconic CAD Automation (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:55, 9 March 2026 Marcin talk contribs moved page Iconic CAD Workflow Specifiation to Iconic CAD Workflow Specification
- 17:41, 9 March 2026 Marcin talk contribs created page Iconic CAD Workflow Specifiation (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")
- 04:21, 9 March 2026 Marcin talk contribs created page AI X-Risk (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:54, 9 March 2026 Marcin talk contribs created page Flourishing (Redirected page to Human Flourishing) Tag: New redirect
- 03:52, 9 March 2026 Marcin talk contribs created page Applied Civilization Lab (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 Marcin talk contribs created page Human Flourishing (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 Marcin talk contribs created page OSE Institutional Architecture (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 Marcin talk contribs created page Open Source X-Ray Software (Created page with "https://home.cern/news/news/knowledge-sharing/new-open-source-medical-imaging-tools")
- 23:55, 8 March 2026 Marcin talk contribs created page Civilization-Scale Intelligence Systems (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 Marcin talk contribs created page If Anyone Builds It, Everyone Dies (Created page with "Yudkowsky book on the dangers of artificial super intelligence.")
- 23:36, 8 March 2026 Marcin talk contribs created page AI Ethics (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...")