├── .all-contributorsrc ├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .flowconfig ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── create-a-new-task.md │ ├── create-an-epic.md │ └── feature_request.md ├── dependabot.yml ├── pr-labeler.yml ├── pull_request_template.md └── workflows │ ├── deploy-gh-pages.yml │ ├── main.yml │ └── poolparty.yml ├── .gitignore ├── .kodiak.toml ├── .nvmrc ├── .prettierignore ├── .prettierrc.js ├── Dockerfile ├── LICENSE ├── README.md ├── blogPosts └── en │ └── blog │ ├── Editorial │ ├── arranging-participation.mdx │ ├── constituting-consensus.mdx │ ├── kernel-returns.mdx │ ├── launching-kb3.mdx │ ├── signature-stories.mdx │ ├── summer-of-love.mdx │ └── what-is-kernel.mdx │ └── community │ ├── celo-space.mdx │ ├── free-learn.mdx │ ├── freedom-in-learning.mdx │ ├── kernel-a-refreshed-definition.mdx │ ├── number-one-identity.mdx │ ├── scholarships.mdx │ ├── setting-prison-art-free.mdx │ └── web3-contracting.mdx ├── content ├── all-contributors.json ├── cn │ ├── UI.json │ └── start │ │ ├── code-of-conduct.mdx │ │ ├── index.mdx │ │ └── principled-people.mdx ├── en │ ├── UI.json │ ├── build │ │ ├── culture │ │ │ └── index.mdx │ │ ├── dance │ │ │ ├── classes.mdx │ │ │ ├── glossary.mdx │ │ │ ├── index.mdx │ │ │ └── inspiration.mdx │ │ ├── daos │ │ │ ├── cosmic-reality.mdx │ │ │ ├── expanding-universe.mdx │ │ │ ├── index.mdx │ │ │ ├── infinite-learning.mdx │ │ │ ├── open-multiverse.mdx │ │ │ ├── past-light.mdx │ │ │ └── record.mdx │ │ ├── decentralized-ai │ │ │ ├── analogue-imaginings.mdx │ │ │ ├── generative-adversaries.mdx │ │ │ ├── index.mdx │ │ │ ├── into-the-ocean.mdx │ │ │ └── punks-python.mdx │ │ ├── defi │ │ │ ├── funding-grants.mdx │ │ │ └── index.mdx │ │ ├── desci │ │ │ ├── index.mdx │ │ │ └── open-questions.mdx │ │ ├── games │ │ │ ├── freedom.mdx │ │ │ ├── index.mdx │ │ │ ├── infinite.mdx │ │ │ ├── patterns.mdx │ │ │ ├── recordings.mdx │ │ │ └── value.mdx │ │ ├── index.mdx │ │ ├── nfteasy │ │ │ ├── character-types.mdx │ │ │ ├── index.mdx │ │ │ ├── long-life-libraries.mdx │ │ │ ├── perma-network-culture.mdx │ │ │ └── woulds-tries.mdx │ │ ├── open-data │ │ │ ├── index.mdx │ │ │ ├── trans-local.mdx │ │ │ ├── transact.mdx │ │ │ ├── transcend.mdx │ │ │ └── transfinity.mdx │ │ ├── outsmarting-contracts │ │ │ ├── index.mdx │ │ │ ├── lifting-the-veil.mdx │ │ │ ├── random-order.mdx │ │ │ ├── reenter-the-kingdom.mdx │ │ │ └── true-store.mdx │ │ ├── regeneration │ │ │ ├── index.mdx │ │ │ ├── locus-of-control.mdx │ │ │ ├── phoenix.mdx │ │ │ ├── points-of-leverage.mdx │ │ │ └── principled-patterning.mdx │ │ └── sati │ │ │ ├── citta.mdx │ │ │ ├── dhamma.mdx │ │ │ ├── index.mdx │ │ │ ├── kayagata.mdx │ │ │ └── vedana.mdx │ ├── conversation │ │ ├── hospitality │ │ │ ├── deep-response.mdx │ │ │ └── index.mdx │ │ ├── in-visibility.mdx │ │ ├── index.mdx │ │ ├── oral-testimony.mdx │ │ ├── power-less.mdx │ │ ├── reciprocity.mdx │ │ ├── sand-talk.mdx │ │ ├── thanksgiving.mdx │ │ └── true-voice.mdx │ ├── guiding │ │ ├── engineers │ │ │ ├── index.mdx │ │ │ ├── navigation.mdx │ │ │ ├── search.mdx │ │ │ └── translation.mdx │ │ ├── guides │ │ │ ├── index.mdx │ │ │ ├── interviews.mdx │ │ │ ├── juntos.mdx │ │ │ └── mentors.mdx │ │ ├── index.mdx │ │ ├── privacy.mdx │ │ ├── terms-of-service.mdx │ │ └── writers │ │ │ ├── frontmatter.mdx │ │ │ ├── how-to.mdx │ │ │ ├── index.mdx │ │ │ ├── recipes │ │ │ ├── components.mdx │ │ │ ├── icons.mdx │ │ │ └── index.mdx │ │ │ └── translation.mdx │ ├── index.mdx │ ├── koans │ │ ├── index.mdx │ │ ├── module-1.mdx │ │ ├── module-3.mdx │ │ └── module-7.mdx │ ├── learn │ │ ├── index.mdx │ │ ├── module-0 │ │ │ ├── conversation.mdx │ │ │ ├── index.mdx │ │ │ ├── money-language.mdx │ │ │ ├── play-of-pattern.mdx │ │ │ ├── purpose.mdx │ │ │ ├── trust.mdx │ │ │ └── weird-ways.mdx │ │ ├── module-1 │ │ │ ├── dreamers.mdx │ │ │ ├── index.mdx │ │ │ ├── joyful-subversion.mdx │ │ │ ├── meaning.mdx │ │ │ ├── playdough-protocols.mdx │ │ │ ├── understanding-ethereum.mdx │ │ │ └── value.mdx │ │ ├── module-2 │ │ │ ├── banking.mdx │ │ │ ├── better-questions.mdx │ │ │ ├── debt.mdx │ │ │ ├── engineering.mdx │ │ │ ├── index.mdx │ │ │ ├── money-speech.mdx │ │ │ └── shelling-out.mdx │ │ ├── module-3 │ │ │ ├── freedom.mdx │ │ │ ├── humility.mdx │ │ │ ├── index.mdx │ │ │ ├── intention.mdx │ │ │ ├── lock-it-open.mdx │ │ │ ├── remember.mdx │ │ │ └── time.mdx │ │ ├── module-4 │ │ │ ├── art.mdx │ │ │ ├── consensus.mdx │ │ │ ├── governance.mdx │ │ │ ├── index.mdx │ │ │ ├── liberal-radical.mdx │ │ │ ├── self-enquiry.mdx │ │ │ └── the-garden.mdx │ │ ├── module-5 │ │ │ ├── amazon-unbounded-search.mdx │ │ │ ├── incentives.mdx │ │ │ ├── index.mdx │ │ │ ├── listening-stories.mdx │ │ │ ├── prosocial-value.mdx │ │ │ ├── reveal-the-universe.mdx │ │ │ └── the-peoples-narrative.mdx │ │ ├── module-6 │ │ │ ├── censorship-resistance.mdx │ │ │ ├── duende.mdx │ │ │ ├── index.mdx │ │ │ ├── inventing-on-principle.mdx │ │ │ ├── learn.mdx │ │ │ ├── participate.mdx │ │ │ └── serenity.mdx │ │ ├── module-7 │ │ │ ├── giving.mdx │ │ │ ├── index.mdx │ │ │ ├── no-paradigm.mdx │ │ │ ├── perfection.mdx │ │ │ ├── scale-ability.mdx │ │ │ └── the-gift.mdx │ │ └── module-metta │ │ │ ├── beautiful-homes.mdx │ │ │ ├── build-native-altars.mdx │ │ │ ├── index.mdx │ │ │ ├── relating-kernel.mdx │ │ │ ├── school-sucks.mdx │ │ │ └── start-small.mdx │ ├── resources │ │ ├── culture.mdx │ │ ├── design-ux.mdx │ │ ├── development.mdx │ │ ├── index.mdx │ │ ├── research.mdx │ │ └── security.mdx │ ├── start │ │ ├── code-of-conduct.mdx │ │ ├── faq.mdx │ │ ├── free-learning.mdx │ │ ├── how-to-use.mdx │ │ ├── index.mdx │ │ └── principled-people.mdx │ ├── tokens │ │ ├── index.mdx │ │ ├── token-studies │ │ │ ├── dap-ps.mdx │ │ │ ├── free-learn │ │ │ │ ├── index.mdx │ │ │ │ ├── learnings.mdx │ │ │ │ ├── og-paper.mdx │ │ │ │ └── spec.mdx │ │ │ ├── honour.mdx │ │ │ ├── index.mdx │ │ │ ├── maker-difference.mdx │ │ │ ├── pan.mdx │ │ │ ├── rai.mdx │ │ │ ├── restoring-justice.mdx │ │ │ ├── rocket-pool.mdx │ │ │ └── signature-economies.mdx │ │ └── tokenomics │ │ │ ├── adaptive-sharing.mdx │ │ │ ├── communal-treasure.mdx │ │ │ ├── flying-high.mdx │ │ │ ├── index.mdx │ │ │ ├── math.mdx │ │ │ ├── mounting-up.mdx │ │ │ ├── nouns.mdx │ │ │ ├── ocean-curves.mdx │ │ │ ├── regenerative-commons.mdx │ │ │ └── shared-wisdom.mdx │ └── track-gaming │ │ ├── index.mdx │ │ ├── module-0 │ │ ├── crafted.mdx │ │ ├── curated.mdx │ │ └── index.mdx │ │ ├── module-1 │ │ ├── crafted.mdx │ │ ├── curated.mdx │ │ └── index.mdx │ │ ├── module-2 │ │ ├── crafted.mdx │ │ ├── curated.mdx │ │ └── index.mdx │ │ ├── module-3 │ │ ├── crafted.mdx │ │ ├── curated.mdx │ │ └── index.mdx │ │ ├── module-4 │ │ ├── crafted.mdx │ │ ├── curated.mdx │ │ └── index.mdx │ │ ├── module-5 │ │ ├── crafted.mdx │ │ ├── curated.mdx │ │ └── index.mdx │ │ ├── module-6 │ │ ├── crafted.mdx │ │ ├── curated.mdx │ │ └── index.mdx │ │ └── x-genesis │ │ ├── collected.mdx │ │ └── index.mdx ├── es │ ├── UI.json │ ├── build │ │ └── outsmarting-contracts │ │ │ ├── index.mdx │ │ │ ├── lifting-the-veil.mdx │ │ │ ├── random-order.mdx │ │ │ ├── reenter-the-kingdom.mdx │ │ │ └── true-store.mdx │ └── learn │ │ ├── module-0 │ │ ├── conversation.mdx │ │ ├── index.mdx │ │ ├── money-language.mdx │ │ ├── play-of-pattern.mdx │ │ ├── purpose.mdx │ │ └── trust.mdx │ │ ├── module-1 │ │ ├── dreamers.mdx │ │ ├── index.mdx │ │ ├── joyful-subversion.mdx │ │ ├── meaning.mdx │ │ ├── playdough-protocols.mdx │ │ ├── understanding-ethereum.mdx │ │ └── value.mdx │ │ └── module-2 │ │ └── better-questions.mdx ├── fellows.json ├── fr │ ├── UI.json │ ├── index.mdx │ ├── resources │ │ ├── culture.mdx │ │ ├── design-ux.mdx │ │ ├── development.mdx │ │ ├── index.mdx │ │ ├── research.mdx │ │ └── security.mdx │ └── start │ │ ├── faq.mdx │ │ ├── free-learning.mdx │ │ ├── how-to-use.mdx │ │ ├── index.mdx │ │ └── principled-people.mdx ├── pr │ ├── UI.json │ └── learn │ │ ├── index.mdx │ │ └── module-0 │ │ ├── conversation.mdx │ │ ├── index.mdx │ │ ├── money-language.mdx │ │ ├── play-of-pattern.mdx │ │ ├── purpose.mdx │ │ └── trust.mdx └── projects.json ├── docker-compose.yml ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package.json ├── scripts └── allcontributors-transformer.js ├── src ├── build-utils.js ├── gatsby-plugin-theme-ui │ ├── components.js │ └── index.js ├── honour │ ├── connect.js │ └── constants.js ├── modules │ ├── audioPlayer │ │ ├── PlayControl.js │ │ ├── ProgressBar.js │ │ ├── index.js │ │ ├── pause.svg │ │ └── play.svg │ ├── authors │ │ ├── Authors.js │ │ ├── components │ │ │ ├── GridCell.js │ │ │ ├── ListElement.js │ │ │ └── index.js │ │ ├── data │ │ │ ├── allContributorKeys.js │ │ │ └── index.js │ │ ├── index.js │ │ └── transformers │ │ │ ├── MDXtoAuthor.js │ │ │ ├── contributorsData.js │ │ │ ├── contributorsFilter.js │ │ │ └── index.js │ ├── blog │ │ ├── BlogAuthor.js │ │ ├── BlogCard.js │ │ ├── BlogContributors.js │ │ ├── BlogHome.js │ │ ├── BlogResult.js │ │ └── index.js │ ├── fellows │ │ ├── Fellows.js │ │ ├── all-fellows.js │ │ └── index.js │ ├── flashcard │ │ ├── card.js │ │ ├── flash.js │ │ └── index.js │ ├── layouts │ │ ├── blogPost_layout.js │ │ ├── default_layout.js │ │ ├── global.css │ │ └── site_layout.js │ ├── localization │ │ ├── LanguageSelector.js │ │ ├── context.js │ │ ├── index.js │ │ └── useTranslation.js │ ├── navigation │ │ ├── Breadcrumbs.js │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── Link.js │ │ ├── MobileNav.js │ │ ├── Pager │ │ │ ├── Pager.js │ │ │ ├── index.js │ │ │ └── pager-utils.js │ │ ├── Sidenav.js │ │ ├── Sidenav_Node.js │ │ ├── TableOfContents.js │ │ ├── calculateTreeData.js │ │ ├── context.js │ │ ├── getLinkIcon.js │ │ └── index.js │ ├── notifications │ │ └── context.js │ ├── pageMoneySpeech │ │ ├── ConnectButton.js │ │ ├── Content.js │ │ ├── HonourButton.js │ │ ├── HonourConnector.js │ │ └── index.js │ ├── projects │ │ ├── Projects.js │ │ └── index.js │ ├── search │ │ ├── SearchHit.js │ │ ├── SearchInput.js │ │ └── index.js │ ├── testimonials │ │ ├── Card.js │ │ ├── CardGrid.js │ │ ├── helpers │ │ │ ├── emojis.js │ │ │ └── parsingConfig.js │ │ └── index.js │ ├── ui │ │ ├── Accordion.js │ │ ├── Button.js │ │ ├── CTA.js │ │ ├── Callout.js │ │ ├── Categories.js │ │ ├── Checklist.js │ │ ├── Chocolate.js │ │ ├── Code.js │ │ ├── Column.js │ │ ├── Divider.js │ │ ├── FlipCard.js │ │ ├── FlipCardContainer.js │ │ ├── InfoBlock.js │ │ ├── List.js │ │ ├── Process.js │ │ ├── Select.js │ │ ├── StatusBanner.js │ │ ├── Table.js │ │ ├── Tout.js │ │ ├── cardData.js │ │ ├── heading │ │ │ ├── Heading.js │ │ │ ├── components │ │ │ │ ├── Heading1.js │ │ │ │ ├── Heading2.js │ │ │ │ ├── Heading3.js │ │ │ │ ├── Heading4.js │ │ │ │ ├── Heading5.js │ │ │ │ └── Subtitle.js │ │ │ └── index.js │ │ └── index.js │ ├── utility │ │ ├── Aligner.js │ │ ├── Indent.js │ │ ├── Sound.js │ │ ├── Video.js │ │ ├── icon-512x512.png │ │ ├── index.js │ │ └── seo.js │ └── web3 │ │ ├── button.js │ │ ├── constants.js │ │ ├── index.js │ │ └── modal.js ├── pages │ ├── 404.js │ ├── en │ │ ├── blog.js │ │ ├── learn │ │ │ └── module-2 │ │ │ │ └── money-speech.js │ │ └── love.js │ └── index.js └── utils.js ├── static ├── CNAME ├── fonts │ ├── LibreFranklin-Bold.ttf │ ├── LibreFranklin-BoldItalic.ttf │ ├── LibreFranklin-Light.ttf │ ├── LibreFranklin-LightItalic.ttf │ ├── MiriamLibre-Bold.ttf │ └── MiriamLibre-Regular.ttf └── images │ ├── FreeLearn_v3.png │ ├── Learning-Curve-v2.png │ ├── Logo-Dai-4x.png │ ├── Logo_Dai.png │ ├── Logo_Maker.png │ ├── Logo_Maker_White.svg │ ├── Mark_Maker@4x.png │ ├── RocketPool.png │ ├── RocketPool1.png │ ├── avatar-default.png │ ├── blog_headers │ ├── 1000platos-1914-14-800.png │ ├── 3D-monster-maze.png │ ├── brainwave.jpg │ ├── ceci-nest-pas-un-esprit.png │ ├── community_1.png │ ├── community_2.png │ ├── community_3.png │ ├── community_4.png │ ├── discourse.png │ ├── editorial_1.png │ ├── editorial_2.png │ ├── editorial_3.png │ ├── editorial_4.png │ ├── fellows.png │ ├── general_1.png │ ├── general_2.png │ ├── general_3.png │ ├── general_4.png │ ├── governance_1.png │ ├── governance_2.png │ ├── governance_3.png │ ├── governance_4.png │ ├── impact_cert.png │ ├── juntos.png │ ├── kb3.png │ ├── kernel.png │ ├── pa_flow_of_funds.png │ ├── rebrand.png │ ├── rebrand_head.png │ ├── scholarships.webp │ ├── self_map.png │ ├── signature_derrida.png │ ├── structure.png │ ├── t-shirts.png │ ├── testimonials.png │ ├── web3_contractor.jpg │ └── what-is-kernel.png │ ├── build │ ├── LeibnizCombinatorics.gif │ ├── digital-tree.jpg │ ├── flammarion_engraving.jpg │ ├── forest-of-gratitude.jpg │ ├── impermanence.png │ ├── infinite-game.png │ ├── natural-composability.png │ ├── revolution.png │ ├── rochdale.png │ ├── rule_30.png │ ├── sealed_book.jpg │ ├── student-debt.webp │ ├── tat_tvam_asi.jpg │ ├── truetype.png │ ├── uni.jpg │ ├── wisdom.webp │ ├── zodiac.png │ ├── zodiac_meanings.png │ ├── zodiac_moonlit_night.jpg │ ├── zodiac_songline.png │ ├── zodiac_suite.png │ └── zodiac_system.png │ ├── ethereum.png │ ├── fellows │ ├── Abe_Uccello.jpg │ ├── Alex_Masmej.png │ ├── Alexandra_McCarroll.png │ ├── Alisa_Khieu.jpg │ ├── Alisha.jpg │ ├── Aliya.png │ ├── Amarnath.jpg │ ├── Anett_Rolikova.jpg │ ├── Angela_GIlhotra.jpg │ ├── Anna_Kryukova.jpg │ ├── Anuj.jpg │ ├── Ben_Lakoff.png │ ├── Ben_Percifield.jpg │ ├── Brittney_Scott.jpg │ ├── Claudie_Linke.jpg │ ├── Daanish.jpg │ ├── Darrell_Jones.jpg │ ├── David_Phelps.jpg │ ├── Denham_Preen.png │ ├── Diana_Chen.jpg │ ├── Dilan_Shah.jpg │ ├── Divine_Artis.jpg │ ├── Elena_Giralt.jpg │ ├── Eman_Herawy.jpg │ ├── En_Canada.jpg │ ├── Greg_Becker.jpg │ ├── Guillermo_Acuna.jpg │ ├── Harsh_Rajat.png │ ├── Holly-Grimm.jpg │ ├── Jack_Sanford.jpg │ ├── Jad_Esber.jpg │ ├── James_Young.png │ ├── Jasmine_Wang.jpg │ ├── Jenil_Thakker.jpg │ ├── Jess_Sun.png │ ├── Joann_Hamilton.png │ ├── Julia_Wu.jpg │ ├── Julian_Traversa.jpg │ ├── Juliette_Chevalier.jpg │ ├── Kelsey_Chen.jpg │ ├── Kris_Urbas.png │ ├── Kyle_Smith.jpg │ ├── Liz_Strong.jpg │ ├── Manu.png │ ├── Martin_Etzrodt.jpg │ ├── Matt_Stephenson.jpg │ ├── Matthew_Scott_Jones.jpg │ ├── Michael_Keating.jpg │ ├── Michelle_Ma.jpg │ ├── Milensu_Kapaipi.png │ ├── Muhammad_Hameed.jpg │ ├── Nate_Gosselin.jpg │ ├── Nazarivy_Vavryk.png │ ├── Nichanan_Kesonpat.jpg │ ├── Paul_Gadi.png │ ├── Paulo_Almeida.jpg │ ├── Pranay_Walson.png │ ├── Rachel_Black.png │ ├── Rafaella_Baraldo.png │ ├── Rebecca_Mqamelo.jpg │ ├── Renee_Maria_Lee.jpg │ ├── Rich_Blundell.jpg │ ├── Richa_Joshi.png │ ├── Richard_Blythman.jpg │ ├── Sarah_Hamburg.jpg │ ├── Sebnem_Rusitschka.jpg │ ├── Simona_Pop.jpg │ ├── Sister_Tibebwa.jpg │ ├── Stephanie_Bazley.jpg │ ├── Sylvia_R.jpg │ ├── Tagan.jpg │ ├── Tim_Courtney.jpg │ ├── Val_Mack.jpg │ ├── Veronica_Coutts.jpg │ ├── William_Schwab.png │ ├── Yuguang_Ipsen.jpg │ ├── Yulia.jpg │ ├── Zayi_Reyes.jpg │ ├── Zsuzsanna_Tasi.jpg │ ├── bitsikka.jpg │ ├── davidhuntmateo.jpg │ ├── philipsheldrake.png │ ├── sidcode.jpg │ └── thetagan.jpg │ ├── gaming-img │ ├── 5domains.jpg │ ├── ScrollingRequests.gif │ ├── WriteLetter.gif │ ├── adcap.png │ ├── amongus.jpg │ ├── amongus.png │ ├── archetype.jpg │ ├── br-logo.png │ ├── decade.png │ ├── epiccreator.jpg │ ├── game3js.png │ ├── gamedevstory.png │ ├── gaming_track.jpg │ ├── genie.svg │ ├── kakuro.png │ ├── learn.png │ ├── lichess.jpg │ ├── loopy.gif │ ├── loopy.png │ ├── metaverse.png │ ├── ncsht.jpg │ ├── niftyink.png │ ├── openmetaverse.png │ ├── opensourceloopy.gif │ ├── passage.png │ ├── patterngames.png │ ├── sims.jpg │ ├── spiritcreatures.png │ ├── trust.png │ ├── valheim.jpg │ ├── virtualgoods.png │ └── week-0-syllabus-brianstorm.png │ ├── governance-hero.png │ ├── header.jpg │ ├── humans-of-makerdao.png │ ├── icons │ ├── apple-touch-icon.png │ ├── favicon.ico │ ├── icon-16x16.png │ ├── icon-192x192.png │ ├── icon-32x32.png │ └── icon-512x512.png │ ├── illus_funding-2.png │ ├── illus_funding.png │ ├── illus_home.png │ ├── illus_learn.png │ ├── illus_work.png │ ├── illustrations │ ├── Astro-1.png │ ├── Astro-2.png │ ├── Astro-3.png │ ├── Astro-4.png │ ├── Robot-1.png │ ├── Robot-2.png │ ├── Robot-3.png │ ├── Robot-4.png │ ├── Short-1.png │ ├── Short-2.png │ ├── Short-3.png │ ├── Short-4.png │ ├── Squid-1.png │ ├── Squid-2.png │ ├── Squid-3.png │ ├── Squid-4.png │ ├── Tall-1.png │ ├── Tall-2.png │ ├── Tall-3.png │ ├── Tall-4.png │ ├── blank.txt │ ├── ghost-1.png │ ├── ghost-2.png │ ├── ghost-3.png │ └── ghost-4.png │ ├── kb5_orientation_questions.png │ ├── kernel-returns.png │ ├── kernel_balance.png │ ├── kernel_heart.png │ ├── kernel_learn.png │ ├── kernel_lp.png │ ├── kernel_play.png │ ├── kernel_process.png │ ├── kernel_spiral.png │ ├── kernel_work.png │ ├── koans │ ├── bud_of_bud.png │ ├── candid_syzygy.png │ ├── heartmap.png │ ├── i_ching_genetic_code.jpeg │ └── na_kuja_abad_nft.svg │ ├── learn-curves.png │ ├── learning-01.jpg │ ├── mod0-img │ ├── banner.jpg │ ├── bauhaus.webp │ ├── bb.png │ ├── david_bohm_and_jiddu_krishnamurti.jpg │ ├── impossible.jpg │ ├── jazz_pattern.png │ ├── trust.jpg │ ├── trust1.png │ ├── trust2.png │ ├── trust3.png │ └── vangoghselfportrait.jpg │ ├── mod1-img │ ├── indusseals.gif │ ├── merkle-trie.png │ └── new_language.jpg │ ├── mod2-img │ ├── modern-money-pyramid.png │ ├── modern_money_pyramid.gif │ ├── penny.jpg │ ├── shells.jpg │ └── stripe.png │ ├── mod3-img │ ├── clockaganda.png │ ├── evolution.png │ ├── freedom.jpg │ ├── havel_artoftheimpossible.webp │ ├── illich-celebration.png │ ├── insight-making.png │ ├── plumbing.png │ ├── semantic-data.png │ ├── think.jpg │ ├── ttft.png │ └── web-evolution.png │ ├── mod4-img │ ├── abayomi.png │ ├── artificial.webp │ ├── blessing.jpg │ ├── circles-net.png │ ├── forest.jpg │ ├── forking-memes.png │ ├── future_present.png │ ├── graeber-consensus.png │ ├── ietf.gif │ ├── mother-earth-board.jpg │ └── what-they-beheld.png │ ├── mod5-img │ ├── algo-live.jpg │ ├── amazon.jpg │ ├── bankless.png │ ├── lost-garden.png │ ├── tiktok.png │ └── trust-diagram.png │ ├── mod6-img │ ├── duende.jpg │ ├── ether-love.webp │ └── liesel_mueller.jpg │ ├── mod7-img │ ├── cosmic-gift.png │ ├── eric-raymond.jpeg │ ├── giving_dana_paramita.png │ ├── heart_sutra.jpg │ ├── mary_oliver.jpg │ ├── newspapers.gif │ ├── riemann-zeta.jpg │ └── the_gift_of_help.jpg │ ├── module-6.png │ ├── placeholder.png │ ├── projects │ ├── akropolis.png │ ├── atlantis.png │ ├── beyondnft.png │ ├── charged_particles.png │ ├── coinshift.jpg │ ├── cryptonative.jpg │ ├── dada.jpg │ ├── defisafety.png │ ├── depay.jpg │ ├── dorg.png │ ├── eba.jpg │ ├── epns.png │ ├── goodghosting.png │ ├── ideamarket.png │ ├── impactmarket.jpg │ ├── llama.png │ ├── metaverseai.jpg │ ├── myco.jpg │ ├── nifty_ink.png │ ├── opendive.jpg │ ├── paladin.jpg │ ├── parcel.png │ ├── planck.png │ ├── prisonart.png │ ├── reach.png │ ├── revert.jpg │ ├── sherlock.jpg │ ├── stakegg.png │ ├── swivel.png │ ├── timeless.png │ ├── toucan.jpg │ ├── trybonfire.jpg │ ├── trycrypto.png │ └── zapper.png │ ├── sand-talk.png │ ├── shares │ ├── better-questions.png │ ├── censorship-resistant.png │ ├── favicon.ico │ ├── freedom.png │ ├── giving.png │ ├── govern.png │ ├── incentives.png │ ├── intention.png │ ├── learn.png │ ├── liberally-radical.png │ ├── listening-stories.png │ ├── logo192.png │ ├── meaning.png │ ├── money-speech.png │ ├── play-of-pattern.png │ ├── scale-ability.png │ ├── sig-eco.png │ ├── trust.png │ └── value.png │ ├── starfox.png │ ├── start │ ├── dragonfly_eyes.png │ ├── how-to-1.png │ ├── how-to-2.png │ ├── how-to-3.png │ ├── how-to-4.png │ └── how-to-5.png │ ├── what_is_kernel.png │ └── wol │ ├── QuotationsPurple.svg │ ├── QuotationsYellow.svg │ ├── Slack.svg │ └── Twitter.svg └── yarn.lock /.env.example: -------------------------------------------------------------------------------- 1 | GATSBY_TELEMETRY_DISABLED=1 2 | GATSBY_LOCAL_HONOUR_ADDRESS="locally-deployed-deschool-address" 3 | INFURA_ID= 4 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | public/ -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | 3 | [include] 4 | 5 | [libs] 6 | 7 | [lints] 8 | 9 | [options] 10 | esproposal.export_star_as=enable 11 | esproposal.optional_chaining=enable 12 | module.ignore_non_literal_requires=true 13 | 14 | [strict] 15 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/create-a-new-task.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Create a new issue 3 | about: Use this template for creating new tasks 4 | title: 'Project/Section name + Actionable item (Example: Security Track - Create Modules)' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## Description 11 | 12 | Short 1-2 sentence project description (Example: Kernel Security is a community-curated list of resources and content to which anyone can contribute. This should be self-maintaining, where anyone can get paid to contribute, with clear guidelines around how to update the resource.) 13 | 14 | [Working or Proposed Project Doc](https://hackmd.link) 15 | 16 | ## Tasks 17 | 18 | - [ ] Task 1 / [If relevant, any linked Github Issue number](https://link) 19 | - [ ] Example: Standardize operation procedures / [#359](https://github.com/makerdao/community/issues/359) 20 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/create-an-epic.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Create an Epic 3 | about: Use this template for creating an Epic Issue to parent multiple issues. 4 | title: 'Project Name + "Epic" (Example: DIY Meetups Program Epic)' 5 | labels: Epic 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## Description 11 | 12 | Short 1-2 sentence project description (Example: Kernel Security is a community-curated list of resources and content to which anyone can contribute. This should be self-maintaining, where anyone can get paid to contribute, with clear guidelines around how to update the resource.) 13 | 14 | [Project Working Doc](https://link.me) 15 | 16 | ## Goals 17 | 18 | - [ ] High level goal 1 / [Linked Github Issue Number](https://link) 19 | - [ ] Example: Standardize operation procedures / [#359](https://github.com/makerdao/community/issues/359) 20 | 21 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Screenshots and Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # To get started with Dependabot version updates, you'll need to specify which 2 | # package ecosystems to update and where the package manifests are located. 3 | # Please see the documentation for all configuration options: 4 | # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 5 | 6 | version: 2 7 | updates: 8 | - package-ecosystem: "npm" # See documentation for possible values 9 | directory: "/" # Location of package manifests 10 | target-branch: "r2d" 11 | schedule: 12 | interval: "monthly" 13 | -------------------------------------------------------------------------------- /.github/pr-labeler.yml: -------------------------------------------------------------------------------- 1 | automerge: ['!wip*','!sync*'] 2 | -------------------------------------------------------------------------------- /.github/workflows/deploy-gh-pages.yml: -------------------------------------------------------------------------------- 1 | name: Build and Deploy 2 | on: 3 | push: 4 | branches: 5 | - production 6 | jobs: 7 | build-and-deploy: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - name: Use Node.js 14.x 11 | uses: actions/setup-node@v1 12 | with: 13 | node-version: 14.x 14 | 15 | - name: install yarn 16 | run: npm install -g yarn 17 | 18 | - name: Checkout 🛎️ 19 | uses: actions/checkout@v2 20 | with: 21 | persist-credentials: false 22 | 23 | - name: Install and Build 🔧 24 | run: | 25 | yarn 26 | yarn build 27 | 28 | - name: Deploy 🚀 29 | uses: JamesIves/github-pages-deploy-action@releases/v3 30 | with: 31 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 32 | BRANCH: gh-pages 33 | FOLDER: public 34 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: IPFS 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | 7 | jobs: 8 | build: 9 | runs-on: ubuntu-latest 10 | 11 | steps: 12 | - uses: actions/checkout@v2 13 | 14 | - name: Upload to IPFS 15 | uses: aquiladev/ipfs-action@v0.1.3 16 | with: 17 | # Directory path to upload 18 | path: governance/ 19 | # Level of verbosity 20 | verbose: true 21 | -------------------------------------------------------------------------------- /.github/workflows/poolparty.yml: -------------------------------------------------------------------------------- 1 | name: PoolParty Deploy 2 | 3 | on: 4 | pull_request: 5 | types: [assigned, opened, synchronize, reopened] 6 | 7 | jobs: 8 | lifeguard: 9 | if: github.base_ref == 'r2d' || github.base_ref == 'main' || github.base_ref == 'production' 10 | runs-on: ubuntu-latest 11 | 12 | steps: 13 | - uses: actions/checkout@v2 14 | with: 15 | ref: r2d 16 | - name: Label this PR with automerge #NOTE(Rejon): This will fail if the PR is from a fork. 17 | uses: TimonVS/pr-labeler-action@v3.1.0 18 | with: 19 | configuration-path: .github/pr-labeler.yml # optional, .github/pr-labeler.yml is the default value 20 | env: 21 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | public 2 | .cache 3 | node_modules 4 | *.DS_Store 5 | *DS_Store 6 | *.env 7 | *.swp 8 | yarn-error.log 9 | package-lock.json 10 | .vscode 11 | .env -------------------------------------------------------------------------------- /.kodiak.toml: -------------------------------------------------------------------------------- 1 | # Minimal config. version is the only required field. 2 | version = 1 3 | 4 | [merge] 5 | # label to use to enable Kodiak to merge a PR 6 | automerge_label = "automerge" # default: "automerge" 7 | 8 | # require that the automerge label be set for Kodiak to merge a PR. if you 9 | # disable this Kodiak will immediately attempt to merge every PR you create 10 | require_automerge_label = true 11 | 12 | # if these labels are set Kodiak will not merge the PR 13 | blacklist_labels = ["wip", "sync"] 14 | 15 | # if there is a merge conflict, make a comment on the PR and remove the 16 | # automerge label. this is disabled when require_automerge_label is enabled 17 | notify_on_conflict = true # default: true 18 | 19 | # if there are running status checks on a PR when it's up for merge, don't 20 | # wait for those to finish before updating the branch 21 | optimistic_updates = false 22 | 23 | # once a PR is merged into master, delete the branch 24 | delete_branch_on_merge = true # default: false 25 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore artifacts: 2 | public 3 | .cache 4 | node_modules 5 | static 6 | .github 7 | .vscode 8 | package.json 9 | README.md 10 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | bracketSameLine: true, 3 | trailingComma: 'es5', 4 | semi: false, 5 | singleQuote: true, 6 | } 7 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | # Name the node stage "builder" 2 | FROM node:14 AS builder 3 | # Set working directory 4 | WORKDIR /app 5 | # Copy all files from current directory to working dir in image 6 | COPY . . 7 | # install node modules and build assets 8 | RUN yarn 9 | RUN yarn build 10 | RUN ls -lt 11 | 12 | # nginx state for serving content 13 | FROM nginx:alpine 14 | # Set working directory to nginx asset directory 15 | WORKDIR /usr/share/nginx/html 16 | # Remove default nginx static assets 17 | RUN rm -rf ./* 18 | # Copy static assets from public folder 19 | COPY --from=builder /app/public . 20 | RUN ls -lt 21 | # Containers run nginx with global directives and daemon off 22 | ENTRYPOINT ["nginx", "-g", "daemon off;"] -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2022 KERNEL Community 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. -------------------------------------------------------------------------------- /blogPosts/en/blog/community/freedom-in-learning.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Freedom in Learning" 3 | authors: ["thetagan"] 4 | keywords: "kernel, learn, community, poetry, teach, lead" 5 | description: "A poem contributed by the one and only Tagan. We teach, we lead, we love." 6 | date: 2021-07-01 7 | image: "/images/shares/giving.png" 8 | recommend: 9 | [ 10 | "blogPosts/en/blog/Editorial/what-is-kernel", 11 | "blogPosts/en/blog/community/free-learn", 12 | "blogPosts/en/blog/community/scholarships", 13 | ] 14 | --- 15 | 16 | # There is freedom in learning 17 | 18 | Not all teachers are leaders. 19 | But all leaders are teachers. 20 | 21 | Let me lead you through a desert. 22 | Here your mouth will turn dry 23 | And your throat will learn to thirst for knowledge. 24 | It will be knowledge unknown to us both. 25 | 26 | Not all teachers are mothers. 27 | But all mothers are teachers. 28 | 29 | Let me carry you towards thirst 30 | As you live in gluttony. 31 | So that you may hunger no more 32 | And you may rest, as your hands grow idle 33 | May your mind and heart listen more deeply. 34 | 35 | Then will you hear me say: I love you. 36 | I love you enough to nurture your growth. 37 | A growth towards the answers you seek 38 | Hidden beneath the realistic fiction you preach 39 | You will find a seed of truth 40 | Covered in a kernel of meaning 41 | Once that freedom has consumed the spaces you locked away 42 | Your throat will shudder as you scream, I love you. -------------------------------------------------------------------------------- /content/cn/UI.json: -------------------------------------------------------------------------------- 1 | { 2 | "Bug_Report": "报告错误", 3 | "Go_Back": "返回", 4 | "Language": "简体中文", 5 | "Flag": "🇨🇳", 6 | "Search": "搜索", 7 | "No_Results": "没有找到关于 '{{query}}' 的结果", 8 | "Home": "首页", 9 | "Previous": "上一页", 10 | "Next": "下一页", 11 | "Page_Language_Selector": "页面语言选择器", 12 | "Available_Languages": "已有语言", 13 | "LANGUAGES": "语言", 14 | "Available_Languages_none": "无可用语言", 15 | "Need_Another_Language": "需要其他语言?", 16 | "Join_translation_team": "加入翻译团队", 17 | "Translations": "翻译", 18 | "Back_To_Main_Menu": "返回主菜单", 19 | "aria_FooterLogo": "Kernel 页脚标志", 20 | "aria_GithubIcon": "Github", 21 | "aria_TwitterIcon": "Twitter", 22 | "aria_YoutubeIcon": "Youtube", 23 | "aria_ExternalWebsite": "外部网站", 24 | "kernel_icon": "Kernel", 25 | "Chat": "Chat", 26 | "Love": "Love", 27 | "NotFoundPage": { 28 | "seoTitle": "404 页面未找到", 29 | "line_1": "哎呀,你查找的页面不存在。", 30 | "line_2": "我们最近调整了一些内容布局。", 31 | "line_3": "觉得是我们这边出问题了吗?" 32 | }, 33 | "Footer": { 34 | "About": "关于", 35 | "What is Kernel?": "什么是 Kernel?", 36 | "How to use this site": "如何使用本网站", 37 | "Principles": "原则", 38 | "Blog": "博客", 39 | "FAQs": "常见问题", 40 | "Participate": "参与", 41 | "Learn": "学习", 42 | "Build": "构建", 43 | "Resources": "资源", 44 | "Contribute": "贡献", 45 | "Contact": "联系", 46 | "Technical Care": "技术支持", 47 | "Privacy Policy": "隐私政策", 48 | "Terms of Service": "服务条款" 49 | }, 50 | "Blog": "博客", 51 | "Back_To_Blog": "返回博客", 52 | "Blog_Language_Selector": "博客语言选择器", 53 | "editorial": "社论", 54 | "community": "社区", 55 | "governance": "治理", 56 | "Community_Blog": "Kernel 社区博客", 57 | "Latest_In": "最新 ", 58 | "See_More_Posts": "查看更多文章" 59 | } 60 | -------------------------------------------------------------------------------- /content/cn/start/index.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | header: true 3 | headerOrder: 0 4 | title: 开始 5 | description: 在此启程,建设更好的网络 6 | featuredImage: images/shares/giving.png 7 | --- 8 | 9 | # 🌱 欢迎来到 Kernel 10 | 11 | Kernel 是一个同伴/点对点学习社区,旨在更好地探索真相:在工作、我们与他人联系、以及我们的内心世界中。 12 | 13 | > 💡 发现他人,享受乐趣,自由学习,并获得资助。 14 | 15 | 我们的问题是:**如何为所关心的人构建更好的网络**? 16 | 17 | 你的问题也许是:**我应该怎样参与进来,从而尊重自己的天赋与真实的内心?** 18 | 19 | 我们的答案:埋下一颗教育性社区的种子,在那里,人们通过亲身体验来**建立信任**, 通过共同学习以用心创造。 20 | 21 | ## 但,Kernel 是什么? 22 | 23 | Kernel 是在由 250 个很棒的人组成的“区块”中的、为期 8 周的对话,它致力于连接创造力与关怀。我们想要改变人们对”做贡献“的理解,以及我们所做贡献的项目。Kernel 关于谦卑、诚实、感激和有意向(intentional)的服务。 24 | 25 | 26 | 27 | 我们谦卑;因为通过我们的好奇心,我们的创造力,我们的苦痛,我们的欢乐——我们得知且亲身展示了每一个孤立个体所能了解的多么少。 28 | 29 | 我们诚实;因为这是最勇敢的生活方式;是让头脑直达心灵,且在两者间建立永恒连接的最简单的路。 30 | 31 | 我们感激,因为别无选择。任何经过审视过的生活总会带来超越理性所能衡量的感激之情。 32 | 33 | 我们的目的是去劳作(serve),因为它——一次又一次——带我们回归谦卑。 34 | 35 | 我们耐心,因为埋下种子还不够:只有在对的季节,核(Kernel)才会破土而出,长成森林。 36 | 37 | 38 | 39 | ## ✨ 转变,而非信息 40 | 41 | Kernel 不会用信息淹没你,而是通过与同伴的反复互动,来逐步构建更好的网络所需的内在和外在模式。这些模式包括谦卑的决断、细致的洞察、同情式的批评、理性的互惠、以及其它涵盖人类意识全部光谱的、互补的二元对立。 42 | 43 | 花时间逐一浏览每个模块。放下手中的事,呼吸,专注一个小时;明天或下周,当你有空做同样的事时,再回来。第一次,我们书写人类历史的工具是基本共享并基于共识的。此刻去暂停、反思、并将注意力转向那些会培养我们——所有的和每一个我们——共同生活的能力的激励类型。 44 | -------------------------------------------------------------------------------- /content/cn/start/principled-people.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Kernel 原则 3 | order: 0 4 | featuredImage: images/shares/giving.png 5 | description: 首当其冲,Kernel 是关于组成更好网络的人以及我们所共享的心灵品质。 6 | --- 7 | 8 | # Kernel 原则 9 | 10 | Kernel 的主要目标很简单:**一起学习**。我们通过精心设计的同伴学习环境以实现它。在创造这样的环境时,我们遵循两个原则,一个针对 "web3",另一个更个人化: 11 | 12 | 13 | 14 | **不伤害** 15 | 16 | **玩,永无止境** 17 | 18 | 19 | 20 | 根据这两个核心追求,我们可以衍生出 16 个更细致的原则。 21 | 22 | 23 | 24 | 25 | 26 | ### ⌛️ Web3 原则 27 | 28 | 1. 信任不仅限于交易。 29 | 2. 共享的真相创造价值。 30 | 3. 学习限制,然后自由。 31 | 4. 货币即言论。 32 | 5. 激励影响一切。 33 | 5. 解放激进的机构。 34 | 7. 在经济上抵制审查。 35 | 8. 使能力规模化。 36 | 37 | 38 | 39 | 40 | 41 | ### 🌈 个人化原则 42 | 43 | 1. 把玩模式。 44 | 2. 开发工具,抵达意义。 45 | 3. 提出更好的问题。 46 | 4. 首先考虑你的意图。 47 | 5. 听更好的故事,讲更好的故事。 48 | 6. 在一起时,个体就能够很好地治理。 49 | 7. 学习如何爱上学习。 50 | 8. 给予神圣。 51 | 52 | 53 | 54 | 55 | 56 | ## 遇见 Kernel 伙伴们 57 | 58 | . 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | ## 先给予 67 | 68 | 在这里我们为彼此服务,因为我们是彼此的环境。真正的服务也引导我们走向任何有意义的自我认知的目标:实际上,没有所谓的他者。 69 | 70 | 我们还有一个共同的外部目标:**支持自由货币的持续创造**。在这个背景下,Kernel 是一份礼物。它确实源于此:Vivek 开始回馈一个曾赋予他生计和宝贵成长经历的社区。Andy 开始为 Vivek 提供实现这一愿景的教育模式。每一期 Kernel 都是由各种才华横溢的人精心打造的,我们独特,但有着与周围世界分享天赋的共同愿望。这是一种老派生活方式依然跳动的心脏,我们正慢慢将其带入数字世界。 71 | 72 | 我们相互学习,奉献自己,直到自我和他者失去那种常常主宰其间互动的分离感。在这个过程中,有一种无法被给予或接受的真相。只有在你开始信任自己已有的价值时,它才会在你心中生根发芽。 73 | 74 | ## 项目与团队 75 | 76 | . 77 | 78 | 79 | 80 | 81 | 82 | 83 | -------------------------------------------------------------------------------- /content/en/build/daos/infinite-learning.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: Infinite Learning 3 | order: 7 4 | hideLanguageSelector: true 5 | featuredImage: images/shares/giving.png 6 | --- 7 | 8 | ## Infinite Learning 9 | 10 | ### Objective 11 | 12 | Continue your journey with Zodiac and learn about cross chain infrastructure. **This is an optional session hosted only in the [Gnosis Guild Discord](https://discord.gg/wwmBWTgyEq) for anyone to join.** 13 | 14 | ### Preparation 15 | 16 | 1. [Zodiac Bridge tutorial](https://gnosis.github.io/zodiac/docs/tutorial-module-bridge/get-started) (2021) 17 | 18 | ![Zodiac Design Language](/images/build/zodiac_system.png) -------------------------------------------------------------------------------- /content/en/build/daos/open-multiverse.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: The Open Multiverse 3 | order: 6 4 | hideLanguageSelector: true 5 | featuredImage: images/shares/giving.png 6 | --- 7 | 8 | # Session IV 9 | 10 | ## Ever Deeper Dimensions 11 | 12 | ### Objective 13 | 14 | Dive deeper into the Zodiac open standard and build your own Zodiac mod. 15 | 16 | ### Preparation 17 | 18 | 1. Follow the tutorial: [https://gnosis.github.io/zodiac/docs/tutorial-build-a-module/setup](https://gnosis.github.io/zodiac/docs/tutorial-build-a-module/setup). 19 | 20 | 21 | ### Application 22 | 23 | - Zodiac: The open standard (5 minutes plus 5 minute Q&A) 24 | - Revisit the Zodiac open standard architecture 25 | - Zodiac Build (50 minutes plus 5 minute Q&A) 26 | - Guided [tutorial](https://gnosis.github.io/zodiac/docs/tutorial-build-a-module/setup) on building your own Zodiac mod 27 | 28 | ### Recording 29 | 30 |