Link shortening in social posts
flip that
for indyhub
Link shortening in social posts
flip that
for indyhub
Let’s transform your collaboration. Our premium solutions combine the power of social annotation with seamless integrations, enhanced controls, and advanced security. Select your industry, then complete the short form for a demo and pricing. A member of our Partnerships Team will be in touch within 24 hours.
File Sync
Gamre Changer
Kudos Peergos
fir
typo
it's a sociological phenomenon
that's not just a business phenomenon it's not just
a technical phenomenon it's a sociological phenomenon and the not only the quantity but the quality of
communication has increased dramatically because of this technology and you have to use it to really understand what I
mean
this technology increases the level of communication to a degree that is stunning and brings organizations together and makes the organization work as if it was a much smaller tighter knit team
team
the operating system and applications can register themselves as a service and will then show up in every single application the one shipped on the machine and every third-party application as well what does this mean well one of the applications that we ship for free with every next computer is our own digital librarian application and digital librarian appears as a service
software a an interpersonal inter applicaiton service
next computer to allow mere mortals to traverse very sophisticated networks and to share information with each other in a way that is far easier than any other networking software that has been created and yet we're still using the industry standard NFS file system so we're compatible with every workstation in the marketplace
Peergos built into the IPC
we want to communicate not with just words but with words in any text pictures sounds
not just words communicate
interpersonal Computing is the desire to improve group productivity and collaboration
improve group productivity
interpersonal Computing
Interpersonal Computing
skepticism(n.)
also scepticism, "the entertaining of mistrust, doubt, or disbelief," 1640s, from skeptic + -ism. Specifically from 1800 as "doubt or disbelief in the fundamental principles of the Christian religion." Earlier skepsis (from Greek skepsis) had been used in English for "philosophic doubt, skeptical philosophy" (1650s). Fuller's "Sermon of Assurances" (1630s) has scepticalness "doubt."
How I designed an abuse-resistant, fault-tolerant, zero cost, multiplayer online game
Lucid is an experimental project exploring using CIDs to package Web Tiles — a format for content addressable web sites.
lucid CID WebTils
Moreover, you can layer GossipSub on top of that as a PubSub messaging layer for ad-hoc mesh networks. I cover this in more detail in the following guide which should be published soon.
layer gossip hub
the Service Worker Gateway, whereby a service worker handles the retrieval and verification.
service worker gatewy
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
However, running SQLite in the browser is a pretty new development
to https://developer.chrome.com/blog/sqlite-wasm-in-the-browser-backed-by-the-origin-private-file-system
Reflections from Local-First Conf
Amino (the Public IPFS DHT) is getting a facelift
IPFS Principles
x
SQLite Wasm in the browser backed by the Origin Private File System
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
Faster than REST: Building a Real-time Chat Application with gRPC and Node.js
Are we our own worst enemy?
Yes indeed
not by accident
but surely a grave mistake
there are certain things you just have to get right.
Yes
seaech for the sweeet spot just above the threshold that is required
Digital Life Collective
Introducing WEBCAT: Web-based Code Assurance and Transparency | Securedrop
CodeSandbox alternatives
stakblitz
search = online code develipment javascript
One Planet Clubs 146 help Going people and planet-friendly from the bottom up
Octobox 📮 Untangle your GitHub Notifications.
The Abolition of Man
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.
search-metaxy-etymonline
JotSpot provides structured wiki software for small to medium-sized businesses.
noteworthy
discussion of furmulae but not formation or formulative thinking
variousnew formulaethatcanbewrittendown,givensomethatarealready writtendown
new formulae
In the algebragame the tokens are equations or formulae, andthe rules specify various transformations that canbe made in these formulae
formulae
a weight tracking app (PWA) built with Vue.js
cloned
Steward-ownership is capitalism 2.0
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("style"); style.appendChild(document.createTextNode("")); 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 'addElemFromSecondaryToPrimary' 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('pageRotateCcw', 'toolbarViewerLeft') addElemFromSecondaryToPrimary('pageRotateCw', 'toolbarViewerLeft') addElemFromSecondaryToPrimary('zoomIn', 'toolbarViewerLeft') addElemFromSecondaryToPrimary('zoomOut', 'toolbarViewerLeft') //adding elements to middle part of toolbar addElemFromSecondaryToPrimary('previous', 'toolbarViewerMiddle') addElemFromSecondaryToPrimary('pageNumber', 'toolbarViewerMiddle') addElemFromSecondaryToPrimary('numPages', 'toolbarViewerMiddle') addElemFromSecondaryToPrimary('next', 'toolbarViewerMiddle') //adding elements to right part of toolbar addElemFromSecondaryToPrimary('secondaryOpenFile', 'toolbarViewerRight') /* Changing icons */ changeIcon('previous', 'icons/baseline-navigate_before-24px.svg') changeIcon('next', 'icons/baseline-navigate_next-24px.svg') changeIcon('pageRotateCcw', 'icons/baseline-rotate_left-24px.svg') changeIcon('pageRotateCw', 'icons/baseline-rotate_right-24px.svg') changeIcon('viewFind', 'icons/baseline-search-24px.svg'); changeIcon('zoomOut', 'icons/baseline-zoom_out-24px.svg') changeIcon('zoomIn', 'icons/baseline-zoom_in-24px.svg') changeIcon('sidebarToggle', 'icons/baseline-toc-24px.svg') changeIcon('secondaryOpenFile', './icons/baseline-open_in_browser-24px.svg') /* Hiding elements */ removeElement('secondaryToolbarToggle') removeElement('scaleSelectContainer') removeElement('presentationMode') removeElement('openFile') removeElement('print') removeElement('download') removeElement('viewBookmark') } function changeIcon(elemID, iconUrl){ let element = document.getElementById(elemID); let classNames = element.className; classNames = elemID.includes('Toggle')? 'toolbarButton#'+elemID : classNames.split(' ').join('.'); classNames = elemID.includes('view')? '#'+elemID+'.toolbarButton' : '.'+classNames classNames+= "::before"; 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 = "0px"; element.innerHTML ='' parent.append(element); } function removeElement(elemID){ let element = document.getElementById(elemID); element.parentNode.removeChild(element); } function removeGrowRules(){ addCSSRule(sheet, '.hiddenSmallView *', 'display:block !important'); addCSSRule(sheet, '.hiddenMediumView', 'display:block !important'); addCSSRule(sheet, '.hiddenLargeView', 'display:block !important'); addCSSRule(sheet, '.visibleSmallView', 'display:block !important'); addCSSRule(sheet, '.visibleMediumView', 'display:block !important'); addCSSRule(sheet, '.visibleLargeView', 'display:block !important'); } function addCSSRule(sheet, selector, rules, index) { if("insertRule" in sheet) { sheet.insertRule(selector + "{" + rules + "}", index); } else if("addRule" 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('pageRotateCcw', 'toolbarViewerLeft')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('print') removeElement('download')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
Create communitywith purpose on HyloSign UpLog In
want to shift our system toward a more power to the powerful dynamic
more power to the powerful dynamics
The Battleground of Our Era is the Economic Mythology: What is our task?
We are watching.
being watched
markets are conversations
Well Well Everuthing is where people are involved and beyond
Uninstalling Bing Apps
7 Easy Ways to Get Bing Off Your Computer PDF download
An easy-to-follow guide on removing Bing from your computer
Programming
Future of Software as a Symmathetic Conversation
for search mindwiki github
(CUNEIFORM SIGN AN THREE TIMES) utf-8 character icon
for three dots
(AQUARIUS) utf-8 character icon
for icon indy flow
The essence of calculus 3Blue1Brown 3Blue1Brown Verified 7.17M subscribers Subscribe
How to derive Pythagoras' theorem using Thales's theorem [full workings]
-
The Demo @ 50
Engelbart 2018
Personal Knowledge Hub
Personal first but go Interpersonal 7 years later with the IndyWeb
“killer app”
Maker App
IndieWeb Webring
gloss -- InDiY WebRing
InDiY WebRing is a webring accross IndyWeb sites . Inspired and makes the original intent of IndieWeb Webrings powereby the Indy Web Technology
"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
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 =
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
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
Mindwiki is a web based tool for collaboratively sharing and editing information with mind maps and wiki documents.
MindWiki
NODAL: A Filesystem for Ubiquitous Collaboration
4 - OHS - Luanch Community
mindrive.co wikinizer.com MindPlex
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
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
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
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
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
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
the tyranny of forma
the tyrrany of format
a "knowledge worker," someone whose job or avocation involves the exploitation, organization and production of knowledge.
knowledge worker
trailblazer
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
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
Unfinished Revolution
unfinished revolution
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
Ubiquitous Collaboration
Ubiquitous Collaboration
Autonomos InterPersonal InterPlay needed
Simplicity
Contributed Papers
for - OHS - Launch Community - Papers
Eric Armstrong posts "XML Data Structures" paper
paper
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.
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.
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.
Lively Kernel
The Eastern European Newspaper Archive Explore hundreds of millions of articles with powerful search tools powered by AI.
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
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
Origin and history of mnemonic
💭 Thought balloon Emoji
idea of a new operating system for human civilization
Operating System was a bad idea
have all of the hands across the screen
Love💓 💕 that
enough of my preumble
Enough of my premumble =
Nice touch
Lost on AI
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;
}
holons, patterns and pathways
annotated
supercharges the capacity to build enablingframeworks for each other
build enableing networks - for each other
naturalpatterns of conversing, being and doing
natural petterns of
how about meaning and intents
dis-aggregate and rebuild actions
add reference
principles around the order in which we have conversations
order?
polishes up the ‘me’ holon
polishes up
//yeah appreciate self as a holon
holon that is ‘me’
self
A focus on values, not topicsenable alignment of actions
focus on values not topics
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
impact present moment orientation
worse still future perfect orientation
‘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
dispensing opinions
do not do that
as you said earlier
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
all learn together
then gather together
blessed
is the operative word
PMO itself with gratitude
invest in pensions that fuel leaky gutsyndrome and still worry whether we will have enough
leaky gut syndrome?
see more possibilities
out-tuit
attention into the future
find ways of structuring and re-structuring whatwe have to offer.
📣📯 for that we need the Indy Learning Commons on the Indy Web
Offering what we need when we need i
📣 but for that we have to
mutually learn what we need when we need it and learn it
collectively
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
solutions
📣📣 that would enable us to
operate as
in service to our communities are
discounted
capacities capabilities information affordances as holons
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
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
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
‘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
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
poly crisis shrivels into a tiny ball of fluff that we canblow off of our cuffs
Once we bring out
bring out gifts via PMO
poly crises shriverl
he invisible remains unseen and the hidden remains hidden
invisible unseen
hidden remains hidden
how much more useful is that than dry data?
dry data
step into our power and make our presence count
power presence
use the tools that allow the layers of conditioning to fall away
true self rein for epression
substructure that - we feed - feed us
wasting time with things that are notrelevant to the present moment
her and now for you and yours in your situation
letting in what isnurturing, letting go of what brings fear and judgment,
nurturing fear judgement
build common ground and define what happens on our common ground?
common ground
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
presentmoment concerns
Yes
but
how are we to act when we have to act before we knew how things were
That is the power of media
It is not just the media. But power itself
Our capacity to regulate our psyche
poly crises
Once we change our own perception of ourselves
and our relationship to the unseen, we change what the future holds.
authenticity
that lies underneath all the layers of conditioning.
wonderment in what the unseen holds for us
the one impervious to modelling
no-one else can see whatI’m pointing to.
many others see it
don’t have the right modelling
// worse still
things that are important are impervious to the very attempt at "modelling"
natural learning capacities are freedup
where there is no pre-formed agenda, where we make space to slow down and see what is there,
ake context into account more than data
context susidiary awareness
data focal awaareness
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
presentation by Jack Kruse
nervous systems literally fail to develop the parts that are our psyche’s don’t wish to see.
unresolved
patterns builds on each other
What is seen and unseen
plays out at an energetic level
Our authenticity and ability to discern
conditioning
PMO brings in the awareness needed to discern between
what is authentic from conditioned responses
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.
Equity
x
2. THE SYSTEMIC AND THE UNSEEN
x
he name of the game
Zombie spotting and holon energising
Tools and technology
provide what we need as umans
The more holons we aggregate together
hockey stick of change
‘me’ holon
spot other holons
interest to those who have been working on
new tools introduce into space
concrete examples
of Winfinity principles
encourage others who are circling around the idea of starting up their own group
circling around the idea
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
Catalysing change is about
providing places and spaces
that help us to become
responsive (in the right way) to each other.
it’s not about
None of that.
wobbled and fallen along the way
I began **following ‘the
who dealt with knowledge over relationship building. That’s a common mistake and an even more salient learning experience when it hits.
Do not judge others based
on
views, opinions, prespectives
water we seim in
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
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.
demonstratethat it is the
culture they bring to a space and it is the practice of the new culture that matters.
nternational Family Constellations Training Institute IFSCT.
IFSTC
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).
notice the lack of
provenance, selectiveness of stories and out-dated ways of looking at health, education and the economy)
Do not push your own views
permission granted drop seeds for thought connections
more important than being rights
Do no harm
first natural law
cultivating collective choice for people who work together
winfinity
work together to formulate missions and achieve a shared vision
studied three community based collectives
patters for PMOs in three comminities
I go into patterns around
difficult to see things
same value * outside * inside
born a Sikh
split into factions
no holon at play
DNA
mutually supportive functions
inter playability is the key inded
diversity
mutually supportive
emergent novel capabilities
‘fit in’ or to be you
helping you growth and learning journey
find your place
holon
indicators
expanding potential augmenting capacities for
‘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
regulate our inner worlds as well as our outer worlds
regulate
create ahealthy ecosystem inside of us and outside.
PMO function
dial things up and down as needed
dia indeed
collective, as ‘we’, operate as a healthy organism
we healthy organizm
providing an environment that enables us to be who we are
holon anvirionemt for individual thriving?
reproduce
grow and reproduce at a higher level kaizen
that’s whatwe want.
want?
need
to get back to kilter
balance
what ‘the map’ looks like
feels not look
I share my ‘patternharvest’
patter harvest
rulesabout ‘conversation culture’ as the basis for collective mycelial growth
‘due north’
back to the future
starting point of real learning
ad directionem ingenii
attentded to
illation