10,000 Matching Annotations
  1. Apr 2025
    1. vitalik's blog which is on IPFS Mainnet can be loaded –albeit still slowly as its still beta software– and cached via the Service Worker Gateway. Once the blocks are cached, subsequent reloads work without internet. The magic is that this is pretty easy to do for any static website.

      static website service worker

    1. Linear is a purpose-built tool for planning and building productsPlan and build your productPlan and build your productMeet the system for modern software development. Streamline issues, projects, and product roadmaps.self.__wrap_n!=1&&self.__wrap_b(":R286mpuudakq:",1)Linear is a purpose-built tool for modern product development. Streamline issues, projects, and product roadmaps.self.__wrap_n!=1&&self.__wrap_b(":R2a6mpuudakq:",1)Start buildingStart buildingIntroducing Sub-teamsStart buildingIntroducing Sub-teams

      Description

    Annotators

    URL

    1. Metaxy: The Platonic “In-Between” as a form of Dialetheia

      The concept of Metaxy (μέταξυ) in Platonic philosophy represents the “in-between” — an intermediary state that connects opposites and enables interaction between different levels of reality.

    1. In the algebragame the tokens are equations or formulae, andthe rules specify various transformations that canbe made in these formulae

      formulae

    1. 3 minTagspdf.jspdf viewerIn this article (a three-minute read), you’ll learn how to quickly embed a PDF in a web page using PDF.js, a popular open-source PDF viewer.1. Download and Extract the PDF.js Package2. Add the PDF viewer to your web pageWe will also use it as a full screen PDF viewer where we can pass in a PDF filename via URL query string. Try the full screen viewer now:Open Full Screen PDF.js ViewerStep 1 - Download and Extract the PDF.js PackageCopied to clipboardLet’s head over to GitHub to download the latest stable release and then extract the contents inside our website folder.Here are the contents of the .zip:Plain text├── build/ │ ├── pdf.js │ └── ... ├── web/ │ ├── viewer.css │ ├── viewer.html │ └── ... └── LICENSEAfter extracting the .zip contents, our website folder could look something like this:Plain text├── index.html ├── subpage.html ├── assets/ │ ├── pdf/ | ├── my-pdf-file.pdf | ├── my-other-pdf-file.pdf | ├── ... ├── build/ - PDF.js files │ ├── pdf.js │ ├── ... ├── web/ - PDF.js files │ ├── viewer.css │ ├── viewer.html │ ├── ... └── LICENSE - PDF.js licenseNote: Due to browser security restrictions, PDF.js cannot open local PDFs using a file:// URL. You will need to start a local web server or upload the files to your web server.Step 2 - Embed the PDF Viewer in WebsiteCopied to clipboardOur last step will be to embed the viewer in our web page by using an <iframe>. We will use a query string to tell the PDF viewer which PDF file to open. Like this: <!DOCTYPE html> <html> <head> <title>Hello world!</title> </head> <body style={{"fontFamily":"Arial, Helvetica, sans-serif"}}> <div style={{"width":"760px"}}> <h2>About Us</h2> <p>We help software developers do more with PDFs. PDF.js Express gives a flexible and modern UI to your PDF.js viewer while also adding out-of-the-box features like annotations, form filling and signatures.</p> <!-- Place the following <div> element where you want the PDF to be displayed in your website. You can adjust the size using the width and height attributes. --> <div> <iframe id="pdf-js-viewer" src="/web/viewer.html?file=%2assets%2pdf%2Fmy-pdf-file.pdf" title="webviewer" frameborder="0" width="500" height="600"></iframe> </div> </div> </body> </html>You’re done!If you’d like to load PDF files from a different domain name, you will need to ensure the server hosting the PDFs has been set up for CORS.Full Screen PDF ViewerIn addition to embedding the viewer in a page, we can also open it in a full screen: Open Full Screen PDF.js ViewerHere’s the code: <a href="/web/viewer.html?file=%2Fmy-pdf-file.pdf">Open Full Screen PDF.js Viewer</a>Just change the file query string parameter to open whatever you PDF you wish to open.Customizing the PDF.js ToolbarCopied to clipboardWe can also reorganize the toolbar by moving elements around, removing buttons, and changing the icons.Let’s open public/lib/web/viewer.html and add the following to the <head> section: <script src="customToolbar.js"></script>Next, we’ll create customToolbar.js inside the public/lib/web folder and add the following code:JavaScriptlet sheet = (function() { let style = document.createElement(&quot;style&quot;); style.appendChild(document.createTextNode(&quot;&quot;)); document.head.appendChild(style); return style.sheet; })(); function editToolBar(){ //when the page is resized, the viewer hides and move some buttons around. //this function forcibly show all buttons so none of them disappear or re-appear on page resize removeGrowRules(); /* Reorganizing the UI the &#39;addElemFromSecondaryToPrimary&#39; function moves items from the secondary nav into the primary nav there are 3 primary nav regions (toolbarViewerLeft, toolbarViewerMiddle, toolbarViewerRight) */ //adding elements to left part of toolbar addElemFromSecondaryToPrimary(&#39;pageRotateCcw&#39;, &#39;toolbarViewerLeft&#39;) addElemFromSecondaryToPrimary(&#39;pageRotateCw&#39;, &#39;toolbarViewerLeft&#39;) addElemFromSecondaryToPrimary(&#39;zoomIn&#39;, &#39;toolbarViewerLeft&#39;) addElemFromSecondaryToPrimary(&#39;zoomOut&#39;, &#39;toolbarViewerLeft&#39;) //adding elements to middle part of toolbar addElemFromSecondaryToPrimary(&#39;previous&#39;, &#39;toolbarViewerMiddle&#39;) addElemFromSecondaryToPrimary(&#39;pageNumber&#39;, &#39;toolbarViewerMiddle&#39;) addElemFromSecondaryToPrimary(&#39;numPages&#39;, &#39;toolbarViewerMiddle&#39;) addElemFromSecondaryToPrimary(&#39;next&#39;, &#39;toolbarViewerMiddle&#39;) //adding elements to right part of toolbar addElemFromSecondaryToPrimary(&#39;secondaryOpenFile&#39;, &#39;toolbarViewerRight&#39;) /* Changing icons */ changeIcon(&#39;previous&#39;, &#39;icons/baseline-navigate_before-24px.svg&#39;) changeIcon(&#39;next&#39;, &#39;icons/baseline-navigate_next-24px.svg&#39;) changeIcon(&#39;pageRotateCcw&#39;, &#39;icons/baseline-rotate_left-24px.svg&#39;) changeIcon(&#39;pageRotateCw&#39;, &#39;icons/baseline-rotate_right-24px.svg&#39;) changeIcon(&#39;viewFind&#39;, &#39;icons/baseline-search-24px.svg&#39;); changeIcon(&#39;zoomOut&#39;, &#39;icons/baseline-zoom_out-24px.svg&#39;) changeIcon(&#39;zoomIn&#39;, &#39;icons/baseline-zoom_in-24px.svg&#39;) changeIcon(&#39;sidebarToggle&#39;, &#39;icons/baseline-toc-24px.svg&#39;) changeIcon(&#39;secondaryOpenFile&#39;, &#39;./icons/baseline-open_in_browser-24px.svg&#39;) /* Hiding elements */ removeElement(&#39;secondaryToolbarToggle&#39;) removeElement(&#39;scaleSelectContainer&#39;) removeElement(&#39;presentationMode&#39;) removeElement(&#39;openFile&#39;) removeElement(&#39;print&#39;) removeElement(&#39;download&#39;) removeElement(&#39;viewBookmark&#39;) } function changeIcon(elemID, iconUrl){ let element = document.getElementById(elemID); let classNames = element.className; classNames = elemID.includes(&#39;Toggle&#39;)? &#39;toolbarButton#&#39;+elemID : classNames.split(&#39; &#39;).join(&#39;.&#39;); classNames = elemID.includes(&#39;view&#39;)? &#39;#&#39;+elemID+&#39;.toolbarButton&#39; : &#39;.&#39;+classNames classNames+= &quot;::before&quot;; addCSSRule(sheet, classNames, `content: url(${iconUrl}) !important`, 0) } function addElemFromSecondaryToPrimary(elemID, parentID){ let element = document.getElementById(elemID); let parent = document.getElementById(parentID); element.style.minWidth = &quot;0px&quot;; element.innerHTML =&#39;&#39; parent.append(element); } function removeElement(elemID){ let element = document.getElementById(elemID); element.parentNode.removeChild(element); } function removeGrowRules(){ addCSSRule(sheet, &#39;.hiddenSmallView *&#39;, &#39;display:block !important&#39;); addCSSRule(sheet, &#39;.hiddenMediumView&#39;, &#39;display:block !important&#39;); addCSSRule(sheet, &#39;.hiddenLargeView&#39;, &#39;display:block !important&#39;); addCSSRule(sheet, &#39;.visibleSmallView&#39;, &#39;display:block !important&#39;); addCSSRule(sheet, &#39;.visibleMediumView&#39;, &#39;display:block !important&#39;); addCSSRule(sheet, &#39;.visibleLargeView&#39;, &#39;display:block !important&#39;); } function addCSSRule(sheet, selector, rules, index) { if(&quot;insertRule&quot; in sheet) { sheet.insertRule(selector + &quot;{&quot; + rules + &quot;}&quot;, index); } else if(&quot;addRule&quot; in sheet) { sheet.addRule(selector, rules, index); } } window.onload = editToolBarThe PDF.js primary toolbar is broken down into 3 regions:The secondary toolbar is accessed via the chevron icon in the right region:We can move elements from the secondary toolbar into the left, middle, or right regions of the primary toolbar with the addElemFromSecondaryToPrimary function in customToolbar.js. For example, uncommenting this line will move the counter-clockwise rotation tool to the left region of the primary toolbar:JavaScriptaddElemFromSecondaryToPrimary(&#39;pageRotateCcw&#39;, &#39;toolbarViewerLeft&#39;)If you wanted to move pageRotateCcw to the middle region instead, you’d replace toolbarViewerLeft with toolbarViewerMiddle, or toolbarViewerRight for the right region. To move a different tool, replace the pageRotateCcw ID with the element ID you want to move. (See below for a full list of element IDs.)We can also hide elements like this:JavaScriptremoveElement(&#39;print&#39;) removeElement(&#39;download&#39;)To hide different elements, replace print or download with the element ID.NOTE: Hiding the download and print buttons is not a bulletproof way to protect our PDF, because it’s still possible to look at the source code to find the file. It just makes it a bit harder.

      for - prevent download of pdf

    1. "In early times the colophon gave the information now given on the title page" [OED].

      gloss--pre-colophon

      information about the context background purpose intent of creting a document

    1. but the urgent and complex problems of mankind have only grown more urgent

      and more complex it sure looks like Humanity is circling

      the drain

      // I heard it as circling the dream =

    2. when will the world be ready to receive its Saints

      I think we know the answer when they are dead pasteurized and homogenized and

      simplified into stereotypes and the true depth and integrity of their ideas and initiatives are forgotten

    1. emantic. Interoperable. Cryptographic. Concurrent. Responsive. Networks awakened as living ecosystems.

      nice to look back where I started out 7 years ago dreaming of the IndyWeb

      Te interplaeatry inter personal inter intentional autonomous web the indyweb

      We need systems that are people centered and leverageing th power of the human interintellect augmenting it via man machine symbiosis

    Annotators

    URL

    1. Ted Nelson has gone a step further and blamed the emphasis on "files" themselves as an aspect of this problem,

      Ted was right

      IPFS Peergos provides a way of creating and maintaining named files networks with permanence and permanenc of reference while the files and entire file sysstems DAGs are mutable

    2. hey are designed and organized for the benefit of management

      neither the anagement or the participants are able to benefit

      The spoaration of

      Computer Supported Personal Work

      and cf Computer Supported Collaborative Work

      arose from the desire to encolse the products and the artifacts and olso that the

      work on the Personal computer was inaccessible over the network

      We need a network communication topoilogy that matches what is reqired

      Need a global permanent secure way of naming and sharing controlled by the creators originators of the the infordances

      that are contiguous with the very way individuals do their own personal work

      which is also networked multi device multiplayers athroug time and that each individualis able to maintain a host of Profiles Pseudonyms alter egos designed to fit in with or establis connectivity across many disperate networks

    3. central data stores and shared filesystems

      centralizing indtoduces huge friction

      the enclosure limits discoverblity access

      make everytng go virtual

      named interest pursuites communities of practice iautononpus individual with the power to name their interest communities and pursuites in form tht people can join

      infordances

    4. he preponderance of potentially exploitable team knowledge is distributed in a completely inaccessible way on un-indexed and often inaccessible individual systems.

      inccessibel unindexed

      yet we need the polar opposite

      make everything shareable in interpersonal intercommunity trust networks with provenance

      make it discoverable

      scaling reach and synthesis

      Open Mutual Learning commons

    5. The barrier to sharing even the products of work, much less the process

      flip that

      loose the exploitable artifact focus and create processes

      that are capable of creating autopoieti self presentable extensible infordances holonic units of

      articulation along with the very means they are to be processed in a way that is totally extensible intentionally constellated for new puproses with easy

      et poermanent and evergreen focus on the ways and means and processes

      workflows and collaborative information flows that

      scale

      but employs mechanisms that are orthogonal to scaling

      this is possible as the individual knowledge work has all the capabilities buil tin that supports collaboration

      The individal's knowledge work is multiplayer multighreaded interpersonal connetivity and conversaions that are contiuous without being syncronous et contigiuus with the tneire intertiwngled context that forms a complete disoerable explorable graph at any moment in time

      thorugh time

    6. trapped inside unshareable, proprietary or inaccessible data formats

      proprietary data formats

      we need infordances

      or holoorphic infometa4dances that are autopoietic permanent yt coe-volvable evergreen and composable

      repurposable resumable refactorable etc

      WE created dta formats so that we could possibly reuse repurpose the content

      big mistake need a universal hyperdocument format

      something that XML tried but failed to deliver

      so instead of a universal format

      we need universal (in the sense of universal machine( a way of creating info structures that use simple notation for structuring that is ameanble to arbitrary user defined interpretations and presentation processes

      instead of separating concerns all required capabilities

      should be integral to the seed capabilities

    7. a "knowledge worker," someone whose job or avocation involves the exploitation, organization and production of knowledge.

      knowledge worker

      trailblazer

    8. every person is organically connected to a team of common purpose no matter where they are or what software they are using

      yes but that requires every person to be autonomous abe to create or join teams

    9. An individual's role in the collective enterprise is then to augment the collective knowledge base by observation and synthesis.

      should saart to augment the individal

      in a born multiplayer collaborative etting

      recognizing that eveything is a symmathetic conversation

      including the software needed to conduct it

      so that we have a seed setup that is a sweetspot beyond the threshld required

      not a good enough solution

      that i litered with compromises and choices tht lock one into gratiutous complicaitons

      like XML is a great eample. It sure have metacircular power but at the cost of huge complexity and complication

      You cannot get hundrd pages worth of definitions right ever

      Need something that is small fit in one page

      and capoable of self-hosting and etensibility

    10. a "good enough" solution was presented that stood in the way of Engelbart's revolutionary vision of ubiquitous collaboration.

      good enough solution

      we need a perfect seed capable of autopoietic organic growth at scale

      scaling reach synthesis interpersonal interplay digital velum with perrmanence and full provenance trails

  2. Mar 2025
    1. It can save new artifacts, even clone itself, onto new Web pages

      It can - save new artifacts, - even clone itself, onto new Web pages. T

      he kernel includes - WebDAV support for browsing and - extending remote file systems, and thus - has the ability to save its objects and "worlds" (applications) - as new active Web pages and - into a cloud-based repository.

    2. We call it Lively for the following reasons

      It comes live off a Web page. - There is no installation. - The entire system is written in JavaScript, and - it becomes active as soon as the page is loaded by a browser. - It is, in fact, a Web page.

      It can change itself and create new content. The Lively Kernel includes a basic graphics editor that allows it to alter and create new graphical content, and also an integrated development environment (IDE) that allows it to alter and create new applications. It comes with a library of graphical and computational components, and these, as well as the kernel, can be altered and extended on the fly.

      It can save new artifacts, even clone itself, onto new Web pages. The kernel includes WebDAV support for browsing and extending remote file systems, and thus has the ability to save its objects and "worlds" (applications) as new active Web pages and into a cloud-based repository.

    3. It can change itself and create new content

      It can change itself and create new content. - The Lively Kernel includes a basic graphics editor that allows it to alter and create new graphical content, and also - an integrated development environment (IDE) - that allows it to alter and create new applications. - It comes with a library of graphical and computational components, and - these, as well as the kernel, can be altered and extended on the fly.

    1. egyén

      egyén – ‘az ember mint különálló személy, individuum’. Származékai: egyéni, egyéniség. Nyelvújítási alkotás, az egy számnév és az én névmás összetétele

    1. the self; that which feels, acts, or thinks," from Latin ego "I" (cognate with Old English ic; see I); its use is implied in egoity.

      ego

      egyén

    1. How to correctly extract text from a pdf using pdf.js

      If you use the PDFViewer component, here is my solution that doesn't involve any promise or asynchrony: function getDocumentText(viewer) { let text = ''; for (let i = 0; i < viewer.pagesCount; i++) { const { textContentItemsStr } = viewer.getPageView(i).textLayer; for (let item of textContentItemsStr) text += item; } return text; }

    1. experience heart-based resonating spaces that canbuild coherence and cohesion around things we all care about

      heart=baed resonating spacs

      build * coherence * cohesion

      around things we care - about

      care as the generative principle

    2. ‘best practice’

      certainly in IT bet practices are carefully cultivated to be the one that limits human potential in the most insiduous ways

      Flip everything considered as best practice and you have a heuristic that opens up space for augmenting human potential

    3. conditioning

      📯 liberation from conditioning comes when we cease to seek external validation and refuse to conform

      Social non conformism is the condition sine qya not

      (not only) of intellectual achievment

      combined that with a large dose of neuro-diversity

      an anitdot eto conditioning

      mixed in with learn to live with persistent cognitive dissonance

      once you see that everything is a lie

      and truth is brandd always as heresy

      and you do not know anything about most things

      but can only know what you can do

    4. The Real Work

      PMO collectively cultivated

      📣 How do we bring the people to the same virtual spot page with all the affordances they need to engage with information that pertains to their shared intent

      itself as a holinc whole mutual arising information and affordances or infordances

      that are

      permanent evergreen attributed provenance and history formalative saleient significant actionable

      that are

      re * discover * sume * peat * factorable * formluate * volvable * distributable * distributed

      connecting people ideas and intents and pursuites

    5. solutions

      📣📣 that would enable us to

      operate as

      • self-generating units of value,

      in service to our communities are

      discounted

      capacities capabilities information affordances as holons

    6. ITpeople

      📣 I wince every time I hear the word data

      data is the carrier of in formation

      that form human attention

      be careful what you pay attention to and your intents

    7. autopeosis happening - self-creation" or “self-production."

      📣 synthetic virtual autopoiesis in the sphere of externalized inter intellect

      holons can be named and invoked and create new ones by connecting integrating constellations as required

      Articulation does that too by meaningful naming and narratives woven fro them

      // reflection I read all this as a way of articulating the way to approach creation very much in morphic resonance with the

      design principles that I practice and reflect and act opon in#continual symmathetic conversation between articulation and effort to create the seed from which autopoiesis can become effective embodied in the tools of eternalied inter personal inter intellect emergent extellect

    8. PMO

      📣 AND

      Future Perfect Orientation

      Complete in the service of continuous thriving sustainability long view

      Maximizing realizing manifesting future potential The Long View

      Expanding viewpoint The Blue Plane

      PMO is in formed by our tuition

    9. ‘present moment orientation’

      📣 would like to suggest for consideration the perspective that the present is a confluence of the causal influences of the past but are also influenced by the future and its changing potentials

      however we woud like to suppress our awareness of the present and indeed the past are influenced by our intent and awareness of future potentials

      wittingly or otherwise but irreducibly and tacitly

      present moment orientation, being here now can only beacieved when the push of the past, the lightness or otherewise of the present and the pull of potential futures at scale are in a habituabe balance

    10. whilst we get on with our Real Work in the newly gestating Real World

      📌 get on with Real Work

      newly gestating Real World

      before it can gestate it may need to be gestalt out

      outuited

      envisioned

      and acted upon

      gather to do it together

    11. If you are not arabbit, you will have no idea what I’m are talking about

      be a rabbit

      but there are faint's within faint's witin faints too

    12. cycles oflearning

      where there is no pre-formed agenda, where we make space to slow down and see what is there, that take context into account more than data. Our natural learning capacities are freed up when we do this. Sadly most fall right here because we simply don’t have the right modelling

    13. habit or a ritual

      depending on the extent to which we relate to the meaning and are prepared to work with the aliveness of the moment. We can make our own rituals of course: Checking in and out of every meeting is a simple ritual that helps us bring greater focus and awareness of the energy and space we are in.

    14. We begin by using the resources we already have

      We begin by using the resources we already have:

      Us, the people in the room.

      We learn to play with - information from the field.

      We explore our world - with curiosity and - see what changes as we change

    15. it’s not about
      • growth,
      • targets and
      • standards,
      • rallying the troops,
      • finding the right model or
      • enough money or
      • enough information.

      None of that.

    16. wobbled and fallen along the way

      I began **following ‘the

      • 'knowledge’ and a
      • leader

      who dealt with knowledge over relationship building. That’s a common mistake and an even more salient learning experience when it hits.

      • Mistakes allowed -
      • even applauded
    17. not having anything to model how it’ssupposed to be done can be limiting.

      not having a model is a gift

      focus attention and PMO experience

    18. focusing on connecting with the human

      s more important than focusing on understanding the knowledge, or the model or the next step. We have not ever worked in this way. It’s very different. But it really works for those who are ready.

    19. Do not act out of

      fear, malice or revenge (take responsibility for regular clearing out of trauma wounds. It is always a work in progress).

    20. born a Sikh
      • bring together diverse groups
      • to protect the weak
      • carry out good work
      • split into factions

      • no holon at play

      • ideology more prevalent
      • then holon potential
      • true of most religions
    21. DNA
      • mutually supportive functions

      • inter playability is the key inded

      • diversity

      • resilience to the whole
      • mutually supportive

      • emergent novel capabilities

    22. holon

      indicators

      • simple rules
      • anyone can play learning oaths
      • stable organic growth of rules
      • low stress
      • afford
        • space
        • time
        • freedome

      expanding potential augmenting capacities for

    23. ‘manmade’

      all rules are man made

      the question is are they reasonable enough to assist the unfolding reality

      fulfil the sacred purpose

      long view thrivability

    24. Patterns can be understood as fractals and holons

      patters fractals holons

      re - use - sume - purpose - factor

      we need that in any creative endeavour specially when we think and have conversations about it

      tools to augment our individual thinking, engagements conversations as we symmathesize, articulate and externalize our inter intellect

    1. Last Thursday, I had the pleasure of being invited to present at a conference on the Digital Challenge and AI, organized by Martin Duchaîne de Défi Montréal.Martin sent me the recording of my presentation, which I had entitled "How to make the digital shift without slipping?". If you have a (good!) moment, I invite you to listen to it. (Links in the comments.) Thank you to Martin, and the other speakers, for a great time to reflect on substantive issues!

    1. This extension is available in the following other languages

      suggest that it was developed by another "bloody Hungarian" as my life long english friend Christopher would say

      they are all over the place

      more like they are attracted to create things as a Vanguard

    2. This extension is available in the following other languages

      Let's see

      suggest that it was developed by another "bloody Hungarian" as my life long english friend Christopher would say

      they are all over the place

      more like they are attracted to create things as a Vanguard

    3. By default, adding headings to pages

      By default, adding headings to pages by using the "H" and "H2" buttons adds a link directly to that heading. If you want to link to a heading on any page with an internal link, find that heading's hash (the slugified text joined to the # in the link) and add that to the internal link [[like this#heading_hash]] or [[like this|page_slug#heading_hash]]. If you need to link to a heading on the current page, just use the current page's slug in the same way. For example, if I wanted to link to the "Markdown Editor" heading further down this page, I would write [[Markdown Editor section|editing_pages#markdown_editor]].

    1. so a little exercise and Imaginatio

      so a little exercise and Imagination here

      can you imagine an architecture and platform that's comparable in - power and - sophisticated and - reach

      uh to those enjoyed by Fortune 500 companies

      but created buy-in

      for those

      on the Forefront of our evolutionary transformation

    2. initially focused on supporting those on the growing edge of evolutionary change

      Holochain is a great eco system supporting the Memetic Activation Platform

      IndyWeb' mission is to support over the web uatonomous interpersonal interplay across all existing ecosystem complete the existing web and all emergent Decentralied unenclosable ecosystems that arae fragmented today.

      Gyuri Lajos, [26/03/2025 09:05] Holochanin is a good pathway. Hoilochain as an ecosystem is self-closed. The goal had allways been to provide the connecting tissue that make these eco-system interplay

      Gyuri Lajos, [26/03/2025 09:06] The point of integration is by design the individual human being and their engagements

      Gyuri Lajos, [26/03/2025 09:05] Holochanin is a good pathway. Hoilochain as an ecosystem is self-closed. The goal had allways been to provide the connecting tissue that make these eco-system interplay

      Gyuri Lajos, [26/03/2025 09:06] The point of integration is by design the individual human being and their engagements

      Gyuri Lajos, [26/03/2025 09:07] The current design supports the ability to compete ANYRHING it touches and start the process of supporting ever growing interplayability

    1. StackBlitz unlocks a true one-click startup experience with the full stack running in the browser—it's a game-changer.

      stackblitz one click start up experience