Which specific words or phrases in the opening paragraphs create the "warm" atmosphere, and how do they differ from the language used during the lottery drawing? Tonal contrast Specific warmth imagery:
Contrast with language used:
Which specific words or phrases in the opening paragraphs create the "warm" atmosphere, and how do they differ from the language used during the lottery drawing? Tonal contrast Specific warmth imagery:
Contrast with language used:
Filesystem controls were another important architectural choice. We found that offering different file-mount modes helps to granularly control risk; Claude Cowork offers read-only, read-write, and read-write-no-delete.
行动建议:实现细粒度的文件系统访问控制,提供多种挂载模式(如只读、读写、读写但不删除)来精确控制风险。对于企业环境,还应实现路径允许列表功能,并通过MDM设置进行管理,防止符号链接等机制导致的边界逃逸。
Remote versus local is more important than it seems. A locally installed tool is auditable. You can read the code, pin the version, and know it won't change under you.
行动建议:优先使用本地安装的工具而非远程工具,因为本地工具更可审计。对于必须使用的远程工具(如托管MCP服务器),应将其视为不受信任的组件,首先在隔离环境中使用模拟数据进行测试,以限制恶意工具的影响范围。
Match isolation strength to the user's capacity for oversight. A developer who can read bash and a knowledge worker who can't are not running the same threat model.
行动建议:根据用户的技术能力调整隔离强度。为技术用户(如开发者)提供需要专业判断的权限控制,为非技术用户提供绝对且始终开启的边界。这种匹配用户能力的策略能够有效避免因过度信任或过度摩擦导致的安全失败。
Design for containment at the environment layer first, then steer behavior at the model layer.
行动建议:优先在环境层设计 containment 机制,建立确定性边界,然后再使用模型层引导行为。环境层的确定性边界可以在模型层所有概率性防御失效时提供最后一道防线,这是应对数据泄露等场景的关键策略。
When building containment and defense systems, we apply defenses to three main components: the environment in which the agent runs, the model the agent consults, and the external content the agent can reach.
行动建议:构建多层防御体系,同时保护运行环境、模型本身和外部内容三个层面。环境层设置硬边界,模型层使用提示和分类器引导行为,外部内容层限制工具权限。这种重叠防御策略能够有效应对不同类型的攻击向量。
Rather than supervising what the agent does, we supervise what it's _able_ to do by enforcing access boundaries through, for example, sandboxes, virtual machines, and egress controls.
行动建议:为AI代理系统实施环境层边界控制,使用沙盒、虚拟机和出口控制技术限制代理的访问能力,而不是仅仅依赖行为监督。这种方法能够从根本上限制代理可能造成的损害范围,即使模型层防御失效。
How This 5x Founder Runs His Startup Solo With AI Agents
行动建议:学习成功5倍增长创始人的AI代理使用模式,构建自己的AI代理系统,将重复性任务自动化,专注于核心战略决策,实现单人团队的规模化运营效果。
Anthropic created MCP to make agent connectivity possible.
行动建议:如果你在开发需要与其他系统集成的AI应用,研究并采用MCP(Model Context Protocol)标准。这将使你的应用能够更无缝地连接到各种数据源和工具,扩展代理的能力边界并提高互操作性。
Stainless turns an API spec into SDKs across TypeScript, Python, Go, Java, and more.
行动建议:如果你是开发者,可以利用Stainless工具将你的API规范快速转换为多种编程语言的SDK,这将大大提高你的API采用率和开发者体验。这种方法可以确保你的API在不同语言环境中都能提供一致、可靠的原生体验。
Verified skills extend this AI governance to agent capabilities. Runtime controls help govern agent behavior during execution. Verified skills govern capabilities that enter the workflow and become a common way to extend trust agents across coding tools, registries, and enterprise platforms.
行动建议:将验证技能作为AI代理治理的核心组成部分,不仅在运行时控制代理行为,还要管理进入工作流的能力。这种方法可以扩展到编码工具、注册表和企业平台,建立跨平台的信任机制。
Certificate retrieval, supported verification tooling, and example verification commands see the signing documentation. For example, you can verify a signed skill locally. To do so, follow these steps: Download the NVIDIA Agentic Capabilities root certificate as nv-agent-root-cert.pem Install an OpenSSF Model Signing (OMS) verifier, such as pip install model-signing Execute the following command to verify the skill signature
行动建议:按照文中提供的步骤下载NVIDIA代理能力根证书,安装OpenSSF模型签名验证器,并使用提供的命令验证技能签名。这种实践可以确保您下载的技能是真实的且未被篡改,增强对AI代理能力的信任。
SkillSpector checks conventional software risks such as vulnerable dependencies, suspicious scripts, dangerous code patterns, credential access, and data exfiltration paths. SkillSpector also checks agent-specific risks, such as hidden instructions, prompt injection, trigger abuse, excessive agency, tool poisoning, and mismatches between a skill's declared purpose, requested access, and bundled behavior.
行动建议:在开发或使用AI代理技能时,使用SkillSpector工具进行安全扫描,检查依赖项、脚本模式、凭证访问和数据泄露路径等常规风险,以及隐藏指令、提示注入、触发滥用等特定风险。这有助于在技能部署前识别并缓解潜在的安全问题。
To get started with the cuOpt verified skill, for example, follow these steps: 1. Pull the cuOpt verified skill from the catalog: git clone github.com/nvidia/skills && cd skills/skills/cuopt 2. Verify the signature: model_signing verify certificate. --signature skill.oms.sig --certificate-chain nv-agent-root-cert.pem --ignore-unsigned-files 3. Open SKILLCARD.yaml to see ownership, dependencies, license, and verification status.
行动建议:按照文中提供的具体步骤,克隆并验证NVIDIA的cuOpt技能,查看技能卡片以了解所有权、依赖关系、许可证和验证状态。这种实践可以确保您使用的技能是经过验证的,并且可以安全地集成到您的AI代理工作流中。
NVIDIA-verified agent skills are portable instruction sets that help developers understand, trust, and safely deploy AI agent capabilities by providing transparency, provenance, security scanning, and cryptographic signing.
行动建议:将NVIDIA验证的代理技能作为构建AI代理能力的标准组件,优先选择经过验证的技能而非未经验证的技能,确保透明度和安全性。这些技能可以跨不同AI代理工具使用,提供一致的能力和安全性保障。
this means that existing estimates overstate the returns to software R&D, and makes the software intelligence explosion seem much less likely.
R&D Returns Overstated
Accounting for compute bottlenecks suggests that returns to software R&D may be lower than previously estimated, reducing explosion likelihood.
But I think we have enough evidence to think that software progress might really be several times a year, and to make a best guess contextualized with a lot of uncertainty.
Progress Estimation
Despite uncertainties, evidence suggests software progresses at several times per year, with estimates ranging from 2-50x annually.
gpt-oss-20b does substantially better than GPT-3 on MMLU, despite using the same amount of training compute.
Real-World Progress Example
Comparing models with same compute but different performance (like GPT-3 vs gpt-oss-20b) provides concrete evidence of software progress.
This means that almost all existing estimates of software progress were misleading.
Measurement Problems
Existing software progress estimates are misleading due to data quality improvements and scale-dependence factors not properly accounted for.
these estimates rely on an overly conservative estimate of software progress of 3× per year
Progress Underestimation
Existing software intelligence explosion models may use conservative progress estimates, potentially underestimating explosion likelihood.
Synthetic data can help push beyond this — a good example that Millidge raises is the Phi series of models.
Synthetic Data Impact
Synthetic data generation techniques like Phi models can dramatically improve efficiency beyond traditional distillation methods.
If doubling cumulative research effort also doubles compute efficiency, then the returns to R&D are 1. If it quadruples, then the returns are 2.
R&D Returns Measurement
Returns to AI software R&D measure how research effort translates to compute efficiency gains, with >1 threshold for potential explosion.
Almost all the evidence points to very fast software progress: each year, the training compute needed to get to the same capability declines several times — possibly even ten times or more.
Rapid Efficiency Gains
Software progress enables 2-10x annual compute efficiency gains, though estimates have wide confidence intervals due to data limitations.
AI software progress is about reducing the training compute you need to get to the same level of capability, through better algorithms or data.
Software Progress Definition
Software progress enables achieving same AI capabilities with less compute through algorithmic or data improvements, a key efficiency driver.
The most fundamental change brought by the LLM revolution is that human know-how is becoming replicable and shareable at scale.
大多数人认为AI革命主要在于自动化和效率提升,但作者认为LLM革命的核心在于人类技能的可复制性和规模化共享。这一观点挑战了主流认知,因为它暗示AI不仅是工具,更是一种全新的信息载体,类似于DNA和语言在人类历史中的变革性角色。
context management plus engineering improvements may well push the task horizon to weeks or even months.
Action建议:将上下文管理与工程改进结合,以延长任务处理时间边界。这种方法可显著提升模型处理长期任务的能力。
We can treat the task horizon that an LLM can reliably handle as a north-star metric for model progress, analogous to transistor density in Moore's Law
Action建议:采用任务完成边界作为衡量模型进步的北极星指标。这种量化方法有助于评估持续学习技术的实际效果和进展。
I'd view continual learning more as an "arrow" than a "line" — it's the collective effort to push the task horizon that an LLM can reliably handle.
Arrow vs Line Perspective
Action建议:将持续学习视为推动任务边界的集体努力,而非离散方法集合。这种视角帮助理解其方向性和系统性本质。
We track three specific vectors: Heal, One Thing, and Walk with Jesus.
The H.O.W. Ledger Mechanics. This is a "Low-Friction, High-Impact" protocol.
Heal (H): Neutralises the "Glitch" of identity lies.
One Thing (O): Tracks the "Obedience" metric (did you do what the Spirit prompted?).
Walk (W): Documents the "Presence" data. By limiting this to three sentences and five minutes, you bypass the "resistance" of the ego that says you are too busy to lead. If you cannot spare five minutes to plot your position, you aren't leading; you are just drifting.
Once you start noticing these signals early, you stop wasting time chasing leads that were never serious buyers in the first place.
Tired of chasing dead leads? Learn how to quickly identify unqualified leads with visual cues and a proven checklist that actually works.
p.s. Want the visual map? You'll find a full FieldNote Sketch Summary of this inside the 'hidden' layer. Click this highlight to see the synthesis, share it with someone you know needs it and save a copy for yourself.
Download this SketchNote of the HOW Framework for your own notes and to share.
I think all of these kind of public good uh infrastructures that we have came about in this very narrow special window of time uh where you had this kind of incursion of egalitarianism uh and and a and a spirit of of you know public-mindedness that's all being eroded.
for - public good - being eroded
So a lot of the goodness that was felt in the western world and experienced in the western world was thieved really really thieved and left a lot of damage in its wake.
for
John Lockach uh who often called the father of liberalism uh who's putting forward these kind of secular value systems to uh at first to you know justif ify things like the slave trade uh of which he was an investor uh the dispossession of Native Americans and their land
for - trivia - philosopher John Locke - investor in slave trade and native american dispossesion!
for - paper - The emergence of egalitarianism in a model of early human societies (2017) - author - Guillaume Calmettes - James N. Weiss
How did egalitarianism emerge in early human societies?
for - question - egalitarianism - how did it arise in early human societies?
I was faced in 1958 when I started graduate study at University College London with that extraordinary fact. Nobody knew how it could be that a muscle could excite itself to be rhythmic.
for - history - Denis Noble - 1958 - question - heartbeat of embryo - how? no nervous system yet.
We do not fully understand yet the complex causal mechanisms between how something happens in one person's mind moves through neural networks then moves through social ecological networks um and actually may create change in entire sector or give rise to systems
for - anthropocene - signalling - intrabrain - interbrain - SRG comment - individual / collective gestalt - SRG comment - how information flows from one brain to another - networked language!
With single parenting and cohabitation (when a couple shares a residence but not a marriage) becoming more acceptable in recent years, people may be less motivated to get married. In a recent survey, 39 percent of respondents answered “yes” when asked whether marriage is becoming obsolete (Pew Research Center 2010). The institution of marriage is likely to continue, but some previous patterns of marriage will become outdated as new patterns emerge. In this context, cohabitation contributes to the phenomenon of people getting married for the first time at a later age than was typical in earlier generations (Glezer 1991). Furthermore, marriage will continue to be delayed as more people place education and career ahead of “settling down.”
The people that are just OK with cohabitation rather than marriage surprise me but then it makes sense when we get to the next Section and they talk about one partner or many. The reason why more people are OK with cohabitation is because it’s less commitment rather than actually proposing a marriage, people want to still feel like they have the option to leave.(so they don’t feel trapped) It’s like they’re afraid of not having freedom or just afraid of the commitment in general.
This open toolkit provides access to multiple websites and resources concerning arts careers. By tracking keywords, it aims to reshape your understanding of career opportunities within the arts sector and identify effective solutions to address your specific “keyword” challenges.
This open toolkit provides access to multiple websites and resources concerning arts careers. By tracking keywords, it aims to reshape your understanding of career opportunities within the arts sector and identify effective solutions to address your specific “keyword” challenges.
This isn't a step, it's a statement of intent - it's what the toolkit aims to do. Step 3 needs to explain how to track the keywords, why they are being "tracked" and to what ends they are being tracked...
ngineering manual for building Muture Ihree.
for - book - The Last Economy - about how to build human symbiosis - an engineering manual for building Future Three: Human Symbiosis
we can’t recapture the same processes we used to learn to speak for the very first time
for - unlearning language - key insight - language - cannot recapture same process we used as child - cannot recapture the same processes we used to learn to speak language for the very first time - basically, we lose access to that original vocal learning circuit as an adult - question - language learning - what is this vocal learning circuit of an infant? - why do we lost access to the vocal learning circuit we had as a child? - observation - clue - language - accidental world recall and substitution - a clue to how we remember words - I wrote the above sentence "why do we lost access to the vocal learning circuit we had as a child?" when I meant to write: - "why do we LOSE access to the vocal learning circuit we had as a child?' - This very observation also has the same mistake: - "observation - clue - language - accidental world" instead of: - observation - clue - language - accidental WORD"! - I've noticed this accidental word substitution when we are in the midst of automatically composing sentences quite often and have also wondered about it often. - I think it offers an important clue about how we remember words, and that is critical for recall for using language itself. - We must store words in clusters that are indicated by the accidental recall
How We Became Posthuman (1999)
for - book - How we became posthuman
TLDR: When working with LLMs, the risks for the L&D workflow and its impact on substantive learning are real:Hallucination — LLMs invent plausible-sounding facts that aren’t trueDrift — LLM outputs wander from your brief without clear constraintsGeneric-ness — LLMs surface that which is most common, leading to homogenisation and standardisation of “mediocre”Mixed pedagogical quality — LLMs do not produce outputs which are guaranteed to follow evidence-based practiceMis-calibrated trust — LLMs invite us to read guesswork as dependable, factual knowledge These aren’t edge cases or occasional glitches—they’re inherent to how AI / all LLMs function. Prediction machines can’t verify truth. Pattern-matching can’t guarantee validity. Statistical likelihood doesn’t equal quality.
Real inherent issue using AI for learning.
quality of AI’s predictions depends ultimately on the data it’s been trained on -- i.e. the resources it’s been fed by those who built it.
Training data sets are critical to good results
general-assistance Large Language Models (LLMs) -- tools like ChatGPT, Copilot, Gemini and Claude (Taylor & Vinauskaitė, 2025).
General assistance Large Language Models - work on "patterns and predictions - what is most statistically likely to come next, not what is optimal"-------Lack of true understanding is a real issue!
for - youtube - neuroscience - How the brain remembers and imagines - Donna Rose Addis - memory and imagination have the same basis
summary - Donna Rose Addis is a pioneer in a field that connects past memories to future imagination - Her research has demonstrated that the same brain region, the Default Mode Network is responsible for simulations of past memories as well as future imagination - It is theorirized that episodic memory is reactivated and reorganized for creating future simulations
for - training wheels - words that show you how they are pronounced
for - from - search - Google - how new words divide the world in new ways - https://hyp.is/55MHUKUxEfC-TAfy9q1VjA/www.google.com/search?q=how+new+words+divide+the+world+in+new+ways&oq=how+new+words+divide+the+world+in+new+ways&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIHCAEQIRigATIHCAIQIRigATIHCAMQIRigAdIBCDgwODFqMGo0qAIAsAIB&sourceid=chrome&ie=UTF-8
for - search - Google - how new words divide the world in new ways - https://www.google.com/search?q=how+new+words+divide+the+world+in+new+ways&oq=how+new+words+divide+the+world+in+new+ways&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIHCAEQIRigATIHCAIQIRigATIHCAMQIRigAdIBCDgwODFqMGo0qAIAsAIB&sourceid=chrome&ie=UTF-8 interesting results returned - How words shape our world - https://hyp.is/v03HxqUxEfCM7h8cfH031w/www.prospectmagazine.co.uk/culture/48612/how-words-shape-our-world
for - neuroscience - how brains store memory - engrams
сле победы в войне, проведенной в интересах церкви, он узнает о смерти своей супруги, что становится для него глубоким ударом. Переполненный горем и разочарованием в божественной справедливости, он отрекается от своей веры и клянется в бессмертии, чтобы навсегда сохранить п
После выделение можно написать к нему комментарии или свои мысли
As your roommate receives the message, he decodes your communication and turns it back into thoughts in order to make meaning out of it
Its incredible, to see how what some one says is a code we undo to make sense out of it, and how fast it takes us to to un code, and this is are way as human to do it and it comes natural. But it is incredible to know other animal have they own way of talking and showing, the is direct in some ways as human.
From what I understood of the theory is about how people see themselves on who they want to be, and how they feel about that difference such as self image and to find out who they wanna be and even with their self esteem
In this paragraph, instead of looking at plagiarism or anything related to that, the study is relating to people and how ai influences people to think about themselves as real researchers.
That's me in a different headset. And when I really then then I ask, well, how would I want to treat me? I get the right answer. That's love. How would I if that's me, how how how would I treat me if that were me? Well, when you get the right when you do that, you're acting in love.
for - key insight - if that person is me, hope would I treat me? - Donald Hoffman - adjacency - if that person is me, how do I treat me? - Good Deep Humanity BEing journey
consciousness has created the brain as an icon to describe how it's how it's creating this headset.
for - quote / key insight - consciousness has created the brain as an icon to describe how it's creating this headset - Donald Hoffman
Is there anything people from all of the work you've done and the books you've written that people can bring into their lives to help them live better lives with this understanding of the world?
for - Q❓- how can your work help people lead better lives?
the really interesting question is like how come a bunch of dump cells give rise to something very smart which is the brain
for - question - how do dumb cells give rise to a smart brain?
Planetarity, and two forms of diversity,
for - definition - planetarity - Michel Bauwens - tension between two forces - regionalism vs - global virtual domains - phygital domains - question - how do we reconcile - phygital vs regional?
HOW SYSTEMS GET UNSTUCK
for - stuck systems - how systems get unstuck
Am 14.05.2025 kündigte die NGO Milieudefensie eine neue Klimaklage gegen Shell an, um die Inbetriebnahme von 700 geplanten Öl- und Gasfeldern zu verhindern. Die Emissionen dieser Felder würden 5,2 Milliarden Tonnen CO₂ betragen, etwa 36 Mal so viel wie die der Niederlande. Eine Studie zeigt, dass Shells Emissionen weiterhin steigen. Seit 2021 hat Shell Investitionen in 32 neue Öl- und Gasfelder beschlossen. Ein Gerichtsurteil von 2021 verlangte von Shell eine Reduzierung der Emissionen um 45 % bis 2030, doch ein Berufungsurteil von 2024 hob diese konkrete Vorgabe auf. Shell hat vier Wochen Zeit, auf die neue Klage zu reagieren. [Zusammenfassung mit Mistral generiert] https://taz.de/Neue-Klimaklage-in-den-Niederlanden/!6087879/
i'm still incredulous when i think of all the people who work really hard to learn a language and then you know the experience is no different than people who don't try much
for - studying language - doesn't always lead to knowing how to speak the language
how did that translate into a classroom situation
for - question - ALG language training - how does the "experience" approach translate into a classroom situation?
book,Sand Talk: How Indigenous Thinking Can Save the World, demonstrates the
for - book - Sand Talk - How Indigenous Thinking Can Save the World - Tyler Yunkaporta - yarning - indigenous storytelling
Toward the end of his life, futurist Fred Polak looked not toward thefuture but back at the past, at what previous generations thought the futurewould be like.
for - futurist - Fred Polak - looked to the past to see how they saw the future.
Iwasn’t unfriendly, but I wasn’t friendly either. Eventually I realized that whenI decided that he was “mean,” I had become mean. I treated him meanly. Myjudgment of another showed me my own meanness, a shadow part of me that
for - Deep Humanity Being journey - bringing our shadow to consciousness - Question - How could we construct shadow awareness BEing journeys?
Besprechung eines neuen Buchs über das Projekt 2025. Das Buch und diese Artikel machen keine Aussagen darüber, wie genau Trump dieses Programm implementiert. Es wird aber klar, dass es darum geht die gesamte Entwicklung des amerikanischen Staats, seit dem New Deal zurückzutnehmen und damit die Regulation des Kapitalismus, die damals begann, auch wenn Diese Auszukier gar nicht verwendet wird. https://www.theguardian.com/us-news/2025/apr/26/trump-project-2025-book
Explain that. Carry that out for people who would be like, I'm not making the connection because I think so much of what's happened in the last week and a half, we have to understand how this all connects,
for - question - clarify for the audience how the US dollar as reserve currency, the decrease in demand for US treasury bonds and the US national debt are related to Trump's tariffs?
comment - The interviewer asks a great question on behalf of the audience as she understands that a lot of people don't understand the significance of Trump's tariff on the US national debt, treasury bonds and the US reserve currency. - She asks him to connect the dots and reveal the salient adjacencies
for - Trump tariffs - How much pain? - article How much pain will new tariffs bring - and for how long? - author - Justin Wolfers
for - colonialism - impacts - Americas - little ice age - cause - genocide of indigenous people in 17th century - abandoned fields - stats - colonialism - genocide - 55 million people - cooling of planet - MAGA - How to make the Americas great again - colonialism - justice - to - paper - Earth system impacts of the European arrival and Great Dying in the Americas after 1492 - https://hyp.is/fHnyIBL3EfCpcmfnGW26DA/www.sciencedirect.com/science/article/pii/S0277379118307261
comment - The MAGA movement needs to deeply reflect on this - They claim national pride but do not go further back in history than the establishment of the United States - They need to recognize how the US was established on genocide in order to live in cultural truth - This reality creates a contradiction to their entire theme of white national power - It makes the elimination of DEI hypocritical as indigenous peoples have a far more legitimate claim than they do
for - futuring - Maarten Hajer - youtube - Techniques of futuring: On how imagined futures become socially performative - to - paper - Techniques of futuring: On how imagined futures become socially performative - https://hyp.is/pCJ_iA42EfC_9C-RJoo6wQ/journals.sagepub.com/doi/full/10.1177/1368431020988826
comment - meme - Gien - past - present - future - quote - Gien - past - present - future - When the future becomes the present, - memories will remind us of imaginations in presents past
the point of futuring is that you need to connect facts and fictions because that is how this these future Visions become socially performative
for - meme - futuring - connect - present facts - to - future fictions - quote - The point of futuring is that you need to connect facts and fictions because that is how this these future Visions become socially performative - Maarten Hajer
there's a particular paper in which we try to position our work on futuring in the social theoretical journals which is just to test whether it would hold whether people would accept that you can make sense of the future
for to - paper - Techniques of futuring: On how imagined futures become socially performative - https://hyp.is/pCJ_iA42EfC_9C-RJoo6wQ/journals.sagepub.com/doi/full/10.1177/1368431020988826
It's fairly trivial to write functionality in plpgsql that more than covers what timetravel did.
for - Wikipedia - SSP - Wikipedia - Shared Socioeconomic Pathways - from - youtube - Maarten Hajer - On how the imagined future becomes socially performative - https://hyp.is/8mXOWA_3EfCXhe8CC1TpwA/www.youtube.com/watch?v=ch_zS6Hc0LM
for - Wikipedia - dramaturgy - from - youtube - Maarten Hajer - Techniques of futuring - On how imagined futures become socially performative - https://hyp.is/5DP6_A_zEfC90FvH6DzXOw/www.youtube.com/watch?v=ch_zS6Hc0LM
This article, then, has three aims.
for - futuring - paper - Techniques of futuring: On how imagined futures become socially performative - from - collective imagination toolkit https://hyp.is/i3N9KA_DEfCsXivEzv3w5A/www.collectiveimagination.tools/ - purpose of the paper - how images of the future gain performative traction - objectives: how images of the future gain performative traction: - present insights and weaknesses of leading social-theoretical futures work - fill some gaps by - imagining the future via - social practices - performance of reality // question- what does this mean?// - develop performative understanding of futuring via - dramaturgical analysis that investigates ow actors - actively bring the future into the present through performance of particular: - narratives - settings - configurations
Summary - This is a very insightful paper on futuring and how activity in the present realizes imagined fictions, which don't yet exist, and bring them into being in our (future) present - One thing to note is that there is a huge swath of human activity not explicitly discussed which is intrinsically futuring, and that is the birth of any new idea in general, including scientific, mathematical and technological. - Human progress is the sum total of countless individual futuring projects that imagine some fictitious, nonexistent idea and work to incrementally bring it into existence.
for - Maartin Hajer - paper - Techniques of futuring: On how imagined futures become socially performative - from - youtube -Techniques of futuring: On how imagined futures become socially performative - https://hyp.is/uGfbNA40EfCrf5usD4aRoA/www.youtube.com/watch?v=ch_zS6Hc0LM - to - youtube - participatory community-scale futuring - Town Anywhere - Ruth Ben-Tovim - https://hyp.is/5okY9A8sEfCdoWsQtK2CSg/www.youtube.com/watch?v=LbErfM3mLxE - https://hyp.is/HHE2wg8tEfCVkK-dln3oYQ/www.youtube.com/watch?v=cRvhY4S94ic
summary - This a a paper that frames design and innovation, - among the most ubiquitous and important of all human activities - as a branch of futuring - Design and innovation bring something new into existence - That which is designed - is that which is imagined - is that which is not yet real - is that which is therefore a fiction - Innovation brings the fictional and imagined into reality through mobilizing and coordinating social behavior that realizes the imagined future. - This is especially critical as our species needs to rapidly imagine and bring about an aspirational future that mitigates our existential polycrisis
for - collective imagination toolkit - to - paper - Techniques of futuring: On how imagined futures become socially performative - https://hyp.is/go?url=https%3A%2F%2Fjournals.sagepub.com%2Fdoi%2Ffull%2F10.1177%2F1368431020988826&group=world
This blog from the University’s Careers Service gives helpful examples of how you can evidence your digital capabilities when updating your CV.
Student specific - is there a staff alternative to this blog post?
for - Town Anywhere - Ruth Ben-Tovim - from - paper - Techniques of futuring: On how imagined futures become socially performative - https://hyp.is/zorBdg8sEfCiHm-Z970wbQ/journals.sagepub.com/doi/full/10.1177/1368431020988826
for - Ruth Ben-Tovim - Town Anywhere - from - paper - Techniques of futuring: On how imagined futures become socially performative - https://hyp.is/zorBdg8sEfCiHm-Z970wbQ/journals.sagepub.com/doi/full/10.1177/1368431020988826
Serbia is such an important player in this part of the world. And this isn't the first round of student protests. They played a big role in the 1990s as well.
for - question - Serbia - student protests - how to avoid making the same mistake? - People make the same mistake, - big protests give opportunity for the next authoritarian leader to game representative democracy - Something must be done fundamentally differently to prevent this from happening in the future
Gamification is the process of using game elements in a non-game context. It has many advantages over traditional learning approaches, including: Increasing learner motivation levels Improving knowledge retention Better learner engagement through social mechanisms like badges, points, or leaderboards
Gamification Definition and what are advantages over traditional learning approach .how does it improve knowledge and better learning engagement through social mechanism like badges ,points or leaderboards
for - post - LinkedIn - Emma Holten - book - Deficit - How Feminist Economics Can Change Our World - to - book - How Feminist Economics Can Change Our World - https://hyp.is/ftgm4AP3EfC7MJfb8gJevg/www.penguin.co.uk/books/468871/deficit-by-holten-emma/9780753561461
If we cannot properly value the things that matter, how can we build a better future?
for - book - Deficit - How Feminist Economics Can Change Our World - quote - If we cannot properly value the things that matter, how can we build a better future? - Emma Holten - from - post - LinkedIn - Emma Holten - Deficit - How Feminist Economics Can Change Our World - https://hyp.is/7KpQOgP3EfCRe5dZ352aJQ/www.linkedin.com/posts/emma-holten_i-feel-a-little-bit-ashamed-almost-because-activity-7307688971705159682-zeZ0/?rcm=ACoAACc5MHMBii80wYJJmFqll3Aw-nvAjvI52uI
for - book - Deficit - How feminist economics can change our world - author - Emma Holten
Reply to Hajo Bakker on LinkedIn
Hajo Bakker Exam vs. Test -- Een examinering moet veel vanafwegen en niet regulier gebeuren.
Een test (toets) mag vaker gebeuren, en moet weinig vanaf hangen... Geen ouders die straffen voor een laag cijfer (of cijfers afschaffen), geen adviezen die daarvanafhangen, etc.
Het doel van een toets is om je aan te geven wat je krachten en minder sterke punten zijn, dus waar je je op moet focussen met toekomst leren. Dit kan alleen op het moment dat je een toets nabespreekt en op individueel niveau. Klassikaal bespreken heeft vaak weinig nut.
Daarbij komt ook dat een student moet snappen WAAROM het helpt om na te bespreken, de wetenschap erachter. Op het moment dat je de waarom achter het hoe niet goed snapt heeft het hoe minder effect. (dit is waarom in het 4C/ID model ze in een scaffold beginnen met de laatste stap, waarin de informatie van voorgaande stappen is gegeven. Dit zodat als je de vorige stap gaat leren, je een beter idee hebt waar het uiteindelijk voor gebruikt gaat worden en je er dus een betere invulling aan kan geven.)
Semantische verschillen zijn vaak uiterst nuttig om complexe stof te begrijpen. Op het moment dat ze exact hetzelfde waren heeft het weinig nut om meerdere termen te hebben en zouden ze synoniem zijn.
"Exam" is geen synoniem van "test".
Genuanceerde verschillen zijn vaak nuttiger dan "umbrella terms" om goed te communiceren, als uiterst subliem wordt beargumenteerd in "Science of Memory: Concepts" van Roediger III et al.
Daarnaast komt uiteraard bij kijken dat neurocognitieve wetenschap een blauwdruk geeft voor hoe onze brein architectuur in elkaar zit (zie bijvoorbeeld John Sweller, Cognitive Load Theory 2011, en The Forgetting Machine, Rodrigo Quian Quiroga, 2017, Science of Memory: Concepts, Roediger et al., 2007, Ten Steps to Complex Learning, van Merriënboer, 2017).
Dit is universeel toepasbaar, afgezien van mensen met een cognitieve aandoening bijvoorbeeld, dit gaat dus over neurotypische breinen.
Leerstijlen zijn een mythe, wel hebben wij leervoorkeuren, maar door alleen in onze leervoorkeur te leren missen wij bepaalde informatie die cruciaal kan zijn voor beter begrip en meesterschap (mastery).
Beter is het om studietechnieken te gebruiken die overeenkomen met brein-architectuur en die onder te knie te krijgen.
Meer cognitieve belasting te gebruiken (zonder cognitieve overbelasting te veroorzaken). Als leren "makkelijk" voelt is het over het algemeen niet uitdagend genoeg en/of de techniek niet nuttig. Herlezen / samenvatten is simpel maar vrij inefficiënt. Het maken van een GRINDEmap voelt moeilijk maar is vele malen effectiever (zie ook the misinterpreted effort hypothesis).
Zoals Dr. Ahrens al zei: "The one who does the effort, does the learning."
Verder heb ik een heleboel ideëen voor een optimaal onderwijs dat zich aanpast aan het individu in plaats van aan het systeem, maar dit is een te complex en groot onderwerp om zo even hier neer te zetten.
for - adjacency - commons - funding. - how to communities can become self-sustaining - Will Ruddick - community economics - adjacency - funding the commons - Will Ruddick - Michel Bauwens - cosmolocal Summary - Will Ruddick articulates a way to use money more wisely that follows the " teach a man to fish" cliche in order to build self-sustaining communities - To mobilize a global transition requires careful analysis at multiple scales - employing cosmolocal strategy would accelerate and make Ruddick's proposal more resilient
turning conscientious objectors . . . into heroes of the antimilitarism movement could unwittingly perpetuate exactly the sort of masculinized privilege that nurtures militarism”
archetype of the hypermasculine wheelchair-bound veteran dissenter.
The figure of the grieving mother is a collectivity, with women characterized as part of a population of mothers with a collective experience of loss. Their dissent is practiced through invocations of a dead or imperiled soldier child, who signifies the claim to associative military masculinity. In contrast, the perspective of the returning veteran is grounded in individual experience. The film depicts women as caregivers, with their dissenting subjecthood derived from their relationships with men.
this narrative of personal growth and triumph is complicated by the fact that Tomas's newfound power and authority are rooted in traditional masculine ideals. The film ultimately suggests that the military peace movement is shaped by masculinized privilege, which can be both productive and limiting.
White Ribbon Campaign, which originated in Canada and has a branch in England, is a group of men committed to discussing and ending male violence against women. However, there is a lack of groups of men in the anti-militarist and peace movements who analyze and resist the deformation of manhood by militarization. For war to end, men need to become self-aware and refuse the violence expected of them, and the association of masculinity with militarism. Some men, such as those in the Turkish conscientious objectors movement and South Korean anti-militarist men, are starting to listen to feminist ideas and take on board their perspectives.
hat governments cannot militarize without making women complicit, that wars rely on specific forms of masculinity, and that grappling with the militarization of women and men must be done together.
The party used stereotypes of Muslim men as rapists and Hindu goddesses to mobilize women's support, while also enforcing control over female sexuality and personhood.
No Pride in War (NPIW) challenged the involvement of BAE Systems and the Red Arrows in Pride marches, accusing them of "pinkwashing" and glossing over militarized violence by focusing on LGBT inclusion.
Sisters, formed an all-women and non-binary anti-militarist group to highlight the gendered politics of the arms trade and build solidarity with Syrian women affected by conflict.
opposing militarism requires resisting patriarchy, heterosexism, and racialized configurations of queer inclusion/exclusion.
'When we asked people on the door what they would change about politics, a lot said “get rid of the migrants”. But we didn’t stop at that and move on, we kept asking to find out why people felt that way. ‘At the end of every conversation, it was always social or economic problems — people can’t pay their rent or can’t pay for their kids’ football club. What they’re really concerned about is the decline of their communities.’
for - depolarizing politics - by listening - DH - depolarizing politics - LinkedIn post - depolarizing politics - to - article - how to win back working class by listening - https://hyp.is/9eRGVPmuEe-PDbs--ct4ow/tribunemag.co.uk/2025/03/neukolln-dreaming
for - applying Deep Humanity - to politics - German politician - how to win back the working class - from - LinkedIn post - how to win back the working class by listening - https://hyp.is/tNXrDvmuEe-KLr-D3J1kyw/www.linkedin.com/posts/jaimearredondo_neuk%C3%B6lln-dreaming-activity-7302967458137591808--TA1/?rcm=ACoAACc5MHMBii80wYJJmFqll3Aw-nvAjvI52uI
for - Indyweb dev - open source AI - text to graph - open source AI - text to graph - from - article - Medium - How to Convert Any Text Into a Graph of Concepts - https://hyp.is/vu53YvmIEe-DuHvXodWFAA/medium.com/towards-data-science/how-to-convert-any-text-into-a-graph-of-concepts-110844f22a1a
for - book - The Biology of Desire - 2015 - Marc Lewis - from - youtube - How the Meaning Crisis is related to the Drug Crisis - John Vervaeke - https://hyp.is/DcNL3PW7Ee-Qq6P6Ct5-YQ/www.youtube.com/watch?v=Y-c2E5FB5Z4
for - Marc Lewis homepage - from - youtube - How the Meaning Crisis is related to the Drug Crisis - John Vervaeke - https://hyp.is/DcNL3PW7Ee-Qq6P6Ct5-YQ/www.youtube.com/watch?v=Y-c2E5FB5Z4
how do we help addicts feel empowered rather than disempowered which is a potent antidote to Ego fatigue to feel empowered I can do it okay and I think that we need to help them own other goals
> for - addiction - recovery - how to help addicts - empower - replace drug use with other goals - help expand - from eternal now to - painful past - uncertain future
Das Alfred-Wegener-Institut hat ein neues Tool online gestellt, mit dem man Vergleichskarten mit den Temperaturverläufen für unterschiedliche Klimaszenarien erstellen kann. So lässt sich darstellen, welchen Einfluss die bisherige globale Erhitzung und zukünftige Temperatursteigerungen auf die Temperaturen an allen Stellen der Erde haben. In der ersten Version lässt sich ein Szenario von 4° Termperatursteigerung bis 2100 visualisieren. https://taz.de/Online-Tool-Climate-Storylines/!6068361/
Climate Storylines: https://climate-storylines.awi.de/
He frequently used the trope of "magic" to describe the technologies and practices he did not fully understand. This trope was common in West African encounters with European colonizers, who were often seen as possessing mysterious powers and magical properties. Throughout his journal, Dikko emphasizes the importance of personal observation and experience. He often states that certain things are "difficult to describe" or "very difficult to describe," implying that his readers would need to see these wonders for themselves to fully appreciate them. This narrative strategy allowed Dikko to maintain his authority as a traveler and observer, while also encouraging his readers to imagine and fantasize about the wonders of Britain.
what's more important from the perspective of a software architect is why a particular implementation or approach was chosen over its alternatives. A common way to document decisions like this is to use architecture decision records, ideally stored in source control with or near the application(s) impacted by the decision.
Why is more important than how
#> 1 OpenAlex Only 12427
damn the wrapper I made only finds around 1685 hits, I wonder if it is to do with the type of search?
api_endpoint <- oa_query(
entity = "works",
title_and_abstract.search = search_string,
from_publication_date = from_date,
to_publication_date = to_date
)
The city's elite was forced to acknowledge the poor as equals, and the government recognized the need to treat the comuneros (community leaders) with respect and give them responsibilities and opportunities.
The city's traditional industries declined, leading to economic dislocation among the poor. Many rural migrants settled on precarious slopes, leading to a high level of illegal housing settlements. The distribution of income in Medellín became increasingly unequal, with the wealthy elite holding a disproportionate amount of power and wealth.
Pablo Escobar, became cultural icons, and their extravagant lifestyles fascinated many.
new era of violence, conspicuous consumption, and social change emerged.
Beauty queens who might have expected to make a brilliant match with a businessman or politician instead became molls and mistresses of drug lords.
Beggars disappeared from the streets, and petty thievery declined as unemployed youth found work in the drug syndicate.
for - Project 2025 - Trump - Hitler - Atlantic article - Atlantic article - How Hitler dismantled democracy in 53 days
for - Youtube -Right way to eat sugar - No inflammation - health - diet - how to minimize insulin spike when eating sugar - Dr. Anshul Gupta M.D. 2024 Nov
summary - combine with protein or good faats to slow down sugar release - exercise 15 minutes after eating sugar - eat in the morning, not the evening - eat small portions - stevia and monkfruit are the only sugar substitutes
for - adjacency - progress trap - mafia - intentional fires - Italy - complexity - CNN - How the Mafia is weaponizing wildfires - 2025,Jan 27
The Tale of Culhwch and Olwen by [[Robin Williamson]]
Meeting Diverse Learning Needs - Accessibility and Accommodations. Las Positas College is committed to creating a teaching and learning environment that facilitates equitable access and helps ensure academic success for all students. As current and future teachers, we all must think about how best to support each of our students and their learning processes.
I can personally experience that Las Positas College not only provides stuents with equal opportuities for admission ,but also requires students to practice such educational philosophy throughout their academic journey in the college.
These can be helpful for you, but there are also serious concerns. • Ai can change the authenticity of your writing, turning into a “voice” that is not your own. For example, Grammarly often changes my word choices so they don’t sound like something I’d actually say. That goes beyond just checking grammar. • It can definitely lead to plagiarism, basically creating something that is not from you. • The information is often incorrect or made up, for example citing resources that don’t actually exist.
This resonates with me, so I think after I use grammar correction, I still need to go back and check my writing to express my ideas in a way that suits my style and tone.
Michael Harvey https://www.youtube.com/@michaelharveystoryteller8003/videos
Has a version of How Culhwch won Owen
A single kill by drone, for example, involves anywhere from 100 to 200 people
threat that drone warfare involves hypermasculine killing machines (Masters 2005; Manjikian 2014) or that it entrenches the distinction between “our” space and “their” space (Gregory 2011), either of which would make violence easier
Narrative offers a way to access bodily experiences, such as those of killing with or dying by drones,6 that are otherwise “impossible to reproduce” by those who live them (Wibben 2011, 44)
This can involve studying the experiences of bodies coded as women, gay, or of color in flying drones.
book on Wonder (called “Wonder: From Emotion To Spirituality”
for - book - Wonder: From Emotion to Spirituality - Robert Fuller - argues how central wonder is
it's deeper than your ego, it’s deeper than your judgements of truth, goodness and beauty. It's deeper than your propositional thinking. It's deeper than your conceptualisation. The way that can be spoken of is not the way!
for - Meaning crisis - episode 33 - The Spirituality of Relevance Realization - Wonder/Awe/Mystery/Sacredness - John Vervaeke
question Relevance Realization - Depth? - How deep is it? - It's deeper than: - ego - your judgments of truth - goodness and beauty - your propositional thinking - your conceptualization - The way that can be spoken is not the way
In the 1960s, the use of LSD was seen as a dichotomy between "straights" who did not use illegal drugs and those who got "stoned." However, this dichotomy made it harder to understand why certain substances like tobacco and alcohol were legal, while others like marijuana and LSD were illegal.
making everyone who was stoned a part of an "illegal nation." Government authorities and parents saw illegal drug use as a dangerous practice, and many antidrug advocates made little effort to differentiate between illegal drugs. The criminalization of LSD made its use both more dangerous and more a clear sign of cultural rebellion. Just by using LSD or marijuana, an individual was declaring themselves an opponent of the status quo willing to go to jail in pursuit of a favorite form of altered consciousness.
As a result, underground chemists and dealers took over, and the quality of LSD became unreliable. The US government also began to crack down on LSD use, holding congressional hearings and eventually making it illegal in 1966.
The marijuana trade expanded with new entrepreneurs, including border smugglers and those in hippie tourist resorts. These groups capitalized on their existing networks and skills, such as bilingual abilities and connections with mountain growers.
Mexico became a popular destination for tourists, who would travel to the country to experiment with drugs, including marijuan
The demand for marijuana was fueled by the counterculture movement, with young Americans seeking to rebel against traditional values.
The media played a significant role in shaping public perception by emphasizing the dangers of drugs, affecting both public and medical views on LSD and its users. Psychedelic experts, who also used the drug, faced a dilemma between their professional roles and political pressures. By the late 1960s, the credibility of psychedelic psychiatry was questioned, and therapists were seen as unqualified to address LSD abuse.
In the 1960s, a moral panic emerged as politicized youth were seen as promoting immorality, creating tension between generations.
The media's portrayal of LSD as a symbol of an emergent youth counterculture further exacerbated fears about the drug's impact on society. Medical experts, such as Osmond and Hoffer, criticized the media's sensationalism
public panic about acid made establishing research laboratories for testing underground drugs politically unpalatable.
between Leary's promotion of LSD and his criminal behavior forged a strong illustrative bond between the two activities.
changed to be associated with crime
omplained that Leary's promotion of LSD as a recreational drug undermined its potential clinical use.
Aneurin Bevan
for - further research - Aneurin Bevan - 1952 - liberal democracy's greatest paradox - How does wealth manage to persuade poverty to use its political freedom to keep wealth in power? - source - article - Le Monde - Musk, Trump and the Broligarch's novel hyper-weapon - Yanis Varoufakis - 2025, Jan 4 - inequality - elites - source - article - Le Monde - Musk, Trump and the Broligarch's novel hyper-weapon - Yanis Varoufakis - 2025, Jan 4
How does wealth manage to persuade poverty to use its political freedom to keep wealth in power?
for - key insight - inequality - elites - How does wealth manage to persuade poverty to use its political freedom to keep wealth in power? - source - article - Le Monde - Musk, Trump and the Broligarch's novel hyper-weapon - Yanis Varoufakis - 2025, Jan 4
Die Europäische Union befindet sich bei der Umsetzung ihrer Klimaziele in einem entscheidenden Moment. In einem Bericht des European Council on Foreign Relations werden die politischen HIndernisse für die Dekaarbonisierung analysiert, Dabei wird detailliert auf die geopolitische Situation und auf die Bedingungen in den EU-Staaten eingegangen..
indranet.
for - indyweb dev - hyperpost/index.html - question - how does it do that?
if Consciousness were to go floating around how the hell do you explain how it can see anything without eyes
for - Youtube - Techdenkers: Anil Seth - Exploring the Possibility of Artificcial consciousness - out of body experience - Anil Seth - good point - how do you explain seeing without eyes?
for - search result returned - hypothes.is annotation of - Substack article: The Cosmo-Local Plan for our Next Civilization - Stop Reset Go reply to annotation - Me2We2All - Local Economic Permacultures? - Search - Google - how many silo'd social groups exist on the web on a specific topic? - https://hyp.is/UrdJmMHKEe-nGLd7p-JTcA/4thgenerationcivilization.substack.com/p/the-cosmo-local-plan-for-our-next
for - search - Google - how many silo'd social groups exist on the web on a specific topic? - 2024, Dec 26
All these "rules" are really just guidance/suggestions... I highly recommend you try out the thing you would imagine to work and see how it goes. If it works for you, then great. If not, try something else. What works for someone else isn't necessarily going to work for you. How do you think these things came about? They really weren't invented, but slight variations on a pre-existing theme that someone customized for their needs.
It's called a "zettelkasten practice" for a reason. After you've been at it for a few months, write up your experience and let us know how it all worked out. What worked well? What didn't? Speculate on the reasons why...
reply to u/King_PenguinOs at https://old.reddit.com/r/Zettelkasten/comments/1hklaii/getting_started_with_zettelkasten/
two potential kinds of ‘nomadic’ players
for - QUESTION - somewheres, nowheres, everywheres - how do the somewheres fit into this strategy? - from Substack article - The Cosmo-Local Plan for our Next Civilization - Michel Bauwens - 2024, Dec 20
So what's the first thing to do? It's to stop being ordinary. So they say, "tha mal gyi rtog shes spang ba," "abandon ordinary thoughts and ordinary attitudes," ordinary experience.
for - Buddhism - TIbetan - clear light meditation - practice - how to practice simulation of Tukdam while still alive? - Stop ordinary thoughts and feelings - from Youtube - Between Life and Death: Understanding Tukdam - John D. Dunne
The Greeks took that material change and they mythologized it into the soul. And then, of course, Genesis—the creation of the world in Christianity—says, the world is here for humans. It was created for humans to use, to dominate, to exploit, you know, in their trial here to see if they’re righteous or not.
for - key insight - roots of anthropomorphism - Greek and Christian narratives - from - Emergence Magazine - interview - An Ethics of Wild Mind - David Hinton - adjacency - existential polycrisis - roots of anthropomorphism in the written language - Deep Humanity BEing journeys that explore how language constructs our reality
key insight / summary - roots of anthropomorphism - Greek and Christian narratives - The Greeks defined the soul - The Genesis story established that we were the chosen species and all others are subservient to us - From that story, domination of nature becomes the social norm, leading all the way to the existential polycrisis / metacrisis we are now facing - This underscores the critical salience of Deep Humanity to the existential polycrisis - exploring the roots of language and how it changes our perceptions of reality - showing us how we construct our narratives at the most fundamental level, then buy into them
as practitioner we need to come become fluent in in working with sensation working with the way the our our body feels and moves and senses so the body
for - prenatal and perinatal somatic therapy - must become fluent with sensations of how our body feels, moves and senses - Youtube - Prenatal and Perinatal Healing Happens in Layers - Kate White
I have a great passion for the fetal brain research is that if we can really help now um how a parent is feeling it can really influence the neurod development of a child
for - fetal brain research - help with how a parent is feeling influences neural development of a child later on - Youtube - Prenatal and Perinatal Healing Happens in Layers - Kate White
Drawing on ancient wisdom can help co-create systems that prioritise ecological reverence and community over individualistic domination
for - post - LinkedIn - How Chinese Philosophy Offers Pathways to a Regenerative Future - Man Fang - Post Growth Institute - to - Medium - Rediscovering Harmony: How Chinese Philosophy Offers Pathways to a Regenerative Future - By foregrounding relationships — between individuals, communities, and the natural world — we can build systems that prioritize wellbeing and resilience - Post Growth Institute - Man Fang
to - Medium - Rediscovering Harmony: How Chinese Philosophy Offers Pathways to a Regenerative Future - By foregrounding relationships — between individuals, communities, and the natural world — we can build systems that prioritize wellbeing and resilience - Post Growth Institute - Man Fang - https://hyp.is/a2HCSrlTEe-um4thfDGo-A/medium.com/postgrowth/rediscovering-harmony-how-chinese-philosophy-offers-pathways-to-a-regenerative-future-07a097b237a0
Rediscovering Harmony: How Chinese Philosophy Offers Pathways to a Regenerative Future
for - from - post - LlinkedIn - Rediscovering Harmony: How Chinese Philosophy Offers Pathways to a Regenerative Future - Post Growth Institute - Man Fang
from - post - LinkedIn - Rediscovering Harmony: How Chinese Philosophy Offers Pathways to a Regenerative Future - Post Growth Institute - Man Fang - https://hyp.is/C8v8mLlSEe-aUfeerj7pSg/www.linkedin.com/posts/post-growth-institute_chinese-philosophy-regenerative-futures-ugcPost-7273235520824979456-DOqk/
for - climate crisis - Medium article - climate communication - how climate change is framed to disempower you - Joe Brewer - 2024, Dec 4 - from - post - LinkedIn - climate crisis - climate communication - climate change discourse has been framed to disempower us - changing the story - so that grassroots, bottom-up initiatives can restore health to ecosystems - Joe Brewer, 2024, Dec 4 - from - Resilience article - A 'Transcender Manifesto" for a world beyond capitalism. A seed.
summary - A good article that offers an explanation of how language has potentially led the public to rely on top down actors to provide solutions to the climate crisis - Joe Brewer draws on his background as a frame analyst to analyse the role language and cognitive linguistics has played in framing the discourse on the climate crisis - He claims that this has led the public to look to elite top down actors to provide the solutions - This had led to a disempowerment of the public in actively participating in contributing too solutions - Indeed it could be why we have a sleeping giant - Reframing the story could have the opposite effect of inspiring people's to wake up and take action to regenerate nature within and surrounding the communities where people live.
from - post - LinkedIn - climate crisis - climate communication - climate change discourse has been framed to disempower us - changing the story - so that grassroots, bottom-up initiatives can restore health to ecosystems - Joe Brewer, 2024, Dec 4 - https://hyp.is/yvHstLfVEe-cyRN4sq09Ow/www.linkedin.com/posts/joe-brewer-4957925_earlier-this-week-i-lived-into-an-important-activity-7270035170328494080-E7Cq/ - from - Resilience article - A 'Transcender Manifesto" for a world beyond capitalism. A seed. - https://hyp.is/0NOdtLiREe--pwPfB1SmdA/www.resilience.org/stories/2024-04-18/a-transcender-manifesto-for-a-world-beyond-capitalism-a-seed/
in the early stages, it will be vital to develop networks which address the fundamental stories of capitalist culture, to transcend these with new stories which open up further possibilities.
for - A Transcender Manifesto - addressing the polycrisis - reframing old stories - to - Medium article - How Climate Change is Framed to Disempower you - Joe Brewer
to - Medium article - How Climate Change is Framed to Disempower you - Joe Brewer - https://hyp.is/go?url=https%3A%2F%2Fmedium.com%2F%40joe_brewer%2Fhow-climate-change-is-framed-to-disempower-you-01d871413487&group=world
What I did this week was sit down and record a video explaining how the climate change discourse has been framed to disempower us -- and what we can do about it by focusing on grassroots organizing to restore health to our local ecosystems
for - post - LinkedIn - climate crisis - climate communication - climate change discourse has been framed to disempower us - changing the story - so that grassroots, bottom-up initiatives can restore health to ecosystems - Joe Brewer, 2024, Dec 4 - to - Medium article - How Climate Change is framed to Disempower you - Joe Brewer - 2024, Dec 4
to - Medium article - How Climate Change is framed to Disempower you - Joe Brewer - 2024, Dec 4 - https://hyp.is/XoQoRLfVEe-ZMIMjZheLLA/medium.com/@joe_brewer/how-climate-change-is-framed-to-disempower-you-01d871413487
United States, amphetamine consumption took off, with pharmaceutical companies manufacturing 3.5 billion tablets annually by the late 1950s.
new ways on ingesting the drugs through injection
e US military continued to use amphetamines heavily, with the drug becoming standard issue during the Korean War.
Germany did not experience the same post-war surge in stimulant use due to the dismantling of domestic production and tighter controls on Pervitin during the war.
Pharmaceutical companies sold the drug, marketed as "wake-a-mine," to the public, leading to widespread use and addiction.
The use of stimulants during World War II led to addiction problems among soldiers on all sides. In Japan, the problem was particularly severe, and the country experienced its first drug epidemic. Many soldiers and factory workers who had become hooked on the drug during the war continued to consume it into the postwar years.
left countries with high rates of addiction
he Japanese imperial government also used methamphetamine to enhance the performance of its soldiers and pilots. The drug, known as Philopon, was distributed to pilots for long flights and to soldiers for combat.
he British distributed 72 million standard-dose amphetamine tablets during the war, and the Americans used Benzedrine, a type of amphetamine, to help pilots stay awake during long flights.
Even then, the drug continued to be dispensed on both the western and eastern fronts, with 10 million methamphetamine tablets sent to the eastern front in the first half of 1942 alone.
use of Pervitin was instrumental in the success of the Blitzkrieg, allowing German troops to push ahead rapidly and catch their enemies off guard
drug was often dispensed in the form of chocolate bars, known as Fliegerschokolade (flyer's chocolate) and Panzerschokolade (tanker's chocolate), and was taken by a large proportion of officers
media portrayed Chinese and Korean individuals as suppliers of the drug, allowing the Japanese to cast themselves as victims of "pollution" by those they had wronged. This depiction implicitly absolved guilt for imperial opium operations on the Asian mainland. By 1954, 58.1% of suspects arrested for violating the Ban on Stimulant Drugs showed signs of hiropon addiction, and an estimated 1.5 million Japanese were stimulants users.
mass incarceration was lokey successful, Koreans specifically discriminated against
and its production and consumption remained legal until the late 1940s.
ver, Japan's defeat in 1945 led to the dismantling of its empire and the end of its drug economy.
After Japan's defeat in World War II, the country experienced a methamphetamine epidemic, which was eventually resolved through public campaigns against stimulant drugs.
for - Andrea Chalupa - fighting fascism - from - webcast - Political Girl - interview with - Andrea Chalupa - how to organize against the threat of the Trump regime
from - webcast - Political Girl - interview with - Andrea Chalupa - how to organize against the threat of the Trump regime - https://hyp.is/M5BenrJpEe-CKJ870PrrJA/www.youtube.com/watch?v=KLhJgOeR9N0
patriarchal confusion to challenge and transform military cultures, and that looking for sites of patriarchal confusion can be a productive way to respond to the challenge of promoting diversity and inclusion in the military. The study suggests that patriarchal confusion can be exploited as a strategy for disrupting and challenging contemporary patriarchy, which has practical implications for feminist politics.
where gender fails, feminists can demonstrate the radically contingent nature of patriarchy and open up possibilities to exploit this failure and engender patriarchal confusion.
exploit the confusion it creates
for - misinformation - twitter - how the platform amplifies misinformation
Most people in America today (85–90%) agree on most issues and topics (85–90%). The so-called polarization is the result of a media landscape that amplifies the voices of the 10–15% that keep constantly talking about the 10–15% of topics on which people are not on the same page.
for - stats - most people in America agree on 85 - 90% of issues - unpack why and how the 10 - 15% is made so divisive
four things
for - suggestions - how to end US hegemony for a global fair trade system - needed to re-establish global cooperation - Yanis Varoufakis - Yanis Varoufakis four on below to discuss four different suggestions of how China can support global cooperation to emerge
"How To" Directory by [[Anna Havron]]
including external characteristics, social activities, and mental constitution.
what they include
closely tied to colonization as part of European expansion.
Eckhout's works are examples of this term because they are products of the period in which the genre of the ethnographic portrait was created.
based on observation rather than exoticism ?
lower-class social origins
about the professionalisation of medicalisation and science (like Bignon) lower class healers
“I anticipated some time ago that in [the] event of our securing Federal control of the sale and distribution of morphine and cocaine, the fiends would turn to Indian hemp, and for that reason incorporated that drug in the proposed act for the control of the interstate traffic in narcotics.”
when other drugs were prohibited so they had to turn to this
Cannabis is rather an unimportant drug and that we have given undue attention to the whole subject of Cannabis
In Mexico, the war on drugs was closely tied to US-Mexican relations, with the US exerting significant influence over Mexican drug policy. The Mexican government's efforts to prohibit drugs were often unsuccessful, and the country's drug trade continued to thrive
mexico-US connection. but it also seemed like they didn't really like drugs before?
1940 Reglamento Federal de Toxicomanías in Mexico were key milestones in this process.
For example, in Mexico, the association between the Chinese and opium led to xenophobic attitudes towards drug use.
Mexico, with its own history of demonizing intoxicants and imposing laws to curb their distribution and abuse, was already in compliance with the Hague Convention's mandates and had created domestic laws that were harsher and more far-reaching than what was required by international law.
already prohibited or heavily disliked, even alcohol
The United States, driven by domestic and foreign policy considerations, led the movement to codify international standards. The US experience in the Philippines and the lessons learned from the Chinese opium story led to the conclusion that only a system that restricted both supply and demand could be effective. The Hague Convention's Article 13 allowed the US to exert pressure on Latin American countries to adhere to international drug control standards, which ironically became a tool of imperialism.
Marijuana, on the other hand, was thoroughly demonized and eventually prohibited in 1920 as a drug that threatened to "degenerate the race."
dawn of independence in 1821, Mexico already had a long tradition of anti-drug rhetoric and regulatory mechanisms designed to curb "drug abuse." The situation continued to evolve, with the impermanence and flux of modernity inspiring both widespread concern about the harms of intoxicants and widespread use of them.
In Mexico, the creation of pariah drugs was a long-term process that involved various factors, including colonial conflicts, social prejudice, nationalism, economic interests, state-building, geopolitics, transnational intellectual currents, professional interests, and concerns about drug use and abuse.
This led to the emergence of a larger hemispheric network that linked Andean coca peasants to chemists, smugglers, and users in the United States and elsewhere. By the 1960s, agents of the U.S. Federal Bureau of Narcotics reported on recipes for coca paste, cocaine sulfates, and crude cocaine, which were refined in labs in Havana and later Colombia.