{"found":57622,"hits":[{"document":{"authors":[{"affiliation":[{"id":"https://ror.org/016xsfp80","name":"Radboud University Nijmegen"}],"contributor_roles":[],"family":"Willighagen","given":"Lars","url":"https://orcid.org/0000-0002-4751-4637"}],"blog":{"authors":null,"community_id":"e0509c2b-3c92-4e55-a306-bb03ddf5f7c8","created":1673136000,"current_feed_url":null,"description":"Thoughts about bibliographic metadata, programming, statistics, taxonomy, and biology.","doi":"https://doi.org/10.59350/syntaxus_baccata","favicon":"https://rogue-scholar.org/api/communities/e0509c2b-3c92-4e55-a306-bb03ddf5f7c8/logo","feed_format":"application/atom+xml","feed_url":"https://larsgw.blogspot.com/feeds/posts/default","filter":null,"generator":"Blogger","home_page_url":"https://larsgw.blogspot.com/","issn":null,"language":"eng","license":"https://creativecommons.org/licenses/by/4.0/legalcode","prefix":"10.59350","relative_url":null,"secure":true,"slug":"syntaxus_baccata","status":"active","subfield":"1110","title":"Syntaxus baccata","updated":1789863616,"use_api":null},"blog_name":"Syntaxus baccata","blog_slug":"syntaxus_baccata","content_html":"<p>The release of version 0.9.0 of Citation.js comes shortly after the release of version 0.8.0. This is in part because v0.8.0 was released shortly before Node.js v20 went End Of Life, which led to a lot of (developmental) dependencies to dropping support for it. An added benefit though is that v22.12.0 of Node.js finally added support for CommonJS modules (<code>require()</code> syntax) to import most ESM modules (<code>import</code>/<code>export</code> syntax). This allowed me to stop using the <code>@larsgw/wikibase-sdk</code> fork of <code>wikibase-sdk</code>.</p>\n<p><img alt=\"Hoverfly on willow blossom against deep blue sky\" src=\"https://inaturalist-open-data.s3.amazonaws.com/photos/628027712/original.jpg\"/><br/>\n<em>Melangyna pavlovskyi</em>, 2026.iii.22, Zeddam, The Netherlands</p>\n<p>In short:</p>\n<ul>\n<li>The minimum Node.js version is now v22.12.0.</li>\n<li>Use of <code>node-fetch</code> was replaced with the built-in version of the Fetch API (based on <code>undici</code>); similarly <code>sync-fetch</code> was replaced with <code>sync-fetch-undici</code>.</li>\n<li>Use of the fork <code>@larsgw/wikibase-sdk</code> was replaced with the upstream <code>wikibase-sdk</code>.</li>\n<li>Babel was updated to v8, which does mean a fork of Babelify had to be used for the browser bundles in the <code>citation-js</code> package, until <a href=\"https://github.com/babel/babelify/issues/301\">Babelify is updated upstream</a>.</li>\n<li>The repository documentation now explicitly directs contributors to not include spurious <code>Co-Authored-By</code> tags in their commit messages for advertising purposes (i.e. LLMs).</li>\n</ul>\n<p>Another major change is the addition of TypeScript types, which <a href=\"https://github.com/citation-js/citation-js/issues/251\">people have been asking</a> for, <a href=\"https://github.com/citation-js/citation-js/issues/104\">for some time</a>. I have attempted to create type definitions that are actually useful, which proved difficult given the <a href=\"https://github.com/citation-js/citation-js/issues/30\">convoluted plugin system</a>. In the process, I learnt some interesting features of TypeScript, like <a href=\"https://www.typescriptlang.org/docs/handbook/declaration-merging.html#module-augmentation\">module augmentation</a> and some pretty nice <a href=\"https://www.typescriptlang.org/docs/handbook/2/functions.html#generic-functions\">generic functions</a>.</p>\n<h3 id=\"module-augmentation\">Module augmentation</h3>\n<p>The way to register a plugin with Citation.js is to <code>import</code> or <code>require()</code> it. The first step was to employ module augmentation to add these overloads, like below. (Note that some formats have multiple return types, meaning the overload also depends on the second argument; this will come back later!)</p>\n<pre class=\"language-ts\"><code class=\"prism language-ts\"><span class=\"token comment\">// node_modules/@citation-js/core/index.d.ts</span>\n<span class=\"token keyword\">export</span> <span class=\"token keyword\">class</span> <span class=\"token class-name\">Cite</span> <span class=\"token punctuation\">{</span>\n  <span class=\"token comment\">// ...</span>\n\n\t<span class=\"token function\">format</span> <span class=\"token punctuation\">(</span>format<span class=\"token punctuation\">:</span> <span class=\"token string\">'data'</span><span class=\"token punctuation\">,</span> options<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token punctuation\">{</span> format<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token string\">'text'</span><span class=\"token punctuation\">,</span> version<span class=\"token punctuation\">:</span> <span class=\"token keyword\">string</span> <span class=\"token punctuation\">}</span><span class=\"token punctuation\">)</span><span class=\"token punctuation\">:</span> <span class=\"token keyword\">string</span>\n\t<span class=\"token function\">format</span> <span class=\"token punctuation\">(</span>format<span class=\"token punctuation\">:</span> <span class=\"token string\">'data'</span><span class=\"token punctuation\">,</span> options<span class=\"token punctuation\">:</span> <span class=\"token punctuation\">{</span> format<span class=\"token punctuation\">:</span> <span class=\"token string\">'object'</span><span class=\"token punctuation\">,</span> version<span class=\"token punctuation\">:</span> <span class=\"token keyword\">string</span> <span class=\"token punctuation\">}</span><span class=\"token punctuation\">)</span><span class=\"token punctuation\">:</span> <span class=\"token keyword\">Array</span><span class=\"token operator\">&lt;</span>CSL<span class=\"token operator\">&gt;</span>\n\t<span class=\"token function\">format</span> <span class=\"token punctuation\">(</span>format<span class=\"token punctuation\">:</span> <span class=\"token string\">'label'</span><span class=\"token punctuation\">)</span><span class=\"token punctuation\">:</span> Record<span class=\"token operator\">&lt;</span><span class=\"token keyword\">string</span><span class=\"token punctuation\">,</span> <span class=\"token keyword\">string</span><span class=\"token operator\">&gt;</span>\n<span class=\"token punctuation\">}</span>\n\n<span class=\"token comment\">// node_modules/@citation-js/plugin-csl/index.d.ts</span>\n<span class=\"token keyword\">import</span> <span class=\"token string\">'@citation-js/core'</span>\n\n<span class=\"token keyword\">declare</span> <span class=\"token keyword\">module</span> <span class=\"token string\">'@citation-js/core'</span> <span class=\"token punctuation\">{</span>\n  <span class=\"token keyword\">class</span> <span class=\"token class-name\">Cite</span> <span class=\"token punctuation\">{</span>\n    <span class=\"token function\">format</span> <span class=\"token punctuation\">(</span>format<span class=\"token punctuation\">:</span> <span class=\"token string\">'bibliography'</span><span class=\"token punctuation\">,</span> options<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token punctuation\">{</span> <span class=\"token comment\">/* ... */</span> <span class=\"token punctuation\">}</span><span class=\"token punctuation\">)</span><span class=\"token punctuation\">:</span> <span class=\"token keyword\">string</span>\n    <span class=\"token comment\">// ...</span>\n  <span class=\"token punctuation\">}</span>\n<span class=\"token punctuation\">}</span>\n\n<span class=\"token comment\">// index.ts</span>\n<span class=\"token keyword\">import</span> <span class=\"token punctuation\">{</span> Cite <span class=\"token punctuation\">}</span> <span class=\"token keyword\">from</span> <span class=\"token string\">'@citation-js/core'</span>\n<span class=\"token keyword\">import</span> <span class=\"token keyword\">from</span> <span class=\"token string\">'@citation-js/plugin-csl'</span>\n\n<span class=\"token keyword\">const</span> a <span class=\"token operator\">=</span> <span class=\"token punctuation\">(</span><span class=\"token keyword\">new</span> <span class=\"token class-name\">Cite</span><span class=\"token punctuation\">(</span><span class=\"token punctuation\">)</span><span class=\"token punctuation\">)</span><span class=\"token punctuation\">.</span><span class=\"token function\">format</span><span class=\"token punctuation\">(</span><span class=\"token string\">'bibliography'</span><span class=\"token punctuation\">)</span>\n<span class=\"token comment\">// typeof a === string</span>\n</code></pre>\n<p>This is for plugins with output formatting features, for input parsing features and plugin configuration something similar is possible. However, formatting features not only affect the possible overloads of the <code>Cite#format()</code> function, but also the <code>plugins.output.format()</code> function. This would mean repeating all the overloads.</p>\n<p>Additionally, if the typing of a call to <code>Cite#format()</code> is wrong, the error is actually not very helpful. TypeScript will only show how the last overload of a function does not match. There is another way, though.</p>\n<h3 id=\"generic-functions\">Generic functions</h3>\n<p>With generic functions for <code>Cite#format()</code> and <code>plugins.output.format()</code> we can reuse the same output formatter signatures for both functions. This was achieved by exporting an <code>interface</code> type with the signatures.</p>\n<pre class=\"language-ts\"><code class=\"prism language-ts\"><span class=\"token keyword\">interface</span> <span class=\"token class-name\">Formats</span> <span class=\"token punctuation\">{</span>\n  data<span class=\"token punctuation\">:</span>\n    <span class=\"token operator\">|</span> <span class=\"token punctuation\">(</span><span class=\"token punctuation\">(</span>options<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token punctuation\">{</span> format<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token string\">'text'</span><span class=\"token punctuation\">,</span> version<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token keyword\">string</span> <span class=\"token punctuation\">}</span><span class=\"token punctuation\">)</span> <span class=\"token operator\">=&gt;</span> <span class=\"token keyword\">string</span><span class=\"token punctuation\">)</span>\n    <span class=\"token operator\">|</span> <span class=\"token punctuation\">(</span><span class=\"token punctuation\">(</span>options<span class=\"token punctuation\">:</span> <span class=\"token punctuation\">{</span> format<span class=\"token punctuation\">:</span> <span class=\"token string\">'object'</span><span class=\"token punctuation\">,</span> version<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token keyword\">string</span> <span class=\"token punctuation\">}</span><span class=\"token punctuation\">)</span> <span class=\"token operator\">=&gt;</span> <span class=\"token keyword\">Array</span><span class=\"token operator\">&lt;</span>CSL<span class=\"token operator\">&gt;</span><span class=\"token punctuation\">)</span>\n  label<span class=\"token punctuation\">:</span> <span class=\"token punctuation\">(</span><span class=\"token punctuation\">)</span> <span class=\"token operator\">=&gt;</span> Record<span class=\"token operator\">&lt;</span><span class=\"token keyword\">string</span><span class=\"token punctuation\">,</span> <span class=\"token keyword\">string</span><span class=\"token operator\">&gt;</span>\n<span class=\"token punctuation\">}</span>\n</code></pre>\n<p>This interface can be extended by plugins as well, so adding signatures is simple. The generic function is not so simple; I started with the following:</p>\n<pre class=\"language-ts\"><code class=\"prism language-ts\"><span class=\"token keyword\">export</span> <span class=\"token keyword\">class</span> <span class=\"token class-name\">Cite</span> <span class=\"token punctuation\">{</span>\n  format<span class=\"token operator\">&lt;</span>\n    Format <span class=\"token keyword\">extends</span> <span class=\"token class-name\">keyof</span> Formats<span class=\"token punctuation\">,</span>\n    Options <span class=\"token keyword\">extends</span> <span class=\"token class-name\">Parameters</span><span class=\"token operator\">&lt;</span>Formats<span class=\"token punctuation\">[</span>Format<span class=\"token punctuation\">]</span><span class=\"token operator\">&gt;</span>\n  <span class=\"token operator\">&gt;</span> <span class=\"token punctuation\">(</span>format<span class=\"token punctuation\">:</span> Format<span class=\"token punctuation\">,</span> <span class=\"token operator\">...</span>options<span class=\"token punctuation\">:</span> Options<span class=\"token punctuation\">)</span><span class=\"token punctuation\">:</span> ReturnType<span class=\"token operator\">&lt;</span>Formats<span class=\"token punctuation\">[</span>Format<span class=\"token punctuation\">]</span><span class=\"token operator\">&gt;</span>\n<span class=\"token punctuation\">}</span>\n</code></pre>\n<p>However, because the <code>'data'</code> output format can have multiple return types depending on the second argument, the return type would be <code>string | Array<csl></csl></code>. I instead ended up with</p>\n<pre class=\"language-ts\"><code class=\"prism language-ts\"><span class=\"token keyword\">export</span> <span class=\"token keyword\">class</span> <span class=\"token class-name\">Cite</span> <span class=\"token punctuation\">{</span>\n  format<span class=\"token operator\">&lt;</span>\n    Format <span class=\"token keyword\">extends</span> <span class=\"token class-name\">keyof</span> Formats<span class=\"token punctuation\">,</span>\n    Options <span class=\"token keyword\">extends</span> <span class=\"token class-name\">Parameters</span><span class=\"token operator\">&lt;</span>Formats<span class=\"token punctuation\">[</span>Format<span class=\"token punctuation\">]</span><span class=\"token operator\">&gt;</span><span class=\"token punctuation\">,</span>\n    Result <span class=\"token keyword\">extends</span> <span class=\"token class-name\">ReturnType</span><span class=\"token operator\">&lt;</span>Extract<span class=\"token operator\">&lt;</span>Formats<span class=\"token punctuation\">[</span>Format<span class=\"token punctuation\">]</span><span class=\"token punctuation\">,</span> <span class=\"token punctuation\">(</span><span class=\"token operator\">...</span>args<span class=\"token punctuation\">:</span> Options<span class=\"token punctuation\">)</span> <span class=\"token operator\">=&gt;</span> <span class=\"token keyword\">any</span><span class=\"token operator\">&gt;&gt;</span>\n  <span class=\"token operator\">&gt;</span> <span class=\"token punctuation\">(</span>format<span class=\"token punctuation\">:</span> Format<span class=\"token punctuation\">,</span> <span class=\"token operator\">...</span>options<span class=\"token punctuation\">:</span> Options<span class=\"token punctuation\">)</span><span class=\"token punctuation\">:</span> Result\n<span class=\"token punctuation\">}</span>\n</code></pre>\n<p>Because of <code>Extract<t></t></code> the correct return type is selected and the overloads work as expected. This works wonders with autocomplete, and gives appropriate errors. And, although the resulting code looks pretty simple, it took a while to get there in practice.</p>\n<h3 id=\"type-definitions-for-plugins\">Type definitions for plugins</h3>\n<p>In total, the <code>index.d.ts</code> type definitions for a typical plugin looks like this:</p>\n<pre class=\"language-ts\"><code class=\"prism language-ts\"><span class=\"token keyword\">import</span> <span class=\"token keyword\">type</span> <span class=\"token punctuation\">{</span> CSL <span class=\"token punctuation\">}</span> <span class=\"token keyword\">from</span> <span class=\"token string\">'@citation-js/core'</span>\n\n<span class=\"token keyword\">interface</span> <span class=\"token class-name\">Entry</span> <span class=\"token punctuation\">{</span>\n  title<span class=\"token punctuation\">:</span> <span class=\"token keyword\">string</span>\n  <span class=\"token comment\">// ...</span>\n<span class=\"token punctuation\">}</span>\n\n<span class=\"token keyword\">interface</span> <span class=\"token class-name\">Config</span> <span class=\"token punctuation\">{</span>\n  stringConstants<span class=\"token punctuation\">:</span> Record<span class=\"token operator\">&lt;</span><span class=\"token keyword\">string</span><span class=\"token punctuation\">,</span> <span class=\"token keyword\">string</span><span class=\"token operator\">&gt;</span>\n<span class=\"token punctuation\">}</span>\n\n<span class=\"token keyword\">declare</span> <span class=\"token keyword\">module</span> <span class=\"token string\">'@citation-js/core'</span> <span class=\"token punctuation\">{</span>\n  <span class=\"token keyword\">namespace</span> plugins <span class=\"token punctuation\">{</span>\n    <span class=\"token keyword\">namespace</span> input <span class=\"token punctuation\">{</span>\n      <span class=\"token keyword\">interface</span> <span class=\"token class-name\">Formats</span> <span class=\"token punctuation\">{</span>\n        <span class=\"token string\">'@foo/file'</span><span class=\"token punctuation\">:</span> <span class=\"token punctuation\">(</span>input<span class=\"token punctuation\">:</span> <span class=\"token keyword\">string</span><span class=\"token punctuation\">)</span> <span class=\"token operator\">=&gt;</span> <span class=\"token keyword\">Array</span><span class=\"token operator\">&lt;</span>Entry<span class=\"token operator\">&gt;</span>\n        <span class=\"token string\">'@foo/record'</span><span class=\"token punctuation\">:</span> <span class=\"token punctuation\">(</span>input<span class=\"token punctuation\">:</span> Entry<span class=\"token punctuation\">)</span> <span class=\"token operator\">=&gt;</span> CSL\n      <span class=\"token punctuation\">}</span>\n    <span class=\"token punctuation\">}</span>\n\n    <span class=\"token keyword\">namespace</span> output <span class=\"token punctuation\">{</span>\n      <span class=\"token keyword\">interface</span> <span class=\"token class-name\">Formats</span> <span class=\"token punctuation\">{</span>\n        foo<span class=\"token punctuation\">:</span>\n          <span class=\"token operator\">|</span> <span class=\"token punctuation\">(</span><span class=\"token punctuation\">(</span>options<span class=\"token punctuation\">:</span> <span class=\"token punctuation\">{</span> format<span class=\"token punctuation\">:</span> <span class=\"token string\">'object'</span><span class=\"token punctuation\">,</span> spec<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token keyword\">number</span> <span class=\"token punctuation\">}</span><span class=\"token punctuation\">)</span> <span class=\"token operator\">=&gt;</span> <span class=\"token keyword\">Array</span><span class=\"token operator\">&lt;</span>Entry<span class=\"token operator\">&gt;</span><span class=\"token punctuation\">)</span>\n          <span class=\"token operator\">|</span> <span class=\"token punctuation\">(</span><span class=\"token punctuation\">(</span>options<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token punctuation\">{</span> format<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token string\">'text'</span><span class=\"token punctuation\">,</span> spec<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token keyword\">number</span> <span class=\"token punctuation\">}</span><span class=\"token punctuation\">)</span> <span class=\"token operator\">=&gt;</span> <span class=\"token keyword\">string</span><span class=\"token punctuation\">)</span>\n      <span class=\"token punctuation\">}</span>\n    <span class=\"token punctuation\">}</span>\n\n    <span class=\"token keyword\">namespace</span> config <span class=\"token punctuation\">{</span>\n      <span class=\"token keyword\">function</span> <span class=\"token keyword\">get</span> <span class=\"token punctuation\">(</span><span class=\"token string\">'@foo'</span><span class=\"token punctuation\">)</span><span class=\"token punctuation\">:</span> Config\n    <span class=\"token punctuation\">}</span>\n  <span class=\"token punctuation\">}</span>\n<span class=\"token punctuation\">}</span>\n</code></pre>\n<p>This is implemented for all plugins included in <code>citation-js</code> (though that package does not have TypeScript types itself), and I will slowly roll this out for other plugins. Any feedback is welcome!</p>","doi":"https://doi.org/10.59350/j6v28-a2h54","guid":"tag:blogger.com,1999:blog-5472537257659342064.post-6362021558719908759","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","published_at":1789862400,"rid":"9k2g3-mte91","summary":"The release of version 0.9.0 of Citation.js comes shortly after the release of version 0.8.0. This is in part because v0.8.0 was released shortly before Node.js v20 went End Of Life, which led to a lot of (developmental) dependencies to dropping support for it. An added benefit though is that v22.12.0 of Node.js finally added support for CommonJS modules (require() syntax) to import most ESM modules (import/export syntax). This allowed me to","tags":["Citation.js","Programming"],"title":"Citation.js Version 0.9: TypeScript types","updated_at":1789889411,"url":"https://larsgw.blogspot.com/2026/09/citationjs-version-09-typescript-types.html","version":"v1"}},{"document":{"authors":[{"contributor_roles":[],"family":"Fix","given":"Blair"}],"blog":{"authors":null,"community_id":"0b9cb48f-680d-4f11-99f0-5b61a55fe4cc","created":1714262400,"current_feed_url":null,"description":"New ideas in economics and the social sciences","doi":"https://doi.org/10.59350/etd","favicon":"https://rogue-scholar.org/api/communities/0b9cb48f-680d-4f11-99f0-5b61a55fe4cc/logo","feed_format":"application/atom+xml","feed_url":"https://economicsfromthetopdown.com/feed/atom/","filter":null,"generator":"Other","home_page_url":"https://economicsfromthetopdown.com/","issn":null,"language":"eng","license":"https://creativecommons.org/licenses/by/4.0/legalcode","prefix":"10.59350","relative_url":null,"secure":true,"slug":"etd","status":"active","subfield":"2002","title":"Economics from the Top Down","updated":1789822383,"use_api":true},"blog_name":"Economics from the Top Down","blog_slug":"etd","content_html":"<img alt=\"\" aperture\":\"0\",\"credit\":\"\",\"camera\":\"\",\"caption\":\"\",\"created_timestamp\":\"0\",\"copyright\":\"\",\"focal_length\":\"0\",\"iso\":\"0\",\"shutter_speed\":\"0\",\"title\":\"\",\"orientation\":\"0\",\"alt\":\"\"}\"=\"\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" data-attachment-id=\"15639\" data-comments-opened=\"1\" data-image-caption=\"\" data-image-description=\"\" data-image-meta=\"{\" data-image-title=\"bti_cover\" data-large-file=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/bti_cover.png?fit=723%2C436&amp;ssl=1\" data-orig-file=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/bti_cover.png?fit=6594%2C3971&amp;ssl=1\" data-orig-size=\"6594,3971\" data-permalink=\"https://economicsfromthetopdown.com/bti_cover/\" decoding=\"async\" height=\"150\" sizes=\"(max-width: 150px) 100vw, 150px\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/bti_cover.png?resize=150%2C150&amp;ssl=1\" srcset=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/bti_cover.png?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/bti_cover.png?resize=450%2C450&amp;ssl=1 450w, https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/bti_cover.png?resize=60%2C60&amp;ssl=1 60w, https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/bti_cover.png?resize=550%2C550&amp;ssl=1 550w, https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/bti_cover.png?zoom=2&amp;resize=150%2C150&amp;ssl=1 300w\" width=\"150\"/><div id=\"audio-player\">\n<audio controls=\"\" id=\"audio\"><source src=\"https://economicsfromthetopdown.com/wp-content/uploads/2026/09/fix_bti_20260919.mp3\" type=\"audio/mpeg\"/>Your browser does not support the audio tag.</audio>\n</div>\n<p><span class=\"download-buttons\">Download: <a href=\"https://economicsfromthetopdown.com/wp-content/uploads/2026/09/fix_bti_20260919.pdf\">PDF</a> | <a href=\"https://sciencedesk.economicsfromthetopdown.com/epub/2026-09/fix_bti_20260919.epub\">EPUB</a> | <a download=\"\" href=\"https://economicsfromthetopdown.com/wp-content/uploads/2026/09/fix_bti_20260919.mp3\">MP3</a> | <a href=\"https://www.youtube.com/watch?v=kOzvaNE2q10\">WATCH VIDEO</a></span></p>\n<div style=\"text-align:right\">\n<p><em>'Industry' and 'business' \u2026 are not synonyms \u2026<br/>\nthey are opposing realms of human activity</em>.</p>\n<p>\u2014 <a href=\"https://blairfix.github.io/capital_as_power/why-write-a-book-about-capital.html#part-iv-bringing-power-back-in\" target=\"_blank\">Jonathan Nitzan and Shimshon Bichler</a></p>\n</div>\n<p>A defining feature of neoclassical economics is that it treats 'business' and 'industry' as synonyms. As such, mainstream economists assume that a firm's business income reveals its industrial output</p>\n<p>To arrive at this convenient equivalence, economists pretend that in a competitive market, commodity prices reveal the production of consumer 'utility'. So when economists speak of 'output', they mean the creation of paid-for satisfaction. But since this 'utility' goes perpetually unmeasured, the whole operation represents an act of faith \u2014 no different than the imagined equivalence between the father, the son, and the holy ghost.</p>\n<p>Looking at this act of ideological faith, Jonathan Nitzan and Shimshon Bichler find little reason to believe. Instead, they take the heretical view, first articulated <a href=\"https://archive.org/details/AbsenteeOwnershipAndBusinessEnterprise/\" target=\"_blank\">by Thorstein Veblen</a>, that 'industry' and 'business' are <em>opposing</em> activities.</p>\n<p>Let me explain their thinking.</p>\n<p>In the Veblenian sense, the human capacity to be 'industrious' predates capitalism; indeed, it predates humanity. All living things are 'industrious' in the sense that they pursue activities that help them survive and reproduce in the natural world. So when humans farm corn, we are manifesting a deep biological urge to exploit the natural world in ways that benefit us.</p>\n<p>Enter capitalism. In capitalism, human industriousness gets controlled by a paywall. Thus, when a capitalist farmer grows corn, he does so not to feed himself (directly), but to make a profit. As such, farming becomes a 'business' activity marked by the use of property rights to extract income.</p>\n<p>This use of property rights, in turn, gives rise to a complicated relation between human 'industry' and capitalist 'business'. Sometimes, what is good for business is good for industry. For example, when a farmer buys a larger tractor, he can grow more corn, and therefore, receive more income. But other times, business benefit comes at the <em>expense</em> of industry. For example, if a farmer monopolizes the corn market, he can extract more income by restricting corn production and raising corn prices. The point is that outside of neoclassical fantasies, 'industry' and 'business' have a complex relationship that cannot be deduced from armchair theory. To understand how the real world works, we need to get our boots muddy with actual data.</p>\n<p>Enter the <em>business-to-industry index</em>. This is a metric that I devised while thinking about the <a href=\"https://economicsfromthetopdown.com/2026/05/22/the-business-of-war-and-the-mismeasurement-of-military-might/\" target=\"_blank\">business of the US Pentagon</a> (and its surprising inability to wage war). In this essay, I explore how the business-to-industry index can be used to study the broader history and geography of capitalism.</p>\n<p>Here's the basic math that I'll apply. The business-to-industry index consists of a double ratio. For a given entity, we calculate the business-to-industry index by dividing the entity's share of world income by its share of world energy use:</p>\n<div style=\"text-align:center\">\n<span class=\"katex-eq\" data-katex-display=\"false\"> \\displaystyle  \\text{business-to-industry index}  = \\frac{ \\text{share of world income}}{ \\text{share of world energy use}} </span>\n</div>\n<p>In this metric, the numerator is a measure of business success. (Since the goal of business is to extract income, we can measure its success in terms of an income share \u2014 the most general being the share of world income.) In contrast, the denominator is a measure of relative industrial capacity, as measured by the ability to harness energy. (I focus on energy because it's the universe's natural currency \u2014 the fundamental quanta that makes stuff 'go'.)</p>\n<p>Looking ahead, I get the analysis rolling by studying the long-term history of capitalism, as captured by the rise (and fall) of three hegemons: Britain, the United States, and China. In all three cases, I find that these hegemons went through a period of industrial 'disruption', during which the business-to-industry index fell, followed by a period of 'monetization', during which the business-to-industry index rose. One of the most startling conclusions is that when it comes to setting the stage for business monetization, communism may be the best game in town.</p>\n<p>Next, I switch gears and look at the geography of modern capitalism. Taking a nod from world-systems theory, I search for the 'core' of global capitalism by looking for the regions that are most business dominated. That leads me down a tangent on US politics, followed by a return to the world stage.</p>\n<p>All in all, I hope to convince you that the business-to-industry index is useful for understanding the structure of global capitalism. Consider it an unpaywalled tool for studying the world's business paywalls.</p>\n<h3 id=\"part-i-a-brief-history-of-capitalist-hegemony\">Part I: A brief history of capitalist hegemony</h3>\n<p>History, one might say, is a book about the past that is written with the present in mind. As such, writing a coherent history of capitalism requires understanding this system as it exists today.</p>\n<p>Working during the most frenzied period of the British industrial revolution, Karl Marx saw capitalism as a 'mode of production' with capitalists at the reins. This vision was not a bad description of 19th-century British industrialism; it is, however, a terrible description of 21st-century capitalism \u2014 a system that is plainly dominated by finance and its abstract manipulation of property rights.</p>\n<p>Sadly, Marx's 19th-century vision has come to dominate contemporary histories of capitalism, making them feel frustratingly incomplete. Giovanni Arrighi's seminal book <a href=\"https://archive.org/details/longtwentiethcen00arri\" target=\"_blank\"><em>The Long Twentieth Century</em></a> is a good example. The book sketches the history of capitalism by charting the rise and fall of four world hegemons (Genoa, the Netherlands, Britain, and the United States). So far so good. Unfortunately, Arrighi then tries to study the financial nature of capitalism while simultaneously holding onto Marxist baggage about 'modes of production'. The results are (in my mind) both confusing and disappointing.</p>\n<p>Still, Arrighi's analysis of hegemonic cycles represents one of the most compelling ways to study the history of capitalism. By applying the business-to-industry index to this topic, not only can we uncover the changing currents of global capitalism, we can also understand why Marx thought the way he did.</p>\n<h4 id=\"the-business-to-industry-index-in-britain\">The business-to-industry index in Britain</h4>\n<p>For Arrighi, the history of capitalism unfolded through four waves of hegemony: the first wave came with the 16th-century expansion of Genoa, the second with 17th-century Dutch conquest, the third with the 19th-century British empire, and the fourth with the 20th-century United States. Of these four waves of global power, we can construct the business-to-industry index for the latter two. Let's get started by using the business-to-industry index to chart the rise and fall of British power.</p>\n<p>Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-britain-two-views\">1</a> shows two views of British hegemony. The blue curve shows the 'business view' \u2014 the British share of world income. And the red curve shows the 'industry view' \u2014 the British share of world energy use. In broad terms, these two views of British hegemony are similar, which is expected. But what interests me here is the <em>relation</em> between the business view and the industry view. To capture this relation, Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-britain-bti\">2</a> shows the long-term history of the British business-to-industry index.<a class=\"footnote-ref\" href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fn1\" id=\"fnref1\" role=\"doc-noteref\" target=\"_blank\"><sup>1</sup></a></p>\n<p><a id=\"fig-britain-two-views\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/britain_two_views.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 1: Two views of the rise and fall of British hegemony.</strong> The blue curve shows the 'business' view of British hegemony \u2014 Britain's share of world income. The red curve shows the 'industry' view \u2014 Britain's share of world energy use. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p><a id=\"fig-britain-bti\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/britain_bti.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 2: The business-to-industry index in Britain.</strong> The business-to-industry index consists of the ratio between an entity's share of world income and its share of world energy use. This chart combines the time series in Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-britain-two-views\">1</a> to plot the British business-to-industry index over the last three centuries. Note the log scale on the vertical axis. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p>Before diving into the evidence in Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-britain-bti\">2</a>, let me pause to define some terms. When a region has a business-to-industry index that is <em>greater</em> than one, I say that this region is 'business dominated' \u2014 it receives more income than is warranted by its share of world energy use. Similarly, when a region has a business-to-industry index that is <em>less</em> than one, I say that this region is 'industry dominated' \u2014 it consumes more energy than is warranted by its share of world income.</p>\n<p>Next, when the business-to-industry index drops over time, I call this a period of <em>disruption</em>. And when the business-to-industry index rises over time, I call this a period of <em>monetization</em>. Note that I've chosen this language to echo the jargon used by Silicon Valley startups, because I think their ethos mimics larger currents in capitalism.</p>\n<p>In Silicon Valley, 'disruption' is code for technological innovation mixed with low prices that are designed to capture market share. To see this strategy in action, just look to the unfolding AI boom. Not only are AI companies rushing to push out a new technology, they're dumping their product at prices so low that we need knew adjectives to describe the <a href=\"https://www.wheresyoured.at/dont-look-up/\" target=\"_blank\">scale of their losses</a>. Of course, everyone knows that this disruption can't last. But for the AI companies playing this game, the hope is to capture enough market share that they can eventually flip on the monetization switch, hike prices, and rake in money.</p>\n<p>Returning to the history of the British business-to-industry index (in Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-britain-bti\">2</a>), it seems that capitalist empires may play a similar game, albeit one that is unplanned. When our data begins at the turn of the 18th century, Britain was already a major world power, having been propelled to global dominance by its naval prowess. Now as a rule, centers of power are places that are business dominated (they have a share of world income that far surpasses their share of world energy use). So given Britain's 18th-century status as an established imperial power, it's unsurprising that we find the place to be business dominated. What <em>is</em> surprising is the period of disruption that followed.</p>\n<p>Since the dawn of civilization, empires have waxed and waned; they have conquered new territory and then relinquished it. But before Britain, no empire had harnessed the industrial power of fossil fuels. When Britain began to exploit its coal reserves in the 19th century, the industrial disruption that followed caused the British business-to-industry index to plummet. Yes, Britain as a whole got richer, but at a pace that was slower than its frenzied energy burn. By the late 1800s, Britain had become the world's factory, dumping manufactured goods onto the world stage at bargain-basement prices.</p>\n<p>Of course, this period of disruption did not last forever. By the early 20th century, British capitalists had begun to monetize, causing the business-to-industry index to rise steadily. But before we get to this period of monetization, it's worth dwelling on the period of British industrial disruption.</p>\n<p>As we'll soon seen, both the US and China saw their business-to-industry indexes drop steadily during their most intense periods of industrialization. Based on this evidence, it seems plausible that rapid industrialization is associated with a falling business-to-industry index. Again, the startup mantra shows why. If you want to gain industrial dominance, your product must be competitively priced, even to the point of business loss.</p>\n<p>Of course, I'm <em>not</em> saying that during the 19th century, British capitalists decided to under-price their commodities so that they could later monetize their property rights. Surely, there was no such foresight. What I <em>am</em> saying is that when an industrial build-out occurs, it's likely created by a social environment that encourages technological innovation yet suppresses workers' income.</p>\n<p>Thinking about this environment, the work of Karl Marx is informative, because he studied during the most intense period of British industrial disruption. Note four features of Marx's thinking.</p>\n<p>First, Marx legitimately admired the productivity of British capitalism \u2014 indeed, he thought capitalism was so productive that it would set the material stage for socialism. (In hindsight, the reverse was true; wherever it existed, state communism set the stage for capitalism. More on this reversal when we look at the rise of China.)</p>\n<p>Second, Marx was critical of the poor wages paid to 19th-century factory workers. He did not foresee the affluent salaried class that would emerge during later stages of capitalism.</p>\n<p>Third, Marx was obsessed with so-called 'real capital' \u2014 the ownership of machines and factories. He dismissed finance as 'fictitious capital'. Of course, after Marx died, it became obvious that finance was a rather unfictitious form of power.</p>\n<p>Fourth, Marx thought that capitalism's key failing was that in a competitive market, the <a href=\"https://en.wikipedia.org/wiki/Tendency_of_the_rate_of_profit_to_fall\" target=\"_blank\">rate of profit tended to fall</a>.<a class=\"footnote-ref\" href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fn2\" id=\"fnref2\" role=\"doc-noteref\" target=\"_blank\"><sup>2</sup></a> Thus, capitalists would slowly compete themselves into oblivion, paving the way for a socialist utopia. Marx clearly failed to anticipate the power of oligarchy and its ability to profit from institutionalized exclusion.</p>\n<p>Now, my point is not (solely) to criticize Marx, but to observe that he was a man of his time. He wrote about the social tendencies that existed during an intense period of industrial disruption. He erred not in describing these tendencies, but in thinking they were permanent features of capitalism. They were not.</p>\n<p>For the 21st century observer, the trends that followed need no introduction. As British wages rose, British capitalists realized that so long as property rights were enforced internationally, they could offshore their factories while continuing to onshore their profits. And so the manufacturing bustle of 19th-century London was replaced by the white-collar hustle of global finance. To be specific, the ship-building yards closed, but the shipping insurance business (<a href=\"https://en.wikipedia.org/wiki/Lloyd%27s_of_London\" target=\"_blank\">Lloyds of London</a>) flourished.</p>\n<p>For their part, modern Marxists look at this transformation and see pathology. However, a more apt description is that under capitalism, monetization is what naturally follows an industrial build out. The build out creates transitory technological superiority, which allows elites to ensconce more enduring forms of institutional power. What follows is the mature stage of capitalism, in which elites monetize the long tail of their declining institutional power. Sure, this behavior creates all forms of cravenness; but for the late-stage capitalist, it is rational calculus. It is more profitable to toll than to build.</p>\n<h4 id=\"the-business-to-industry-index-in-the-united-states\">The business-to-industry index in the United States</h4>\n<p>Traveling across the Atlantic, let's now look at the history of the business-to-industry index in the United States. Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-us-two-views\">3</a> shows the business and industry views of US hegemony, both of which rose until 1950 and fell thereafter. Meanwhile, Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-us-bti\">4</a> combines these two views to calculate the US business-to-industry index.</p>\n<p><a id=\"fig-us-two-views\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/us_two_views.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 3: Two views of the rise and fall of US hegemony.</strong> The blue curve shows the 'business' view of American hegemony \u2014 the US share of world income. The red curve shows the 'industry' view \u2014 the US share of world energy use. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p><a id=\"fig-us-bti\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/us_bti.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 4: The business-to-industry index in the United States.</strong> The business-to-industry index consists of the ratio between an entity's share of world income and its share of world energy use. This chart combines the time series in Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-us-two-views\">3</a> to plot the US business-to-industry index over the last two centuries. Note the log scale on the vertical axis. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p>Looking at Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-us-bti\">4</a>, let's discuss the business-to-industry trends. Unlike Britain, which entered our historical record as an imperial power, the United States enters our record (in 1790) as a colonial periphery, having freshly won independence from the British crown. As a periphery in the capitalist system, we find that the early US was industry dominated \u2014 its share of world income was dwarfed by its share of world energy use. But as the former colony gained power (driven in no small part by slave labor), its business-to-industry index steadily rose.</p>\n<p>Note that this early period of US expansion was a standard story of imperial conquest. European settlers came to the New World where they first expunged the natives and then exploited the land for themselves. As this expansion unfolded, US coastal cities became centers of business. In the annals of human history, such conquest is standard practice. But what came next was more abnormal.</p>\n<p>By the late 19th century, the US entered a fifty-year period of industrial disruption marked by a steady stream of technological innovation. In 1882, Thomas Edison built his <a href=\"https://en.wikipedia.org/wiki/Pearl_Street_Station\" target=\"_blank\">first commercial electric power plant</a>. In 1886, Carnegie Steel built the world's <a href=\"https://en.wikipedia.org/wiki/Homestead_Steel_Works\" target=\"_blank\">largest open hearth furnace</a>. In 1892, <a href=\"https://en.wikipedia.org/wiki/John_Froelich\" target=\"_blank\">John Froelich</a> built the first viable gas-powered tractor. In 1896, Henry Ford built his <a href=\"https://en.wikipedia.org/wiki/History_of_the_Ford_Motor_Company#Foundation\" target=\"_blank\">first automobile</a>. And in 1903, the Wright brothers built the <a href=\"https://en.wikipedia.org/wiki/Wright_Flyer\" target=\"_blank\">first airplane</a>. By the end of World War I, this run of technological innovation had allowed the US to surpassed Britain as the world's factory.</p>\n<p>As in Britain, the era of American disruption was formative not just for industrialism, but also for political economy. In 1899, John Bates Clark published his wildly influential book <a href=\"https://archive.org/details/distributionwea02clargoog\" target=\"_blank\"><em>The Distribution of Wealth</em></a>, which expounded the neoclassical theory of income distribution. And in 1910, Irving Fisher wrote his seminal neoclassical textbook <a href=\"https://archive.org/details/inroductiontoeco00fish/page/n17/mode/2up\" target=\"_blank\"><em>Introduction to Economic Science</em></a>. Collectively, James Tobin <a href=\"https://ideas.repec.org/a/aea/aecrev/v75y1985i6p28-38.html\" target=\"_blank\">later noted</a>, the two men helped erect the 'temple' of American neoclassical economics.</p>\n<p>In this temple, capitalism is theorized as a competitive market in which firms are unwittingly forced to maximize social welfare. Of course, for those who stared closely at this theory, it was always a fairy tale. But at the turn of the 20th century, it was at least a mildly believable story. Although the robber barons actively stymied competition, these men were still titans of <em>industry</em>; they built real factories and real infrastructure.</p>\n<p>Today, neoclassical textbooks continue to wax about the market production of 'stuff' (i.e.\u00a0'widgets'). But in the mean time, American capitalists have offshored their factories, leaving the dirty work of making things to others. That's because the real money is made by monetizing the institutional vestiges of American power.</p>\n<p>Of course, legions of political economists have commented on the 'de-industrialization' and 'financialization' of American capitalism. In this light, the rising business-to-industry index of the last half century simply provides another way to quantify an otherwise widely-recognized pattern. That said, the long-term trend in the business-to-industry index also shows something new. When it comes to capitalism, neoclassical economics takes the state of industrial disruption as 'normal'. But in hindsight, Britain and the United States have both spent far more time in periods of monetization \u2014 periods when capitalists inflated their assets without building much of physical substance.</p>\n<p>If one presumes, as Nitzan and Bichler do, that capital is finance and finance alone, then this prolonged state of monetization is unsurprising. Instead, what's remarkable is that periods of industrial disruption occur at all. Indeed, it takes a special set of circumstance to prod owners to build rather than to simply toll. Looking ahead, the irony is that perhaps the most fertile environment for industrial disruption is created not by the market, but by state communism.</p>\n<h4 id=\"the-business-to-industry-index-in-china\">The business-to-industry index in China</h4>\n<p>When Marx envisioned a future socialist utopia, he thought that it would spring from the ashes of capitalism. Let capitalists create the pistons of industry, Marx declared. Then let workers seize the controls and run the machine for themselves. Unfortunately, things did not work out as Marx planned.</p>\n<p>In reality (as Branko Milanovi\u0107 often notes), communism turned out to be an alternative path to capitalism.<a class=\"footnote-ref\" href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fn3\" id=\"fnref3\" role=\"doc-noteref\" target=\"_blank\"><sup>3</sup></a> Or more specifically, state communism was a potent tool for industrial disruption \u2014 a way to rapidly build industrial infrastructure by letting government run the show. Once this build out matured, however, communist control invariably gave way (either by evolution or revolution) to monetized capitalism.</p>\n<p>Modern China offers an excellent case study of this transformation. With communist disruption (and capitalist monetization) in mind, let's turn to Figures\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-china-two-views\">5</a> and <a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-china-bti\">6</a>. Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-china-two-views\">5</a> shows both the business view and the industry view of rising Chinese hegemony. Meanwhile, Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-china-bti\">6</a> combines these two views to measure China's business-to-industry-index.</p>\n<p><a id=\"fig-china-two-views\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/china_two_views.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 5: Two views of the rise of Chinese hegemony.</strong> The blue curve shows the 'business' view of Chinese hegemony \u2014 China's share of world income. The red curve shows the 'industry' view \u2014 China's share of world energy use. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p><a id=\"fig-china-bti\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/china_bti.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 6: The business-to-industry index in China.</strong> The business-to-industry index consists of the ratio between an entity's share of world income and its share of world energy use. This chart combines the time series in Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-china-two-views\">5</a> to plot China's business-to-industry index over the last seventy years. Note the log scale on the vertical axis. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p>Before I discuss the evidence, let's review some history. When the data for China's business-to-industry index begins (in 1953), the country was four years into its communist revolution. Mao was firmly in control, and his government was busy forcing peasants off the land and into newly constructed factories. To be sure, Mao's policies were in many ways disastrous; after all, they prompted what is perhaps the most <a href=\"https://en.wikipedia.org/wiki/Great_Chinese_Famine\" target=\"_blank\">catastrophic famine in human history</a>. But in a sense, the trauma is the point. That's because Maoist China was an industrial disruption machine. During Mao's tenure (which ended in 1976), China's business-to-industry index dropped like a stone.</p>\n<p>Here's why this cliff makes sense.</p>\n<p>At its root, industrial disruption requires the construction of industrial infrastructure at the same time that peoples' incomes are suppressed. Almost by definition, such an experience is unpleasant. In capitalism, owners have a limited ability to command, and so are forced to disrupt with both the stick and the carrot. For example, Henry Ford was a ruthless businessman who nonetheless paid his workers fairly well. This carrot makes the industrial disruption more palatable, but also weakens its pace.</p>\n<p>Under communist governance, the state's enormous stick means that there is little need for the carrot. A communist regime can build heavy industry that is every bit as productive as its capitalist equivalent. Yet the communist factory need not pay ample wages. Indeed, the communist manager can feed his workers bland rations and house them in stark barracks.</p>\n<p>Of course, the problem with communist disruption is that it is self limiting. At some point, workers begin to resent living in a sprawling industrial environment that provides them little benefit. It's at this point that communism runs its course, for by definition, it cannot monetize. So in hindsight, Milanovi\u0107 is right; in practice, communism proved to be a temporary strategy for fostering industrial disruption \u2014 a way to propel backwards regions onto the industrial world stage.</p>\n<p>In China, communist policies were slowly abandoned after Mao's 1976 death, with market reform accelerating during the 1990s. As we might expect, this transformation marked the end of China's period of industrial disruption, and prompted the transition to a period of monetization. From the mid 1990s onward, China's business-to-industry index rose steadily.</p>\n<p>Today, China is the undisputed center of world industry. But it has yet to become the center of global capitalism. That will surely come. If history teaches us anything, it's that rewiring the circuits of global capital takes longer than resituating industrial capacity. Long after factories fled the shores of London and New York, bankers there continued to monetize the long tail of Western power. Looking to the future, the financiers of Shanghai can almost certainly look forward to similar glory.</p>\n<h3 id=\"part-ii-the-geography-of-global-capitalism\">Part II: The geography of global capitalism</h3>\n<p>So far I've studied capitalist history through the lens of hegemony. But of course, there can be no hegemony in isolation, just as there can be no rulers without followers. In the language of <a href=\"https://en.wikipedia.org/wiki/World-systems_theory\" target=\"_blank\">world-systems theory</a>, I've captured the history of the capitalist 'core'. But what of the capitalist 'periphery'? For that matter, what does it mean to be in the 'core' or the 'periphery' of the capitalist system?</p>\n<p>Here, it's worth a brief digression to discuss the failure of Marxist theory, of which world-systems theory is an extension. For Marx, the key feature of capitalism was the exploitation of workers by capitalists. Workers produce 'surplus value', which is then appropriated by capitalists. Looking at international relations, world-systems theorists extend this idea to regions and countries. As they see it, the 'periphery' of the capitalist system produces surplus value that is then expropriated by the capitalist 'core'.</p>\n<p>As with Marx's original thinking, this world-systems extension is seductive but vacuous. The problem comes down to measurement. Marx claimed to explain profit in terms of 'surplus value', but provided no independent way to measure the latter quantity. Likewise, world-systems theorists would like to locate the 'core' of global capitalism by identifying the flow of surplus value, but have no way of doing so. Hence, in practice Marxists simply point to what we already know and apply different verbiage. They look at profit and claim to see 'surplus value'. Meanwhile, world-systems theorists look at international income disparities and infer a regime of exploitation. But without independent measurement, why should we believe either claim?<a class=\"footnote-ref\" href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fn4\" id=\"fnref4\" role=\"doc-noteref\" target=\"_blank\"><sup>4</sup></a></p>\n<p>Here is where the business-to-industry index can (in my opinion) improve world-systems theory. The key insight behind this index \u2014 an insight that originates with Veblen and was later elaborated by Nitzan and Bichler \u2014 is that human industry is a separate beast from capitalist business. Human industry consists of the physical manipulation of the natural world, and can be organized using many different social systems. Capitalist 'business', in contrast, is an ideological practice that monetizes control over property rights. Yes, capitalist control has tended to coincide with industrial development. But we must take care to study these two tendencies separately.</p>\n<p>With the business-industry distinction in mind, I propose the following revision of world-systems theory: what defines the 'core' of the capitalist system is not monetary wealth itself, but monetary wealth in the <em>absence</em> of industry. Such a dichotomy is the signature mark of finance \u2014 of monetized control over abstract property rights. Likewise, what defines the 'periphery' of global capitalism is not the lack of monetary wealth, but rather, the lack of monetary wealth in relation to the scale of industry. In other words, places in the capitalist 'periphery' engage in industry that is outside the control of global finance.</p>\n<p>With this revision of world-systems theory in hand, let's turn to the global empirical evidence. Widespread international data for the business-to-industry index becomes available only in 1990. Fortunately, this year is significant, as it marked the date when the Soviet Union began to collapse. Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-1990\">7</a> shows the business-to-industry picture at that moment.</p>\n<p><a id=\"fig-world-1990\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/world_map_1990.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 7: The business-to-industry index across countries in 1990.</strong> In 1990, Western Europe was the most business-dominated region on Earth. True, the US was then the unquestioned world hegemon; however, as we'll see shortly, it is the coasts of the United States where business power resides. (The rest of the country is a rather different place.) In 1990, decades of communist policy had made Asia was the most industry-dominated region. Note that the business-to-industry index is plotted on a log scale. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p>Looking at this data, we find that the 'core' of the capitalist system resides largely in the collective 'West' (Europe, North America, and Australia), exactly where we expect. Still, there are some surprises. For example, it appears that in 1990, Western Europe was more central to global capitalism than was the United States. Is that really true? Kind of. What the data is actually telling us is that when it comes to business dominance, the United States is not really one country. More on this disunity in a moment.</p>\n<p>By 2023, the capitalist world system had changed appreciably. Some of this change is discernible by eyeballing the 2023 business-to-industry data, shown in Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-2023\">8</a>. But in my mind, the degree of global change is best captured by Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-change\">9</a>, which plots the percentage change in each country's business-to-industry index between 1990 and 2023.</p>\n<p><a id=\"fig-world-2023\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/world_map_2023.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 8: The business-to-industry index across countries in 2023.</strong> Although broadly similar to the 1990 picture, the business-to-industry world map of 2023 is subtly different. In particular, decades of monetization have left Asia less industry-dominated. Note that for comparison purposes, this chart uses the same color scale as in Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-1990\">7</a>. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p><a id=\"fig-world-change\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/world_map_change.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 9: Percentage change in the business-to-industry index, 1990 to 2023.</strong> This chart isolates the eastward shift in global capitalism. In Asia, formerly communist states, including communist-in-name-only China, have seen their business-to-industry indexes rise dramatically over the last forty years. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p>When we stare at this data, it becomes clear that after 500 years of Western hegemony, the center of global capital is shifting eastward. It's future home will almost certainly be in China. Yes, the US and Western Europe continue to ride the long coat-tails of their imperial power. But expect this advantage to wane. When Shanghai becomes the center of global capital, those who keep financial tollbooths in New York and London will probably find that their business runs dry.</p>\n<h4 id=\"the-disunited-states\">The (dis)United States</h4>\n<p>Given that the United States is the waning global hegemon, much of the world remains glued to the intricacies of US politics. Of course, most of the unfolding US drama is pure idiocy that's not worth discussing. But beyond the drivel issued by individual politicians, there is a comprehensible structure to US politics \u2014 one that paints a picture of growing disunity. True, the rise of <a href=\"https://leedrutman.substack.com/p/the-moderation-debate-fiddles-with\" target=\"_blank\">stark American partisanship</a> is well recognized. But what's less understood is the fact that the US partisan divide now plays out along a structural schism in US capitalism.</p>\n<p>Let me make the case. In Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-state-map-2023\">10</a> I've mapped the business-to-industry index among US states in 2023. My choice of colors and scale is designed to evoke a fairly startling conclusion: across states, the business-to-industry index seems to align with partisan politics. To convince ourselves that this relation is no trick of the eye, Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-prez\">11</a> shows how each state's business-to-industry index relates to the results of the 2024 presidential election. It seems that the more business-dominated the state, the more it swung for Kamala Harris over Donald Trump.</p>\n<p><a id=\"fig-state-map-2023\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/state_map_2023.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 10: The business-to-industry index among US states in 2023.</strong> This chart shows the geographic divisions of US capitalism, as captured by the business-to-industry index. My choice of color scale is designed to highlight the connection with US politics. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p><a id=\"fig-prez\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/prez.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 11: The 2024 presidential vote fell along business-to-industry lines.</strong> The vertical axis shows the Harris-to-Trump state margin in the 2024 US presidential election. (Point color shows the same variable.) The horizontal axis plots the state business-to-industry index in 2023. Note the log scale. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p>What should we make of this structural schism? For starters, the geographic shape of US capitalism is nothing new. That is, US coastal regions have long been places of business, while the interior of the country has traditionally been a place of industry. Instead, what's new is the fact that partisan politics have become divided along capitalism's structural lines. This was not always so.</p>\n<p>Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-leg-scatter\">12</a> shows the evolving relation between partisanship in US state legislatures and the state business-to-industry index. Back in 1960, the relationship was muddy but slightly reversed from today. More business-dominated states tended to vote Republican, while more industry-dominated states (traditionally in the South) tended to vote Democrat. However, over the ensuing decades, this relation slowly reversed and then tightened in the opposite direction. Today, more business-dominated states overwhelmingly vote Democrat, while more industry-dominated states are staunchly Republican.</p>\n<p><a id=\"fig-leg-scatter\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/leg_scatter.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 12: The transformation of US partisan politics along business-to-industry divisions.</strong> In each panel, the vertical axis shows the partisan split of US state legislatures. (This split is also indicated by point color.) The horizontal axis shows the state business-to-industry index. (Note the log scale.) In 1960, more industry-dominated states (traditionally in the South) tended to vote Democrat, while more business-dominated states tended to vote Republic. But this relation was fairly muddy. Over the ensuing decades, the relation reversed, and then tightened markedly in the opposite direction. Today, the most business-dominated states are Democrat strongholds, and industry-dominated states are Republican bastions. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p>So what does this geographic schism tell us? Well, it suggests that in political terms, the US is no longer one country. The business-dominated coasts of the US remain committed to the cosmopolitan ideals that invariably exist at the core of empire. Meanwhile, the rest of the country has rejected these ideals and turned increasingly to (let's face it) American-flavored fascism.</p>\n<p>How does this schism play out? Well, it either gets worse, leading to the fracture of the union and potential civil war, or it gets better, leading to renewed national unity. For his part, Trump is pushing the country towards dissolution. (He relishes attacking blue states.) Meanwhile, a determined group of leftists are trying to wrench the Democratic party from its corporate overlords so that they can push mildly socialist policies (that are wildly popular). If these leftists succeed, it's possible that unity could return to US politics. In either case, watch this space.</p>\n<h4 id=\"another-look-at-the-capitalist-world-system\">Another look at the capitalist world system</h4>\n<p>Now that you've indulged my tangent on American politics, let me return to my original reason for calculating the business-to-industry index across US states. Back in Figures\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-1990\">7</a> and <a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-2023\">8</a>, the international data indicated that Western Europe was more business dominated than the United States. This is true but misleading \u2014 an artifact of aggregation.</p>\n<p>When we disaggregate the US into its constituent states, we get the more satisfying picture of the capitalist world system, shown in Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-map-us-states\">13</a>. In 2023, the core of global capitalism was located in Western Europe and along both seaboards of the United States. These are the most business-dominated places on Earth.</p>\n<p><a id=\"fig-world-map-us-states\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/world_map_us_states.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 13: The capitalist world system of 2023.</strong> This chart replots the business-to-industry data from Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-2023\">8</a>, with two important changes. First, I've restricted the color scale to match the scope of the 2023 data. Second, I've disaggregated the US into its constituent states. The results nicely highlight the geography of modern global capitalism, which remains centered in Western Europe and the seaboards of the United States. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p>Continuing the analysis, Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-top-combine\">14</a> eschews maps for a quantitative summary of business dominance. Overall, this list of the twenty most business-dominated regions is composed largely of US states and Western European countries.</p>\n<p>Washington DC, the center of US power, tops the list \u2014 a fitting nod to the fact that business success is forged in large part by state power. Moving down the list we find Ireland, Switzerland, Hong Kong, and Malta \u2014 all notable hubs of finance and tax evasion. Continuing down the list, we get the US coastal states, along with familiar powers of Western Europe. The colonial state of Israel also comes along for the ride, as does the <a href=\"https://en.wikipedia.org/wiki/Panama_Papers\" target=\"_blank\">infamous tax haven</a> of Panama. All in all, these business-dominated regions are places of white-collar activity, just as we'd expect. To do 'business' in the Veblenian sense is not to run machines or to build factories; to do 'business' is to manipulate property rights from inside a downtown office.</p>\n<p><a id=\"fig-top-combine\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/top_combine.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 14: The most business-dominated regions in modern capitalism.</strong> Looking at the twenty most business-dominated regions on Earth, whiskers show the range of the business-to-industry index between 2019 and 2023. Points show the geometric mean over this period. Note the log scale on the horizontal axis. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p>Now, before we make too much of this business-dominated list, it's important to recognize that political boundaries necessarily affect the analysis. In terms of physical geography, cities are the locus of business power. So if we draw a political boundary around a city (as with Washington DC), its business-to-industry index will tend to be higher than if we extend the boundary into the industrial hinterland.</p>\n<p>Because of this issue, the best way to study the business-to-industry index would be to calculate it for units of constant geographic area. Unfortunately, the requisite statistical data (particularly data for energy consumption) is usually restricted to large-scale political boundaries. So while we might like to know the business-to-industry index of Shanghai or Lower Manhattan, such fine-grain data will likely remain difficult to come by.</p>\n<p>In the same vein, large countries like China almost certainly have business-to-industry schisms similar to what's found across the United States (Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-state-map-2023\">10</a>). Untangling these divisions is an important job for the future. (Quantitative researchers, take note!)</p>\n<h3 id=\"our-bottom-heavy-world\">Our bottom-heavy world</h3>\n<p>If you ask a New York financier why their income is so fat, they'll probably echo some neoclassical trope about having 'generated' their earnings through skill and hard work. Likewise, if you asked a feudal lord why they control so many serfs, they'd respond that doing so is their god-given birthright. In both cases, the response has an obvious purpose: to provide an ideological justification for (otherwise arbitrary) power and privilege.</p>\n<p>For critics of social injustice, the temptation is to subvert these dominant ideologies by appealing to some (but not all) of their basic tenets. Thus, the critic of feudalism might accept that god gave rights to men, but claim that these rights are distributed equally. Likewise, the critic of capitalism might accept that value is 'produced', but propose that elites are appropriating value created by others. Such arguments make for good rhetoric because they retain enough of the dominant ideology that they remain comprehensible to the indoctrinated mind. Still, these arguments are a scientific dead end; they gain rhetorical power by conceding basic untruths. We humans make our own rights, just as we impose onto the world our own abstract quantities of monetary value.</p>\n<p>To scientifically study a social order, I think it is essential to eschew rhetorical tricks and instead adopt some form of dual measurement that contrasts the dominant accounting scheme with an alternative way of measuring the world. In capitalism, the dominant accounting scheme is, of course, money. In contrast, the alternative account could be anything non-monetary (provided that thing is objectively measurable). That said, energy consumption is particularly meaningful because of its biophysical significance. Energy is what keeps life from devolving into a pool of entropic mud. Energy is the 'go of things' \u2026 the 'master resource'.</p>\n<p>Returning to the notion of 'justness', when we contrast monetary value with energy consumption, it's conceivable that we might find a picture that's balanced. Imagine, if you will, the world of Isaac Asimov's <a href=\"https://asimov.fandom.com/wiki/Spacers\" target=\"_blank\">'spacers'</a> \u2014 future humans who are dispersed on plantation-like compounds in which armies of robots do virtually all the work. Supposing that these spacer compounds exchanged money, we might find that the business-to-industry index was fairly balanced among them.</p>\n<p>Of course, the real world of 21st century capitalism looks rather different. In our world, places of 'business' are not dispersed plantations manned by robots. They are not even factories manned by ordinary humans. No, places of 'business' consist of shining office towers inside which humans buy, sell, and manage property rights. Places of 'business' are invariably places of finance. Because of this reality, it follows that the geography of capitalism cannot be 'balanced'. By definition, centers of finance are hubs of exclusion \u2014 places that exist because only the few can inhabit them.</p>\n<p>Testifying to this exclusion, when we run the numbers on the population-weighted distribution of the business-to-industry index, we find that less than a quarter of the world's population inhabit business dominated regions. What's more, less than 1% of the population live in regions where the business-to-industry index exceeds four (the territory of financial hubs like Hong Kong, Switzerland and Ireland, and government hubs like Washington DC). Meanwhile, more than three quarters of the world's population live in places of industry dominance. Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-bti-population\">15</a> paints this picture of our bottom-heavy world.</p>\n<p><a id=\"fig-bti-population\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/bti_population.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 15: The population-weighted distribution of the business-to-industry index in 2023.</strong> This chart estimates the portion of the world's population that live in regions with the given business-to-industry index. Less than a quarter of the world's people live in business-dominated regions, while more than three quarters live in industry-dominated regions. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p>Let me summarize the main message. In real-world capitalism, the 'normal' human experience is to work hard for little financial gain. Only the lucky few rake in money with their feet up. Here, it's tempting to imagine some unseen flow of value that gets sent from the hard workers to the leisure class. But no such flow exists. The exploitation in capitalism (if it exists) lies in the nature of property rights themselves \u2014 rights which allow the hoarding of monetized institutional power. Industry for the many. Business for the few.</p>\n<hr/>\n<h4>Support this blog </h4>\n<p> Hi folks, Blair Fix here. I'm a crowdfunded scientist who shares all of my (painstaking) research for free. If you think my work has value, consider becoming a supporter. You'll help me continue to share data-driven science with a world that needs less opinion and more facts.</p>\n<p><a href=\"https://economicsfromthetopdown.com/membership/\" rel=\"noopener\" target=\"_blank\"><img alt=\"member_button\" class=\"aligncenter\" data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2023/05/supporter_button-1.png?w=220&amp;ssl=1\"/></a></p>\n<hr/>\n<h4>Stay updated</h4>\n<p>Sign up to get email updates from this blog.</p>\n<div class=\"jetpack_subscription_widget\"><h2 class=\"widgettitle\"></h2>\n<div class=\"wp-block-jetpack-subscriptions__container\">\n<form accept-charset=\"utf-8\" action=\"#\" data-blog=\"160901125\" data-post_access_level=\"everybody\" id=\"subscribe-blog-1\" method=\"post\">\n<p id=\"subscribe-email\">\n<label class=\"screen-reader-text\" for=\"subscribe-field-1\" id=\"jetpack-subscribe-label\">\n\t\t\t\t\t\t\tEmail Address\t\t\t\t\t\t</label>\n<input autocomplete=\"email\" id=\"subscribe-field-1\" name=\"email\" placeholder=\"Email Address\" required=\"required\" type=\"email\" value=\"\"/>\n</p>\n<p id=\"subscribe-submit\">\n<input name=\"action\" type=\"hidden\" value=\"subscribe\"/>\n<input name=\"source\" type=\"hidden\" value=\"https://economicsfromthetopdown.com/feed/atom/\"/>\n<input name=\"sub-type\" type=\"hidden\" value=\"widget\"/>\n<input name=\"redirect_fragment\" type=\"hidden\" value=\"subscribe-blog-1\"/>\n<input id=\"_wpnonce\" name=\"_wpnonce\" type=\"hidden\" value=\"9fbcde05c4\"/><input name=\"_wp_http_referer\" type=\"hidden\" value=\"/feed/atom/\"/> <button class=\"wp-block-button__link\" name=\"jetpack_subscriptions_widget\" style=\"margin: 0; margin-left: 0px;\" type=\"submit\">\n\t\t\t\t\t\t\tKeep me up to date\t\t\t\t\t\t</button>\n</p>\n</form>\n</div>\n</div>\n<hr/>\n<p><a href=\"http://creativecommons.org/licenses/by/4.0/\" rel=\"license\"><img class=\"aligncenter\" data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2021/03/by.png?w=150&amp;ssl=1\"/></a><br/>This work is licensed under a <a href=\"http://creativecommons.org/licenses/by/4.0/\" rel=\"license\">Creative Commons Attribution 4.0 License</a>. You can use/share it anyway you want, provided you attribute it to me (Blair Fix) and link to <a href=\"https://economicsfromthetopdown.com/\">Economics from the Top Down</a>.</p>\n<hr/>\n<h3 id=\"sources-and-methods\">Sources and methods</h3>\n<p>Want to have a closer look at my business-to-industry data? You can download it <a href=\"https://sciencedesk.economicsfromthetopdown.com/data/2026/bti/bti_data.zip\" target=\"_blank\">here</a>.</p>\n<h4 id=\"world-income\">World income</h4>\n<p>I measure world income in terms of world nominal GDP, denominated in US dollars. Data from 1960 onward is (relatively) unproblematic and comes from the World Bank, series <a href=\"https://data.worldbank.org/indicator/NY.GDP.MKTP.CD\" target=\"_blank\">NY.GDP.MKTP.CD</a> \u2014 GDP in current US dollars. Note that the measure of nominal world GDP is influenced by the exchange rate for local currencies. This is a desired effect. To isolate Veblenian 'business', we want a pure measure of financial income, one that makes no attempt to 'correct' for local currency value (and its associated local purchasing power).</p>\n<p>As we attempt to measure nominal world GDP for earlier periods, things become more difficult. First, there are some fundamental conceptual problems. For example, prior to the American Revolution (which began in 1775) there was no such thing as an 'American dollar'. Hence, calculating nominal GDP in US dollars involves assuming some currency value for a currency that did not actually exist. Typically, that's done by fixing (and projecting back in time) later exchange rates that do exist.</p>\n<p>Second, economic historians tend to be disinterested in nominal incomes. Instead, they use incomes and prices to estimate <em>living standards</em>. Case in point, the <a href=\"https://www.rug.nl/ggdc/historicaldevelopment/maddison/?lang=en\" target=\"_blank\">Maddison project</a> (an extension of the historian <a href=\"https://en.wikipedia.org/wiki/Angus_Maddison\" target=\"_blank\">Angus Maddison's</a> seminal work) has extensive data for historical GDP, but it is measured in terms of <a href=\"https://en.wikipedia.org/wiki/Purchasing_power_parity\" target=\"_blank\">purchasing power parity</a>. The idea is that across countries, one measures GDP relative to a price index calculated from the same basket of goods.</p>\n<p>Now in theory, if researchers published their purchasing power indexes for each country, one could use these indexes to 'undo' their inflation adjustment. By doing so, we could recomputed a satisfying measure of world nominal GDP. Unfortunately, the Maddison project does not (to my knowledge) publish its internal data for purchasing power parity. As such, we must hack our way to a measure of nominal world GDP.</p>\n<p>The way I create this hack is by first calculating a time series for the US GDP deflator using the following data:</p>\n<ul>\n<li>1929 to 1960: FRED series <a href=\"https://fred.stlouisfed.org/series/A191RD3A086NBEA\" target=\"_blank\">A191RD3A086NBEA</a>;\n</li>\n<li>1800 to 1928: Historical Statistics of the United States, Millennial Edition, calculated using the ratio between nominal GDP (series Ca10) and real GDP (series Ca9);\n</li>\n<li>1790 to 1799: Historical Statistics of the United States, Millennial Edition, CPI series Cc1. (I use the consumer price index as a proxy for the GDP deflator.)\n</li>\n<li>1209 to 1789: <em>Measuring Worth</em> data for the British <a href=\"https://www.measuringworth.com/datasets/ukearncpi/\" target=\"_blank\">retail price index</a>. Prior to the existence of the US dollar, this British price-index data serves as a kind of 'global deflator' for Maddison's US-dollar denominated real GDP.\n</li>\n</ul>\n<p>Next, I take the US GDP deflator data and use it to convert Maddison's global 'real GDP' data into nominal dollars. I use the following Maddison GDP data:</p>\n<ul>\n<li>1820 to 1959: Maddison Project database, via <a href=\"https://ourworldindata.org/grapher/gdp-maddison-project-database\" target=\"_blank\">Our World in Data</a>;\n</li>\n<li>1700 to 1819: Archived data from <a href=\"https://www.rug.nl/ggdc/historicaldevelopment/maddison/releases/maddison-database-2010\" target=\"_blank\">Angus Maddison</a>. (I interpolate this data annually.)\n</li>\n</ul>\n<p>Finally, I splice the nominalized Maddison data backwards from the modern World Bank GDP data. Because this historical data involves a rather heavy-handed hack, one should treat it with appropriate uncertainty.</p>\n<h4 id=\"british-income\">British income</h4>\n<p>Data for British income is calculated using <a href=\"https://www.measuringworth.com/datasets/ukgdp/\" target=\"_blank\">nominal GDP data from <em>Measuring Worth</em></a>. I use what they call the 'consistent series', which presumes consistent political boundaries for the 'United Kingdom'. This data is denominated in British pounds. I convert the GDP data to US dollars using <em>Measuring Worth</em> data for the <a href=\"https://www.measuringworth.com/datasets/exchangepound/\" target=\"_blank\">dollar-pound exchange rate</a>. For data prior to 1791, I fixed the dollar-pound exchange rate at its 1791 value (4.55 dollars per pound).</p>\n<h4 id=\"united-states-income\">United States income</h4>\n<p>Data for US income (nominal GDP) is calculated using the following sources:</p>\n<ul>\n<li>1947 to 2025: FRED series <a href=\"https://fred.stlouisfed.org/series/GDP\" target=\"_blank\">GDP</a>;\n</li>\n<li>1800 to 1946: Historical Statistics of the United States, Millennial Edition, series Ca10;\n</li>\n<li>1790 to 1799: Historical Statistics of the United States, Millennial Edition, series Ca9. This is 'real' GDP data that I convert to nominal GDP using the US consumer price index (Historical Statistics of the United States, Millennial Edition, CPI series Cc1).\n</li>\n</ul>\n<h4 id=\"china-income\">China income</h4>\n<p>Data for Chinese income (nominal GDP) is from China's <a href=\"https://www.stats.gov.cn/english/\" target=\"_blank\">National Bureau of Statistics</a>, using the series marked \"Gross Domestic Product (100 million yuan)\". I convert yuan into dollars using <a href=\"https://data.imf.org/en/Data-Explorer?datasetUrn=IMF.STA:ER(4.0.1)\" target=\"_blank\">exchange rate data from the IMF</a>, series CHN.USD_XDC.PA_RT.A.</p>\n<h4 id=\"international-income\">International income</h4>\n<p>To create the global maps of the business-to-industry index (Figures\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-1990\">7</a>, <a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-2023\">8</a> <a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-change\">9</a>, <a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-map-us-states\">13</a>) I use nominal GDP data from the World Bank, series <a href=\"https://data.worldbank.org/indicator/NY.GDP.MKTP.CD\" target=\"_blank\">NY.GDP.MKTP.CD</a> (GDP in current US dollars).</p>\n<h4 id=\"us-state-income\">US state income</h4>\n<p>State income (nominal GDP) is from the following source:</p>\n<ul>\n<li>1997 to 2025: Bureau of Economic Analysis, series SAGDP1 (state annual gross domestic product)\n</li>\n<li>1960 to 1996: Burea of Economic Analysis, series SAINC1 (state annual personal income), spliced to the GDP data above\n</li>\n</ul>\n<h4 id=\"world-energy-use\">World energy use</h4>\n<p>Data is from the following sources:</p>\n<ul>\n<li>1800 to 2024: Our World in Data, <a href=\"https://ourworldindata.org/energy-production-consumption\" target=\"_blank\">Energy Production and Consumption</a>;\n</li>\n<li>prior to 1800: Data is from Ian Morris' book <a href=\"https://archive.org/details/measureofciviliz0000morr\" target=\"_blank\">The Measure of Civilization</a>, Tables 3.1 &amp; 3.4. Morris reports data for energy use per capita in the East and West. Using population data from <a href=\"https://www.rug.nl/ggdc/historicaldevelopment/maddison/releases/maddison-database-2010\" target=\"_blank\">Angus Maddison</a>, I aggregate Morris' data to estimate world energy use. Then I splice this data to the OWID data from 1800.\n</li>\n</ul>\n<h4 id=\"britain-energy-consumption\">Britain energy consumption</h4>\n<p>Data is from the following sources:</p>\n<ul>\n<li>1965 to present: Energy Institute <a href=\"https://www.energyinst.org/statistical-review\" target=\"_blank\">Statistical Review of World Energy</a>\n</li>\n<li>prior to 1965: data is from Paul Warde, <a href=\"https://www.histecon.magd.cam.ac.uk/history-sust/energyconsumption/\" target=\"_blank\">Energy consumption in England and Wales, 1560-2000</a>\n</li>\n</ul>\n<h4 id=\"us-energy-consumption\">US energy consumption</h4>\n<p>Data is from the following sources:</p>\n<ul>\n<li>1949 to 2025: Energy Information Agency, <a href=\"https://www.eia.gov/totalenergy/data/annual/\" target=\"_blank\">Table 1.3</a>, Primary energy consumption estimates by source;\n</li>\n<li>1789 to 1949: Appendix E1 in the EIA 2009 Annual Energy Review (available <a href=\"https://www.eia.gov/totalenergy/data/annual/archive/\" target=\"_blank\">here</a>).\n</li>\n</ul>\n<h4 id=\"china-energy-consumption\">China energy consumption</h4>\n<p>Data is from the following sources:</p>\n<ul>\n<li>1965 to present: Energy Institute <a href=\"https://www.energyinst.org/statistical-review\" target=\"_blank\">Statistical Review of World Energy</a>\n</li>\n<li>1954 to 1964: China's <a href=\"https://www.stats.gov.cn/english/\" target=\"_blank\">National Bureau of Statistics</a>. I use the series called \"Total Energy Consumption (10000 tons of SCE)\". For the unfamiliar, SCE stands for 'standard coal equivalent'.\n</li>\n</ul>\n<h4 id=\"international-energy-consumption\">International energy consumption</h4>\n<p>To create the global maps of the business-to-industry index (Figures\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-1990\">7</a>, <a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-2023\">8</a> <a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-change\">9</a>, <a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-map-us-states\">13</a>) I use per capita energy use data from World Bank (series EG.USE.PCAP.KG.OE, kg of oil equivalent per capita) multiplied by World Bank population data (series SP.POP.TOTL). From these results, I exclude nonsensical data where per capita daily energy use is less than the basic food-energy requirement of 2000 kilocalories per day.</p>\n<h4 id=\"us-state-energy-consumption\">US state energy consumption</h4>\n<p>US state energy use data is from the Energy Information Agency, <a href=\"https://www.eia.gov/state/seds/seds-data-complete.php?sid=US#Consumption\" target=\"_blank\">State Energy Data System</a>, series TETCB.</p>\n<h4 id=\"us-presidential-vote-2024\">US presidential vote, 2024</h4>\n<p>State voting outcomes are from <a href=\"https://www.ballotwire.com/electiondatavisualizations/2024-us-presidential-election-results-by-state-party-margin\" target=\"_blank\">BallotWire</a>.</p>\n<h4 id=\"state-legislature-composition\">State legislature composition</h4>\n<p>Data for the composition of US state legislatures sums seats in both houses and excludes Nebraska (whose legislature is officially non-partisan). Data comes from the following sources:</p>\n<ul>\n<li>1934 to 2021: Philip Thomas's <a href=\"https://github.com/psthomas/state-partisan-composition\" target=\"_blank\">github repository</a>;\n</li>\n<li>2022 to present: scraped from the NCSL via its <a href=\"https://app.powerbi.com/view?r=eyJrIjoiZWQ5NDAwYzMtOWMwNC00ZDBkLTg3YzgtYjQxMGIxMDFmN2E4IiwidCI6IjM4MmZiOGIwLTRkYzMtNDEwNy04MGJkLTM1OTViMjQzMmZhZSIsImMiOjZ9\" target=\"_blank\">tortuously awful web interface</a> that for some inexplicable reason, lacks a 'download data' button.\n</li>\n</ul>\n<h4 id=\"population-weighted-distribution-of-the-business-to-industry-index\">Population-weighted distribution of the business-to-industry index</h4>\n<p>My calculations in Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-bti-population\">15</a> are based on the international business-to-industry data plotted in Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-map-us-states\">13</a>, which disaggregates the US into its constituent states. To weight by population, I use country population data from the World Bank (series SP.POP.TOTL) and US state population from FRED. The weighted distribution can be conveniently calculated in one line with R's <code>density</code> function, which includes a term for <code>weights</code>.</p>\n<h3 id=\"notes\">Notes</h3>\n<div class=\"footnotes footnotes-end-of-document\" id=\"footnotes\" role=\"doc-endnotes\">\n<ol>\n<li id=\"fn1\">I should point out that all the charts in this essay plot the business-to-industry index on a log scale, because such a scale gives the index symmetry. That is, a business-to-industry index of 2:1 (business dominance) should mirror a business-to-industry index of 1:2 (industry dominance). Only the log scale preserves this symmetry.<a class=\"footnote-back\" href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fnref1\" role=\"doc-backlink\" target=\"_blank\"><img alt=\"\u21a9\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em; max-height: 1em;\"/>\ufe0e</a>\n</li>\n<li id=\"fn2\">In a mainstream context, the 'rate of profit' is synonymous with the 'profit margin' \u2014 profit as a share of revenue. However, when Marx spoke of a falling 'rate of profit', he was referring to a different ratio \u2014 profit as a share of the <em>capital stock</em>. The problem with Marx's thinking is that his denominator is an amorphous quantity.\n<p>If we look at the stock of capital that capitalists themselves care about \u2014 market capitalization \u2014 the rate of profit has not fallen. And that's by design; profit is what owners use to perform their <a href=\"https://economicsfromthetopdown.com/2021/06/02/the-ritual-of-capitalization/\" target=\"_blank\">ritual of capitalization</a>. If instead we impute a more expansive concept of 'capital' that somehow aggregates across all capital goods, well there we run into trouble. First, owners don't actually care about this form of 'capital', so it's unclear why it matters. Second, aggregating capital goods is a fools errand, since it depends circularly on prices, as the <a href=\"https://en.wikipedia.org/wiki/Cambridge_capital_controversy\" target=\"_blank\">Cambridge capital controversy</a> revealed. (For a nice demonstration of this aggregation problem, see Nitzan and Bichler's discussion in <a href=\"https://blairfix.github.io/capital_as_power/accumulation-of-what.html\" target=\"_blank\">Chapter 8</a> of <em>Capital as Power</em>.)<a class=\"footnote-back\" href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fnref2\" role=\"doc-backlink\" target=\"_blank\"><img alt=\"\u21a9\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em; max-height: 1em;\"/>\ufe0e</a>\n</p></li>\n<li id=\"fn3\">In <a href=\"https://en.wikipedia.org/wiki/Capitalism,_Alone\" target=\"_blank\"><em>Capitalism Alone</em></a>, Milanovi\u0107 notes how the real-world use of communism turned Marx's thinking on its head. In historical terms, he observes that communism is a \"social system that enabled backward and colonized societies to abolish feudalism, regain economic and political independence, and build indigenous capitalism\".<a class=\"footnote-back\" href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fnref3\" role=\"doc-backlink\" target=\"_blank\"><img alt=\"\u21a9\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em; max-height: 1em;\"/>\ufe0e</a>\n</li>\n<li id=\"fn4\">In world-systems theory, the (presumed) flow of surplus value means that trade between the periphery and the core is unequal. Dollar for dollar, commodities shipped from the periphery to the core have more embodied labor value than the commodities shipped from the core to the periphery.\n<p>Setting aside the unmeasurable notion of 'labor value', there are many <em>measurable</em> ways in which core-periphery trade is unequal. <a href=\"https://portal.research.lu.se/en/persons/alf-hornborg/\" target=\"_blank\">Alf Hornborg</a> has done much of the seminal work here. For example, his paper <a href=\"https://economicsfromthetopdown.com/wp-content/uploads/2026/09/j.ecolecon.2005.10.009.pdf\" target=\"_blank\">'Footprints in the cotton fields'</a> shows how during the early 19th century, British colonial trade was unequal in terms of the exchange of embodied land and embodied labor time (measured in simple hourly terms). More recently, <a href=\"https://doi.org/10.1016/j.gloenvcha.2022.102467\" target=\"_blank\">Jason Hickel and colleagues</a> have found similar unequal patterns in modern world trade.</p>\n<p>While I laud this sort of empirical work, there's a sense in it concedes too much to neoclassical economics. What I mean is that by stressing 'unequal' trade, the analysis presumes that monetary exchange could (and perhaps should) be equal. But this is <em>never</em> true. Instead, the belief in equivalent exchange is the central tenet of capitalist ideology. That is, capitalism consists of an ideology in which property rights are denominated in units of money. It follows, therefore, that monetary exchange is ideologically defined to be equal. So by definition, when I pay $100 for something, I get back $100 worth of property. But since this numerical agreement is an ideological construct, we expect that it is the <em>only</em> part of the exchange that is equal. Every other measurable quantity will be unequal (to differing degrees). So in capitalism, unequal exchange is the norm.</p>\n<p>Now, there's a sense in which the quantitative nature of capitalism masks the ubiquity of unequal exchange. Things become more obvious when the ideology is qualitative. For examples, Catholics agree that during communion, a blessed wafer becomes 'the Body of Christ'. But suppose that a devout Catholic becomes convinced that a blessed Corvette is also 'the Body of Christ'. This fellow might then exchange a Corvette for a wafer, thinking the exchange 'equal'. But of course, that's absurd. The 'equivalence' is an ideological agreement. Everything else about the exchange is unequal.</p>\n<p>So yes, world-systems theorists are correct that trade between the 'core' and the 'periphery' is unequal, in the same way that when a CEO hires a cleaner, a tiny portion of his annual salary buys a whole year of the cleaner's time. That's an unequal exchange of labor time. But then again, this is a rather laborious way to restate what we already know: the CEO's hourly income is much greater than the cleaner's.</p>\n<p>(Sidenote: This tendency to laboriously restate what stares us in the face is one of Marx's worst legacies. Marx got the ball rolling by defining worker's value-creating ability as the sum of their embodied commodity consumption, which is a laborious way of recalculating wages, which we already knew.)</p>\n<p>In a more general sense, the notion of 'unequal exchange' is useful if we focus on commodity trade. However, it becomes unwieldy when we <a href=\"https://capitalaspower.com/2021/05/cherizola-from-commodities-to-assets/\" target=\"_blank\">focus on the flow of <em>assets</em></a>. For example, when Apple shifts its profits to Ireland by selling (dubious) intellectual property to an Irish subsidiary, there is nothing of substance being 'traded'. Instead, Apple is simply moving assets around to juice its US tax return. From these transactions, Irish lawyers and accountants then make a killing.</p>\n<p>To call these shenanigans an 'unequal exchange' is to remain stuck in Marx's 19th-century world of commodity production. Indeed, it is to concede too much to neoclassical ideology, which frames market transactions as an extension of simple barter. For capitalists, monetary transactions are not a tool for 'exchange'. They are a tool for organizing power through the purchase and sale of property rights. Or put another way, unequal commodity exchange is a tiny subset of the wider world of unequal power.<a class=\"footnote-back\" href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fnref4\" role=\"doc-backlink\" target=\"_blank\"><img alt=\"\u21a9\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em; max-height: 1em;\"/>\ufe0e</a>\n</p></li>\n</ol>\n</div>\n<h3>Further reading</h3>\n<p class=\"references csl-bib-body hanging-indent\" data-entry-spacing=\"0\" data-line-spacing=\"2\" id=\"refs\" role=\"list\">\n<p class=\"csl-entry\" id=\"ref-arrighi_long_2010\" role=\"listitem\">\nArrighi, G. (1994). <em>The long twentieth century: Money, power, and the origins of our times</em>. Verso.\n</p>\n<p class=\"csl-entry\" id=\"ref-fix_ritual_2021\" role=\"listitem\">\nFix, B. (2021). The ritual of capitalization. <em>Real-World Economics Review</em>, (97), 78\u201395.\n</p>\n<p class=\"csl-entry\" id=\"ref-milanovic_capitalism_2019\" role=\"listitem\">\nMilanovic, B. (2019). <em>Capitalism, alone: The future of the system that rules the world</em>. Harvard University Press.\n</p>\n<p class=\"csl-entry\" id=\"ref-nitzan_capital_2009\" role=\"listitem\">\nNitzan, J., &amp; Bichler, S. (2009). <em>Capital as power: A study of order and creorder</em>. New York: Routledge.\n</p>\n<p class=\"csl-entry\" id=\"ref-veblen_absentee_1923\" role=\"listitem\">\nVeblen, T. (1923). <em>Absentee ownership: Business enterprise in recent times: The case of <span>America</span></em>. Transaction Pub.\n</p>\n<p class=\"csl-entry\" id=\"ref-wallerstein_world_2020\" role=\"listitem\">\nWallerstein, I. (2020). <em>World-systems analysis: An introduction</em>. Duke University Press.\n</p></p>\n<p>The post <a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism/\">The Business-to-Industry Index and the Geography of Global Capitalism</a> appeared first on <a href=\"https://economicsfromthetopdown.com\">Economics from the Top Down</a>.</p>","doi":"https://doi.org/10.59350/a041p-74c68","guid":"https://economicsfromthetopdown.com/?p=15626","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","published_at":1789776000,"rid":"08vre-23926","summary":"Your browser does not support the audio tag. Download: PDF | EPUB | MP3 | WATCH VIDEO <em> 'Industry' and 'business' \u2026 are not synonyms \u2026 they are opposing realms of human activity </em> . \u2014 Jonathan Nitzan and Shimshon Bichler A defining feature of neoclassical economics is that it treats 'business' and 'industry' as synonyms.","tags":["Business-to-industry Index","Capital As Power","Communism","Empire","Energy"],"title":"The Business-to-Industry Index and the Geography of Global Capitalism","updated_at":1789889407,"url":"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism/","version":"v1"}},{"document":{"authors":[{"affiliation":[{"name":"Public Knowledge Project"}],"contributor_roles":[],"family":"Alperin","given":"Juan Pablo","url":"https://orcid.org/0000-0002-9344-7439"}],"blog":{"authors":null,"community_id":"1b84e1b5-c7ff-432d-844f-32e175e0f7c4","created":1690675200,"current_feed_url":null,"description":null,"doi":"https://doi.org/10.59350/scholcommlab","favicon":"https://rogue-scholar.org/api/communities/1b84e1b5-c7ff-432d-844f-32e175e0f7c4/logo","feed_format":"application/atom+xml","feed_url":"https://www.scholcommlab.ca/feed/atom/","filter":null,"generator":"WordPress","home_page_url":"https://www.scholcommlab.ca","issn":null,"language":"eng","license":"https://creativecommons.org/licenses/by/4.0/legalcode","prefix":"10.59350","relative_url":null,"secure":true,"slug":"scholcommlab","status":"active","subfield":"1802","title":"Scholarly Communications Lab | ScholCommLab","updated":1789598624,"use_api":true},"blog_name":"Scholarly Communications Lab | ScholCommLab","blog_slug":"scholcommlab","content_html":"<p class=\"wp-block-paragraph\"><span style=\"font-weight: 400;\">As we <a href=\"https://www.scholcommlab.ca/2026/09/01/defining-preprints-and-preprint-servers-mapping-an-inconsistent-landscape/\" target=\"_blank\" rel=\"noopener\">recently wrote</a>, there is really no agreed-upon definition of what a preprint is. And even if we could agree, it would not settle the question of what constitutes a preprint server. As we have been looking to </span><a href=\"https://www.scholcommlab.ca/research/preprints/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">study preprints</span></a><span style=\"font-weight: 400;\"> and their role in scholarly communications, we have been looking to generate a directory of servers that, even if flawed or limited, can give us a common starting point for examining preprints and the culture around them.\u00a0</span></p>\n<p><span style=\"font-weight: 400;\">Unsurprisingly, we are not alone in this. ASAPbio, an organization dedicated to promoting the use of preprints, is </span><a href=\"https://asapbio.org/proposed-updates-to-preprint-services-directory-request-for-comments/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">looking to update</span></a><span style=\"font-weight: 400;\"> their directory of preprints. We shared some of our insights with them, and thought some of our feedback might also be more useful to the broader community.\u00a0</span></p>\n<h3><img decoding=\"async\" class=\"aligncenter wp-image-6278 size-full\" src=\"https://www.scholcommlab.ca/wp-content/uploads/2026/09/4.png\" alt=\"\" width=\"2240\" height=\"1260\" srcset=\"https://www.scholcommlab.ca/wp-content/uploads/2026/09/4.png 2240w, https://www.scholcommlab.ca/wp-content/uploads/2026/09/4-300x169.png 300w, https://www.scholcommlab.ca/wp-content/uploads/2026/09/4-1024x576.png 1024w, https://www.scholcommlab.ca/wp-content/uploads/2026/09/4-768x432.png 768w, https://www.scholcommlab.ca/wp-content/uploads/2026/09/4-1536x864.png 1536w, https://www.scholcommlab.ca/wp-content/uploads/2026/09/4-2048x1152.png 2048w, https://www.scholcommlab.ca/wp-content/uploads/2026/09/4-350x197.png 350w\" sizes=\"(max-width: 2240px) 100vw, 2240px\" /></h3>\n<h3><strong><b>Need to work from a definition</b></strong></h3>\n<p><span style=\"font-weight: 400;\">Most importantly, </span><b>any directory will need to operationalize their definition</b><span style=\"font-weight: 400;\"> of what constitutes a preprint server.\u00a0</span></p>\n<p><span style=\"font-weight: 400;\">Our own attempts at constructing a list of preprint servers indicates a wide range of platforms and publishers allow authors to post preprints, but whether these should be called \"preprint servers\" is far from settled. Researchers can post preprints to venues dedicated exclusively to preprints; publish/review/curate platforms; journal-based platforms that publish both preprints and peer-reviewed articles; general repositories that accept preprints among other types of research outputs; and the list goes on.\u00a0</span></p>\n<p><span style=\"font-weight: 400;\">While there may not be a single or right answer to \"what is a preprint server,\" a directory cannot function as a meaningful community resource without\u00a0 a clear operational definition. Its creators must explain what is included, what is excluded, and why.</span></p>\n<h3><strong>Detail is necessary</strong></h3>\n<p><span style=\"font-weight: 400;\">A useful directory needs more than just a list of venues and services\u2014it requires descriptive information that lets users filter and understand the landscape. The challenge lies in how one captures that information. When assessing whether a server has a particular policy, a simple &#8220;yes\" or \"no\" indicating whether a policy is &#8220;clear&#8221; tells only part of the story. A policy can be clear without being specific, and policies that appear similarly clear can differ substantially in their actual terms.</span></p>\n<p><span style=\"font-weight: 400;\">In our own analysis, we encountered exactly this problem. Instead of forcing policies into binary categories, directories should specify which characteristics matter for each policy area, then document those details explicitly. For example, rather than simply recording whether a server has a withdrawal policy, a directory should indicate who can request a withdrawal, under what circumstances, and how the withdrawal is reflected in the scholarly record. Leave fields blank where no clear policy exists\u2014but do the work of showing </span><i><span style=\"font-weight: 400;\">what</span></i><span style=\"font-weight: 400;\"> the policy actually says.</span></p>\n<h3><b>Conclusion</b></h3>\n<p><span style=\"font-weight: 400;\">Building a useful directory of preprint servers is more complex than it might initially seem. It requires not just listing which servers exist, but making deliberate choices about which definitions to use and then describing policies with enough nuance that researchers and other stakeholders can actually make informed decisions. Without this intentionality\u2014both in definition and in detail\u2014directories risk becoming incomplete or misleading resources. The good news is that the current moment offers an opportunity to get this right.</span></p>\n<p><em><strong>DOI: </strong><a href=\"https://doi.org/10.59350/zqh03-rx293\" target=\"_blank\" rel=\"noopener\">https://doi.org/10.59350/zqh03-rx293</a></em></p>","doi":"https://doi.org/10.59350/zqh03-rx293","guid":"https://www.scholcommlab.ca/?p=6277","image":"https://www.scholcommlab.ca/wp-content/uploads/2026/09/4.png","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","published_at":1789516800,"rid":"ysgyz-n4s56","summary":"As we recently wrote, there is really no agreed-upon definition of what a preprint is. And even if we could [\u2026]","tags":["Research","Preprints"],"title":"Advice for a Preprint Services Directory","updated_at":1789797827,"url":"https://www.scholcommlab.ca/2026/09/16/advice-for-a-preprint-services-directory/","version":"v1"}},{"document":{"authors":[{"affiliation":[{"id":"https://ror.org/03wc8by49","name":"Posit Software, PBC (United States)"}],"contributor_roles":[],"family":"Clawson","given":"James","url":"https://orcid.org/0009-0008-6756-0607"},{"contributor_roles":[],"family":"Kaczmarek","given":"Ursula"},{"affiliation":[{"id":"https://ror.org/019jywm96","name":"rOpenSci"}],"contributor_roles":[],"family":"Ross","given":"Noam","url":"https://orcid.org/0000-0002-2136-0000"},{"contributor_roles":[],"family":"Delaney","given":"Scott","url":"https://orcid.org/0000-0002-0813-018X"}],"blog":{"authors":null,"community_id":"3446712e-ab03-4bb7-8641-571dcda8d8cd","created":1787702400,"current_feed_url":null,"description":"Tracking disruptions to U.S. federal science funding, grant by grant.","doi":"https://doi.org/10.59350/grantwitness","favicon":"https://rogue-scholar.org/api/communities/3446712e-ab03-4bb7-8641-571dcda8d8cd/logo","feed_format":"application/atom+xml","feed_url":"https://grantwitness.org/updates/rogue-scholar.xml","filter":null,"generator":"Other","home_page_url":"https://grantwitness.org/updates?type=updates","issn":null,"language":"eng","license":"https://creativecommons.org/licenses/by/4.0/legalcode","prefix":"10.59350","relative_url":null,"secure":true,"slug":"grantwitness","status":"active","subfield":"3321","title":"Grant Witness","updated":1789516800,"use_api":null},"blog_name":"Grant Witness","blog_slug":"grantwitness","content_html":"<p>Together with our partner <a href=\"https://statesunited.org\">States United Democracy Center</a>, <a href=\"https://grantwitness.org/\">Grant Witness</a> today launched <a href=\"https://www.lostfunds.org/\">Lost Funds</a>, an interactive tracker that provides a holistic look at federal grants that have been canceled, frozen, delayed, or otherwise interrupted since Trump took office in January 2025. The tool documents $177 billion in federal funding disruptions across all 50 states and Washington D.C., spanning 17 policy sectors, and examines impacts in communities across the country.</p>\n<p>\"By bringing thousands of funding disruptions from the Trump administration together in one, centralized website, the Lost Funds Tracker puts the magnitude of their impact on full display,\" said Scott Delaney, Co-Founder of Grant Witness. \"The impact of funding cuts at this scale cannot be overstated. These disruptions touch everything from health care and disaster relief to technology and agriculture. The data tells a story about the consequences communities face as a result of the cuts, and the resources they're fighting relentlessly to preserve.\"</p>\n<p>\"Many states have been fighting the impacts of federal funding disruptions one grant at a time ever since Trump took office,\" said Kelly Rader, Research Director at the States United Democracy Center. \"This is funding for states that has already been approved by Congress. But the Trump administration is trying to take unliteral action to stop that money from reaching the communities it's meant for. Lost Funds illustrates just how widespread these funding cuts are, the scale of the harm they've caused, and how states are once again on the front lines protecting their residents.\"</p>\n<p>Lost Funds provides a comprehensive overview of funding disruptions from the past 20 months, covering the Trump administration's <a href=\"https://statesunited.org/wp-content/uploads/2025/01/OMB-1.pdf\">attempt to freeze funding</a> during his first week in office and each subsequent disruption across health care, education, transportation, disaster relief, science and technology, and more. It includes an overview of state efforts to challenge the disruptions and the funding they've restored for their communities.</p>\n<p>Key takeaways from the <a href=\"https://www.lostfunds.org/\">Lost Funds national landscape</a>:</p>\n<ul>\n<li>$177 billion in federal funding has been disrupted across all 50 states and Washington, D.C.</li>\n<li>States have joined 27 lawsuits to challenge the disruptions, restoring $24 billion in disrupted grants.</li>\n<li>The funding disruptions span 17 policy sectors and are being implemented through 21 federal agencies. Health grants have taken the largest hit, with $39 billion in disruptions.</li>\n<li>Texas has lost the most total dollars of federal funding of any state ($15.9 billion). Vermont has lost the most funding per resident ($2,728).</li>\n</ul>\n<p>Explore the national picture and drill down by state, program, sector, and grant recipient <a href=\"https://www.lostfunds.org/michigan\">here</a>.</p>\n<p>The Lost Funds Tracker will be updated regularly as the Trump administration takes new actions to disrupt funding, state lawsuits move through the courts, and stories of consequences in communities are told.</p>","doi":"https://doi.org/10.59350/y27rm-4dq03","guid":"https://doi.org/10.59350/y27rm-4dq03","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","published_at":1789516800,"rid":"126yg-ben14","summary":"Together with our partner States United Democracy Center, Grant Witness today launched Lost Funds, an interactive tracker that provides a holistic look at federal grants that have been canceled, frozen, delayed, or otherwise interrupted since Trump took office in January 2025.","title":"Tracking $177 Billion in Disrupted Federal Grants with the Lost Funds Project","updated_at":1789797806,"url":"https://grantwitness.org/updates/tracking-177-billion-in-disrupted-federal-grants-with-the-lost-funds-project","version":"v1"}},{"document":{"authors":[{"affiliation":[{"name":"Open Humans Foundation"}],"contributor_roles":[],"family":"Greshake Tzovaras","given":"Bastian","url":"https://orcid.org/0000-0002-9925-9623"}],"blog":{"authors":null,"community_id":"c1baf1e7-80ce-43eb-bc1c-a978dd7d62c9","created":1712793600,"current_feed_url":null,"description":"Bastian Greshake Tzovaras is an open/citizen science activist and researcher with a background in biology and bioinformatics. He worked as a senior researcher at The Alan Turing Institute and Inserm. In 2011, he founded openSNP. He was awarded a PhD","doi":"https://doi.org/10.59350/tzovar","favicon":"https://rogue-scholar.org/api/communities/c1baf1e7-80ce-43eb-bc1c-a978dd7d62c9/logo","feed_format":"application/atom+xml","feed_url":"https://tzovar.as/feed.xml","filter":null,"generator":"Jekyll","home_page_url":"https://tzovar.as/","issn":null,"language":"eng","license":"https://creativecommons.org/licenses/by/4.0/legalcode","prefix":"10.59350","relative_url":null,"secure":true,"slug":"tzovar","status":"active","subfield":"3305","title":"Bastian Greshake Tzovaras |","updated":1789562700,"use_api":null},"blog_name":"Bastian Greshake Tzovaras |","blog_slug":"tzovar","content_html":"<p><a href=\"https://tzovar.as/assets/images/2026-09-16-digital-solidarity.jpg\"><img alt=\"the back of a computer screen with different tech-criticism stickers\" src=\"https://tzovar.as/assets/images/2026-09-16-digital-solidarity.jpg\"/>\n</a></p>\n<p>How we politicize technology in service of <em>a better world</em> is an open and contested question.\nA few days ago I shared <a href=\"https://disjunctionsmag.com/articles/historicising-enshittification/\">a piece on <em>historicising enshittification</em></a>. \nIn it, Arvind L. U. explores the limits of how Doctorow's framing around that term is both ahistorical, in that it limits itself to a view that ignores the realities of the global south, and lacking imagination for not even considering a real alternative political economy of the internet.\nIn response, <a href=\"https://fedihum.org/@lavaeolus/117224180146808192\">Henrik shared</a> a quote out of <a href=\"https://dietzberlin.de/produkt/digitale-solidaritaet/\"><em>Digital Solidarity</em></a> \u2013 a new book by <a href=\"https://indieweb.social/@alineblankertz\">Aline Blankertz</a> and <a href=\"https://legal.social/@malteengeler\">Malte Engeler</a> \u2013 which similarly considers the <em>enshittification</em> framing to conceal the fact that it's <em>the pinnacle of capitalism</em> and not an aberration.</p>\n<p>Intrigued by this, I really wanted to read the whole, longer argument that Aline &amp; Malte are making in their book.\nLuckily, I managed to score a review copy of it, which I went through over the weekend.\nAs the book is unfortunately right now only available in German, I thought I'd at least attempt to give a small review and summary of why I'm glad I read it.</p>\n<p>Structurally, the book is divided into two parts:\nThe first half analyses the <em>status quo</em> of capitalist digitization.\nHow does the spread of digital technologies help legitimize and drive capitalism and authoritarian structures? \nThe second half then dives into their counter proposal of <em>digital solidarity</em> and how digital technologies could be used in an emancipatory way.\nJointly, both halves explore which technologies can be appropriated for progressive causes (and how), and which ones are irredeemable.</p>\n<p>The first half of the book starts off very strong.\nIt outlines well how society has \u2013 at least in parts intentionally \u2013 been shaped to a certain level of apathy about the future, in which <em>societal progress for many has been reduced to the production cycles of new devices and software</em>.\nAnd in which collective imaginaries make the existing capitalist appear <em>natural</em>, where people might consider rejecting discrimination based on race, but not overcoming class society.</p>\n<p>Launching from this, the book also provides a great exploration of how &amp; why much of contemporary tech critique is failing by not focusing on the underlying capitalist structures that <em>work as expected</em>.\nWhether that's Zuboffs <em>surveillance capitalism</em> that appeals to the managerial class to please implement ethical business practices, <em>technofeudalism</em> or the above mentioned <em>enshittification</em> by Doctorow, which proposes the solution in enforcing more <em>market competition</em> and regulation.\nThey all locate the solution to existing problems with technology by making minor tweaks to the dominant economic dynamics, which not only do not question the reign of capitalism overall but risk reinforcing it.</p>\n<h2 id=\"on-false-hopes-for-progress-and-democracy\">On false hopes for progress and democracy</h2>\n<p>The meat of the critical analysis that follows consists of countering three of the big myths that surround digital technologies and the internet. Namely, that digitization is progress, that the internet <em>democratizes</em> and that <em>open source</em> can offer a counter to capitalist logics. \nOn the first point, Aline and Malte do a great job of exploring how the myth of digitally mediated progress takes the shape of a cyber-libertarianism that rejects the collective in favor of the individual, their responsibility and market forces.\nThis includes how the common ideas that <em>degoogling</em>, self-hosting, and a focus on <em>privacy</em> can end up not being emancipatory praxis, but libertarian isolation that in turn promotes technologies like cryptocurrencies and culminates in fascist ideals.</p>\n<p>These tendencies are tied neatly into the review of the <em>democratizing</em> potential of digital technology, which draws from the same cyber-libertarian framing\u2014and has mostly led to a concentration of power. \nPlatforms like Spotify, Airbnb, Uber etc. by no means have driven democratization, but have helped concentrate power and wealth in the hands of the platforms.\nAnalogous to how the push for generative 'AI' is working towards ensuring that creative activities will have to rely on renting <em>AI</em>-assistance.</p>\n<h2 id=\"the-failure-of-open-source\">The failure of open source</h2>\n<p>I particularly enjoyed the last myth, on open source as counter culture, as it hits very close to home.\nFraming open source as <em>the electric car of digital politics</em> is in equal parts hilarious and fitting \u2013 especially in the context of German car culture:\nJust as the electric car is a step up over the internal combustion engine but doesn't challenge the car-centrism, open source software (OSS) has benefits over proprietary software but doesn't very little if anything to challenge the extractive nature of big technology corporations, which themselves profit tremendously from OSS.<sup id=\"fnref:1\" role=\"doc-noteref\"><a class=\"footnote\" href=\"https://tzovar.as/digital-solidarity-blankertz-engeler//#fn:1\" rel=\"footnote\">1</a></sup></p>\n<p>Such extractivism is a tendency that is now even indirectly promoted through companies and civil society organisations alike<sup id=\"fnref:2\" role=\"doc-noteref\"><a class=\"footnote\" href=\"https://tzovar.as/digital-solidarity-blankertz-engeler//#fn:2\" rel=\"footnote\">2</a></sup>, by using labels such as <em>digital public goods</em> or <em>digital public infrastructures</em>, which contribute to concealing the ways in which the value from unpaid volunteer labor flows into corporations all while enshrining the offering of digital services as a task for society.\nAlong those lines, much of OSS also at least implicitly reproduces the dominant thinking and technological affordances of big technology companies and thus giving credence to them.</p>\n<p>But an emancipatory alternative to e.g. corporate-controlled social media <a href=\"https://tzovar.as/scaling-up-and-on-being-the-right-size\">needs to be more than just <em>Twitter but open source</em></a>.\nWhich OSS often falls short of, thanks to <a href=\"https://tzovar.as/open-science-beyond-licenses/\">top-down control structures</a> which are most often under the hegemony of an homogeneous (white, cis, male) elite.</p>\n<h2 id=\"between-gdpr--authoritarianism\">Between GDPR &amp; authoritarianism</h2>\n<p>As already briefly mentioned above, the way that privacy is <em>also</em> used as a common concept by cyber-libertarians who focus on the creation of a hyper-individualist is getting some well deserved attention as well.\nThe EU's GDPR privacy regulations are equally the focus of a critical discussion, highlighting the explicitly colonial aspects of the regulation (by having a global ambition of forcing the rest of the world to adapt those rules as well) as well as the capitalist logic it operates in (by reinforcing that profit motives decide when &amp; how personal data is used).</p>\n<p>And lastly, there is of course the tight coupling between the technologies pushed by technology corporations and their relationship to authoritarianism, the military industrial complex, and eugenics, etc\u2026\nAll while society glorifies tech managers for bringing <del>salvation</del> progress, helping foster fascist praise for <em>strong leaders</em>.<sup id=\"fnref:3\" role=\"doc-noteref\"><a class=\"footnote\" href=\"https://tzovar.as/digital-solidarity-blankertz-engeler//#fn:3\" rel=\"footnote\">3</a></sup></p>\n<h2 id=\"what-is-to-be-done\">What is to be done?</h2>\n<p>After all that critical analysis, the change of pace to envisioning a positive alternative was more than welcome.\nAnd Malte &amp; Aline contrast their vision of <em>digital solidarity</em> very nicely with the currently trendy <em>digital sovereignty</em>.\nFaced with the political and economic violence touted by the United States, the European Union and many of their member states are touting the latter as an alternative.<sup id=\"fnref:4\" role=\"doc-noteref\"><a class=\"footnote\" href=\"https://tzovar.as/digital-solidarity-blankertz-engeler//#fn:4\" rel=\"footnote\">4</a></sup>\nWhile it might sound catchy, it generally falls squarely into the same nationalistic tropes of just needing an EU-based competitor to US big-tech instead of actively bringing about change.<sup id=\"fnref:5\" role=\"doc-noteref\"><a class=\"footnote\" href=\"https://tzovar.as/digital-solidarity-blankertz-engeler//#fn:5\" rel=\"footnote\">5</a></sup></p>\n<p>In contrast, <em>digital solidarity</em> touches on the emancipation of the people using technology.\nHighlighting the original demands of the luddites \u2013 wanting a say in which technology is used and how \u2013 it explores how the digital could be different.\nOne bit I found particularly interesting was <a href=\"https://doi.org/10.1016/j.jclepro.2017.02.195\">the framework by Andrea Vetter</a>, which I didn't know before. Building on Illich's <em>Tools for Conviviality</em>, her work outlines 5 dimensions to  assess technologies for their conviviality: Their impact on <em>(human) connections</em>, their accessibility, their interactions with the living world and their appropriateness in terms of resource input and output.</p>\n<p>Based on their own luddite-informed model, and taking Vetter into account, Aline and Malte build their own criteria for an <em>emancipatory technology critique</em>:</p>\n<ol>\n<li>Harmonizing abilities: Who is enabled by technology? Is it the few or does it give ability to those who so far lacked them? Is it inclusive of disabilities? Does it help build equality?</li>\n<li>Exclusion of unwanted uses: Can uses deemed negative be avoided? An interesting example is about the use of prostheses, beneficial when serving in disability use cases, cyberpunk nightmare if deemed societal necessity.</li>\n<li>Appropriateness: Do the benefits of a technology fit the societal and ecological costs they incur?</li>\n</ol>\n<p>Based on these three criteria, they outline nicely why 'AI' can not be used by <em>the left</em> as an emancipatory tool, for failing on all three counts:\nBy its very nature, it's a technology that does not harmonize abilities but concentrates power in the hands of the few, due to the requirements for large amounts of capital and training data, its inherent force for removing individual agency that removes collective action and the biases encoded in all training data.\nIt also is explicitly a technology that is created and marketed as \"all-purpose\", failing the question of excluding unwanted uses.\nAnd with respect to its appropriateness, the ecological, economical and societal damages have been documented extensively, for example due to resource use (water, fossil fuels, rare earth minerals mined in the global south\u2026) for 'AI' data centers.</p>\n<h3 id=\"resistance--solidarity\">Resistance &amp; solidarity</h3>\n<p>In the following chapters, the book goes on to outline a more positive view of how <em>digital solidarity</em> can form a counter model to the predominant discourses that suck up a lot of oxygen, without offering transformative options.\nActs of resistance, individual ones such as <a href=\"https://tzovar.as/algorithmic-sabotage-ssg/\">algorithmic sabotage</a>, <em>robot vandalism</em> against (allegedly) self-driving cars, or the <a href=\"https://media.ccc.de/v/39c3-the-heartbreak-machine-nazis-in-the-echo-chamber\">hacking of nazi dating platforms</a> or collective ones such as group efforts against data centers can be one tool.\nAnd so can positive interventions such as repair-cafes, if they are sufficiently politicized to move beyond <em>just</em> the individual benefit.</p>\n<h3 id=\"collectivization-of-the-digital\">Collectivization of the digital</h3>\n<p>The bigger step and challenge proposed is about the ownership of the digital platforms.\nIn their current configurations, the harms created by them are a direct consequence of the extractivist profit logics they operate under:\nReal estate platforms deploy data science methods to help landlords to extract the maximum possible rents (and thus also maximize their own income).\nAnd the same applies to digital streaming services, and basic digital infrastructures like data centers in the hands of corporations.</p>\n<p>Ultimately, the book makes a convincing argument how shifting the control from private ownership into the collective would allow designing technologies that benefit everyone instead.\nWithout falling prey to tinkering on the margins by asking for interoperability, open source/data, it centers on envisioning technology that serves the public benefit and breaks with the capitalist logics.\nBuilding on Graeber &amp; Wengrow, it shows how democratic control of the digital \u2013 that includes the freedom to leave, no obey and to build new social systems \u2013 can offer an alternative to the existing tech authoritarianism.</p>\n<p>Jointly, Aline &amp; Malte make a great contribution to envision fights for digital technologies \u2013 and societies \u2013 that are anti-authoritarian, post-capitalist, and emancipatory.\nIf you read German, <em>Digital Solidarity</em> makes a great read to sharpen your thinking about how to approach the critique of digital technologies and gives a lot of food for thought on how to approach your own activism to overcome the status quo.\nAnd if you don't read German, my hope is that some of you are now at least curious about the concept.\nMaybe even enough to ask your favorite lefty publisher for suggesting putting out a translated version? ;-)</p>\n<h2 id=\"references\">References</h2>\n<ol>\n<li>L. U., Arving (2026) Historicising Enshittification Lineages of the bad internet. Disjunctions. https://disjunctionsmag.com/articles/historicising-enshittification/</li>\n<li>Blankertz, A., Engeler M. Digitale Solidarit\u00e4t. Dietz Berlin ISBN: 978-3-320-02443-7</li>\n<li>Vetter, A. (2017). The Matrix of Convivial Technology \u2013 Assessing technologies for degrowth. Journal of Cleaner Production. https://doi.org/10.1016/j.jclepro.2017.02.195</li>\n<li>Greshake Tzovaras, B. (2026, August 18). On 'scaling up' and being the right size. Bastian Greshake Tzovaras https://doi.org/10.59350/5bfg3-bjv09</li>\n<li>Greshake Tzovaras, B. (2026, February 10). Open science and commoning beyond licensing: Deteriorating digital commons in the absence of collective governance. Bastian Greshake Tzovaras  https://doi.org/10.59350/14dpd-23089</li>\n<li>Illich, I., &amp; Lang, A. (1973). Tools for conviviality.</li>\n</ol>\n<h2 id=\"footnotes\">Footnotes</h2>\n<div class=\"footnotes\" role=\"doc-endnotes\">\n<ol>\n<li id=\"fn:1\" role=\"doc-endnote\">\n<p>There is also a good bit about the <em>Open Source Initiative</em>'s open-washing of 'AI' through their misguided definition of 'open source AI', which explicitly does not require opening up training data and thus is mostly a push to legitimize these corporations' open-washing by giving an official label.\u00a0<a class=\"reversefootnote\" href=\"https://tzovar.as/digital-solidarity-blankertz-engeler//#fnref:1\" role=\"doc-backlink\">\u21a9</a></p>\n</li>\n<li id=\"fn:2\" role=\"doc-endnote\">\n<p>I'm glad to see more people critically evaluating <em>civil society associations</em> and other NGOs for their role in legitimizing existing power structures in their continuous quest for funding of full-time positions.\u00a0<a class=\"reversefootnote\" href=\"https://tzovar.as/digital-solidarity-blankertz-engeler//#fnref:2\" role=\"doc-backlink\">\u21a9</a></p>\n</li>\n<li id=\"fn:3\" role=\"doc-endnote\">\n<p>As the book outlines, fascists profiting and putting technology into their service is not new, as <em>IBM and the Holocaust</em> demonstrates so well.\u00a0<a class=\"reversefootnote\" href=\"https://tzovar.as/digital-solidarity-blankertz-engeler//#fnref:3\" role=\"doc-backlink\">\u21a9</a></p>\n</li>\n<li id=\"fn:4\" role=\"doc-endnote\">\n<p>Also here the role of civil society actors is highlighted for good reason: In their quest for funding and influence, many of them are uncritically jumping on that bandwagon as well.\u00a0<a class=\"reversefootnote\" href=\"https://tzovar.as/digital-solidarity-blankertz-engeler//#fnref:4\" role=\"doc-backlink\">\u21a9</a></p>\n</li>\n<li id=\"fn:5\" role=\"doc-endnote\">\n<p>As an aside: The director general of the French National Institute for Geography tried to reframe <em>sovereignty</em> in an imho interesting way during <a href=\"https://peertube.openstreetmap.fr/w/xABVQhLx1MMEVbqY9eprcE\">his closing remarks of the <em>State of the Map</em> conference</a>: <em>The lesson from the commons is that sovereignty is not only about control. Sovereignty is not about closing doors, closing frontiers. You can also build sovereignty thanks to openness, [\u2026] thanks to cooperation</em>. Thanks Marcos, <a href=\"https://en.osm.town/@mdione/117197515212937504\">for the transcription</a>.\u00a0<a class=\"reversefootnote\" href=\"https://tzovar.as/digital-solidarity-blankertz-engeler//#fnref:5\" role=\"doc-backlink\">\u21a9</a></p>\n</li>\n</ol>\n</div>","doi":"https://doi.org/10.59350/pydj0-e2h44","guid":"https://doi.org/10.59350/pydj0-e2h44","image":"https://tzovar.as/assets/images/2026-09-16-digital-solidarity.jpg","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","published_at":1789516800,"reference":[{"id":"https://disjunctionsmag.com/articles/historicising-enshittification/","unstructured":"L. U., Arving (2026) Historicising Enshittification Lineages of the bad internet. Disjunctions."},{"unstructured":"Blankertz, A., Engeler M. Digitale Solidarit\u00e4t. Dietz Berlin ISBN: 978-3-320-02443-7"},{"id":"https://doi.org/10.1016/j.jclepro.2017.02.195","unstructured":"Vetter, A. (2018). The Matrix of Convivial Technology \u2013 Assessing technologies for degrowth. <i>Journal of Cleaner Production</i>, <i>197</i>, 1778\u20131786."},{"id":"https://doi.org/10.59350/5bfg3-bjv09","unstructured":"Greshake Tzovaras, B. (2026, August 18). On 'scaling up' and being the right size. <i>Bastian Greshake Tzovaras |</i>."},{"id":"https://doi.org/10.59350/14dpd-23089","unstructured":"Greshake Tzovaras, B. (2026, February 10). Open science and commoning beyond licensing: Deteriorating digital commons in the absence of collective governance. <i>Bastian Greshake Tzovaras</i>."},{"unstructured":"Illich, I., & Lang, A. (1973). Tools for conviviality."}],"rid":"t6njt-5be48","summary":"How we politicize technology in service of <em> a better world </em> is an open and contested question.","tags":["Digital Critique","Digital Solidarity","Digital Sovereignty","Post-capitalism","Open Source"],"title":"On building Digital Solidarity","updated_at":1789796098,"url":"https://tzovar.as/digital-solidarity-blankertz-engeler/","version":"v1"}},{"document":{"authors":[{"contributor_roles":[],"family":"Smith","given":"Arfon","url":"https://orcid.org/0000-0002-3957-2474"},{"affiliation":[{"id":"https://ror.org/047426m28","name":"University of Illinois Urbana-Champaign"}],"contributor_roles":[],"family":"Katz","given":"Daniel S.","url":"https://orcid.org/0000-0001-5934-7525"}],"blog":{"authors":[{"name":"Arfon M. Smith","url":"https://orcid.org/0000-0002-3957-2474"}],"community_id":"2bc0e8d4-303b-423a-9f3c-a4682849c566","created":1780876800,"current_feed_url":null,"description":"Blog for the Journal of Open Source Software \u2022 https://joss.theoj.org","doi":"https://doi.org/10.59349/joss","favicon":"https://rogue-scholar.org/api/communities/2bc0e8d4-303b-423a-9f3c-a4682849c566/logo","feed_format":"application/atom+xml","feed_url":"https://blog.joss.theoj.org/feed.xml","filter":null,"generator":"Jekyll","home_page_url":"https://blog.joss.theoj.org/","issn":null,"language":"eng","license":"https://creativecommons.org/licenses/by/4.0/legalcode","prefix":"10.59349","relative_url":null,"secure":null,"slug":"joss","status":"active","subfield":"1710","title":"Journal of Open Source Software Blog |","updated":1789689600,"use_api":null},"blog_name":"Journal of Open Source Software Blog |","blog_slug":"joss","content_html":"<p>[From Arfon]</p>\n<p>Earlier this year <a href=\"https://www.arfon.org/stepping-down-as-editor-in-chief-of-joss\">I announced</a> that I was stepping down as Editor-in-Chief of <a href=\"https://joss.theoj.org\">JOSS</a> after ten years in the role, and we put out a <a href=\"https://blog.joss.theoj.org/2026/05/call-for-editor-in-chief\">call for a new EiC</a>. Today I'm delighted to announce that <a href=\"https://danielskatz.org\">Daniel S. Katz</a> is taking over as Editor-in-Chief, effective 18 September 2026.</p>\n<p>Dan was one of the people who helped shape JOSS before it even existed. He was part of the small group who helped refine what JOSS should be (and shouldn't be) in the months before we launched in May 2016. He went on to become one of our most active Associate Editors-in-Chief, and has been deeply involved in every significant editorial decision the journal has made over the past decade. I can't think of anyone better placed to lead JOSS into its next chapter.</p>\n<p>Dan and I will be working together over the coming weeks to transition EiC responsibilities.</p>\n<p>[From Dan]</p>\n<p>When Arfon first told me he was thinking of stepping down, back in 2019 while we were at Murrayfield Rugby Stadium (for a conference of course), I wondered if and how JOSS would survive. Fortunately, in the seven years since then, JOSS continued to thrive and grow, overcoming obstacles like the initial Covid period and then the increased impact of generative AI.</p>\n<p>By the time Arfon started talking about stepping down again last year, I had become confident that the JOSS community of associate-editors-in-chief (AEiCs) and editors would be able to keep the journal going. So when I applied to be EiC, I had a mix of feelings that included satisfaction about what we have done so far, confidence about the future and that our community could handle it, and some remaining fear about what I didn't know and wouldn't find out until I started.</p>\n<p>Now, on the cusp of this transition, I'm really looking forward to working with the full JOSS community, including AEiCs and editors who have ideas about how we can improve the journal and its processes, other community members who continue to submit software and papers and to review them, and of course, Arfon, who we will continue to rely on as both the past/founding EiC and the continuing JOSS tech lead.</p>\n<p>JOSS, as a developer-friendly diamond open access journal for research software packages that itself runs like an open source project and is a member of the open source community, isn't changing, and we'll continue to work collectively to improve research software and its recognition, and to provide scholarly credit for its developers and maintainers. Please join us by <a href=\"https://joss.theoj.org/papers/new\">submitting</a> or <a href=\"https://reviewers.joss.theoj.org/join\">volunteering to review</a>, and keep an eye out for other opportunities to contribute.</p>","doi":"https://doi.org/10.59349/pzaq7-0aq48","guid":"https://blog.joss.theoj.org/2026/09/daniel-katz-new-editor-in-chief","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","published_at":1789689600,"rid":"zrh9j-8v522","summary":"[From Arfon] Earlier this year I announced that I was stepping down as Editor-in-Chief of JOSS after ten years in the role, and we put out a call for a new EiC. Today I'm delighted to announce that Daniel S. Katz is taking over as Editor-in-Chief, effective 18 September 2026. Dan was one of the people who helped shape JOSS before it even existed.","tags":["Announcements"],"title":"Daniel S. Katz is the new Editor-in-Chief of JOSS","updated_at":1789749931,"url":"https://blog.joss.theoj.org/2026/09/daniel-katz-new-editor-in-chief","version":"v1"}},{"document":{"authors":[{"contributor_roles":[],"family":"Eden","given":"Terence","url":"https://orcid.org/0000-0002-9265-9069"}],"blog":{"authors":null,"community_id":"61ce553a-bafd-4aba-a952-d3bab5e85bcc","created":1788652800,"current_feed_url":null,"description":"Regular nonsense about tech and its effects \ud83d\ude43","doi":"https://doi.org/10.59350/shkspr","favicon":"https://rogue-scholar.org/api/communities/61ce553a-bafd-4aba-a952-d3bab5e85bcc/logo","feed_format":"application/atom+xml","feed_url":"https://shkspr.mobi/blog/feed/DOI","filter":"category:-1982","generator":"WordPress","home_page_url":"https://shkspr.mobi/blog","issn":"2753-1570","language":"eng","license":"https://creativecommons.org/licenses/by/4.0/legalcode","prefix":"10.59350","relative_url":null,"secure":true,"slug":"shkspr","status":"active","subfield":"1712","title":"Terence Eden's Blog","updated":1789810393,"use_api":true},"blog_name":"Terence Eden's Blog","blog_slug":"shkspr","content_html":"<p>The <a href=\"https://flywheeltheatre.com/\">Flywheel theatre company</a> are reviving the rep tradition by having five actors perform five different plays in five weeks. Their interpretation of Moli\u00e8re's classic is gaudy and hilarious. Even the lighting cues are funny!</p>\n\n<p>It is fair to say that School for Wives isn't exactly an uncontroversial play. The plot basically boils down to \"Women! Eh? You can't live with them, you can't easily groom them from the age of four and keep them imprisoned so they become perfect submissives.\"</p>\n\n<p>Is the fear of cuckoldry funny? Is it OK to laugh at a jealous rage which leads to controlling behaviour? Should we find joy in the emotional torment of our characters?</p>\n\n<p>Yes! Yes! And yes!</p>\n\n<p>The cast squeeze every last drop of humour from the script, the direction is nimble, and the play has been edited down to a more manageable 75ish minutes (plus extra time for corpsing and applause).</p>\n\n<p>A simply joyous production which left us grinning throughout.</p>\n\n<p>You can <a href=\"https://riversidestudios.co.uk/whats-on/uqe-rep-radical-classical/\">see all their upcoming shows</a> - which are very reasonably priced.</p>\n\n<h2 id=\"pre-show-and-post-show\"><a href=\"#pre-show-and-post-show\">Pre-Show and Post-Show</a></h2>\n\n<p>I'm a believer in making the entire visit to the theatre a special experience. Riverside Studio, Hammersmith is a great venue with generous foyer space and more than adequate toilet provision. Not a given in London theatres!</p>\n\n<p>The theatre programme is digital and provided via QR code. No \u00a36 rip off for a booklet full of adverts here.</p>\n\n<p>As we walked in, the cast were dotted around the stage an in the auditorium doing various bits of business which made for a jolly start.</p>\n\n<p>Post curtain call there was a lovely speech from the cast thanking us for attending and letting us know about their future projects. Nothing wrong with a piece of shameless advertising to a captive audience \ud83d\ude04</p>\n\n<p>Overall an excellent theatrical experience.</p><img src=\"https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=75485&HTTP_REFERER=JSON\" alt width=1 height=1 loading=eager>","doi":"https://doi.org/10.59350/r0cff-96c14","guid":"https://shkspr.mobi/blog/?p=75485","image":"https://shkspr.mobi/blog/wp-content/uploads/2026/09/wives.webp","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","published_at":1789689600,"rid":"33070-9q085","summary":"The Flywheel theatre company are reviving the rep tradition by having five actors perform five different plays in five weeks. Their interpretation of Moli\u00e8re's classic is gaudy and hilarious. Even the lighting cues are funny! It is fair to say that School for Wives isn't exactly an uncontroversial play. The plot basically boils down to \"Women!","tags":["/etc/","Theatre Review"],"title":"Theatre Review: The School for Wives - at Riverside Studios","updated_at":1789731310,"url":"https://shkspr.mobi/blog/2026/09/theatre-review-the-school-for-wives/","version":"v1"}},{"document":{"authors":[{"affiliation":[{"name":"Freie Universit\u00e4t Berlin, Open Research Office Berlin"}],"contributor_roles":[],"family":"Duine","given":"Maaike","url":"https://orcid.org/0000-0003-3412-7192"}],"blog":{"authors":null,"community_id":"52aefd81-f405-4349-b080-754395a5d8b2","created":1694476800,"current_feed_url":null,"description":null,"doi":"https://doi.org/10.59350/oaberlin","favicon":"https://rogue-scholar.org/api/communities/52aefd81-f405-4349-b080-754395a5d8b2/logo","feed_format":"application/atom+xml","feed_url":"https://blogs.fu-berlin.de/open-research-berlin/feed/atom/","filter":null,"generator":"WordPress","home_page_url":"https://blogs.fu-berlin.de/open-research-berlin","issn":null,"language":"deu","license":"https://creativecommons.org/licenses/by/4.0/legalcode","prefix":"10.59350","relative_url":null,"secure":true,"slug":"oaberlin","status":"active","subfield":"1802","title":"Open Research Blog Berlin","updated":1789648456,"use_api":true},"blog_name":"Open Research Blog Berlin","blog_slug":"oaberlin","content_html":"<h1>Orte und Tools f\u00fcr digitales, nicht-kommerzielles Publizieren</h1>\n<p><span style=\"font-weight: 400\">Faires, wissenschaftsgeleitetes Open-Access-Publizieren gewinnt zunehmend an Bedeutung, nicht zuletzt durch die </span><a href=\"http://dx.doi.org/10.17169/refubium-49556\"><span style=\"font-weight: 400\">Priorisierungsagenda der BUA-Einrichtungen</span></a><span style=\"font-weight: 400\"> zur Umsetzung des Open-Science-Leitbilds und das </span><a href=\"http://dx.doi.org/10.17169/refubium-52664\"><span style=\"font-weight: 400\">Positionspapier zu Open Research der Berliner Landesinitiative</span></a><span style=\"font-weight: 400\">. Doch welche Alternativen zu etablierten, oft kommerziellen Publikationswegen gibt es eigentlich, und wie funktionieren sie?</span></p>\n<p><span style=\"font-weight: 400\">In diesem einst\u00fcndigen Lunch Meeting stellen wir Ihnen ausgew\u00e4hlte Orte und Tools f\u00fcr digitales Publizieren vor, von fachspezifischen Verlagen wie </span><a href=\"https://scipost.org/\"><span style=\"font-weight: 400\">SciPost </span></a><span style=\"font-weight: 400\">oder </span><a href=\"https://www.openlibhums.org/\"><span style=\"font-weight: 400\">Open Library of Humanities</span></a><span style=\"font-weight: 400\"> bis hin zu neuen Publishing-Tools wie </span><a href=\"https://www.octopus.ac/\"><span style=\"font-weight: 400\">Octopus</span></a><span style=\"font-weight: 400\">. Ein Praxisbericht von Forschenden erg\u00e4nzt die Vorstellung der Publishing-Tools. Dar\u00fcber hinaus geben wir Einblick in die Angebote von </span><a href=\"https://www.berlin-universities-publishing.de/\"><span style=\"font-weight: 400\">Berlin Universities Publishing</span></a><span style=\"font-weight: 400\">. Im Anschluss bleibt ausreichend Zeit f\u00fcr Fragen und Diskussion.</span></p>\n<p><span style=\"font-weight: 400\">Das Meeting findet im Rahmen der internationalen Open Access Week statt und richtet sich an alle Forschenden, die mehr \u00fcber faire und offene Publikationsm\u00f6glichkeiten erfahren m\u00f6chten. Das Thema der diesj\u00e4hrigen Open Access Week lautet \"</span><a href=\"https://www.openaccessweek.org/theme\"><span style=\"font-weight: 400\">The Cost of Knowledge</span></a><span style=\"font-weight: 400\">\": Entsprechend nehmen wir das Motto zum Anlass, um Alternativen zu kommerziell ausgerichteten Publikationsm\u00f6glichkeiten vorzustellen.</span></p>\n<pre><strong>Offen und fair Publizieren: Orte und Tools f\u00fcr digitales, nicht-kommerzielles Publizieren</strong>\n<strong>-Wann: </strong>Montag, 19.10.2026, 13:00-14:00 Uhr\n<strong>-Wo: </strong>Online\n<strong>-Registrierung:</strong> <a href=\"https://fu-berlin.webex.com/weblink/register/r140c0b760f69120235a15a62bca40de4\">Anmeldung per Webex</a></pre>\n<hr />\n<p><strong>Organisiert von:</strong></p>\n<ul>\n<li><span style=\"font-weight: 400\">Maike Neufend und Maaike Duine (Open Research Office Berlin)</span></li>\n<li><span style=\"font-weight: 400\">Maxi Kindling und Michaela Voigt (Universit\u00e4tsbibliothek der TU Berlin)</span></li>\n<li><span style=\"font-weight: 400\">Marcel Wrzesinski (Medizinische Bibliothek der Charit\u00e9 &#8211; Universit\u00e4tsmedizin Berlin)</span></li>\n<li><span style=\"font-weight: 400\">Anja Himpsl-Zeltner (Universit\u00e4tsbibliothek der Humboldt-Universit\u00e4t zu Berlin)</span></li>\n<li><span style=\"font-weight: 400\">Michael Kleineberg und Julian Vuorim\u00e4ki (Universit\u00e4tsbibliothek der Freien Universit\u00e4t Berlin)</span></li>\n</ul>\n<p>&nbsp;</p>","doi":"https://doi.org/10.59350/xcjqw-q0t82","guid":"https://blogs.fu-berlin.de/open-research-berlin/?p=4343","language":"de","license":"https://creativecommons.org/licenses/by/4.0/legalcode","published_at":1789603200,"rid":"99595-v5p57","summary":"Orte und Tools f\u00fcr digitales, nicht-kommerzielles Publizieren Faires, wissenschaftsgeleitetes Open-Access-Publizieren gewinnt zunehmend an Bedeutung, nicht zuletzt durch die Priorisierungsagenda der BUA-Einrichtungen zur Umsetzung des Open-Science-Leitbilds und das Positionspapier zu Open Research der Berliner Landesinitiative.","tags":["Allgemein","Aktuelles","Berlin","Bibliotheken","Open Access"],"title":"Online Lunch Meeting: Offen und fair Publizieren","updated_at":1789716613,"url":"https://blogs.fu-berlin.de/open-research-berlin/2026/09/17/online-lunch-meeting-offen-und-fair-publizieren/","version":"v1"}},{"document":{"authors":[{"affiliation":[{"id":"https://ror.org/041qv0h25","name":"Deutsches Arch\u00e4ologisches Institut, Zentrale"}],"contributor_roles":[],"family":"von Schr\u00f6der","given":"Asta","url":"https://orcid.org/0009-0007-5852-771X"}],"blog":{"authors":null,"community_id":"d21c5e78-88bc-432c-a20b-4e8a8ead1693","created":1752796800,"current_feed_url":null,"description":"Wissenslabor f\u00fcr naturwissenschaftliche Sammlungen und objektzentrierte Daten","doi":"https://doi.org/10.59350/winoda","favicon":"https://rogue-scholar.org/api/communities/d21c5e78-88bc-432c-a20b-4e8a8ead1693/logo","feed_format":"application/atom+xml","feed_url":"https://winoda.de/feed/atom/","filter":null,"generator":"WordPress","home_page_url":"https://winoda.de","issn":null,"language":"deu","license":"https://creativecommons.org/licenses/by/4.0/legalcode","prefix":"10.59350","relative_url":null,"secure":true,"slug":"winoda","status":"active","subfield":"1209","title":"WiNoDa Knowledge Lab","updated":1789654043,"use_api":false},"blog_name":"WiNoDa Knowledge Lab","blog_slug":"winoda","content_html":"<div id=\"bsf_rt_marker\"></div>\n<p class=\"wp-block-paragraph\">Was lange w\u00e4hrt, wird endlich gut \u2013 oder so hei\u00dft es.<br/>Mit dem Start des Wintersemesters geht das WiNoDa Knowledge Lab noch einmal richtig in die Vollen: <a data-id=\"https://winoda.de/event/byod-de/\" data-type=\"link\" href=\"https://winoda.de/event/byod-de/\">BYOD data clinic</a> am 6. und 9. Oktober 2026, Finale des <a data-id=\"https://winoda.de/event/hackathon-de/\" data-type=\"link\" href=\"https://winoda.de/event/hackathon-de/\">WiNoDa Hackathon am 14./15. Oktober 2026</a>, <a href=\"https://winoda.de/event/winoda-konferenz\">WiNoDa Konferenz am 21. Oktober 2026</a> \u2013 und auch unsere Selbstlernkurse wollen wir noch einmal \"richtig\" gl\u00e4nzen lassen.<br/>Deshalb laden wir alle Interessierten ein, teilzunehmen an unserer <strong>WiNoDa Data Expedition: F\u00fcnf Wochen begleitetes Selbststudium rund um Forschungsdaten, Sammlungen und digitale Methoden</strong>  \u2013 nat\u00fcrlich kostenfrei auf <a href=\"https://moodle.winoda.de/\" rel=\"noopener\" target=\"_blank\">https://moodle.winoda.de/</a>!</p>\n<p class=\"wp-block-paragraph\">Wenn Ihr Euren Lernplan lieber selbst gestalten m\u00f6chtet, aber den Austausch mit anderen nicht missen wollt\u2013 dann ist die WiNoDa Data Expedition genau richtig! Ihr k\u00f6nnt Euch mit den Kursentwicklern austauschen, Eure Fragen stellen und gemeinsam \u00fcberlegen, wie sich das Gelernte konkret anwenden l\u00e4sst. Und Ihr trefft Menschen wieder, denen Ihr vielleicht schon bei einem Webinar oder Workshop begegnet seid\u2013 jetzt habt Ihr endlich Zeit, Euch n\u00e4her kennenzulernen.</p>\n<figure class=\"wp-block-image size-full\"><img alt=\"Social-Media-Bild f\u00fcr die WiNoDa-Datenexpedition, 1. Oktober bis 5. November 2026. Drei Spielzeug-Minifiguren stehen auf einem Schreibtisch. Eine sieht aus wie eine Kuratorin einer Sammlung, sie h\u00e4lt ein Buch in der Hand. Eine andere h\u00e4lt ein Schmetterlingsnetz und einen Schmetterling, w\u00e4hrend der dritte mit einem breitkrempigen Hut und einer Lupe f\u00fcr den Dschungel gekleidet ist. Auf dem Tisch liegen zahlreiche Gegenst\u00e4nde verstreut, die mit einer naturhistorischen Sammlung in Verbindung stehen. Au\u00dferdem ist eine Karte mit einer Route zu sehen, deren Stationen mit \"Planen\", \"Sammeln\", \"Teilen\" usw. beschriftet sind \u2013 der Lebenszyklus von Forschungsdaten.\" class=\"wp-image-15722\" decoding=\"async\" fetchpriority=\"high\" height=\"640\" sizes=\"(max-width: 640px) 100vw, 640px\" src=\"https://winoda.de/wp-content/uploads/2026/09/Data-Expedition.png\" srcset=\"https://winoda.de/wp-content/uploads/2026/09/Data-Expedition.png 640w, https://winoda.de/wp-content/uploads/2026/09/Data-Expedition-300x300.png 300w\" width=\"640\"/></figure>\n<h4 class=\"wp-block-heading\">Expeditionsplan</h4>\n<p class=\"wp-block-paragraph\">Wir starten alle gemeinsam am</p>\n<ul class=\"wp-block-list\">\n<li><strong>Donnerstag, 1. Oktober 2026, 10:00-12:00 Uhr (MESZ | UTC+2) bei einem online Kick-off</strong>.<br/>Wir stellen die Kurse vor, beantworten Fragen und lernen uns kennen.</li>\n</ul>\n<p class=\"wp-block-paragraph\">Direkt danach beginnt Eure</p>\n<ul class=\"wp-block-list\">\n<li><strong>Daten-Expedition als begleitetes Selbst-Studium</strong><br/>Die n\u00e4chsten f\u00fcnf Wochen studiert Ihr unsere Selbstlernkurse \u2013 zeitsouver\u00e4n, wann Ihr wollt. W\u00e4hrend Ihr Euren eigenen Lernpfad durch den Dschungel des Datenlebenszyklus folgt, k\u00f6nnt Ihr neues Wissen sammeln, verarbeiten, analysieren und diskutieren, wie Ihr es in neuen Kontexten anwenden wollt\u2026 Ob Ihr Euch auf einen Kurs oder ein Thema konzentriert, oder mehrere (alle ?!? <img alt=\"\ud83d\ude2f\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f62f.png\" style=\"height: 1em; max-height: 1em;\"/>) unsere Kurse absolvieren wollt, bleibt Eurer Entscheidung \u00fcberlassen. F\u00fcr jeden absolvierten Kurs erhaltet Ihr einen Badge und ein Zertifikat.<br/>Und wenn Ihr unterwegs Fragen habt, k\u00f6nnt Ihr Euch in unserem <a href=\"https://winoda.de/forum/\">Forum </a>austauschen oder die offene Sprechstunde besuchen.</li>\n</ul>\n<p class=\"wp-block-paragraph\">Zum Abschluss treffen wir uns noch einmal alle gemeinsam am</p>\n<ul class=\"wp-block-list\">\n<li><strong>Donnerstag, 5. November 2026, von 10:00-12:00 Uhr (MEZ | UTC+1) zu einer gemeinsamen Abschlussrunde (online)</strong><br/>Wir versammeln uns um das (virtuelle) Lagerfeuer und berichten von unseren Abenteuern \u2013 wo gab es unerwartete Hindernisse? Welche Sch\u00e4tze konntet Ihr heben und wie wollt Ihr Eure neu erworbenen F\u00e4higkeiten zuk\u00fcnftig f\u00fcr Eure Arbeit einsetzen? Wir w\u00fcrden gerne h\u00f6ren, wie es Euch ergangen ist, wie die Kurse und das Format sich bew\u00e4hrt haben, und was Ihr Euch f\u00fcr die zweite F\u00f6rderphase von WiNoDa w\u00fcnscht\u2026</li>\n</ul>\n<p class=\"wp-block-paragraph\"><strong>Alle unsere Selbstlernkurse sind auf englisch. Die Fertigstellung eines jeden Kurses wird mit einem Zertifikat bescheinigt.</strong></p>\n<h4 class=\"wp-block-heading\">WiNoDa Data Expedition: <a href=\"https://winoda.de/en/event/winoda-data-expedition/\">https://winoda.de/en/event/winoda-data-expedition/</a> Hier geht's zur Anmeldung: <a href=\"https://tinyurl.com/winoda-data-exploration\">https://tinyurl.com/winoda-data-exploration</a></h4>\n<p class=\"wp-block-paragraph\">Die Registrierung bleibt w\u00e4hrend der gesamten Data Expedition ge\u00f6ffnet \u2013 Nachz\u00fcgler sind jederzeit willkommen!</p>\n<pre class=\"wp-block-verse\"><a href=\"https://winoda.de/lernangebote/selbstlernkurse/\"><strong>Kursangebot</strong> </a><br/>- RRP - Reusability and its relevance (Basic, ca. 40 minutes)<br/>- RRP - Reusing object-related research data (Basic, ca. 1.5 hours)<br/>- RDM - Core concepts of data quality in research data management (Intermediate, ca. 1,5 hours)<br/>- RDM - Data Governance. Strategies for quality improvement in collection data (Intermediate, ca. 2 hours)<br/>- Regulatory Frameworks for Data Acquisition in Fieldwork (Basic, ca. 1 hour)<br/>- ATR 1 - Introduction: Basic concepts, terminology and workflow of Automatic Text Recognition (ATR) (Basic, ca. 2 hours)<br/>- ATR 2 - Deep Dive: Preprocessing and software selection (Basic, ca. 1 hour)<br/>- ATR 3 \u2013 Deep Dive: Transcription and semantic enrichment (Basic, ca. 1 hour)<br/>- ATR 4 - Deep Dive: Model Training and Publishing (Basic, ca. 1 hour)<br/><br/>Weitere Kurse sind noch in der Entwicklung und werden zu Moodle hinzugef\u00fcgt, sobald sie fertig sind.</pre>","doi":"https://doi.org/10.59350/w6zk6-8pb65","guid":"https://winoda.de/?p=15680","image":"https://winoda.de/wp-content/uploads/2026/09/Data-Expedition.png","language":"de","license":"https://creativecommons.org/licenses/by/4.0/legalcode","published_at":1789603200,"rid":"nbgw5-3tm14","summary":"Was lange w\u00e4hrt, wird endlich gut \u2013 oder so hei\u00dft es.Mit dem Start des Wintersemesters geht das WiNoDa Knowledge Lab noch einmal richtig in die Vollen: BYOD data clinic am [\u2026]","tags":["WiNoDa Knowledge Lab Journal","CfP","Datenkompetenz","FDM","OER"],"title":"Call for Participants: WiNoDa Data Expedition, 01.10.-05.11.2026. F\u00fcnf Wochen begleitetes Selbststudium rund um Forschungsdaten, Sammlungen und digitale Methoden.","updated_at":1789716613,"url":"https://winoda.de/2026/09/17/call-for-participants-winoda-data-expedition-01-10-05-11-2026-fuenf-wochen-begleitetes-selbststudium-rund-um-forschungsdaten-sammlungen-und-digitale-methoden/","version":"v1"}},{"document":{"authors":[{"affiliation":[{"id":"https://ror.org/046ak2485","name":"Freie Universit\u00e4t Berlin"}],"contributor_roles":[],"family":"Fischer","given":"Georg","url":"https://orcid.org/0000-0001-5620-5759"}],"blog":{"authors":null,"community_id":"52aefd81-f405-4349-b080-754395a5d8b2","created":1694476800,"current_feed_url":null,"description":null,"doi":"https://doi.org/10.59350/oaberlin","favicon":"https://rogue-scholar.org/api/communities/52aefd81-f405-4349-b080-754395a5d8b2/logo","feed_format":"application/atom+xml","feed_url":"https://blogs.fu-berlin.de/open-research-berlin/feed/atom/","filter":null,"generator":"WordPress","home_page_url":"https://blogs.fu-berlin.de/open-research-berlin","issn":null,"language":"deu","license":"https://creativecommons.org/licenses/by/4.0/legalcode","prefix":"10.59350","relative_url":null,"secure":true,"slug":"oaberlin","status":"active","subfield":"1802","title":"Open Research Blog Berlin","updated":1789648456,"use_api":true},"blog_name":"Open Research Blog Berlin","blog_slug":"oaberlin","content_html":"<p>Unsere monatliche Rubrik zu aktuellen Veranstaltungen rund um Open Research.</p>\n<pre>Anmerkung zu dieser Rubrik: Das Open Research Office Berlin erstellt monatlich eine \u00dcbersicht \u00fcber Termine und Veranstaltungen zu Open Access und Open Research in Berlin bzw. an Berliner Einrichtungen. Der Fokus liegt dabei auf unseren Partnereinrichtungen und auf Veranstaltungen, die sich an die \u00d6ffentlichkeit richten bzw. die offen sind f\u00fcr Angeh\u00f6rige der Wissenschafts- und Kulturerbeeinrichtungen in Berlin. Wir erg\u00e4nzen diese Liste gerne (Info bitte via <a href=\"mailto:team@open-research-berlin.de\">Mail</a> ans OROB).</pre>\n<p><!--more--></p>\n<h2>30. September bis 2. Oktober, Zugang gestalten! &#8211; Geschichtspolitik und Erinnerung, Berlin</h2>\n<p><em>Wie gehen Einrichtungen des Kulturerbes mit den Zeugnissen der Vergangenheit um? Nutzen sie diese, um bestimmte Sichtweisen historischer Entwicklungen zu st\u00fctzen, oder \u00fcberlassen sie die Bewertung den Nutzenden und erm\u00f6glichen vor allem den Zugang zu den Quellen? W\u00e4hrend Museen mit kuratierten Ausstellungen h\u00e4ufig st\u00e4rker interpretierend arbeiten, verstehen sich Archive und Bibliotheken traditionell eher als Einrichtungen, die sich auf den Zugang zu ihren Best\u00e4nden konzentrieren. Diese Rollenverteilung ger\u00e4t jedoch unter Druck, wenn es um ein schwieriges Erbe \u2013 etwa rassistische oder antisemitische Zeugnisse \u2013 geht: Archive werden kritisiert, wenn sie scheinbar ungefilterten Zugang gew\u00e4hren, w\u00e4hrend zugleich geschichtspolitische Eingriffe in Kulturerbeeinrichtungen kontrovers diskutiert werden.</em></p>\n<ul>\n<li><strong>Termin: </strong>30.09. bis 02.10.2026, Staatsbibliothek zu Berlin (Standort: Potsdamer Stra\u00dfe 33)</li>\n<li><strong>Organisiert von</strong>: diverse Einrichtungen (<a href=\"https://zugang-gestalten.org/uber-uns/\">\u00dcberblick</a>)</li>\n<li>[<a href=\"https://zugang-gestalten.org/konferenzen/2026-geschichtspolitik-und-erinnerung/\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>1. Oktober, OER-Fachtag, online</h2>\n<p><em>2026 findet die dritte Ausgabe des gro\u00dfen OER-Fachtags von ORCA.nrw statt. Freuen Sie sich \u00fcber den Tag hinweg auf eine spannende Keynote, Projektvorstellungen, Workshops und viel Austausch &amp; Vernetzung!</em></p>\n<ul>\n<li><strong>Termin: </strong>01.10.2026, 9:30 bis 15:00 Uhr, online via Zoom</li>\n<li><strong>Organisiert von</strong>: Orca.NRW</li>\n<li>[<a href=\"https://www.orca.nrw/vernetzung/veranstaltungen/oer-fachtag/oer-fachtag-2026/\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>1. Oktober, Sicherung von Identit\u00e4t, Autorenschaft und Quellen, TU Berlin</h2>\n<p><em> Im Vortrag wird, ankn\u00fcpfend an das Blockchain-Projekt f\u00fcr digitale Zeugnisse, die EUDI-Wallet thematisiert. Die Historie der Entwicklung dieser digitalen Brieftasche auf EU-Ebene wird vorgestellt und die Funktionen und M\u00f6glichkeiten sowie Detailinformationen zur Sicherheit werden erl\u00e4utert. Der aktuelle Stand der Entwicklung wird betrachtet und in Form einer Demo wird die Nutzung an einem konkreten Beispiel veranschaulicht. Nach einem Blick auf zuk\u00fcnftige Entwicklungen im Bereich \"Digitaler Identit\u00e4ten\", wie z. B. Post-Quanten-Verschl\u00fcsselung oder Alternative Biometrische Identifikationsverfahren (AuBi) schlie\u00dft der Abend mit Raum f\u00fcr Diskussionen \u00fcber die Technologie und deren Nutzung.</em></p>\n<ul>\n<li><strong>Termin: </strong>01.10.2026, 18:00 bis 20:00 Uhr, H\u00f6rsaal 14 der Universit\u00e4tsbibliothek der TU Berlin, Fasanenstr. 88, 10623 Berlin (R/S/U Zoologischer Garten)</li>\n<li><strong>Organisiert von</strong>: BAK Information</li>\n<li>[<a href=\"https://bak-information.de/event/sicherung-von-identitaet-autorenschaft-und-quellen/\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>1. Oktober, KI und Demokratie: Rechtsstaat, Teilhabe und Nachhaltigkeit, ECDF Berlin</h2>\n<p><em>Der Einsatz von KI Technologien erstreckt sich zunehmend auf zentrale Bereiche politischer Steuerung, von der \u00f6ffentlichen Verwaltung und der Umweltpolitik bis hin zu Grenzregimen und wirtschaftlicher Regulierung. Dabei ver\u00e4ndern sie nicht nur Verfahren; es verschieben sich Machtkonstellationen, Verantwortung und politische Handlungsspielr\u00e4ume. Das Symposium mit \u00f6ffentlicher Paneldiskussion diskutiert KI als systemische Herausforderung f\u00fcr Demokratie und Rechtsstaat. Die Veranstaltung bietet kurze Einf\u00fchrungen in verschiedene Schwerpunkte unserer Forschung und erm\u00f6glicht eine kollaborative Plattform zur Diskussion der systemischen Kosten algorithmischer Governance f\u00fcr demokratische Strukturen. Dies schafft einen offenen Raum f\u00fcr Austausch mit politischen Entscheidungstr\u00e4ger*innen, Vertreter*innen von NGOs, Forschenden sowie allen, die an der Zukunft einer digitalen Gesellschaft interessiert sind.</em></p>\n<ul>\n<li><strong>Termin: </strong>01.10.2026, 9:00 bis 18:30 Uhr, ECDF, Wilhelmstr. 67, 10117 Berlin</li>\n<li><strong>Organisiert von</strong>: Einstein Center Digital Future</li>\n<li>[<a href=\"https://www.digital-future.berlin/veranstaltungen/ki-und-demokratie-rechtsstaat-teilhabe-und-nachhaltigkeit\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>1.-2. Oktober, Was kostet und wie nachhaltig ist digitale Kultur?, BBAW</h2>\n<p><em>Das Digitale ist ein gro\u00dfes Versprechen: Physische R\u00e4ume und pers\u00f6nliche Speichermedien scheinen ganz \u00fcberfl\u00fcssig zu werden, die Cloud soll ortsunabh\u00e4ngigen, schnellen Zugriff und unbegrenzten Speicherplatz erm\u00f6glichen. Aber was kostet das, welche L\u00f6sungen sind sicher und umweltvertr\u00e4glich?\u00a0Gemeinsam mit bestandserhaltenden Einrichtungen und Vertreter:innen aus Wissenschaft und Forschung wollen wir das Versprechen des Digitalen \u00fcberpr\u00fcfen und konstruktive Vorschl\u00e4ge zur longue dur\u00e9e des digitalen Erbes entwickeln. Es sprechen u.v. a.: Frank Scholze (Deutsche Nationalbibliothek), Richard Ovenden (Bodleian Library Oxford) und Petra Gehring (Rat f\u00fcr Informationsinfrastrukturen).</em></p>\n<ul>\n<li><strong>Termin: </strong>01. bis 02.10.2026, Akademiegeb\u00e4ude am Gendarmenmarkt, Einstein-Saal, J\u00e4gerstra\u00dfe 22/23, 10117 Berlin</li>\n<li><strong>Organisiert von</strong>: Berlin-Brandenburgische Akademie der Wissenschaften in Kooperation mit dem Literaturarchiv Marbach</li>\n<li>[<a href=\"https://www.bbaw.de/veranstaltungen/veranstaltung-was-kostet-und-wie-nachhaltig-ist-digitale-kultur\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>2. Oktober, Anti-Konferenz: Scheitern in den Digital Humanities, Mehringhof Berlin-Kreuzberg</h2>\n<ul>\n<li><strong>Termin: </strong>02.10.2026, 10:00 bis 17:00 Uhr, Mehringhof, Kreuzberg, Berlin</li>\n<li><strong>Organisiert von</strong>: Netzwerk junge Digital Humanities Berlin-Brandenburg in Kooperation mit dem Netzwerk Digitale Geisteswissenschaften Potsdam und der AG Empowerment des DHd-Verbands</li>\n<li>[<a href=\"https://junge-dh-berlin-brandenburg.github.io/termine/konferenzen/antikonferenz/Programm_Antikonferenz.html\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>5. Oktober, Open Science Forum Mitteldeutschland, Leipzig</h2>\n<p><em>Das Open Science Forum Mitteldeutschland 2026 bringt am 5. Oktober Interessierte zu einem offenen Austausch \u00fcber Open Science als Gestaltungsaufgabe zusammen. Wir widmen uns der Frage, welche Rolle wissenschaftsunterst\u00fctzende Einrichtungen spielen, wenn es um neue Ans\u00e4tze in der Forschungsbewertung, nachhaltige Infrastrukturen und digitale Souver\u00e4nit\u00e4t im Spannungsfeld geopolitischer Entwicklungen geht.</em></p>\n<ul>\n<li><strong>Termin: </strong>05.10.2026, 10:00 bis 17:00 Uhr, Bibliotheca Albertina, Beethovenstra\u00dfe 6, Leipzig</li>\n<li><strong>Organisiert von</strong>: Universit\u00e4t Leipzig, SaxFDM, Friedrich-Schiller-Universit\u00e4t Jena, Otto-von-Guericke-Universit\u00e4t Magdeburg,\u00a0Martin-Luther-Universit\u00e4t Halle-Wittenberg</li>\n<li>[<a href=\"https://pretix.eu/OSFM/OSFM2026/\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>8. Oktober, Originale erhalten: Demokratie sichern, Staatsbibliothek zu Berlin</h2>\n<p><em>In Archiven, Bibliotheken und anderen Ged\u00e4chtniseinrichtungen lagern bundesweit gef\u00e4hrdete Originale, die Meinungsvielfalt, Rechtsordnungen, historische Entwicklungen und politisches Handeln dokumentieren. Der Erhalt dieser \u00dcberlieferungen ist Grundvoraussetzung f\u00fcr eine quellen- und faktenbasierte Forschung, eine historische Aufarbeitung sowie die Sichtbarmachung gesellschaftlicher Mehrstimmigkeit und Diskurse. Originalerhalt ist grundlegender Bestandteil der Informationssicherung und ein wichtiger Beitrag zu einer lebendigen, urteilsf\u00e4higen und wehrhaften Demokratie \u2013 insbesondere angesichts der zunehmenden Bedrohung durch hybride Desinformation und andere demokratiegef\u00e4hrdende Entwicklungen.</em></p>\n<ul>\n<li><strong>Termin: </strong>08.10.2026, 9:00 bis 17:30 Uhr, Staatsbibliothek zu Berlin, Wilhelm-von-Humboldt-Saal, Unter den Linden 8, 10117 Berlin</li>\n<li><strong>Organisiert von</strong>: Akademie der K\u00fcnste, Koordinierungsstelle f\u00fcr die Erhaltung des schriftlichen Kulturguts, Bundesbeauftragte f\u00fcr Kultur und Medien und Kultur Stiftung der L\u00e4nder</li>\n<li>[<a href=\"https://www.kek-spk.de/3-kek-tagung-demokratie-sichern\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>15. Oktober, FDM-Sprechstunde Humanities@NFDI, online</h2>\n<p><em>Die FDM-Sprechstunde Humanities@NFDI ist eine Online-Beratung f\u00fcr Studierende, Forschende oder Mitarbeitende aus Forschungs- und Sammlungsinstitutionen zu allen Fragen rund um das Forschungsdatenmanagement. Expert:innen aus den geisteswissenschaftlichen NFDI-Konsortien NFDI4Memory, NFDI4Culture, NFDI4Objects und Text+ stehen f\u00fcr Ihre Fragen zu allen Themen rund ums Forschungsdatenmanagement bereit. Bei Bedarf k\u00f6nnen Einzelgespr\u00e4che in Breakoutr\u00e4umen vertieft werden.</em></p>\n<ul>\n<li><strong>Termin: </strong>15.10.2026, 10:00 bis 11:00 Uhr, online (weitere Termine werden angeboten)</li>\n<li><strong>Organisiert von</strong>: NFDI4Memory, NFDI4Culture, NFDI4Objects und Text+</li>\n<li>[<a href=\"https://events.gwdg.de/category/320/\">Information und Anmeldung</a>]</li>\n</ul>\n<hr />\n<h2>19.-25. Oktober, International Open Access Week: The Cost of Knowledge, online und an diversen Orten</h2>\n<p><em>Increasing consolidation and commercial control over all aspects of knowledge comes at a cost. This year's theme challenges us to consider the financial, human, and environmental costs of creating, sharing, and sustaining knowledge\u2014particularly when these costs are driven by private rather than public interests. Last year's theme of \"Who owns our knowledge?\" reflected on the reality of commercial ownership of knowledge. This year's theme will reckon with the costs of that reality and avenues for reclaiming control of these systems meant to serve the public interest.</em></p>\n<ul>\n<li><strong>Termin: </strong>19. bis 25.10.2026, diverse Termine online wie vor Ort</li>\n<li><strong>Organisiert von</strong>: diverse Einrichtungen</li>\n<li>[<a href=\"https://www.openaccessweek.org/\">Information und \u00dcberblick</a>]</li>\n</ul>\n<h2 class=\"moz-quote-pre\">19. Oktober, Rechtssichere Anwendung von K\u00fcnstlicher Intelligenz im Forschungsdatenmanagement, HU Berlin</h2>\n<p class=\"moz-quote-pre\"><em>In diesem Workshop lernen die Teilnehmenden datenschutzkonforme KI-Anwendungen und Einsatzm\u00f6glichkeiten kennen, die neue Wege f\u00fcr die Nachnutzung von Forschungsdaten erm\u00f6glichen und zur Verbesserung von Datenqualit\u00e4t, Metadatenverf\u00fcgbarkeit und Zug\u00e4nglichkeit beitragen. Mithilfe konkreter Anwendungsf\u00e4lle aus der Forschung werden die rechtssicheren Einsatzm\u00f6glichkeiten der KI im Datenlebenzyklus vorgestellt.</em></p>\n<ul>\n<li class=\"moz-quote-pre\"><strong>Termin:</strong> 19.10.2026, 09:00 &#8211; 15:30 Uhr, Humboldt-Universit\u00e4t zu Berlin, Unter den Linden 6, 10117 Berlin</li>\n<li>[<a href=\"https://www.berlin-university-alliance.de/commitments/sharing-resources/shared-resources-center/CARDS-FDM/cards_events/2026-10-KI-FDM.html\">Information und Anmeldung</a>]</li>\n</ul>\n<h2 class=\"moz-quote-pre\">19. Oktober, Online Lunch Meeting: Offen und fair Publizieren: Orte und Tools f\u00fcr digitales, nicht-kommerzielles Publizieren</h2>\n<p>Faires, wissenschaftsgeleitetes Open-Access-Publizieren gewinnt zunehmend an Bedeutung, nicht zuletzt durch die Priorisierungsagenda der BUA-Einrichtungen zur Umsetzung des Open-Science-Leitbilds und das Positionspapier zu Open Research der Berliner Landesinitiative. Doch welche Alternativen zu etablierten, oft kommerziellen Publikationswegen gibt es eigentlich, und wie funktionieren sie? In diesem einst\u00fcndigen Lunch Meeting stellen wir Ihnen ausgew\u00e4hlte Orte und Tools f\u00fcr digitales Publizieren vor.</p>\n<ul>\n<li>Termin: 19.10.2026, 13:00-14:00 Uhr, online</li>\n<li>[<a href=\"https://blogs.fu-berlin.de/open-research-berlin/2026/09/17/online-lunch-meeting-offen-und-fair-publizieren/\">Information und Anmeldung</a>]</li>\n</ul>\n<h2 class=\"moz-quote-pre\">20. Oktober, OpenRefine \u2013 Effiziente Datenbereinigung f\u00fcr das Forschungsdatenmanagement, HU Berlin</h2>\n<p class=\"moz-quote-pre\"><em>Der Workshop f\u00fchrt in die Grundfunktionen von OpenRefine ein und zeigt an konkreten Anwendungsf\u00e4llen, wie Forschende tabellarische Datens\u00e4tze bereinigen, strukturieren und anreichern k\u00f6nnen. Dabei werden auch geskriptete Bearbeitungsschritte sowie der Import und Export verschiedener Datenformate (CSV, XML, JSON) behandelt. OpenRefine erm\u00f6glicht nicht nur einen schnellen \u00dcberblick \u00fcber gro\u00dfe Datens\u00e4tze, sondern hilft vor allem bei heterogenen und historisch gewachsenen Datens\u00e4tze, die oft inkonsistente Metadaten aufweisen.</em></p>\n<ul>\n<li class=\"moz-quote-pre\"><strong>Termin:</strong> 20.10.2026, 09:00 &#8211; 12:00 Uhr, Humboldt-Universit\u00e4t zu Berlin, Unter den Linden 6, 10117 Berlin</li>\n<li class=\"moz-quote-pre\">[<a href=\"https://www.berlin-university-alliance.de/commitments/sharing-resources/shared-resources-center/CARDS-FDM/cards_events/2026-openrefine-aktionswoche.html\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>20. Oktober, Introduction to electronic lab notebooks (ELN), online</h2>\n<p><em>Der Workshop gibt einen \u00dcberblick \u00fcber ELN-Konzepte, zeigt relevante Forschungsdatenmanagement-Aspekte auf und bietet eine praktische Einf\u00fchrung.</em></p>\n<ul>\n<li><strong>Termin:</strong> 20.10.2026, 13:00 &#8211; 16:00 Uhr, online</li>\n<li>[<a href=\"https://www.berlin-university-alliance.de/commitments/sharing-resources/shared-resources-center/CARDS-FDM/cards_events/2026-10-eln-aktionswoche.html\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>21. Oktober, Aktionstag Forschungsdaten@BUA, FU Berlin</h2>\n<p><em>Der Aktionstag \"Forschungsdaten@BUA\" l\u00e4dt erstmals Forschende der Berlin University Alliance herzlich ein, \u00fcber den Umgang mit Forschungsdaten ins Gespr\u00e4ch zu kommen, sich auszutauschen und zu vernetzen. Ziel ist es, Best Practices sichtbar zu machen, Erfahrungen auszutauschen und den Dialog \u00fcber den Umgang mit Forschungsdaten \u00fcber die vier BUA-H\u00e4user hinweg auszubauen.</em></p>\n<ul>\n<li><strong>Termin: </strong>21.10.2026, 08:30 bis 16:00 Uhr, Freie Universit\u00e4t Berlin, Seminarzentrum, Silberlaube, Otto-von-Simson-Str. 26, 14195 Berlin-Dahlem</li>\n<li>[<a href=\"https://www.berlin-university-alliance.de/commitments/sharing-resources/shared-resources-center/CARDS-FDM/cards_events/2026-10-21-aktionstag-fdm-bua.html\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>22. Oktober, FAIR und reproduzierbar: Tidy Data, Versionskontrolle &amp; Wikidata in der Forschungspraxis, online</h2>\n<p><em>Im Rahmen dieses Hands-on-Workshops werden Konzepte zum effizienten, reproduzierbaren und nachvollziehbaren Arbeiten mit Forschungsdaten vermittelt. Ziel ist es, die Teilnehmenden mit verschiedenen Werkzeugen vertraut zu machen und das Bewusstsein f\u00fcr Computational Thinking, Automatisierung sowie die Optimierung eigener Arbeitsprozesse zu sch\u00e4rfen.</em></p>\n<ul>\n<li><strong>Termin:</strong> 22.10.2026, 09:00 &#8211; 16:00, online</li>\n<li>[<a href=\"https://www.berlin-university-alliance.de/commitments/sharing-resources/shared-resources-center/CARDS-FDM/cards_events/2026-10-FAIR-und-reproduzierbar.html\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>26. Oktober, Urheberrecht in der Forschung: Daten sicher nutzen, teilen, publizieren, FU Berlin</h2>\n<p>Im Forschungsalltag stehen Forschende regelm\u00e4\u00dfig vor urheberrechtlichen Fragen: Welche Inhalte darf ich in meiner Arbeit verwenden? Unter welchen Bedingungen kann ich Daten und Materialien offen teilen? Wie gehe ich mit KI-Tools und deren Trainingsdaten rechtssicher um? Dieser Workshop bietet praxisnahe Orientierung f\u00fcr den sicheren Umgang mit gesch\u00fctzten Inhalten und Lizenzen in der wissenschaftlichen Arbeit.</p>\n<ul>\n<li><strong>Termin: </strong>26.10.2026, 10:00 &#8211; 16:00 Uhr, Universit\u00e4tsbibliothek Garystra\u00dfe 39 14195 Berlin</li>\n<li>[<a href=\"https://www.berlin-university-alliance.de/commitments/sharing-resources/shared-resources-center/CARDS-FDM/cards_events/2026-10-till-kreutzer-ws.html\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>10., 17.,\u00a024. November, Workshop Series &#8222;AI in Research Data Management: Balancing Efficiency and Responsibility&#8220;, online</h2>\n<p><em>In our three-part workshop series, we explore the relationship between the technical aspects, practical applications and critical reflection of the use of AI in research data management. Participants will learn about various AI tools and use cases for research data management, test, and develop criteria for the meaningful and responsible use of AI in their own work.</em></p>\n<ul>\n<li><strong>Termine: </strong>10., 17., 24.11.2026, 10:00 \u2013 11:30 Uhr, online</li>\n<li>[<a href=\"https://www.berlin-university-alliance.de/commitments/sharing-resources/shared-resources-center/CARDS-FDM/cards_events/ai_rdm.html\">Information und Anmeldung</a>]</li>\n</ul>\n<p>weiter zu November 2026 [in K\u00fcrze]</p>","doi":"https://doi.org/10.59350/pzvzm-f9w08","guid":"https://blogs.fu-berlin.de/open-research-berlin/?p=4297","language":"de","license":"https://creativecommons.org/licenses/by/4.0/legalcode","published_at":1788220800,"rid":"208kg-aed59","summary":"Unsere monatliche Rubrik zu aktuellen Veranstaltungen rund um Open Research. Anmerkung zu dieser Rubrik: Das Open Research Office Berlin erstellt monatlich eine \u00dcbersicht \u00fcber Termine und Veranstaltungen zu Open Access und Open Research in Berlin bzw. an Berliner Einrichtungen.","tags":["Veranstaltungshinweise"],"title":"Veranstaltungshinweise Oktober 2026","updated_at":1789716611,"url":"https://blogs.fu-berlin.de/open-research-berlin/2026/09/01/veranstaltungshinweise-oktober-2026/","version":"v1"}}],"items":[{"authors":[{"affiliation":[{"id":"https://ror.org/016xsfp80","name":"Radboud University Nijmegen"}],"contributor_roles":[],"family":"Willighagen","given":"Lars","url":"https://orcid.org/0000-0002-4751-4637"}],"blog":{"authors":null,"community_id":"e0509c2b-3c92-4e55-a306-bb03ddf5f7c8","created":1673136000,"current_feed_url":null,"description":"Thoughts about bibliographic metadata, programming, statistics, taxonomy, and biology.","doi":"https://doi.org/10.59350/syntaxus_baccata","favicon":"https://rogue-scholar.org/api/communities/e0509c2b-3c92-4e55-a306-bb03ddf5f7c8/logo","feed_format":"application/atom+xml","feed_url":"https://larsgw.blogspot.com/feeds/posts/default","filter":null,"generator":"Blogger","home_page_url":"https://larsgw.blogspot.com/","issn":null,"language":"eng","license":"https://creativecommons.org/licenses/by/4.0/legalcode","prefix":"10.59350","relative_url":null,"secure":true,"slug":"syntaxus_baccata","status":"active","subfield":"1110","title":"Syntaxus baccata","updated":1789863616,"use_api":null},"blog_name":"Syntaxus baccata","blog_slug":"syntaxus_baccata","content_html":"<p>The release of version 0.9.0 of Citation.js comes shortly after the release of version 0.8.0. This is in part because v0.8.0 was released shortly before Node.js v20 went End Of Life, which led to a lot of (developmental) dependencies to dropping support for it. An added benefit though is that v22.12.0 of Node.js finally added support for CommonJS modules (<code>require()</code> syntax) to import most ESM modules (<code>import</code>/<code>export</code> syntax). This allowed me to stop using the <code>@larsgw/wikibase-sdk</code> fork of <code>wikibase-sdk</code>.</p>\n<p><img alt=\"Hoverfly on willow blossom against deep blue sky\" src=\"https://inaturalist-open-data.s3.amazonaws.com/photos/628027712/original.jpg\"/><br/>\n<em>Melangyna pavlovskyi</em>, 2026.iii.22, Zeddam, The Netherlands</p>\n<p>In short:</p>\n<ul>\n<li>The minimum Node.js version is now v22.12.0.</li>\n<li>Use of <code>node-fetch</code> was replaced with the built-in version of the Fetch API (based on <code>undici</code>); similarly <code>sync-fetch</code> was replaced with <code>sync-fetch-undici</code>.</li>\n<li>Use of the fork <code>@larsgw/wikibase-sdk</code> was replaced with the upstream <code>wikibase-sdk</code>.</li>\n<li>Babel was updated to v8, which does mean a fork of Babelify had to be used for the browser bundles in the <code>citation-js</code> package, until <a href=\"https://github.com/babel/babelify/issues/301\">Babelify is updated upstream</a>.</li>\n<li>The repository documentation now explicitly directs contributors to not include spurious <code>Co-Authored-By</code> tags in their commit messages for advertising purposes (i.e. LLMs).</li>\n</ul>\n<p>Another major change is the addition of TypeScript types, which <a href=\"https://github.com/citation-js/citation-js/issues/251\">people have been asking</a> for, <a href=\"https://github.com/citation-js/citation-js/issues/104\">for some time</a>. I have attempted to create type definitions that are actually useful, which proved difficult given the <a href=\"https://github.com/citation-js/citation-js/issues/30\">convoluted plugin system</a>. In the process, I learnt some interesting features of TypeScript, like <a href=\"https://www.typescriptlang.org/docs/handbook/declaration-merging.html#module-augmentation\">module augmentation</a> and some pretty nice <a href=\"https://www.typescriptlang.org/docs/handbook/2/functions.html#generic-functions\">generic functions</a>.</p>\n<h3 id=\"module-augmentation\">Module augmentation</h3>\n<p>The way to register a plugin with Citation.js is to <code>import</code> or <code>require()</code> it. The first step was to employ module augmentation to add these overloads, like below. (Note that some formats have multiple return types, meaning the overload also depends on the second argument; this will come back later!)</p>\n<pre class=\"language-ts\"><code class=\"prism language-ts\"><span class=\"token comment\">// node_modules/@citation-js/core/index.d.ts</span>\n<span class=\"token keyword\">export</span> <span class=\"token keyword\">class</span> <span class=\"token class-name\">Cite</span> <span class=\"token punctuation\">{</span>\n  <span class=\"token comment\">// ...</span>\n\n\t<span class=\"token function\">format</span> <span class=\"token punctuation\">(</span>format<span class=\"token punctuation\">:</span> <span class=\"token string\">'data'</span><span class=\"token punctuation\">,</span> options<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token punctuation\">{</span> format<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token string\">'text'</span><span class=\"token punctuation\">,</span> version<span class=\"token punctuation\">:</span> <span class=\"token keyword\">string</span> <span class=\"token punctuation\">}</span><span class=\"token punctuation\">)</span><span class=\"token punctuation\">:</span> <span class=\"token keyword\">string</span>\n\t<span class=\"token function\">format</span> <span class=\"token punctuation\">(</span>format<span class=\"token punctuation\">:</span> <span class=\"token string\">'data'</span><span class=\"token punctuation\">,</span> options<span class=\"token punctuation\">:</span> <span class=\"token punctuation\">{</span> format<span class=\"token punctuation\">:</span> <span class=\"token string\">'object'</span><span class=\"token punctuation\">,</span> version<span class=\"token punctuation\">:</span> <span class=\"token keyword\">string</span> <span class=\"token punctuation\">}</span><span class=\"token punctuation\">)</span><span class=\"token punctuation\">:</span> <span class=\"token keyword\">Array</span><span class=\"token operator\">&lt;</span>CSL<span class=\"token operator\">&gt;</span>\n\t<span class=\"token function\">format</span> <span class=\"token punctuation\">(</span>format<span class=\"token punctuation\">:</span> <span class=\"token string\">'label'</span><span class=\"token punctuation\">)</span><span class=\"token punctuation\">:</span> Record<span class=\"token operator\">&lt;</span><span class=\"token keyword\">string</span><span class=\"token punctuation\">,</span> <span class=\"token keyword\">string</span><span class=\"token operator\">&gt;</span>\n<span class=\"token punctuation\">}</span>\n\n<span class=\"token comment\">// node_modules/@citation-js/plugin-csl/index.d.ts</span>\n<span class=\"token keyword\">import</span> <span class=\"token string\">'@citation-js/core'</span>\n\n<span class=\"token keyword\">declare</span> <span class=\"token keyword\">module</span> <span class=\"token string\">'@citation-js/core'</span> <span class=\"token punctuation\">{</span>\n  <span class=\"token keyword\">class</span> <span class=\"token class-name\">Cite</span> <span class=\"token punctuation\">{</span>\n    <span class=\"token function\">format</span> <span class=\"token punctuation\">(</span>format<span class=\"token punctuation\">:</span> <span class=\"token string\">'bibliography'</span><span class=\"token punctuation\">,</span> options<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token punctuation\">{</span> <span class=\"token comment\">/* ... */</span> <span class=\"token punctuation\">}</span><span class=\"token punctuation\">)</span><span class=\"token punctuation\">:</span> <span class=\"token keyword\">string</span>\n    <span class=\"token comment\">// ...</span>\n  <span class=\"token punctuation\">}</span>\n<span class=\"token punctuation\">}</span>\n\n<span class=\"token comment\">// index.ts</span>\n<span class=\"token keyword\">import</span> <span class=\"token punctuation\">{</span> Cite <span class=\"token punctuation\">}</span> <span class=\"token keyword\">from</span> <span class=\"token string\">'@citation-js/core'</span>\n<span class=\"token keyword\">import</span> <span class=\"token keyword\">from</span> <span class=\"token string\">'@citation-js/plugin-csl'</span>\n\n<span class=\"token keyword\">const</span> a <span class=\"token operator\">=</span> <span class=\"token punctuation\">(</span><span class=\"token keyword\">new</span> <span class=\"token class-name\">Cite</span><span class=\"token punctuation\">(</span><span class=\"token punctuation\">)</span><span class=\"token punctuation\">)</span><span class=\"token punctuation\">.</span><span class=\"token function\">format</span><span class=\"token punctuation\">(</span><span class=\"token string\">'bibliography'</span><span class=\"token punctuation\">)</span>\n<span class=\"token comment\">// typeof a === string</span>\n</code></pre>\n<p>This is for plugins with output formatting features, for input parsing features and plugin configuration something similar is possible. However, formatting features not only affect the possible overloads of the <code>Cite#format()</code> function, but also the <code>plugins.output.format()</code> function. This would mean repeating all the overloads.</p>\n<p>Additionally, if the typing of a call to <code>Cite#format()</code> is wrong, the error is actually not very helpful. TypeScript will only show how the last overload of a function does not match. There is another way, though.</p>\n<h3 id=\"generic-functions\">Generic functions</h3>\n<p>With generic functions for <code>Cite#format()</code> and <code>plugins.output.format()</code> we can reuse the same output formatter signatures for both functions. This was achieved by exporting an <code>interface</code> type with the signatures.</p>\n<pre class=\"language-ts\"><code class=\"prism language-ts\"><span class=\"token keyword\">interface</span> <span class=\"token class-name\">Formats</span> <span class=\"token punctuation\">{</span>\n  data<span class=\"token punctuation\">:</span>\n    <span class=\"token operator\">|</span> <span class=\"token punctuation\">(</span><span class=\"token punctuation\">(</span>options<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token punctuation\">{</span> format<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token string\">'text'</span><span class=\"token punctuation\">,</span> version<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token keyword\">string</span> <span class=\"token punctuation\">}</span><span class=\"token punctuation\">)</span> <span class=\"token operator\">=&gt;</span> <span class=\"token keyword\">string</span><span class=\"token punctuation\">)</span>\n    <span class=\"token operator\">|</span> <span class=\"token punctuation\">(</span><span class=\"token punctuation\">(</span>options<span class=\"token punctuation\">:</span> <span class=\"token punctuation\">{</span> format<span class=\"token punctuation\">:</span> <span class=\"token string\">'object'</span><span class=\"token punctuation\">,</span> version<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token keyword\">string</span> <span class=\"token punctuation\">}</span><span class=\"token punctuation\">)</span> <span class=\"token operator\">=&gt;</span> <span class=\"token keyword\">Array</span><span class=\"token operator\">&lt;</span>CSL<span class=\"token operator\">&gt;</span><span class=\"token punctuation\">)</span>\n  label<span class=\"token punctuation\">:</span> <span class=\"token punctuation\">(</span><span class=\"token punctuation\">)</span> <span class=\"token operator\">=&gt;</span> Record<span class=\"token operator\">&lt;</span><span class=\"token keyword\">string</span><span class=\"token punctuation\">,</span> <span class=\"token keyword\">string</span><span class=\"token operator\">&gt;</span>\n<span class=\"token punctuation\">}</span>\n</code></pre>\n<p>This interface can be extended by plugins as well, so adding signatures is simple. The generic function is not so simple; I started with the following:</p>\n<pre class=\"language-ts\"><code class=\"prism language-ts\"><span class=\"token keyword\">export</span> <span class=\"token keyword\">class</span> <span class=\"token class-name\">Cite</span> <span class=\"token punctuation\">{</span>\n  format<span class=\"token operator\">&lt;</span>\n    Format <span class=\"token keyword\">extends</span> <span class=\"token class-name\">keyof</span> Formats<span class=\"token punctuation\">,</span>\n    Options <span class=\"token keyword\">extends</span> <span class=\"token class-name\">Parameters</span><span class=\"token operator\">&lt;</span>Formats<span class=\"token punctuation\">[</span>Format<span class=\"token punctuation\">]</span><span class=\"token operator\">&gt;</span>\n  <span class=\"token operator\">&gt;</span> <span class=\"token punctuation\">(</span>format<span class=\"token punctuation\">:</span> Format<span class=\"token punctuation\">,</span> <span class=\"token operator\">...</span>options<span class=\"token punctuation\">:</span> Options<span class=\"token punctuation\">)</span><span class=\"token punctuation\">:</span> ReturnType<span class=\"token operator\">&lt;</span>Formats<span class=\"token punctuation\">[</span>Format<span class=\"token punctuation\">]</span><span class=\"token operator\">&gt;</span>\n<span class=\"token punctuation\">}</span>\n</code></pre>\n<p>However, because the <code>'data'</code> output format can have multiple return types depending on the second argument, the return type would be <code>string | Array<csl></csl></code>. I instead ended up with</p>\n<pre class=\"language-ts\"><code class=\"prism language-ts\"><span class=\"token keyword\">export</span> <span class=\"token keyword\">class</span> <span class=\"token class-name\">Cite</span> <span class=\"token punctuation\">{</span>\n  format<span class=\"token operator\">&lt;</span>\n    Format <span class=\"token keyword\">extends</span> <span class=\"token class-name\">keyof</span> Formats<span class=\"token punctuation\">,</span>\n    Options <span class=\"token keyword\">extends</span> <span class=\"token class-name\">Parameters</span><span class=\"token operator\">&lt;</span>Formats<span class=\"token punctuation\">[</span>Format<span class=\"token punctuation\">]</span><span class=\"token operator\">&gt;</span><span class=\"token punctuation\">,</span>\n    Result <span class=\"token keyword\">extends</span> <span class=\"token class-name\">ReturnType</span><span class=\"token operator\">&lt;</span>Extract<span class=\"token operator\">&lt;</span>Formats<span class=\"token punctuation\">[</span>Format<span class=\"token punctuation\">]</span><span class=\"token punctuation\">,</span> <span class=\"token punctuation\">(</span><span class=\"token operator\">...</span>args<span class=\"token punctuation\">:</span> Options<span class=\"token punctuation\">)</span> <span class=\"token operator\">=&gt;</span> <span class=\"token keyword\">any</span><span class=\"token operator\">&gt;&gt;</span>\n  <span class=\"token operator\">&gt;</span> <span class=\"token punctuation\">(</span>format<span class=\"token punctuation\">:</span> Format<span class=\"token punctuation\">,</span> <span class=\"token operator\">...</span>options<span class=\"token punctuation\">:</span> Options<span class=\"token punctuation\">)</span><span class=\"token punctuation\">:</span> Result\n<span class=\"token punctuation\">}</span>\n</code></pre>\n<p>Because of <code>Extract<t></t></code> the correct return type is selected and the overloads work as expected. This works wonders with autocomplete, and gives appropriate errors. And, although the resulting code looks pretty simple, it took a while to get there in practice.</p>\n<h3 id=\"type-definitions-for-plugins\">Type definitions for plugins</h3>\n<p>In total, the <code>index.d.ts</code> type definitions for a typical plugin looks like this:</p>\n<pre class=\"language-ts\"><code class=\"prism language-ts\"><span class=\"token keyword\">import</span> <span class=\"token keyword\">type</span> <span class=\"token punctuation\">{</span> CSL <span class=\"token punctuation\">}</span> <span class=\"token keyword\">from</span> <span class=\"token string\">'@citation-js/core'</span>\n\n<span class=\"token keyword\">interface</span> <span class=\"token class-name\">Entry</span> <span class=\"token punctuation\">{</span>\n  title<span class=\"token punctuation\">:</span> <span class=\"token keyword\">string</span>\n  <span class=\"token comment\">// ...</span>\n<span class=\"token punctuation\">}</span>\n\n<span class=\"token keyword\">interface</span> <span class=\"token class-name\">Config</span> <span class=\"token punctuation\">{</span>\n  stringConstants<span class=\"token punctuation\">:</span> Record<span class=\"token operator\">&lt;</span><span class=\"token keyword\">string</span><span class=\"token punctuation\">,</span> <span class=\"token keyword\">string</span><span class=\"token operator\">&gt;</span>\n<span class=\"token punctuation\">}</span>\n\n<span class=\"token keyword\">declare</span> <span class=\"token keyword\">module</span> <span class=\"token string\">'@citation-js/core'</span> <span class=\"token punctuation\">{</span>\n  <span class=\"token keyword\">namespace</span> plugins <span class=\"token punctuation\">{</span>\n    <span class=\"token keyword\">namespace</span> input <span class=\"token punctuation\">{</span>\n      <span class=\"token keyword\">interface</span> <span class=\"token class-name\">Formats</span> <span class=\"token punctuation\">{</span>\n        <span class=\"token string\">'@foo/file'</span><span class=\"token punctuation\">:</span> <span class=\"token punctuation\">(</span>input<span class=\"token punctuation\">:</span> <span class=\"token keyword\">string</span><span class=\"token punctuation\">)</span> <span class=\"token operator\">=&gt;</span> <span class=\"token keyword\">Array</span><span class=\"token operator\">&lt;</span>Entry<span class=\"token operator\">&gt;</span>\n        <span class=\"token string\">'@foo/record'</span><span class=\"token punctuation\">:</span> <span class=\"token punctuation\">(</span>input<span class=\"token punctuation\">:</span> Entry<span class=\"token punctuation\">)</span> <span class=\"token operator\">=&gt;</span> CSL\n      <span class=\"token punctuation\">}</span>\n    <span class=\"token punctuation\">}</span>\n\n    <span class=\"token keyword\">namespace</span> output <span class=\"token punctuation\">{</span>\n      <span class=\"token keyword\">interface</span> <span class=\"token class-name\">Formats</span> <span class=\"token punctuation\">{</span>\n        foo<span class=\"token punctuation\">:</span>\n          <span class=\"token operator\">|</span> <span class=\"token punctuation\">(</span><span class=\"token punctuation\">(</span>options<span class=\"token punctuation\">:</span> <span class=\"token punctuation\">{</span> format<span class=\"token punctuation\">:</span> <span class=\"token string\">'object'</span><span class=\"token punctuation\">,</span> spec<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token keyword\">number</span> <span class=\"token punctuation\">}</span><span class=\"token punctuation\">)</span> <span class=\"token operator\">=&gt;</span> <span class=\"token keyword\">Array</span><span class=\"token operator\">&lt;</span>Entry<span class=\"token operator\">&gt;</span><span class=\"token punctuation\">)</span>\n          <span class=\"token operator\">|</span> <span class=\"token punctuation\">(</span><span class=\"token punctuation\">(</span>options<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token punctuation\">{</span> format<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token string\">'text'</span><span class=\"token punctuation\">,</span> spec<span class=\"token operator\">?</span><span class=\"token punctuation\">:</span> <span class=\"token keyword\">number</span> <span class=\"token punctuation\">}</span><span class=\"token punctuation\">)</span> <span class=\"token operator\">=&gt;</span> <span class=\"token keyword\">string</span><span class=\"token punctuation\">)</span>\n      <span class=\"token punctuation\">}</span>\n    <span class=\"token punctuation\">}</span>\n\n    <span class=\"token keyword\">namespace</span> config <span class=\"token punctuation\">{</span>\n      <span class=\"token keyword\">function</span> <span class=\"token keyword\">get</span> <span class=\"token punctuation\">(</span><span class=\"token string\">'@foo'</span><span class=\"token punctuation\">)</span><span class=\"token punctuation\">:</span> Config\n    <span class=\"token punctuation\">}</span>\n  <span class=\"token punctuation\">}</span>\n<span class=\"token punctuation\">}</span>\n</code></pre>\n<p>This is implemented for all plugins included in <code>citation-js</code> (though that package does not have TypeScript types itself), and I will slowly roll this out for other plugins. Any feedback is welcome!</p>","doi":"https://doi.org/10.59350/j6v28-a2h54","guid":"tag:blogger.com,1999:blog-5472537257659342064.post-6362021558719908759","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","published_at":1789862400,"rid":"9k2g3-mte91","summary":"The release of version 0.9.0 of Citation.js comes shortly after the release of version 0.8.0. This is in part because v0.8.0 was released shortly before Node.js v20 went End Of Life, which led to a lot of (developmental) dependencies to dropping support for it. An added benefit though is that v22.12.0 of Node.js finally added support for CommonJS modules (require() syntax) to import most ESM modules (import/export syntax). This allowed me to","tags":["Citation.js","Programming"],"title":"Citation.js Version 0.9: TypeScript types","updated_at":1789889411,"url":"https://larsgw.blogspot.com/2026/09/citationjs-version-09-typescript-types.html","version":"v1"},{"authors":[{"contributor_roles":[],"family":"Fix","given":"Blair"}],"blog":{"authors":null,"community_id":"0b9cb48f-680d-4f11-99f0-5b61a55fe4cc","created":1714262400,"current_feed_url":null,"description":"New ideas in economics and the social sciences","doi":"https://doi.org/10.59350/etd","favicon":"https://rogue-scholar.org/api/communities/0b9cb48f-680d-4f11-99f0-5b61a55fe4cc/logo","feed_format":"application/atom+xml","feed_url":"https://economicsfromthetopdown.com/feed/atom/","filter":null,"generator":"Other","home_page_url":"https://economicsfromthetopdown.com/","issn":null,"language":"eng","license":"https://creativecommons.org/licenses/by/4.0/legalcode","prefix":"10.59350","relative_url":null,"secure":true,"slug":"etd","status":"active","subfield":"2002","title":"Economics from the Top Down","updated":1789822383,"use_api":true},"blog_name":"Economics from the Top Down","blog_slug":"etd","content_html":"<img alt=\"\" aperture\":\"0\",\"credit\":\"\",\"camera\":\"\",\"caption\":\"\",\"created_timestamp\":\"0\",\"copyright\":\"\",\"focal_length\":\"0\",\"iso\":\"0\",\"shutter_speed\":\"0\",\"title\":\"\",\"orientation\":\"0\",\"alt\":\"\"}\"=\"\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" data-attachment-id=\"15639\" data-comments-opened=\"1\" data-image-caption=\"\" data-image-description=\"\" data-image-meta=\"{\" data-image-title=\"bti_cover\" data-large-file=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/bti_cover.png?fit=723%2C436&amp;ssl=1\" data-orig-file=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/bti_cover.png?fit=6594%2C3971&amp;ssl=1\" data-orig-size=\"6594,3971\" data-permalink=\"https://economicsfromthetopdown.com/bti_cover/\" decoding=\"async\" height=\"150\" sizes=\"(max-width: 150px) 100vw, 150px\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/bti_cover.png?resize=150%2C150&amp;ssl=1\" srcset=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/bti_cover.png?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/bti_cover.png?resize=450%2C450&amp;ssl=1 450w, https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/bti_cover.png?resize=60%2C60&amp;ssl=1 60w, https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/bti_cover.png?resize=550%2C550&amp;ssl=1 550w, https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/bti_cover.png?zoom=2&amp;resize=150%2C150&amp;ssl=1 300w\" width=\"150\"/><div id=\"audio-player\">\n<audio controls=\"\" id=\"audio\"><source src=\"https://economicsfromthetopdown.com/wp-content/uploads/2026/09/fix_bti_20260919.mp3\" type=\"audio/mpeg\"/>Your browser does not support the audio tag.</audio>\n</div>\n<p><span class=\"download-buttons\">Download: <a href=\"https://economicsfromthetopdown.com/wp-content/uploads/2026/09/fix_bti_20260919.pdf\">PDF</a> | <a href=\"https://sciencedesk.economicsfromthetopdown.com/epub/2026-09/fix_bti_20260919.epub\">EPUB</a> | <a download=\"\" href=\"https://economicsfromthetopdown.com/wp-content/uploads/2026/09/fix_bti_20260919.mp3\">MP3</a> | <a href=\"https://www.youtube.com/watch?v=kOzvaNE2q10\">WATCH VIDEO</a></span></p>\n<div style=\"text-align:right\">\n<p><em>'Industry' and 'business' \u2026 are not synonyms \u2026<br/>\nthey are opposing realms of human activity</em>.</p>\n<p>\u2014 <a href=\"https://blairfix.github.io/capital_as_power/why-write-a-book-about-capital.html#part-iv-bringing-power-back-in\" target=\"_blank\">Jonathan Nitzan and Shimshon Bichler</a></p>\n</div>\n<p>A defining feature of neoclassical economics is that it treats 'business' and 'industry' as synonyms. As such, mainstream economists assume that a firm's business income reveals its industrial output</p>\n<p>To arrive at this convenient equivalence, economists pretend that in a competitive market, commodity prices reveal the production of consumer 'utility'. So when economists speak of 'output', they mean the creation of paid-for satisfaction. But since this 'utility' goes perpetually unmeasured, the whole operation represents an act of faith \u2014 no different than the imagined equivalence between the father, the son, and the holy ghost.</p>\n<p>Looking at this act of ideological faith, Jonathan Nitzan and Shimshon Bichler find little reason to believe. Instead, they take the heretical view, first articulated <a href=\"https://archive.org/details/AbsenteeOwnershipAndBusinessEnterprise/\" target=\"_blank\">by Thorstein Veblen</a>, that 'industry' and 'business' are <em>opposing</em> activities.</p>\n<p>Let me explain their thinking.</p>\n<p>In the Veblenian sense, the human capacity to be 'industrious' predates capitalism; indeed, it predates humanity. All living things are 'industrious' in the sense that they pursue activities that help them survive and reproduce in the natural world. So when humans farm corn, we are manifesting a deep biological urge to exploit the natural world in ways that benefit us.</p>\n<p>Enter capitalism. In capitalism, human industriousness gets controlled by a paywall. Thus, when a capitalist farmer grows corn, he does so not to feed himself (directly), but to make a profit. As such, farming becomes a 'business' activity marked by the use of property rights to extract income.</p>\n<p>This use of property rights, in turn, gives rise to a complicated relation between human 'industry' and capitalist 'business'. Sometimes, what is good for business is good for industry. For example, when a farmer buys a larger tractor, he can grow more corn, and therefore, receive more income. But other times, business benefit comes at the <em>expense</em> of industry. For example, if a farmer monopolizes the corn market, he can extract more income by restricting corn production and raising corn prices. The point is that outside of neoclassical fantasies, 'industry' and 'business' have a complex relationship that cannot be deduced from armchair theory. To understand how the real world works, we need to get our boots muddy with actual data.</p>\n<p>Enter the <em>business-to-industry index</em>. This is a metric that I devised while thinking about the <a href=\"https://economicsfromthetopdown.com/2026/05/22/the-business-of-war-and-the-mismeasurement-of-military-might/\" target=\"_blank\">business of the US Pentagon</a> (and its surprising inability to wage war). In this essay, I explore how the business-to-industry index can be used to study the broader history and geography of capitalism.</p>\n<p>Here's the basic math that I'll apply. The business-to-industry index consists of a double ratio. For a given entity, we calculate the business-to-industry index by dividing the entity's share of world income by its share of world energy use:</p>\n<div style=\"text-align:center\">\n<span class=\"katex-eq\" data-katex-display=\"false\"> \\displaystyle  \\text{business-to-industry index}  = \\frac{ \\text{share of world income}}{ \\text{share of world energy use}} </span>\n</div>\n<p>In this metric, the numerator is a measure of business success. (Since the goal of business is to extract income, we can measure its success in terms of an income share \u2014 the most general being the share of world income.) In contrast, the denominator is a measure of relative industrial capacity, as measured by the ability to harness energy. (I focus on energy because it's the universe's natural currency \u2014 the fundamental quanta that makes stuff 'go'.)</p>\n<p>Looking ahead, I get the analysis rolling by studying the long-term history of capitalism, as captured by the rise (and fall) of three hegemons: Britain, the United States, and China. In all three cases, I find that these hegemons went through a period of industrial 'disruption', during which the business-to-industry index fell, followed by a period of 'monetization', during which the business-to-industry index rose. One of the most startling conclusions is that when it comes to setting the stage for business monetization, communism may be the best game in town.</p>\n<p>Next, I switch gears and look at the geography of modern capitalism. Taking a nod from world-systems theory, I search for the 'core' of global capitalism by looking for the regions that are most business dominated. That leads me down a tangent on US politics, followed by a return to the world stage.</p>\n<p>All in all, I hope to convince you that the business-to-industry index is useful for understanding the structure of global capitalism. Consider it an unpaywalled tool for studying the world's business paywalls.</p>\n<h3 id=\"part-i-a-brief-history-of-capitalist-hegemony\">Part I: A brief history of capitalist hegemony</h3>\n<p>History, one might say, is a book about the past that is written with the present in mind. As such, writing a coherent history of capitalism requires understanding this system as it exists today.</p>\n<p>Working during the most frenzied period of the British industrial revolution, Karl Marx saw capitalism as a 'mode of production' with capitalists at the reins. This vision was not a bad description of 19th-century British industrialism; it is, however, a terrible description of 21st-century capitalism \u2014 a system that is plainly dominated by finance and its abstract manipulation of property rights.</p>\n<p>Sadly, Marx's 19th-century vision has come to dominate contemporary histories of capitalism, making them feel frustratingly incomplete. Giovanni Arrighi's seminal book <a href=\"https://archive.org/details/longtwentiethcen00arri\" target=\"_blank\"><em>The Long Twentieth Century</em></a> is a good example. The book sketches the history of capitalism by charting the rise and fall of four world hegemons (Genoa, the Netherlands, Britain, and the United States). So far so good. Unfortunately, Arrighi then tries to study the financial nature of capitalism while simultaneously holding onto Marxist baggage about 'modes of production'. The results are (in my mind) both confusing and disappointing.</p>\n<p>Still, Arrighi's analysis of hegemonic cycles represents one of the most compelling ways to study the history of capitalism. By applying the business-to-industry index to this topic, not only can we uncover the changing currents of global capitalism, we can also understand why Marx thought the way he did.</p>\n<h4 id=\"the-business-to-industry-index-in-britain\">The business-to-industry index in Britain</h4>\n<p>For Arrighi, the history of capitalism unfolded through four waves of hegemony: the first wave came with the 16th-century expansion of Genoa, the second with 17th-century Dutch conquest, the third with the 19th-century British empire, and the fourth with the 20th-century United States. Of these four waves of global power, we can construct the business-to-industry index for the latter two. Let's get started by using the business-to-industry index to chart the rise and fall of British power.</p>\n<p>Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-britain-two-views\">1</a> shows two views of British hegemony. The blue curve shows the 'business view' \u2014 the British share of world income. And the red curve shows the 'industry view' \u2014 the British share of world energy use. In broad terms, these two views of British hegemony are similar, which is expected. But what interests me here is the <em>relation</em> between the business view and the industry view. To capture this relation, Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-britain-bti\">2</a> shows the long-term history of the British business-to-industry index.<a class=\"footnote-ref\" href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fn1\" id=\"fnref1\" role=\"doc-noteref\" target=\"_blank\"><sup>1</sup></a></p>\n<p><a id=\"fig-britain-two-views\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/britain_two_views.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 1: Two views of the rise and fall of British hegemony.</strong> The blue curve shows the 'business' view of British hegemony \u2014 Britain's share of world income. The red curve shows the 'industry' view \u2014 Britain's share of world energy use. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p><a id=\"fig-britain-bti\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/britain_bti.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 2: The business-to-industry index in Britain.</strong> The business-to-industry index consists of the ratio between an entity's share of world income and its share of world energy use. This chart combines the time series in Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-britain-two-views\">1</a> to plot the British business-to-industry index over the last three centuries. Note the log scale on the vertical axis. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p>Before diving into the evidence in Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-britain-bti\">2</a>, let me pause to define some terms. When a region has a business-to-industry index that is <em>greater</em> than one, I say that this region is 'business dominated' \u2014 it receives more income than is warranted by its share of world energy use. Similarly, when a region has a business-to-industry index that is <em>less</em> than one, I say that this region is 'industry dominated' \u2014 it consumes more energy than is warranted by its share of world income.</p>\n<p>Next, when the business-to-industry index drops over time, I call this a period of <em>disruption</em>. And when the business-to-industry index rises over time, I call this a period of <em>monetization</em>. Note that I've chosen this language to echo the jargon used by Silicon Valley startups, because I think their ethos mimics larger currents in capitalism.</p>\n<p>In Silicon Valley, 'disruption' is code for technological innovation mixed with low prices that are designed to capture market share. To see this strategy in action, just look to the unfolding AI boom. Not only are AI companies rushing to push out a new technology, they're dumping their product at prices so low that we need knew adjectives to describe the <a href=\"https://www.wheresyoured.at/dont-look-up/\" target=\"_blank\">scale of their losses</a>. Of course, everyone knows that this disruption can't last. But for the AI companies playing this game, the hope is to capture enough market share that they can eventually flip on the monetization switch, hike prices, and rake in money.</p>\n<p>Returning to the history of the British business-to-industry index (in Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-britain-bti\">2</a>), it seems that capitalist empires may play a similar game, albeit one that is unplanned. When our data begins at the turn of the 18th century, Britain was already a major world power, having been propelled to global dominance by its naval prowess. Now as a rule, centers of power are places that are business dominated (they have a share of world income that far surpasses their share of world energy use). So given Britain's 18th-century status as an established imperial power, it's unsurprising that we find the place to be business dominated. What <em>is</em> surprising is the period of disruption that followed.</p>\n<p>Since the dawn of civilization, empires have waxed and waned; they have conquered new territory and then relinquished it. But before Britain, no empire had harnessed the industrial power of fossil fuels. When Britain began to exploit its coal reserves in the 19th century, the industrial disruption that followed caused the British business-to-industry index to plummet. Yes, Britain as a whole got richer, but at a pace that was slower than its frenzied energy burn. By the late 1800s, Britain had become the world's factory, dumping manufactured goods onto the world stage at bargain-basement prices.</p>\n<p>Of course, this period of disruption did not last forever. By the early 20th century, British capitalists had begun to monetize, causing the business-to-industry index to rise steadily. But before we get to this period of monetization, it's worth dwelling on the period of British industrial disruption.</p>\n<p>As we'll soon seen, both the US and China saw their business-to-industry indexes drop steadily during their most intense periods of industrialization. Based on this evidence, it seems plausible that rapid industrialization is associated with a falling business-to-industry index. Again, the startup mantra shows why. If you want to gain industrial dominance, your product must be competitively priced, even to the point of business loss.</p>\n<p>Of course, I'm <em>not</em> saying that during the 19th century, British capitalists decided to under-price their commodities so that they could later monetize their property rights. Surely, there was no such foresight. What I <em>am</em> saying is that when an industrial build-out occurs, it's likely created by a social environment that encourages technological innovation yet suppresses workers' income.</p>\n<p>Thinking about this environment, the work of Karl Marx is informative, because he studied during the most intense period of British industrial disruption. Note four features of Marx's thinking.</p>\n<p>First, Marx legitimately admired the productivity of British capitalism \u2014 indeed, he thought capitalism was so productive that it would set the material stage for socialism. (In hindsight, the reverse was true; wherever it existed, state communism set the stage for capitalism. More on this reversal when we look at the rise of China.)</p>\n<p>Second, Marx was critical of the poor wages paid to 19th-century factory workers. He did not foresee the affluent salaried class that would emerge during later stages of capitalism.</p>\n<p>Third, Marx was obsessed with so-called 'real capital' \u2014 the ownership of machines and factories. He dismissed finance as 'fictitious capital'. Of course, after Marx died, it became obvious that finance was a rather unfictitious form of power.</p>\n<p>Fourth, Marx thought that capitalism's key failing was that in a competitive market, the <a href=\"https://en.wikipedia.org/wiki/Tendency_of_the_rate_of_profit_to_fall\" target=\"_blank\">rate of profit tended to fall</a>.<a class=\"footnote-ref\" href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fn2\" id=\"fnref2\" role=\"doc-noteref\" target=\"_blank\"><sup>2</sup></a> Thus, capitalists would slowly compete themselves into oblivion, paving the way for a socialist utopia. Marx clearly failed to anticipate the power of oligarchy and its ability to profit from institutionalized exclusion.</p>\n<p>Now, my point is not (solely) to criticize Marx, but to observe that he was a man of his time. He wrote about the social tendencies that existed during an intense period of industrial disruption. He erred not in describing these tendencies, but in thinking they were permanent features of capitalism. They were not.</p>\n<p>For the 21st century observer, the trends that followed need no introduction. As British wages rose, British capitalists realized that so long as property rights were enforced internationally, they could offshore their factories while continuing to onshore their profits. And so the manufacturing bustle of 19th-century London was replaced by the white-collar hustle of global finance. To be specific, the ship-building yards closed, but the shipping insurance business (<a href=\"https://en.wikipedia.org/wiki/Lloyd%27s_of_London\" target=\"_blank\">Lloyds of London</a>) flourished.</p>\n<p>For their part, modern Marxists look at this transformation and see pathology. However, a more apt description is that under capitalism, monetization is what naturally follows an industrial build out. The build out creates transitory technological superiority, which allows elites to ensconce more enduring forms of institutional power. What follows is the mature stage of capitalism, in which elites monetize the long tail of their declining institutional power. Sure, this behavior creates all forms of cravenness; but for the late-stage capitalist, it is rational calculus. It is more profitable to toll than to build.</p>\n<h4 id=\"the-business-to-industry-index-in-the-united-states\">The business-to-industry index in the United States</h4>\n<p>Traveling across the Atlantic, let's now look at the history of the business-to-industry index in the United States. Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-us-two-views\">3</a> shows the business and industry views of US hegemony, both of which rose until 1950 and fell thereafter. Meanwhile, Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-us-bti\">4</a> combines these two views to calculate the US business-to-industry index.</p>\n<p><a id=\"fig-us-two-views\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/us_two_views.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 3: Two views of the rise and fall of US hegemony.</strong> The blue curve shows the 'business' view of American hegemony \u2014 the US share of world income. The red curve shows the 'industry' view \u2014 the US share of world energy use. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p><a id=\"fig-us-bti\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/us_bti.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 4: The business-to-industry index in the United States.</strong> The business-to-industry index consists of the ratio between an entity's share of world income and its share of world energy use. This chart combines the time series in Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-us-two-views\">3</a> to plot the US business-to-industry index over the last two centuries. Note the log scale on the vertical axis. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p>Looking at Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-us-bti\">4</a>, let's discuss the business-to-industry trends. Unlike Britain, which entered our historical record as an imperial power, the United States enters our record (in 1790) as a colonial periphery, having freshly won independence from the British crown. As a periphery in the capitalist system, we find that the early US was industry dominated \u2014 its share of world income was dwarfed by its share of world energy use. But as the former colony gained power (driven in no small part by slave labor), its business-to-industry index steadily rose.</p>\n<p>Note that this early period of US expansion was a standard story of imperial conquest. European settlers came to the New World where they first expunged the natives and then exploited the land for themselves. As this expansion unfolded, US coastal cities became centers of business. In the annals of human history, such conquest is standard practice. But what came next was more abnormal.</p>\n<p>By the late 19th century, the US entered a fifty-year period of industrial disruption marked by a steady stream of technological innovation. In 1882, Thomas Edison built his <a href=\"https://en.wikipedia.org/wiki/Pearl_Street_Station\" target=\"_blank\">first commercial electric power plant</a>. In 1886, Carnegie Steel built the world's <a href=\"https://en.wikipedia.org/wiki/Homestead_Steel_Works\" target=\"_blank\">largest open hearth furnace</a>. In 1892, <a href=\"https://en.wikipedia.org/wiki/John_Froelich\" target=\"_blank\">John Froelich</a> built the first viable gas-powered tractor. In 1896, Henry Ford built his <a href=\"https://en.wikipedia.org/wiki/History_of_the_Ford_Motor_Company#Foundation\" target=\"_blank\">first automobile</a>. And in 1903, the Wright brothers built the <a href=\"https://en.wikipedia.org/wiki/Wright_Flyer\" target=\"_blank\">first airplane</a>. By the end of World War I, this run of technological innovation had allowed the US to surpassed Britain as the world's factory.</p>\n<p>As in Britain, the era of American disruption was formative not just for industrialism, but also for political economy. In 1899, John Bates Clark published his wildly influential book <a href=\"https://archive.org/details/distributionwea02clargoog\" target=\"_blank\"><em>The Distribution of Wealth</em></a>, which expounded the neoclassical theory of income distribution. And in 1910, Irving Fisher wrote his seminal neoclassical textbook <a href=\"https://archive.org/details/inroductiontoeco00fish/page/n17/mode/2up\" target=\"_blank\"><em>Introduction to Economic Science</em></a>. Collectively, James Tobin <a href=\"https://ideas.repec.org/a/aea/aecrev/v75y1985i6p28-38.html\" target=\"_blank\">later noted</a>, the two men helped erect the 'temple' of American neoclassical economics.</p>\n<p>In this temple, capitalism is theorized as a competitive market in which firms are unwittingly forced to maximize social welfare. Of course, for those who stared closely at this theory, it was always a fairy tale. But at the turn of the 20th century, it was at least a mildly believable story. Although the robber barons actively stymied competition, these men were still titans of <em>industry</em>; they built real factories and real infrastructure.</p>\n<p>Today, neoclassical textbooks continue to wax about the market production of 'stuff' (i.e.\u00a0'widgets'). But in the mean time, American capitalists have offshored their factories, leaving the dirty work of making things to others. That's because the real money is made by monetizing the institutional vestiges of American power.</p>\n<p>Of course, legions of political economists have commented on the 'de-industrialization' and 'financialization' of American capitalism. In this light, the rising business-to-industry index of the last half century simply provides another way to quantify an otherwise widely-recognized pattern. That said, the long-term trend in the business-to-industry index also shows something new. When it comes to capitalism, neoclassical economics takes the state of industrial disruption as 'normal'. But in hindsight, Britain and the United States have both spent far more time in periods of monetization \u2014 periods when capitalists inflated their assets without building much of physical substance.</p>\n<p>If one presumes, as Nitzan and Bichler do, that capital is finance and finance alone, then this prolonged state of monetization is unsurprising. Instead, what's remarkable is that periods of industrial disruption occur at all. Indeed, it takes a special set of circumstance to prod owners to build rather than to simply toll. Looking ahead, the irony is that perhaps the most fertile environment for industrial disruption is created not by the market, but by state communism.</p>\n<h4 id=\"the-business-to-industry-index-in-china\">The business-to-industry index in China</h4>\n<p>When Marx envisioned a future socialist utopia, he thought that it would spring from the ashes of capitalism. Let capitalists create the pistons of industry, Marx declared. Then let workers seize the controls and run the machine for themselves. Unfortunately, things did not work out as Marx planned.</p>\n<p>In reality (as Branko Milanovi\u0107 often notes), communism turned out to be an alternative path to capitalism.<a class=\"footnote-ref\" href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fn3\" id=\"fnref3\" role=\"doc-noteref\" target=\"_blank\"><sup>3</sup></a> Or more specifically, state communism was a potent tool for industrial disruption \u2014 a way to rapidly build industrial infrastructure by letting government run the show. Once this build out matured, however, communist control invariably gave way (either by evolution or revolution) to monetized capitalism.</p>\n<p>Modern China offers an excellent case study of this transformation. With communist disruption (and capitalist monetization) in mind, let's turn to Figures\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-china-two-views\">5</a> and <a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-china-bti\">6</a>. Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-china-two-views\">5</a> shows both the business view and the industry view of rising Chinese hegemony. Meanwhile, Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-china-bti\">6</a> combines these two views to measure China's business-to-industry-index.</p>\n<p><a id=\"fig-china-two-views\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/china_two_views.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 5: Two views of the rise of Chinese hegemony.</strong> The blue curve shows the 'business' view of Chinese hegemony \u2014 China's share of world income. The red curve shows the 'industry' view \u2014 China's share of world energy use. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p><a id=\"fig-china-bti\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/china_bti.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 6: The business-to-industry index in China.</strong> The business-to-industry index consists of the ratio between an entity's share of world income and its share of world energy use. This chart combines the time series in Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-china-two-views\">5</a> to plot China's business-to-industry index over the last seventy years. Note the log scale on the vertical axis. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p>Before I discuss the evidence, let's review some history. When the data for China's business-to-industry index begins (in 1953), the country was four years into its communist revolution. Mao was firmly in control, and his government was busy forcing peasants off the land and into newly constructed factories. To be sure, Mao's policies were in many ways disastrous; after all, they prompted what is perhaps the most <a href=\"https://en.wikipedia.org/wiki/Great_Chinese_Famine\" target=\"_blank\">catastrophic famine in human history</a>. But in a sense, the trauma is the point. That's because Maoist China was an industrial disruption machine. During Mao's tenure (which ended in 1976), China's business-to-industry index dropped like a stone.</p>\n<p>Here's why this cliff makes sense.</p>\n<p>At its root, industrial disruption requires the construction of industrial infrastructure at the same time that peoples' incomes are suppressed. Almost by definition, such an experience is unpleasant. In capitalism, owners have a limited ability to command, and so are forced to disrupt with both the stick and the carrot. For example, Henry Ford was a ruthless businessman who nonetheless paid his workers fairly well. This carrot makes the industrial disruption more palatable, but also weakens its pace.</p>\n<p>Under communist governance, the state's enormous stick means that there is little need for the carrot. A communist regime can build heavy industry that is every bit as productive as its capitalist equivalent. Yet the communist factory need not pay ample wages. Indeed, the communist manager can feed his workers bland rations and house them in stark barracks.</p>\n<p>Of course, the problem with communist disruption is that it is self limiting. At some point, workers begin to resent living in a sprawling industrial environment that provides them little benefit. It's at this point that communism runs its course, for by definition, it cannot monetize. So in hindsight, Milanovi\u0107 is right; in practice, communism proved to be a temporary strategy for fostering industrial disruption \u2014 a way to propel backwards regions onto the industrial world stage.</p>\n<p>In China, communist policies were slowly abandoned after Mao's 1976 death, with market reform accelerating during the 1990s. As we might expect, this transformation marked the end of China's period of industrial disruption, and prompted the transition to a period of monetization. From the mid 1990s onward, China's business-to-industry index rose steadily.</p>\n<p>Today, China is the undisputed center of world industry. But it has yet to become the center of global capitalism. That will surely come. If history teaches us anything, it's that rewiring the circuits of global capital takes longer than resituating industrial capacity. Long after factories fled the shores of London and New York, bankers there continued to monetize the long tail of Western power. Looking to the future, the financiers of Shanghai can almost certainly look forward to similar glory.</p>\n<h3 id=\"part-ii-the-geography-of-global-capitalism\">Part II: The geography of global capitalism</h3>\n<p>So far I've studied capitalist history through the lens of hegemony. But of course, there can be no hegemony in isolation, just as there can be no rulers without followers. In the language of <a href=\"https://en.wikipedia.org/wiki/World-systems_theory\" target=\"_blank\">world-systems theory</a>, I've captured the history of the capitalist 'core'. But what of the capitalist 'periphery'? For that matter, what does it mean to be in the 'core' or the 'periphery' of the capitalist system?</p>\n<p>Here, it's worth a brief digression to discuss the failure of Marxist theory, of which world-systems theory is an extension. For Marx, the key feature of capitalism was the exploitation of workers by capitalists. Workers produce 'surplus value', which is then appropriated by capitalists. Looking at international relations, world-systems theorists extend this idea to regions and countries. As they see it, the 'periphery' of the capitalist system produces surplus value that is then expropriated by the capitalist 'core'.</p>\n<p>As with Marx's original thinking, this world-systems extension is seductive but vacuous. The problem comes down to measurement. Marx claimed to explain profit in terms of 'surplus value', but provided no independent way to measure the latter quantity. Likewise, world-systems theorists would like to locate the 'core' of global capitalism by identifying the flow of surplus value, but have no way of doing so. Hence, in practice Marxists simply point to what we already know and apply different verbiage. They look at profit and claim to see 'surplus value'. Meanwhile, world-systems theorists look at international income disparities and infer a regime of exploitation. But without independent measurement, why should we believe either claim?<a class=\"footnote-ref\" href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fn4\" id=\"fnref4\" role=\"doc-noteref\" target=\"_blank\"><sup>4</sup></a></p>\n<p>Here is where the business-to-industry index can (in my opinion) improve world-systems theory. The key insight behind this index \u2014 an insight that originates with Veblen and was later elaborated by Nitzan and Bichler \u2014 is that human industry is a separate beast from capitalist business. Human industry consists of the physical manipulation of the natural world, and can be organized using many different social systems. Capitalist 'business', in contrast, is an ideological practice that monetizes control over property rights. Yes, capitalist control has tended to coincide with industrial development. But we must take care to study these two tendencies separately.</p>\n<p>With the business-industry distinction in mind, I propose the following revision of world-systems theory: what defines the 'core' of the capitalist system is not monetary wealth itself, but monetary wealth in the <em>absence</em> of industry. Such a dichotomy is the signature mark of finance \u2014 of monetized control over abstract property rights. Likewise, what defines the 'periphery' of global capitalism is not the lack of monetary wealth, but rather, the lack of monetary wealth in relation to the scale of industry. In other words, places in the capitalist 'periphery' engage in industry that is outside the control of global finance.</p>\n<p>With this revision of world-systems theory in hand, let's turn to the global empirical evidence. Widespread international data for the business-to-industry index becomes available only in 1990. Fortunately, this year is significant, as it marked the date when the Soviet Union began to collapse. Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-1990\">7</a> shows the business-to-industry picture at that moment.</p>\n<p><a id=\"fig-world-1990\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/world_map_1990.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 7: The business-to-industry index across countries in 1990.</strong> In 1990, Western Europe was the most business-dominated region on Earth. True, the US was then the unquestioned world hegemon; however, as we'll see shortly, it is the coasts of the United States where business power resides. (The rest of the country is a rather different place.) In 1990, decades of communist policy had made Asia was the most industry-dominated region. Note that the business-to-industry index is plotted on a log scale. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p>Looking at this data, we find that the 'core' of the capitalist system resides largely in the collective 'West' (Europe, North America, and Australia), exactly where we expect. Still, there are some surprises. For example, it appears that in 1990, Western Europe was more central to global capitalism than was the United States. Is that really true? Kind of. What the data is actually telling us is that when it comes to business dominance, the United States is not really one country. More on this disunity in a moment.</p>\n<p>By 2023, the capitalist world system had changed appreciably. Some of this change is discernible by eyeballing the 2023 business-to-industry data, shown in Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-2023\">8</a>. But in my mind, the degree of global change is best captured by Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-change\">9</a>, which plots the percentage change in each country's business-to-industry index between 1990 and 2023.</p>\n<p><a id=\"fig-world-2023\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/world_map_2023.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 8: The business-to-industry index across countries in 2023.</strong> Although broadly similar to the 1990 picture, the business-to-industry world map of 2023 is subtly different. In particular, decades of monetization have left Asia less industry-dominated. Note that for comparison purposes, this chart uses the same color scale as in Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-1990\">7</a>. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p><a id=\"fig-world-change\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/world_map_change.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 9: Percentage change in the business-to-industry index, 1990 to 2023.</strong> This chart isolates the eastward shift in global capitalism. In Asia, formerly communist states, including communist-in-name-only China, have seen their business-to-industry indexes rise dramatically over the last forty years. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p>When we stare at this data, it becomes clear that after 500 years of Western hegemony, the center of global capital is shifting eastward. It's future home will almost certainly be in China. Yes, the US and Western Europe continue to ride the long coat-tails of their imperial power. But expect this advantage to wane. When Shanghai becomes the center of global capital, those who keep financial tollbooths in New York and London will probably find that their business runs dry.</p>\n<h4 id=\"the-disunited-states\">The (dis)United States</h4>\n<p>Given that the United States is the waning global hegemon, much of the world remains glued to the intricacies of US politics. Of course, most of the unfolding US drama is pure idiocy that's not worth discussing. But beyond the drivel issued by individual politicians, there is a comprehensible structure to US politics \u2014 one that paints a picture of growing disunity. True, the rise of <a href=\"https://leedrutman.substack.com/p/the-moderation-debate-fiddles-with\" target=\"_blank\">stark American partisanship</a> is well recognized. But what's less understood is the fact that the US partisan divide now plays out along a structural schism in US capitalism.</p>\n<p>Let me make the case. In Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-state-map-2023\">10</a> I've mapped the business-to-industry index among US states in 2023. My choice of colors and scale is designed to evoke a fairly startling conclusion: across states, the business-to-industry index seems to align with partisan politics. To convince ourselves that this relation is no trick of the eye, Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-prez\">11</a> shows how each state's business-to-industry index relates to the results of the 2024 presidential election. It seems that the more business-dominated the state, the more it swung for Kamala Harris over Donald Trump.</p>\n<p><a id=\"fig-state-map-2023\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/state_map_2023.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 10: The business-to-industry index among US states in 2023.</strong> This chart shows the geographic divisions of US capitalism, as captured by the business-to-industry index. My choice of color scale is designed to highlight the connection with US politics. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p><a id=\"fig-prez\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/prez.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 11: The 2024 presidential vote fell along business-to-industry lines.</strong> The vertical axis shows the Harris-to-Trump state margin in the 2024 US presidential election. (Point color shows the same variable.) The horizontal axis plots the state business-to-industry index in 2023. Note the log scale. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p>What should we make of this structural schism? For starters, the geographic shape of US capitalism is nothing new. That is, US coastal regions have long been places of business, while the interior of the country has traditionally been a place of industry. Instead, what's new is the fact that partisan politics have become divided along capitalism's structural lines. This was not always so.</p>\n<p>Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-leg-scatter\">12</a> shows the evolving relation between partisanship in US state legislatures and the state business-to-industry index. Back in 1960, the relationship was muddy but slightly reversed from today. More business-dominated states tended to vote Republican, while more industry-dominated states (traditionally in the South) tended to vote Democrat. However, over the ensuing decades, this relation slowly reversed and then tightened in the opposite direction. Today, more business-dominated states overwhelmingly vote Democrat, while more industry-dominated states are staunchly Republican.</p>\n<p><a id=\"fig-leg-scatter\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/leg_scatter.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 12: The transformation of US partisan politics along business-to-industry divisions.</strong> In each panel, the vertical axis shows the partisan split of US state legislatures. (This split is also indicated by point color.) The horizontal axis shows the state business-to-industry index. (Note the log scale.) In 1960, more industry-dominated states (traditionally in the South) tended to vote Democrat, while more business-dominated states tended to vote Republic. But this relation was fairly muddy. Over the ensuing decades, the relation reversed, and then tightened markedly in the opposite direction. Today, the most business-dominated states are Democrat strongholds, and industry-dominated states are Republican bastions. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p>So what does this geographic schism tell us? Well, it suggests that in political terms, the US is no longer one country. The business-dominated coasts of the US remain committed to the cosmopolitan ideals that invariably exist at the core of empire. Meanwhile, the rest of the country has rejected these ideals and turned increasingly to (let's face it) American-flavored fascism.</p>\n<p>How does this schism play out? Well, it either gets worse, leading to the fracture of the union and potential civil war, or it gets better, leading to renewed national unity. For his part, Trump is pushing the country towards dissolution. (He relishes attacking blue states.) Meanwhile, a determined group of leftists are trying to wrench the Democratic party from its corporate overlords so that they can push mildly socialist policies (that are wildly popular). If these leftists succeed, it's possible that unity could return to US politics. In either case, watch this space.</p>\n<h4 id=\"another-look-at-the-capitalist-world-system\">Another look at the capitalist world system</h4>\n<p>Now that you've indulged my tangent on American politics, let me return to my original reason for calculating the business-to-industry index across US states. Back in Figures\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-1990\">7</a> and <a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-2023\">8</a>, the international data indicated that Western Europe was more business dominated than the United States. This is true but misleading \u2014 an artifact of aggregation.</p>\n<p>When we disaggregate the US into its constituent states, we get the more satisfying picture of the capitalist world system, shown in Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-map-us-states\">13</a>. In 2023, the core of global capitalism was located in Western Europe and along both seaboards of the United States. These are the most business-dominated places on Earth.</p>\n<p><a id=\"fig-world-map-us-states\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/world_map_us_states.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 13: The capitalist world system of 2023.</strong> This chart replots the business-to-industry data from Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-2023\">8</a>, with two important changes. First, I've restricted the color scale to match the scope of the 2023 data. Second, I've disaggregated the US into its constituent states. The results nicely highlight the geography of modern global capitalism, which remains centered in Western Europe and the seaboards of the United States. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p>Continuing the analysis, Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-top-combine\">14</a> eschews maps for a quantitative summary of business dominance. Overall, this list of the twenty most business-dominated regions is composed largely of US states and Western European countries.</p>\n<p>Washington DC, the center of US power, tops the list \u2014 a fitting nod to the fact that business success is forged in large part by state power. Moving down the list we find Ireland, Switzerland, Hong Kong, and Malta \u2014 all notable hubs of finance and tax evasion. Continuing down the list, we get the US coastal states, along with familiar powers of Western Europe. The colonial state of Israel also comes along for the ride, as does the <a href=\"https://en.wikipedia.org/wiki/Panama_Papers\" target=\"_blank\">infamous tax haven</a> of Panama. All in all, these business-dominated regions are places of white-collar activity, just as we'd expect. To do 'business' in the Veblenian sense is not to run machines or to build factories; to do 'business' is to manipulate property rights from inside a downtown office.</p>\n<p><a id=\"fig-top-combine\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/top_combine.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 14: The most business-dominated regions in modern capitalism.</strong> Looking at the twenty most business-dominated regions on Earth, whiskers show the range of the business-to-industry index between 2019 and 2023. Points show the geometric mean over this period. Note the log scale on the horizontal axis. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p>Now, before we make too much of this business-dominated list, it's important to recognize that political boundaries necessarily affect the analysis. In terms of physical geography, cities are the locus of business power. So if we draw a political boundary around a city (as with Washington DC), its business-to-industry index will tend to be higher than if we extend the boundary into the industrial hinterland.</p>\n<p>Because of this issue, the best way to study the business-to-industry index would be to calculate it for units of constant geographic area. Unfortunately, the requisite statistical data (particularly data for energy consumption) is usually restricted to large-scale political boundaries. So while we might like to know the business-to-industry index of Shanghai or Lower Manhattan, such fine-grain data will likely remain difficult to come by.</p>\n<p>In the same vein, large countries like China almost certainly have business-to-industry schisms similar to what's found across the United States (Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-state-map-2023\">10</a>). Untangling these divisions is an important job for the future. (Quantitative researchers, take note!)</p>\n<h3 id=\"our-bottom-heavy-world\">Our bottom-heavy world</h3>\n<p>If you ask a New York financier why their income is so fat, they'll probably echo some neoclassical trope about having 'generated' their earnings through skill and hard work. Likewise, if you asked a feudal lord why they control so many serfs, they'd respond that doing so is their god-given birthright. In both cases, the response has an obvious purpose: to provide an ideological justification for (otherwise arbitrary) power and privilege.</p>\n<p>For critics of social injustice, the temptation is to subvert these dominant ideologies by appealing to some (but not all) of their basic tenets. Thus, the critic of feudalism might accept that god gave rights to men, but claim that these rights are distributed equally. Likewise, the critic of capitalism might accept that value is 'produced', but propose that elites are appropriating value created by others. Such arguments make for good rhetoric because they retain enough of the dominant ideology that they remain comprehensible to the indoctrinated mind. Still, these arguments are a scientific dead end; they gain rhetorical power by conceding basic untruths. We humans make our own rights, just as we impose onto the world our own abstract quantities of monetary value.</p>\n<p>To scientifically study a social order, I think it is essential to eschew rhetorical tricks and instead adopt some form of dual measurement that contrasts the dominant accounting scheme with an alternative way of measuring the world. In capitalism, the dominant accounting scheme is, of course, money. In contrast, the alternative account could be anything non-monetary (provided that thing is objectively measurable). That said, energy consumption is particularly meaningful because of its biophysical significance. Energy is what keeps life from devolving into a pool of entropic mud. Energy is the 'go of things' \u2026 the 'master resource'.</p>\n<p>Returning to the notion of 'justness', when we contrast monetary value with energy consumption, it's conceivable that we might find a picture that's balanced. Imagine, if you will, the world of Isaac Asimov's <a href=\"https://asimov.fandom.com/wiki/Spacers\" target=\"_blank\">'spacers'</a> \u2014 future humans who are dispersed on plantation-like compounds in which armies of robots do virtually all the work. Supposing that these spacer compounds exchanged money, we might find that the business-to-industry index was fairly balanced among them.</p>\n<p>Of course, the real world of 21st century capitalism looks rather different. In our world, places of 'business' are not dispersed plantations manned by robots. They are not even factories manned by ordinary humans. No, places of 'business' consist of shining office towers inside which humans buy, sell, and manage property rights. Places of 'business' are invariably places of finance. Because of this reality, it follows that the geography of capitalism cannot be 'balanced'. By definition, centers of finance are hubs of exclusion \u2014 places that exist because only the few can inhabit them.</p>\n<p>Testifying to this exclusion, when we run the numbers on the population-weighted distribution of the business-to-industry index, we find that less than a quarter of the world's population inhabit business dominated regions. What's more, less than 1% of the population live in regions where the business-to-industry index exceeds four (the territory of financial hubs like Hong Kong, Switzerland and Ireland, and government hubs like Washington DC). Meanwhile, more than three quarters of the world's population live in places of industry dominance. Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-bti-population\">15</a> paints this picture of our bottom-heavy world.</p>\n<p><a id=\"fig-bti-population\"></a></p>\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2026/09/bti_population.png?w=723&amp;ssl=1\"/><figcaption><strong>Figure 15: The population-weighted distribution of the business-to-industry index in 2023.</strong> This chart estimates the portion of the world's population that live in regions with the given business-to-industry index. Less than a quarter of the world's people live in business-dominated regions, while more than three quarters live in industry-dominated regions. [<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#sources-and-methods\" target=\"_blank\">Sources and methods</a>]</figcaption></figure>\n<p>Let me summarize the main message. In real-world capitalism, the 'normal' human experience is to work hard for little financial gain. Only the lucky few rake in money with their feet up. Here, it's tempting to imagine some unseen flow of value that gets sent from the hard workers to the leisure class. But no such flow exists. The exploitation in capitalism (if it exists) lies in the nature of property rights themselves \u2014 rights which allow the hoarding of monetized institutional power. Industry for the many. Business for the few.</p>\n<hr/>\n<h4>Support this blog </h4>\n<p> Hi folks, Blair Fix here. I'm a crowdfunded scientist who shares all of my (painstaking) research for free. If you think my work has value, consider becoming a supporter. You'll help me continue to share data-driven science with a world that needs less opinion and more facts.</p>\n<p><a href=\"https://economicsfromthetopdown.com/membership/\" rel=\"noopener\" target=\"_blank\"><img alt=\"member_button\" class=\"aligncenter\" data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2023/05/supporter_button-1.png?w=220&amp;ssl=1\"/></a></p>\n<hr/>\n<h4>Stay updated</h4>\n<p>Sign up to get email updates from this blog.</p>\n<div class=\"jetpack_subscription_widget\"><h2 class=\"widgettitle\"></h2>\n<div class=\"wp-block-jetpack-subscriptions__container\">\n<form accept-charset=\"utf-8\" action=\"#\" data-blog=\"160901125\" data-post_access_level=\"everybody\" id=\"subscribe-blog-1\" method=\"post\">\n<p id=\"subscribe-email\">\n<label class=\"screen-reader-text\" for=\"subscribe-field-1\" id=\"jetpack-subscribe-label\">\n\t\t\t\t\t\t\tEmail Address\t\t\t\t\t\t</label>\n<input autocomplete=\"email\" id=\"subscribe-field-1\" name=\"email\" placeholder=\"Email Address\" required=\"required\" type=\"email\" value=\"\"/>\n</p>\n<p id=\"subscribe-submit\">\n<input name=\"action\" type=\"hidden\" value=\"subscribe\"/>\n<input name=\"source\" type=\"hidden\" value=\"https://economicsfromthetopdown.com/feed/atom/\"/>\n<input name=\"sub-type\" type=\"hidden\" value=\"widget\"/>\n<input name=\"redirect_fragment\" type=\"hidden\" value=\"subscribe-blog-1\"/>\n<input id=\"_wpnonce\" name=\"_wpnonce\" type=\"hidden\" value=\"9fbcde05c4\"/><input name=\"_wp_http_referer\" type=\"hidden\" value=\"/feed/atom/\"/> <button class=\"wp-block-button__link\" name=\"jetpack_subscriptions_widget\" style=\"margin: 0; margin-left: 0px;\" type=\"submit\">\n\t\t\t\t\t\t\tKeep me up to date\t\t\t\t\t\t</button>\n</p>\n</form>\n</div>\n</div>\n<hr/>\n<p><a href=\"http://creativecommons.org/licenses/by/4.0/\" rel=\"license\"><img class=\"aligncenter\" data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/economicsfromthetopdown.com/wp-content/uploads/2021/03/by.png?w=150&amp;ssl=1\"/></a><br/>This work is licensed under a <a href=\"http://creativecommons.org/licenses/by/4.0/\" rel=\"license\">Creative Commons Attribution 4.0 License</a>. You can use/share it anyway you want, provided you attribute it to me (Blair Fix) and link to <a href=\"https://economicsfromthetopdown.com/\">Economics from the Top Down</a>.</p>\n<hr/>\n<h3 id=\"sources-and-methods\">Sources and methods</h3>\n<p>Want to have a closer look at my business-to-industry data? You can download it <a href=\"https://sciencedesk.economicsfromthetopdown.com/data/2026/bti/bti_data.zip\" target=\"_blank\">here</a>.</p>\n<h4 id=\"world-income\">World income</h4>\n<p>I measure world income in terms of world nominal GDP, denominated in US dollars. Data from 1960 onward is (relatively) unproblematic and comes from the World Bank, series <a href=\"https://data.worldbank.org/indicator/NY.GDP.MKTP.CD\" target=\"_blank\">NY.GDP.MKTP.CD</a> \u2014 GDP in current US dollars. Note that the measure of nominal world GDP is influenced by the exchange rate for local currencies. This is a desired effect. To isolate Veblenian 'business', we want a pure measure of financial income, one that makes no attempt to 'correct' for local currency value (and its associated local purchasing power).</p>\n<p>As we attempt to measure nominal world GDP for earlier periods, things become more difficult. First, there are some fundamental conceptual problems. For example, prior to the American Revolution (which began in 1775) there was no such thing as an 'American dollar'. Hence, calculating nominal GDP in US dollars involves assuming some currency value for a currency that did not actually exist. Typically, that's done by fixing (and projecting back in time) later exchange rates that do exist.</p>\n<p>Second, economic historians tend to be disinterested in nominal incomes. Instead, they use incomes and prices to estimate <em>living standards</em>. Case in point, the <a href=\"https://www.rug.nl/ggdc/historicaldevelopment/maddison/?lang=en\" target=\"_blank\">Maddison project</a> (an extension of the historian <a href=\"https://en.wikipedia.org/wiki/Angus_Maddison\" target=\"_blank\">Angus Maddison's</a> seminal work) has extensive data for historical GDP, but it is measured in terms of <a href=\"https://en.wikipedia.org/wiki/Purchasing_power_parity\" target=\"_blank\">purchasing power parity</a>. The idea is that across countries, one measures GDP relative to a price index calculated from the same basket of goods.</p>\n<p>Now in theory, if researchers published their purchasing power indexes for each country, one could use these indexes to 'undo' their inflation adjustment. By doing so, we could recomputed a satisfying measure of world nominal GDP. Unfortunately, the Maddison project does not (to my knowledge) publish its internal data for purchasing power parity. As such, we must hack our way to a measure of nominal world GDP.</p>\n<p>The way I create this hack is by first calculating a time series for the US GDP deflator using the following data:</p>\n<ul>\n<li>1929 to 1960: FRED series <a href=\"https://fred.stlouisfed.org/series/A191RD3A086NBEA\" target=\"_blank\">A191RD3A086NBEA</a>;\n</li>\n<li>1800 to 1928: Historical Statistics of the United States, Millennial Edition, calculated using the ratio between nominal GDP (series Ca10) and real GDP (series Ca9);\n</li>\n<li>1790 to 1799: Historical Statistics of the United States, Millennial Edition, CPI series Cc1. (I use the consumer price index as a proxy for the GDP deflator.)\n</li>\n<li>1209 to 1789: <em>Measuring Worth</em> data for the British <a href=\"https://www.measuringworth.com/datasets/ukearncpi/\" target=\"_blank\">retail price index</a>. Prior to the existence of the US dollar, this British price-index data serves as a kind of 'global deflator' for Maddison's US-dollar denominated real GDP.\n</li>\n</ul>\n<p>Next, I take the US GDP deflator data and use it to convert Maddison's global 'real GDP' data into nominal dollars. I use the following Maddison GDP data:</p>\n<ul>\n<li>1820 to 1959: Maddison Project database, via <a href=\"https://ourworldindata.org/grapher/gdp-maddison-project-database\" target=\"_blank\">Our World in Data</a>;\n</li>\n<li>1700 to 1819: Archived data from <a href=\"https://www.rug.nl/ggdc/historicaldevelopment/maddison/releases/maddison-database-2010\" target=\"_blank\">Angus Maddison</a>. (I interpolate this data annually.)\n</li>\n</ul>\n<p>Finally, I splice the nominalized Maddison data backwards from the modern World Bank GDP data. Because this historical data involves a rather heavy-handed hack, one should treat it with appropriate uncertainty.</p>\n<h4 id=\"british-income\">British income</h4>\n<p>Data for British income is calculated using <a href=\"https://www.measuringworth.com/datasets/ukgdp/\" target=\"_blank\">nominal GDP data from <em>Measuring Worth</em></a>. I use what they call the 'consistent series', which presumes consistent political boundaries for the 'United Kingdom'. This data is denominated in British pounds. I convert the GDP data to US dollars using <em>Measuring Worth</em> data for the <a href=\"https://www.measuringworth.com/datasets/exchangepound/\" target=\"_blank\">dollar-pound exchange rate</a>. For data prior to 1791, I fixed the dollar-pound exchange rate at its 1791 value (4.55 dollars per pound).</p>\n<h4 id=\"united-states-income\">United States income</h4>\n<p>Data for US income (nominal GDP) is calculated using the following sources:</p>\n<ul>\n<li>1947 to 2025: FRED series <a href=\"https://fred.stlouisfed.org/series/GDP\" target=\"_blank\">GDP</a>;\n</li>\n<li>1800 to 1946: Historical Statistics of the United States, Millennial Edition, series Ca10;\n</li>\n<li>1790 to 1799: Historical Statistics of the United States, Millennial Edition, series Ca9. This is 'real' GDP data that I convert to nominal GDP using the US consumer price index (Historical Statistics of the United States, Millennial Edition, CPI series Cc1).\n</li>\n</ul>\n<h4 id=\"china-income\">China income</h4>\n<p>Data for Chinese income (nominal GDP) is from China's <a href=\"https://www.stats.gov.cn/english/\" target=\"_blank\">National Bureau of Statistics</a>, using the series marked \"Gross Domestic Product (100 million yuan)\". I convert yuan into dollars using <a href=\"https://data.imf.org/en/Data-Explorer?datasetUrn=IMF.STA:ER(4.0.1)\" target=\"_blank\">exchange rate data from the IMF</a>, series CHN.USD_XDC.PA_RT.A.</p>\n<h4 id=\"international-income\">International income</h4>\n<p>To create the global maps of the business-to-industry index (Figures\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-1990\">7</a>, <a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-2023\">8</a> <a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-change\">9</a>, <a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-map-us-states\">13</a>) I use nominal GDP data from the World Bank, series <a href=\"https://data.worldbank.org/indicator/NY.GDP.MKTP.CD\" target=\"_blank\">NY.GDP.MKTP.CD</a> (GDP in current US dollars).</p>\n<h4 id=\"us-state-income\">US state income</h4>\n<p>State income (nominal GDP) is from the following source:</p>\n<ul>\n<li>1997 to 2025: Bureau of Economic Analysis, series SAGDP1 (state annual gross domestic product)\n</li>\n<li>1960 to 1996: Burea of Economic Analysis, series SAINC1 (state annual personal income), spliced to the GDP data above\n</li>\n</ul>\n<h4 id=\"world-energy-use\">World energy use</h4>\n<p>Data is from the following sources:</p>\n<ul>\n<li>1800 to 2024: Our World in Data, <a href=\"https://ourworldindata.org/energy-production-consumption\" target=\"_blank\">Energy Production and Consumption</a>;\n</li>\n<li>prior to 1800: Data is from Ian Morris' book <a href=\"https://archive.org/details/measureofciviliz0000morr\" target=\"_blank\">The Measure of Civilization</a>, Tables 3.1 &amp; 3.4. Morris reports data for energy use per capita in the East and West. Using population data from <a href=\"https://www.rug.nl/ggdc/historicaldevelopment/maddison/releases/maddison-database-2010\" target=\"_blank\">Angus Maddison</a>, I aggregate Morris' data to estimate world energy use. Then I splice this data to the OWID data from 1800.\n</li>\n</ul>\n<h4 id=\"britain-energy-consumption\">Britain energy consumption</h4>\n<p>Data is from the following sources:</p>\n<ul>\n<li>1965 to present: Energy Institute <a href=\"https://www.energyinst.org/statistical-review\" target=\"_blank\">Statistical Review of World Energy</a>\n</li>\n<li>prior to 1965: data is from Paul Warde, <a href=\"https://www.histecon.magd.cam.ac.uk/history-sust/energyconsumption/\" target=\"_blank\">Energy consumption in England and Wales, 1560-2000</a>\n</li>\n</ul>\n<h4 id=\"us-energy-consumption\">US energy consumption</h4>\n<p>Data is from the following sources:</p>\n<ul>\n<li>1949 to 2025: Energy Information Agency, <a href=\"https://www.eia.gov/totalenergy/data/annual/\" target=\"_blank\">Table 1.3</a>, Primary energy consumption estimates by source;\n</li>\n<li>1789 to 1949: Appendix E1 in the EIA 2009 Annual Energy Review (available <a href=\"https://www.eia.gov/totalenergy/data/annual/archive/\" target=\"_blank\">here</a>).\n</li>\n</ul>\n<h4 id=\"china-energy-consumption\">China energy consumption</h4>\n<p>Data is from the following sources:</p>\n<ul>\n<li>1965 to present: Energy Institute <a href=\"https://www.energyinst.org/statistical-review\" target=\"_blank\">Statistical Review of World Energy</a>\n</li>\n<li>1954 to 1964: China's <a href=\"https://www.stats.gov.cn/english/\" target=\"_blank\">National Bureau of Statistics</a>. I use the series called \"Total Energy Consumption (10000 tons of SCE)\". For the unfamiliar, SCE stands for 'standard coal equivalent'.\n</li>\n</ul>\n<h4 id=\"international-energy-consumption\">International energy consumption</h4>\n<p>To create the global maps of the business-to-industry index (Figures\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-1990\">7</a>, <a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-2023\">8</a> <a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-change\">9</a>, <a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-map-us-states\">13</a>) I use per capita energy use data from World Bank (series EG.USE.PCAP.KG.OE, kg of oil equivalent per capita) multiplied by World Bank population data (series SP.POP.TOTL). From these results, I exclude nonsensical data where per capita daily energy use is less than the basic food-energy requirement of 2000 kilocalories per day.</p>\n<h4 id=\"us-state-energy-consumption\">US state energy consumption</h4>\n<p>US state energy use data is from the Energy Information Agency, <a href=\"https://www.eia.gov/state/seds/seds-data-complete.php?sid=US#Consumption\" target=\"_blank\">State Energy Data System</a>, series TETCB.</p>\n<h4 id=\"us-presidential-vote-2024\">US presidential vote, 2024</h4>\n<p>State voting outcomes are from <a href=\"https://www.ballotwire.com/electiondatavisualizations/2024-us-presidential-election-results-by-state-party-margin\" target=\"_blank\">BallotWire</a>.</p>\n<h4 id=\"state-legislature-composition\">State legislature composition</h4>\n<p>Data for the composition of US state legislatures sums seats in both houses and excludes Nebraska (whose legislature is officially non-partisan). Data comes from the following sources:</p>\n<ul>\n<li>1934 to 2021: Philip Thomas's <a href=\"https://github.com/psthomas/state-partisan-composition\" target=\"_blank\">github repository</a>;\n</li>\n<li>2022 to present: scraped from the NCSL via its <a href=\"https://app.powerbi.com/view?r=eyJrIjoiZWQ5NDAwYzMtOWMwNC00ZDBkLTg3YzgtYjQxMGIxMDFmN2E4IiwidCI6IjM4MmZiOGIwLTRkYzMtNDEwNy04MGJkLTM1OTViMjQzMmZhZSIsImMiOjZ9\" target=\"_blank\">tortuously awful web interface</a> that for some inexplicable reason, lacks a 'download data' button.\n</li>\n</ul>\n<h4 id=\"population-weighted-distribution-of-the-business-to-industry-index\">Population-weighted distribution of the business-to-industry index</h4>\n<p>My calculations in Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-bti-population\">15</a> are based on the international business-to-industry data plotted in Figure\u00a0<a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fig-world-map-us-states\">13</a>, which disaggregates the US into its constituent states. To weight by population, I use country population data from the World Bank (series SP.POP.TOTL) and US state population from FRED. The weighted distribution can be conveniently calculated in one line with R's <code>density</code> function, which includes a term for <code>weights</code>.</p>\n<h3 id=\"notes\">Notes</h3>\n<div class=\"footnotes footnotes-end-of-document\" id=\"footnotes\" role=\"doc-endnotes\">\n<ol>\n<li id=\"fn1\">I should point out that all the charts in this essay plot the business-to-industry index on a log scale, because such a scale gives the index symmetry. That is, a business-to-industry index of 2:1 (business dominance) should mirror a business-to-industry index of 1:2 (industry dominance). Only the log scale preserves this symmetry.<a class=\"footnote-back\" href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fnref1\" role=\"doc-backlink\" target=\"_blank\"><img alt=\"\u21a9\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em; max-height: 1em;\"/>\ufe0e</a>\n</li>\n<li id=\"fn2\">In a mainstream context, the 'rate of profit' is synonymous with the 'profit margin' \u2014 profit as a share of revenue. However, when Marx spoke of a falling 'rate of profit', he was referring to a different ratio \u2014 profit as a share of the <em>capital stock</em>. The problem with Marx's thinking is that his denominator is an amorphous quantity.\n<p>If we look at the stock of capital that capitalists themselves care about \u2014 market capitalization \u2014 the rate of profit has not fallen. And that's by design; profit is what owners use to perform their <a href=\"https://economicsfromthetopdown.com/2021/06/02/the-ritual-of-capitalization/\" target=\"_blank\">ritual of capitalization</a>. If instead we impute a more expansive concept of 'capital' that somehow aggregates across all capital goods, well there we run into trouble. First, owners don't actually care about this form of 'capital', so it's unclear why it matters. Second, aggregating capital goods is a fools errand, since it depends circularly on prices, as the <a href=\"https://en.wikipedia.org/wiki/Cambridge_capital_controversy\" target=\"_blank\">Cambridge capital controversy</a> revealed. (For a nice demonstration of this aggregation problem, see Nitzan and Bichler's discussion in <a href=\"https://blairfix.github.io/capital_as_power/accumulation-of-what.html\" target=\"_blank\">Chapter 8</a> of <em>Capital as Power</em>.)<a class=\"footnote-back\" href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fnref2\" role=\"doc-backlink\" target=\"_blank\"><img alt=\"\u21a9\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em; max-height: 1em;\"/>\ufe0e</a>\n</p></li>\n<li id=\"fn3\">In <a href=\"https://en.wikipedia.org/wiki/Capitalism,_Alone\" target=\"_blank\"><em>Capitalism Alone</em></a>, Milanovi\u0107 notes how the real-world use of communism turned Marx's thinking on its head. In historical terms, he observes that communism is a \"social system that enabled backward and colonized societies to abolish feudalism, regain economic and political independence, and build indigenous capitalism\".<a class=\"footnote-back\" href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fnref3\" role=\"doc-backlink\" target=\"_blank\"><img alt=\"\u21a9\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em; max-height: 1em;\"/>\ufe0e</a>\n</li>\n<li id=\"fn4\">In world-systems theory, the (presumed) flow of surplus value means that trade between the periphery and the core is unequal. Dollar for dollar, commodities shipped from the periphery to the core have more embodied labor value than the commodities shipped from the core to the periphery.\n<p>Setting aside the unmeasurable notion of 'labor value', there are many <em>measurable</em> ways in which core-periphery trade is unequal. <a href=\"https://portal.research.lu.se/en/persons/alf-hornborg/\" target=\"_blank\">Alf Hornborg</a> has done much of the seminal work here. For example, his paper <a href=\"https://economicsfromthetopdown.com/wp-content/uploads/2026/09/j.ecolecon.2005.10.009.pdf\" target=\"_blank\">'Footprints in the cotton fields'</a> shows how during the early 19th century, British colonial trade was unequal in terms of the exchange of embodied land and embodied labor time (measured in simple hourly terms). More recently, <a href=\"https://doi.org/10.1016/j.gloenvcha.2022.102467\" target=\"_blank\">Jason Hickel and colleagues</a> have found similar unequal patterns in modern world trade.</p>\n<p>While I laud this sort of empirical work, there's a sense in it concedes too much to neoclassical economics. What I mean is that by stressing 'unequal' trade, the analysis presumes that monetary exchange could (and perhaps should) be equal. But this is <em>never</em> true. Instead, the belief in equivalent exchange is the central tenet of capitalist ideology. That is, capitalism consists of an ideology in which property rights are denominated in units of money. It follows, therefore, that monetary exchange is ideologically defined to be equal. So by definition, when I pay $100 for something, I get back $100 worth of property. But since this numerical agreement is an ideological construct, we expect that it is the <em>only</em> part of the exchange that is equal. Every other measurable quantity will be unequal (to differing degrees). So in capitalism, unequal exchange is the norm.</p>\n<p>Now, there's a sense in which the quantitative nature of capitalism masks the ubiquity of unequal exchange. Things become more obvious when the ideology is qualitative. For examples, Catholics agree that during communion, a blessed wafer becomes 'the Body of Christ'. But suppose that a devout Catholic becomes convinced that a blessed Corvette is also 'the Body of Christ'. This fellow might then exchange a Corvette for a wafer, thinking the exchange 'equal'. But of course, that's absurd. The 'equivalence' is an ideological agreement. Everything else about the exchange is unequal.</p>\n<p>So yes, world-systems theorists are correct that trade between the 'core' and the 'periphery' is unequal, in the same way that when a CEO hires a cleaner, a tiny portion of his annual salary buys a whole year of the cleaner's time. That's an unequal exchange of labor time. But then again, this is a rather laborious way to restate what we already know: the CEO's hourly income is much greater than the cleaner's.</p>\n<p>(Sidenote: This tendency to laboriously restate what stares us in the face is one of Marx's worst legacies. Marx got the ball rolling by defining worker's value-creating ability as the sum of their embodied commodity consumption, which is a laborious way of recalculating wages, which we already knew.)</p>\n<p>In a more general sense, the notion of 'unequal exchange' is useful if we focus on commodity trade. However, it becomes unwieldy when we <a href=\"https://capitalaspower.com/2021/05/cherizola-from-commodities-to-assets/\" target=\"_blank\">focus on the flow of <em>assets</em></a>. For example, when Apple shifts its profits to Ireland by selling (dubious) intellectual property to an Irish subsidiary, there is nothing of substance being 'traded'. Instead, Apple is simply moving assets around to juice its US tax return. From these transactions, Irish lawyers and accountants then make a killing.</p>\n<p>To call these shenanigans an 'unequal exchange' is to remain stuck in Marx's 19th-century world of commodity production. Indeed, it is to concede too much to neoclassical ideology, which frames market transactions as an extension of simple barter. For capitalists, monetary transactions are not a tool for 'exchange'. They are a tool for organizing power through the purchase and sale of property rights. Or put another way, unequal commodity exchange is a tiny subset of the wider world of unequal power.<a class=\"footnote-back\" href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism//#fnref4\" role=\"doc-backlink\" target=\"_blank\"><img alt=\"\u21a9\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em; max-height: 1em;\"/>\ufe0e</a>\n</p></li>\n</ol>\n</div>\n<h3>Further reading</h3>\n<p class=\"references csl-bib-body hanging-indent\" data-entry-spacing=\"0\" data-line-spacing=\"2\" id=\"refs\" role=\"list\">\n<p class=\"csl-entry\" id=\"ref-arrighi_long_2010\" role=\"listitem\">\nArrighi, G. (1994). <em>The long twentieth century: Money, power, and the origins of our times</em>. Verso.\n</p>\n<p class=\"csl-entry\" id=\"ref-fix_ritual_2021\" role=\"listitem\">\nFix, B. (2021). The ritual of capitalization. <em>Real-World Economics Review</em>, (97), 78\u201395.\n</p>\n<p class=\"csl-entry\" id=\"ref-milanovic_capitalism_2019\" role=\"listitem\">\nMilanovic, B. (2019). <em>Capitalism, alone: The future of the system that rules the world</em>. Harvard University Press.\n</p>\n<p class=\"csl-entry\" id=\"ref-nitzan_capital_2009\" role=\"listitem\">\nNitzan, J., &amp; Bichler, S. (2009). <em>Capital as power: A study of order and creorder</em>. New York: Routledge.\n</p>\n<p class=\"csl-entry\" id=\"ref-veblen_absentee_1923\" role=\"listitem\">\nVeblen, T. (1923). <em>Absentee ownership: Business enterprise in recent times: The case of <span>America</span></em>. Transaction Pub.\n</p>\n<p class=\"csl-entry\" id=\"ref-wallerstein_world_2020\" role=\"listitem\">\nWallerstein, I. (2020). <em>World-systems analysis: An introduction</em>. Duke University Press.\n</p></p>\n<p>The post <a href=\"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism/\">The Business-to-Industry Index and the Geography of Global Capitalism</a> appeared first on <a href=\"https://economicsfromthetopdown.com\">Economics from the Top Down</a>.</p>","doi":"https://doi.org/10.59350/a041p-74c68","guid":"https://economicsfromthetopdown.com/?p=15626","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","published_at":1789776000,"rid":"08vre-23926","summary":"Your browser does not support the audio tag. Download: PDF | EPUB | MP3 | WATCH VIDEO <em> 'Industry' and 'business' \u2026 are not synonyms \u2026 they are opposing realms of human activity </em> . \u2014 Jonathan Nitzan and Shimshon Bichler A defining feature of neoclassical economics is that it treats 'business' and 'industry' as synonyms.","tags":["Business-to-industry Index","Capital As Power","Communism","Empire","Energy"],"title":"The Business-to-Industry Index and the Geography of Global Capitalism","updated_at":1789889407,"url":"https://economicsfromthetopdown.com/2026/09/19/the-business-to-industry-index-and-the-geography-of-global-capitalism/","version":"v1"},{"authors":[{"affiliation":[{"name":"Public Knowledge Project"}],"contributor_roles":[],"family":"Alperin","given":"Juan Pablo","url":"https://orcid.org/0000-0002-9344-7439"}],"blog":{"authors":null,"community_id":"1b84e1b5-c7ff-432d-844f-32e175e0f7c4","created":1690675200,"current_feed_url":null,"description":null,"doi":"https://doi.org/10.59350/scholcommlab","favicon":"https://rogue-scholar.org/api/communities/1b84e1b5-c7ff-432d-844f-32e175e0f7c4/logo","feed_format":"application/atom+xml","feed_url":"https://www.scholcommlab.ca/feed/atom/","filter":null,"generator":"WordPress","home_page_url":"https://www.scholcommlab.ca","issn":null,"language":"eng","license":"https://creativecommons.org/licenses/by/4.0/legalcode","prefix":"10.59350","relative_url":null,"secure":true,"slug":"scholcommlab","status":"active","subfield":"1802","title":"Scholarly Communications Lab | ScholCommLab","updated":1789598624,"use_api":true},"blog_name":"Scholarly Communications Lab | ScholCommLab","blog_slug":"scholcommlab","content_html":"<p class=\"wp-block-paragraph\"><span style=\"font-weight: 400;\">As we <a href=\"https://www.scholcommlab.ca/2026/09/01/defining-preprints-and-preprint-servers-mapping-an-inconsistent-landscape/\" target=\"_blank\" rel=\"noopener\">recently wrote</a>, there is really no agreed-upon definition of what a preprint is. And even if we could agree, it would not settle the question of what constitutes a preprint server. As we have been looking to </span><a href=\"https://www.scholcommlab.ca/research/preprints/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">study preprints</span></a><span style=\"font-weight: 400;\"> and their role in scholarly communications, we have been looking to generate a directory of servers that, even if flawed or limited, can give us a common starting point for examining preprints and the culture around them.\u00a0</span></p>\n<p><span style=\"font-weight: 400;\">Unsurprisingly, we are not alone in this. ASAPbio, an organization dedicated to promoting the use of preprints, is </span><a href=\"https://asapbio.org/proposed-updates-to-preprint-services-directory-request-for-comments/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">looking to update</span></a><span style=\"font-weight: 400;\"> their directory of preprints. We shared some of our insights with them, and thought some of our feedback might also be more useful to the broader community.\u00a0</span></p>\n<h3><img decoding=\"async\" class=\"aligncenter wp-image-6278 size-full\" src=\"https://www.scholcommlab.ca/wp-content/uploads/2026/09/4.png\" alt=\"\" width=\"2240\" height=\"1260\" srcset=\"https://www.scholcommlab.ca/wp-content/uploads/2026/09/4.png 2240w, https://www.scholcommlab.ca/wp-content/uploads/2026/09/4-300x169.png 300w, https://www.scholcommlab.ca/wp-content/uploads/2026/09/4-1024x576.png 1024w, https://www.scholcommlab.ca/wp-content/uploads/2026/09/4-768x432.png 768w, https://www.scholcommlab.ca/wp-content/uploads/2026/09/4-1536x864.png 1536w, https://www.scholcommlab.ca/wp-content/uploads/2026/09/4-2048x1152.png 2048w, https://www.scholcommlab.ca/wp-content/uploads/2026/09/4-350x197.png 350w\" sizes=\"(max-width: 2240px) 100vw, 2240px\" /></h3>\n<h3><strong><b>Need to work from a definition</b></strong></h3>\n<p><span style=\"font-weight: 400;\">Most importantly, </span><b>any directory will need to operationalize their definition</b><span style=\"font-weight: 400;\"> of what constitutes a preprint server.\u00a0</span></p>\n<p><span style=\"font-weight: 400;\">Our own attempts at constructing a list of preprint servers indicates a wide range of platforms and publishers allow authors to post preprints, but whether these should be called \"preprint servers\" is far from settled. Researchers can post preprints to venues dedicated exclusively to preprints; publish/review/curate platforms; journal-based platforms that publish both preprints and peer-reviewed articles; general repositories that accept preprints among other types of research outputs; and the list goes on.\u00a0</span></p>\n<p><span style=\"font-weight: 400;\">While there may not be a single or right answer to \"what is a preprint server,\" a directory cannot function as a meaningful community resource without\u00a0 a clear operational definition. Its creators must explain what is included, what is excluded, and why.</span></p>\n<h3><strong>Detail is necessary</strong></h3>\n<p><span style=\"font-weight: 400;\">A useful directory needs more than just a list of venues and services\u2014it requires descriptive information that lets users filter and understand the landscape. The challenge lies in how one captures that information. When assessing whether a server has a particular policy, a simple &#8220;yes\" or \"no\" indicating whether a policy is &#8220;clear&#8221; tells only part of the story. A policy can be clear without being specific, and policies that appear similarly clear can differ substantially in their actual terms.</span></p>\n<p><span style=\"font-weight: 400;\">In our own analysis, we encountered exactly this problem. Instead of forcing policies into binary categories, directories should specify which characteristics matter for each policy area, then document those details explicitly. For example, rather than simply recording whether a server has a withdrawal policy, a directory should indicate who can request a withdrawal, under what circumstances, and how the withdrawal is reflected in the scholarly record. Leave fields blank where no clear policy exists\u2014but do the work of showing </span><i><span style=\"font-weight: 400;\">what</span></i><span style=\"font-weight: 400;\"> the policy actually says.</span></p>\n<h3><b>Conclusion</b></h3>\n<p><span style=\"font-weight: 400;\">Building a useful directory of preprint servers is more complex than it might initially seem. It requires not just listing which servers exist, but making deliberate choices about which definitions to use and then describing policies with enough nuance that researchers and other stakeholders can actually make informed decisions. Without this intentionality\u2014both in definition and in detail\u2014directories risk becoming incomplete or misleading resources. The good news is that the current moment offers an opportunity to get this right.</span></p>\n<p><em><strong>DOI: </strong><a href=\"https://doi.org/10.59350/zqh03-rx293\" target=\"_blank\" rel=\"noopener\">https://doi.org/10.59350/zqh03-rx293</a></em></p>","doi":"https://doi.org/10.59350/zqh03-rx293","guid":"https://www.scholcommlab.ca/?p=6277","image":"https://www.scholcommlab.ca/wp-content/uploads/2026/09/4.png","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","published_at":1789516800,"rid":"ysgyz-n4s56","summary":"As we recently wrote, there is really no agreed-upon definition of what a preprint is. And even if we could [\u2026]","tags":["Research","Preprints"],"title":"Advice for a Preprint Services Directory","updated_at":1789797827,"url":"https://www.scholcommlab.ca/2026/09/16/advice-for-a-preprint-services-directory/","version":"v1"},{"authors":[{"affiliation":[{"id":"https://ror.org/03wc8by49","name":"Posit Software, PBC (United States)"}],"contributor_roles":[],"family":"Clawson","given":"James","url":"https://orcid.org/0009-0008-6756-0607"},{"contributor_roles":[],"family":"Kaczmarek","given":"Ursula"},{"affiliation":[{"id":"https://ror.org/019jywm96","name":"rOpenSci"}],"contributor_roles":[],"family":"Ross","given":"Noam","url":"https://orcid.org/0000-0002-2136-0000"},{"contributor_roles":[],"family":"Delaney","given":"Scott","url":"https://orcid.org/0000-0002-0813-018X"}],"blog":{"authors":null,"community_id":"3446712e-ab03-4bb7-8641-571dcda8d8cd","created":1787702400,"current_feed_url":null,"description":"Tracking disruptions to U.S. federal science funding, grant by grant.","doi":"https://doi.org/10.59350/grantwitness","favicon":"https://rogue-scholar.org/api/communities/3446712e-ab03-4bb7-8641-571dcda8d8cd/logo","feed_format":"application/atom+xml","feed_url":"https://grantwitness.org/updates/rogue-scholar.xml","filter":null,"generator":"Other","home_page_url":"https://grantwitness.org/updates?type=updates","issn":null,"language":"eng","license":"https://creativecommons.org/licenses/by/4.0/legalcode","prefix":"10.59350","relative_url":null,"secure":true,"slug":"grantwitness","status":"active","subfield":"3321","title":"Grant Witness","updated":1789516800,"use_api":null},"blog_name":"Grant Witness","blog_slug":"grantwitness","content_html":"<p>Together with our partner <a href=\"https://statesunited.org\">States United Democracy Center</a>, <a href=\"https://grantwitness.org/\">Grant Witness</a> today launched <a href=\"https://www.lostfunds.org/\">Lost Funds</a>, an interactive tracker that provides a holistic look at federal grants that have been canceled, frozen, delayed, or otherwise interrupted since Trump took office in January 2025. The tool documents $177 billion in federal funding disruptions across all 50 states and Washington D.C., spanning 17 policy sectors, and examines impacts in communities across the country.</p>\n<p>\"By bringing thousands of funding disruptions from the Trump administration together in one, centralized website, the Lost Funds Tracker puts the magnitude of their impact on full display,\" said Scott Delaney, Co-Founder of Grant Witness. \"The impact of funding cuts at this scale cannot be overstated. These disruptions touch everything from health care and disaster relief to technology and agriculture. The data tells a story about the consequences communities face as a result of the cuts, and the resources they're fighting relentlessly to preserve.\"</p>\n<p>\"Many states have been fighting the impacts of federal funding disruptions one grant at a time ever since Trump took office,\" said Kelly Rader, Research Director at the States United Democracy Center. \"This is funding for states that has already been approved by Congress. But the Trump administration is trying to take unliteral action to stop that money from reaching the communities it's meant for. Lost Funds illustrates just how widespread these funding cuts are, the scale of the harm they've caused, and how states are once again on the front lines protecting their residents.\"</p>\n<p>Lost Funds provides a comprehensive overview of funding disruptions from the past 20 months, covering the Trump administration's <a href=\"https://statesunited.org/wp-content/uploads/2025/01/OMB-1.pdf\">attempt to freeze funding</a> during his first week in office and each subsequent disruption across health care, education, transportation, disaster relief, science and technology, and more. It includes an overview of state efforts to challenge the disruptions and the funding they've restored for their communities.</p>\n<p>Key takeaways from the <a href=\"https://www.lostfunds.org/\">Lost Funds national landscape</a>:</p>\n<ul>\n<li>$177 billion in federal funding has been disrupted across all 50 states and Washington, D.C.</li>\n<li>States have joined 27 lawsuits to challenge the disruptions, restoring $24 billion in disrupted grants.</li>\n<li>The funding disruptions span 17 policy sectors and are being implemented through 21 federal agencies. Health grants have taken the largest hit, with $39 billion in disruptions.</li>\n<li>Texas has lost the most total dollars of federal funding of any state ($15.9 billion). Vermont has lost the most funding per resident ($2,728).</li>\n</ul>\n<p>Explore the national picture and drill down by state, program, sector, and grant recipient <a href=\"https://www.lostfunds.org/michigan\">here</a>.</p>\n<p>The Lost Funds Tracker will be updated regularly as the Trump administration takes new actions to disrupt funding, state lawsuits move through the courts, and stories of consequences in communities are told.</p>","doi":"https://doi.org/10.59350/y27rm-4dq03","guid":"https://doi.org/10.59350/y27rm-4dq03","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","published_at":1789516800,"rid":"126yg-ben14","summary":"Together with our partner States United Democracy Center, Grant Witness today launched Lost Funds, an interactive tracker that provides a holistic look at federal grants that have been canceled, frozen, delayed, or otherwise interrupted since Trump took office in January 2025.","title":"Tracking $177 Billion in Disrupted Federal Grants with the Lost Funds Project","updated_at":1789797806,"url":"https://grantwitness.org/updates/tracking-177-billion-in-disrupted-federal-grants-with-the-lost-funds-project","version":"v1"},{"authors":[{"affiliation":[{"name":"Open Humans Foundation"}],"contributor_roles":[],"family":"Greshake Tzovaras","given":"Bastian","url":"https://orcid.org/0000-0002-9925-9623"}],"blog":{"authors":null,"community_id":"c1baf1e7-80ce-43eb-bc1c-a978dd7d62c9","created":1712793600,"current_feed_url":null,"description":"Bastian Greshake Tzovaras is an open/citizen science activist and researcher with a background in biology and bioinformatics. He worked as a senior researcher at The Alan Turing Institute and Inserm. In 2011, he founded openSNP. He was awarded a PhD","doi":"https://doi.org/10.59350/tzovar","favicon":"https://rogue-scholar.org/api/communities/c1baf1e7-80ce-43eb-bc1c-a978dd7d62c9/logo","feed_format":"application/atom+xml","feed_url":"https://tzovar.as/feed.xml","filter":null,"generator":"Jekyll","home_page_url":"https://tzovar.as/","issn":null,"language":"eng","license":"https://creativecommons.org/licenses/by/4.0/legalcode","prefix":"10.59350","relative_url":null,"secure":true,"slug":"tzovar","status":"active","subfield":"3305","title":"Bastian Greshake Tzovaras |","updated":1789562700,"use_api":null},"blog_name":"Bastian Greshake Tzovaras |","blog_slug":"tzovar","content_html":"<p><a href=\"https://tzovar.as/assets/images/2026-09-16-digital-solidarity.jpg\"><img alt=\"the back of a computer screen with different tech-criticism stickers\" src=\"https://tzovar.as/assets/images/2026-09-16-digital-solidarity.jpg\"/>\n</a></p>\n<p>How we politicize technology in service of <em>a better world</em> is an open and contested question.\nA few days ago I shared <a href=\"https://disjunctionsmag.com/articles/historicising-enshittification/\">a piece on <em>historicising enshittification</em></a>. \nIn it, Arvind L. U. explores the limits of how Doctorow's framing around that term is both ahistorical, in that it limits itself to a view that ignores the realities of the global south, and lacking imagination for not even considering a real alternative political economy of the internet.\nIn response, <a href=\"https://fedihum.org/@lavaeolus/117224180146808192\">Henrik shared</a> a quote out of <a href=\"https://dietzberlin.de/produkt/digitale-solidaritaet/\"><em>Digital Solidarity</em></a> \u2013 a new book by <a href=\"https://indieweb.social/@alineblankertz\">Aline Blankertz</a> and <a href=\"https://legal.social/@malteengeler\">Malte Engeler</a> \u2013 which similarly considers the <em>enshittification</em> framing to conceal the fact that it's <em>the pinnacle of capitalism</em> and not an aberration.</p>\n<p>Intrigued by this, I really wanted to read the whole, longer argument that Aline &amp; Malte are making in their book.\nLuckily, I managed to score a review copy of it, which I went through over the weekend.\nAs the book is unfortunately right now only available in German, I thought I'd at least attempt to give a small review and summary of why I'm glad I read it.</p>\n<p>Structurally, the book is divided into two parts:\nThe first half analyses the <em>status quo</em> of capitalist digitization.\nHow does the spread of digital technologies help legitimize and drive capitalism and authoritarian structures? \nThe second half then dives into their counter proposal of <em>digital solidarity</em> and how digital technologies could be used in an emancipatory way.\nJointly, both halves explore which technologies can be appropriated for progressive causes (and how), and which ones are irredeemable.</p>\n<p>The first half of the book starts off very strong.\nIt outlines well how society has \u2013 at least in parts intentionally \u2013 been shaped to a certain level of apathy about the future, in which <em>societal progress for many has been reduced to the production cycles of new devices and software</em>.\nAnd in which collective imaginaries make the existing capitalist appear <em>natural</em>, where people might consider rejecting discrimination based on race, but not overcoming class society.</p>\n<p>Launching from this, the book also provides a great exploration of how &amp; why much of contemporary tech critique is failing by not focusing on the underlying capitalist structures that <em>work as expected</em>.\nWhether that's Zuboffs <em>surveillance capitalism</em> that appeals to the managerial class to please implement ethical business practices, <em>technofeudalism</em> or the above mentioned <em>enshittification</em> by Doctorow, which proposes the solution in enforcing more <em>market competition</em> and regulation.\nThey all locate the solution to existing problems with technology by making minor tweaks to the dominant economic dynamics, which not only do not question the reign of capitalism overall but risk reinforcing it.</p>\n<h2 id=\"on-false-hopes-for-progress-and-democracy\">On false hopes for progress and democracy</h2>\n<p>The meat of the critical analysis that follows consists of countering three of the big myths that surround digital technologies and the internet. Namely, that digitization is progress, that the internet <em>democratizes</em> and that <em>open source</em> can offer a counter to capitalist logics. \nOn the first point, Aline and Malte do a great job of exploring how the myth of digitally mediated progress takes the shape of a cyber-libertarianism that rejects the collective in favor of the individual, their responsibility and market forces.\nThis includes how the common ideas that <em>degoogling</em>, self-hosting, and a focus on <em>privacy</em> can end up not being emancipatory praxis, but libertarian isolation that in turn promotes technologies like cryptocurrencies and culminates in fascist ideals.</p>\n<p>These tendencies are tied neatly into the review of the <em>democratizing</em> potential of digital technology, which draws from the same cyber-libertarian framing\u2014and has mostly led to a concentration of power. \nPlatforms like Spotify, Airbnb, Uber etc. by no means have driven democratization, but have helped concentrate power and wealth in the hands of the platforms.\nAnalogous to how the push for generative 'AI' is working towards ensuring that creative activities will have to rely on renting <em>AI</em>-assistance.</p>\n<h2 id=\"the-failure-of-open-source\">The failure of open source</h2>\n<p>I particularly enjoyed the last myth, on open source as counter culture, as it hits very close to home.\nFraming open source as <em>the electric car of digital politics</em> is in equal parts hilarious and fitting \u2013 especially in the context of German car culture:\nJust as the electric car is a step up over the internal combustion engine but doesn't challenge the car-centrism, open source software (OSS) has benefits over proprietary software but doesn't very little if anything to challenge the extractive nature of big technology corporations, which themselves profit tremendously from OSS.<sup id=\"fnref:1\" role=\"doc-noteref\"><a class=\"footnote\" href=\"https://tzovar.as/digital-solidarity-blankertz-engeler//#fn:1\" rel=\"footnote\">1</a></sup></p>\n<p>Such extractivism is a tendency that is now even indirectly promoted through companies and civil society organisations alike<sup id=\"fnref:2\" role=\"doc-noteref\"><a class=\"footnote\" href=\"https://tzovar.as/digital-solidarity-blankertz-engeler//#fn:2\" rel=\"footnote\">2</a></sup>, by using labels such as <em>digital public goods</em> or <em>digital public infrastructures</em>, which contribute to concealing the ways in which the value from unpaid volunteer labor flows into corporations all while enshrining the offering of digital services as a task for society.\nAlong those lines, much of OSS also at least implicitly reproduces the dominant thinking and technological affordances of big technology companies and thus giving credence to them.</p>\n<p>But an emancipatory alternative to e.g. corporate-controlled social media <a href=\"https://tzovar.as/scaling-up-and-on-being-the-right-size\">needs to be more than just <em>Twitter but open source</em></a>.\nWhich OSS often falls short of, thanks to <a href=\"https://tzovar.as/open-science-beyond-licenses/\">top-down control structures</a> which are most often under the hegemony of an homogeneous (white, cis, male) elite.</p>\n<h2 id=\"between-gdpr--authoritarianism\">Between GDPR &amp; authoritarianism</h2>\n<p>As already briefly mentioned above, the way that privacy is <em>also</em> used as a common concept by cyber-libertarians who focus on the creation of a hyper-individualist is getting some well deserved attention as well.\nThe EU's GDPR privacy regulations are equally the focus of a critical discussion, highlighting the explicitly colonial aspects of the regulation (by having a global ambition of forcing the rest of the world to adapt those rules as well) as well as the capitalist logic it operates in (by reinforcing that profit motives decide when &amp; how personal data is used).</p>\n<p>And lastly, there is of course the tight coupling between the technologies pushed by technology corporations and their relationship to authoritarianism, the military industrial complex, and eugenics, etc\u2026\nAll while society glorifies tech managers for bringing <del>salvation</del> progress, helping foster fascist praise for <em>strong leaders</em>.<sup id=\"fnref:3\" role=\"doc-noteref\"><a class=\"footnote\" href=\"https://tzovar.as/digital-solidarity-blankertz-engeler//#fn:3\" rel=\"footnote\">3</a></sup></p>\n<h2 id=\"what-is-to-be-done\">What is to be done?</h2>\n<p>After all that critical analysis, the change of pace to envisioning a positive alternative was more than welcome.\nAnd Malte &amp; Aline contrast their vision of <em>digital solidarity</em> very nicely with the currently trendy <em>digital sovereignty</em>.\nFaced with the political and economic violence touted by the United States, the European Union and many of their member states are touting the latter as an alternative.<sup id=\"fnref:4\" role=\"doc-noteref\"><a class=\"footnote\" href=\"https://tzovar.as/digital-solidarity-blankertz-engeler//#fn:4\" rel=\"footnote\">4</a></sup>\nWhile it might sound catchy, it generally falls squarely into the same nationalistic tropes of just needing an EU-based competitor to US big-tech instead of actively bringing about change.<sup id=\"fnref:5\" role=\"doc-noteref\"><a class=\"footnote\" href=\"https://tzovar.as/digital-solidarity-blankertz-engeler//#fn:5\" rel=\"footnote\">5</a></sup></p>\n<p>In contrast, <em>digital solidarity</em> touches on the emancipation of the people using technology.\nHighlighting the original demands of the luddites \u2013 wanting a say in which technology is used and how \u2013 it explores how the digital could be different.\nOne bit I found particularly interesting was <a href=\"https://doi.org/10.1016/j.jclepro.2017.02.195\">the framework by Andrea Vetter</a>, which I didn't know before. Building on Illich's <em>Tools for Conviviality</em>, her work outlines 5 dimensions to  assess technologies for their conviviality: Their impact on <em>(human) connections</em>, their accessibility, their interactions with the living world and their appropriateness in terms of resource input and output.</p>\n<p>Based on their own luddite-informed model, and taking Vetter into account, Aline and Malte build their own criteria for an <em>emancipatory technology critique</em>:</p>\n<ol>\n<li>Harmonizing abilities: Who is enabled by technology? Is it the few or does it give ability to those who so far lacked them? Is it inclusive of disabilities? Does it help build equality?</li>\n<li>Exclusion of unwanted uses: Can uses deemed negative be avoided? An interesting example is about the use of prostheses, beneficial when serving in disability use cases, cyberpunk nightmare if deemed societal necessity.</li>\n<li>Appropriateness: Do the benefits of a technology fit the societal and ecological costs they incur?</li>\n</ol>\n<p>Based on these three criteria, they outline nicely why 'AI' can not be used by <em>the left</em> as an emancipatory tool, for failing on all three counts:\nBy its very nature, it's a technology that does not harmonize abilities but concentrates power in the hands of the few, due to the requirements for large amounts of capital and training data, its inherent force for removing individual agency that removes collective action and the biases encoded in all training data.\nIt also is explicitly a technology that is created and marketed as \"all-purpose\", failing the question of excluding unwanted uses.\nAnd with respect to its appropriateness, the ecological, economical and societal damages have been documented extensively, for example due to resource use (water, fossil fuels, rare earth minerals mined in the global south\u2026) for 'AI' data centers.</p>\n<h3 id=\"resistance--solidarity\">Resistance &amp; solidarity</h3>\n<p>In the following chapters, the book goes on to outline a more positive view of how <em>digital solidarity</em> can form a counter model to the predominant discourses that suck up a lot of oxygen, without offering transformative options.\nActs of resistance, individual ones such as <a href=\"https://tzovar.as/algorithmic-sabotage-ssg/\">algorithmic sabotage</a>, <em>robot vandalism</em> against (allegedly) self-driving cars, or the <a href=\"https://media.ccc.de/v/39c3-the-heartbreak-machine-nazis-in-the-echo-chamber\">hacking of nazi dating platforms</a> or collective ones such as group efforts against data centers can be one tool.\nAnd so can positive interventions such as repair-cafes, if they are sufficiently politicized to move beyond <em>just</em> the individual benefit.</p>\n<h3 id=\"collectivization-of-the-digital\">Collectivization of the digital</h3>\n<p>The bigger step and challenge proposed is about the ownership of the digital platforms.\nIn their current configurations, the harms created by them are a direct consequence of the extractivist profit logics they operate under:\nReal estate platforms deploy data science methods to help landlords to extract the maximum possible rents (and thus also maximize their own income).\nAnd the same applies to digital streaming services, and basic digital infrastructures like data centers in the hands of corporations.</p>\n<p>Ultimately, the book makes a convincing argument how shifting the control from private ownership into the collective would allow designing technologies that benefit everyone instead.\nWithout falling prey to tinkering on the margins by asking for interoperability, open source/data, it centers on envisioning technology that serves the public benefit and breaks with the capitalist logics.\nBuilding on Graeber &amp; Wengrow, it shows how democratic control of the digital \u2013 that includes the freedom to leave, no obey and to build new social systems \u2013 can offer an alternative to the existing tech authoritarianism.</p>\n<p>Jointly, Aline &amp; Malte make a great contribution to envision fights for digital technologies \u2013 and societies \u2013 that are anti-authoritarian, post-capitalist, and emancipatory.\nIf you read German, <em>Digital Solidarity</em> makes a great read to sharpen your thinking about how to approach the critique of digital technologies and gives a lot of food for thought on how to approach your own activism to overcome the status quo.\nAnd if you don't read German, my hope is that some of you are now at least curious about the concept.\nMaybe even enough to ask your favorite lefty publisher for suggesting putting out a translated version? ;-)</p>\n<h2 id=\"references\">References</h2>\n<ol>\n<li>L. U., Arving (2026) Historicising Enshittification Lineages of the bad internet. Disjunctions. https://disjunctionsmag.com/articles/historicising-enshittification/</li>\n<li>Blankertz, A., Engeler M. Digitale Solidarit\u00e4t. Dietz Berlin ISBN: 978-3-320-02443-7</li>\n<li>Vetter, A. (2017). The Matrix of Convivial Technology \u2013 Assessing technologies for degrowth. Journal of Cleaner Production. https://doi.org/10.1016/j.jclepro.2017.02.195</li>\n<li>Greshake Tzovaras, B. (2026, August 18). On 'scaling up' and being the right size. Bastian Greshake Tzovaras https://doi.org/10.59350/5bfg3-bjv09</li>\n<li>Greshake Tzovaras, B. (2026, February 10). Open science and commoning beyond licensing: Deteriorating digital commons in the absence of collective governance. Bastian Greshake Tzovaras  https://doi.org/10.59350/14dpd-23089</li>\n<li>Illich, I., &amp; Lang, A. (1973). Tools for conviviality.</li>\n</ol>\n<h2 id=\"footnotes\">Footnotes</h2>\n<div class=\"footnotes\" role=\"doc-endnotes\">\n<ol>\n<li id=\"fn:1\" role=\"doc-endnote\">\n<p>There is also a good bit about the <em>Open Source Initiative</em>'s open-washing of 'AI' through their misguided definition of 'open source AI', which explicitly does not require opening up training data and thus is mostly a push to legitimize these corporations' open-washing by giving an official label.\u00a0<a class=\"reversefootnote\" href=\"https://tzovar.as/digital-solidarity-blankertz-engeler//#fnref:1\" role=\"doc-backlink\">\u21a9</a></p>\n</li>\n<li id=\"fn:2\" role=\"doc-endnote\">\n<p>I'm glad to see more people critically evaluating <em>civil society associations</em> and other NGOs for their role in legitimizing existing power structures in their continuous quest for funding of full-time positions.\u00a0<a class=\"reversefootnote\" href=\"https://tzovar.as/digital-solidarity-blankertz-engeler//#fnref:2\" role=\"doc-backlink\">\u21a9</a></p>\n</li>\n<li id=\"fn:3\" role=\"doc-endnote\">\n<p>As the book outlines, fascists profiting and putting technology into their service is not new, as <em>IBM and the Holocaust</em> demonstrates so well.\u00a0<a class=\"reversefootnote\" href=\"https://tzovar.as/digital-solidarity-blankertz-engeler//#fnref:3\" role=\"doc-backlink\">\u21a9</a></p>\n</li>\n<li id=\"fn:4\" role=\"doc-endnote\">\n<p>Also here the role of civil society actors is highlighted for good reason: In their quest for funding and influence, many of them are uncritically jumping on that bandwagon as well.\u00a0<a class=\"reversefootnote\" href=\"https://tzovar.as/digital-solidarity-blankertz-engeler//#fnref:4\" role=\"doc-backlink\">\u21a9</a></p>\n</li>\n<li id=\"fn:5\" role=\"doc-endnote\">\n<p>As an aside: The director general of the French National Institute for Geography tried to reframe <em>sovereignty</em> in an imho interesting way during <a href=\"https://peertube.openstreetmap.fr/w/xABVQhLx1MMEVbqY9eprcE\">his closing remarks of the <em>State of the Map</em> conference</a>: <em>The lesson from the commons is that sovereignty is not only about control. Sovereignty is not about closing doors, closing frontiers. You can also build sovereignty thanks to openness, [\u2026] thanks to cooperation</em>. Thanks Marcos, <a href=\"https://en.osm.town/@mdione/117197515212937504\">for the transcription</a>.\u00a0<a class=\"reversefootnote\" href=\"https://tzovar.as/digital-solidarity-blankertz-engeler//#fnref:5\" role=\"doc-backlink\">\u21a9</a></p>\n</li>\n</ol>\n</div>","doi":"https://doi.org/10.59350/pydj0-e2h44","guid":"https://doi.org/10.59350/pydj0-e2h44","image":"https://tzovar.as/assets/images/2026-09-16-digital-solidarity.jpg","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","published_at":1789516800,"reference":[{"id":"https://disjunctionsmag.com/articles/historicising-enshittification/","unstructured":"L. U., Arving (2026) Historicising Enshittification Lineages of the bad internet. Disjunctions."},{"unstructured":"Blankertz, A., Engeler M. Digitale Solidarit\u00e4t. Dietz Berlin ISBN: 978-3-320-02443-7"},{"id":"https://doi.org/10.1016/j.jclepro.2017.02.195","unstructured":"Vetter, A. (2018). The Matrix of Convivial Technology \u2013 Assessing technologies for degrowth. <i>Journal of Cleaner Production</i>, <i>197</i>, 1778\u20131786."},{"id":"https://doi.org/10.59350/5bfg3-bjv09","unstructured":"Greshake Tzovaras, B. (2026, August 18). On 'scaling up' and being the right size. <i>Bastian Greshake Tzovaras |</i>."},{"id":"https://doi.org/10.59350/14dpd-23089","unstructured":"Greshake Tzovaras, B. (2026, February 10). Open science and commoning beyond licensing: Deteriorating digital commons in the absence of collective governance. <i>Bastian Greshake Tzovaras</i>."},{"unstructured":"Illich, I., & Lang, A. (1973). Tools for conviviality."}],"rid":"t6njt-5be48","summary":"How we politicize technology in service of <em> a better world </em> is an open and contested question.","tags":["Digital Critique","Digital Solidarity","Digital Sovereignty","Post-capitalism","Open Source"],"title":"On building Digital Solidarity","updated_at":1789796098,"url":"https://tzovar.as/digital-solidarity-blankertz-engeler/","version":"v1"},{"authors":[{"contributor_roles":[],"family":"Smith","given":"Arfon","url":"https://orcid.org/0000-0002-3957-2474"},{"affiliation":[{"id":"https://ror.org/047426m28","name":"University of Illinois Urbana-Champaign"}],"contributor_roles":[],"family":"Katz","given":"Daniel S.","url":"https://orcid.org/0000-0001-5934-7525"}],"blog":{"authors":[{"name":"Arfon M. Smith","url":"https://orcid.org/0000-0002-3957-2474"}],"community_id":"2bc0e8d4-303b-423a-9f3c-a4682849c566","created":1780876800,"current_feed_url":null,"description":"Blog for the Journal of Open Source Software \u2022 https://joss.theoj.org","doi":"https://doi.org/10.59349/joss","favicon":"https://rogue-scholar.org/api/communities/2bc0e8d4-303b-423a-9f3c-a4682849c566/logo","feed_format":"application/atom+xml","feed_url":"https://blog.joss.theoj.org/feed.xml","filter":null,"generator":"Jekyll","home_page_url":"https://blog.joss.theoj.org/","issn":null,"language":"eng","license":"https://creativecommons.org/licenses/by/4.0/legalcode","prefix":"10.59349","relative_url":null,"secure":null,"slug":"joss","status":"active","subfield":"1710","title":"Journal of Open Source Software Blog |","updated":1789689600,"use_api":null},"blog_name":"Journal of Open Source Software Blog |","blog_slug":"joss","content_html":"<p>[From Arfon]</p>\n<p>Earlier this year <a href=\"https://www.arfon.org/stepping-down-as-editor-in-chief-of-joss\">I announced</a> that I was stepping down as Editor-in-Chief of <a href=\"https://joss.theoj.org\">JOSS</a> after ten years in the role, and we put out a <a href=\"https://blog.joss.theoj.org/2026/05/call-for-editor-in-chief\">call for a new EiC</a>. Today I'm delighted to announce that <a href=\"https://danielskatz.org\">Daniel S. Katz</a> is taking over as Editor-in-Chief, effective 18 September 2026.</p>\n<p>Dan was one of the people who helped shape JOSS before it even existed. He was part of the small group who helped refine what JOSS should be (and shouldn't be) in the months before we launched in May 2016. He went on to become one of our most active Associate Editors-in-Chief, and has been deeply involved in every significant editorial decision the journal has made over the past decade. I can't think of anyone better placed to lead JOSS into its next chapter.</p>\n<p>Dan and I will be working together over the coming weeks to transition EiC responsibilities.</p>\n<p>[From Dan]</p>\n<p>When Arfon first told me he was thinking of stepping down, back in 2019 while we were at Murrayfield Rugby Stadium (for a conference of course), I wondered if and how JOSS would survive. Fortunately, in the seven years since then, JOSS continued to thrive and grow, overcoming obstacles like the initial Covid period and then the increased impact of generative AI.</p>\n<p>By the time Arfon started talking about stepping down again last year, I had become confident that the JOSS community of associate-editors-in-chief (AEiCs) and editors would be able to keep the journal going. So when I applied to be EiC, I had a mix of feelings that included satisfaction about what we have done so far, confidence about the future and that our community could handle it, and some remaining fear about what I didn't know and wouldn't find out until I started.</p>\n<p>Now, on the cusp of this transition, I'm really looking forward to working with the full JOSS community, including AEiCs and editors who have ideas about how we can improve the journal and its processes, other community members who continue to submit software and papers and to review them, and of course, Arfon, who we will continue to rely on as both the past/founding EiC and the continuing JOSS tech lead.</p>\n<p>JOSS, as a developer-friendly diamond open access journal for research software packages that itself runs like an open source project and is a member of the open source community, isn't changing, and we'll continue to work collectively to improve research software and its recognition, and to provide scholarly credit for its developers and maintainers. Please join us by <a href=\"https://joss.theoj.org/papers/new\">submitting</a> or <a href=\"https://reviewers.joss.theoj.org/join\">volunteering to review</a>, and keep an eye out for other opportunities to contribute.</p>","doi":"https://doi.org/10.59349/pzaq7-0aq48","guid":"https://blog.joss.theoj.org/2026/09/daniel-katz-new-editor-in-chief","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","published_at":1789689600,"rid":"zrh9j-8v522","summary":"[From Arfon] Earlier this year I announced that I was stepping down as Editor-in-Chief of JOSS after ten years in the role, and we put out a call for a new EiC. Today I'm delighted to announce that Daniel S. Katz is taking over as Editor-in-Chief, effective 18 September 2026. Dan was one of the people who helped shape JOSS before it even existed.","tags":["Announcements"],"title":"Daniel S. Katz is the new Editor-in-Chief of JOSS","updated_at":1789749931,"url":"https://blog.joss.theoj.org/2026/09/daniel-katz-new-editor-in-chief","version":"v1"},{"authors":[{"contributor_roles":[],"family":"Eden","given":"Terence","url":"https://orcid.org/0000-0002-9265-9069"}],"blog":{"authors":null,"community_id":"61ce553a-bafd-4aba-a952-d3bab5e85bcc","created":1788652800,"current_feed_url":null,"description":"Regular nonsense about tech and its effects \ud83d\ude43","doi":"https://doi.org/10.59350/shkspr","favicon":"https://rogue-scholar.org/api/communities/61ce553a-bafd-4aba-a952-d3bab5e85bcc/logo","feed_format":"application/atom+xml","feed_url":"https://shkspr.mobi/blog/feed/DOI","filter":"category:-1982","generator":"WordPress","home_page_url":"https://shkspr.mobi/blog","issn":"2753-1570","language":"eng","license":"https://creativecommons.org/licenses/by/4.0/legalcode","prefix":"10.59350","relative_url":null,"secure":true,"slug":"shkspr","status":"active","subfield":"1712","title":"Terence Eden's Blog","updated":1789810393,"use_api":true},"blog_name":"Terence Eden's Blog","blog_slug":"shkspr","content_html":"<p>The <a href=\"https://flywheeltheatre.com/\">Flywheel theatre company</a> are reviving the rep tradition by having five actors perform five different plays in five weeks. Their interpretation of Moli\u00e8re's classic is gaudy and hilarious. Even the lighting cues are funny!</p>\n\n<p>It is fair to say that School for Wives isn't exactly an uncontroversial play. The plot basically boils down to \"Women! Eh? You can't live with them, you can't easily groom them from the age of four and keep them imprisoned so they become perfect submissives.\"</p>\n\n<p>Is the fear of cuckoldry funny? Is it OK to laugh at a jealous rage which leads to controlling behaviour? Should we find joy in the emotional torment of our characters?</p>\n\n<p>Yes! Yes! And yes!</p>\n\n<p>The cast squeeze every last drop of humour from the script, the direction is nimble, and the play has been edited down to a more manageable 75ish minutes (plus extra time for corpsing and applause).</p>\n\n<p>A simply joyous production which left us grinning throughout.</p>\n\n<p>You can <a href=\"https://riversidestudios.co.uk/whats-on/uqe-rep-radical-classical/\">see all their upcoming shows</a> - which are very reasonably priced.</p>\n\n<h2 id=\"pre-show-and-post-show\"><a href=\"#pre-show-and-post-show\">Pre-Show and Post-Show</a></h2>\n\n<p>I'm a believer in making the entire visit to the theatre a special experience. Riverside Studio, Hammersmith is a great venue with generous foyer space and more than adequate toilet provision. Not a given in London theatres!</p>\n\n<p>The theatre programme is digital and provided via QR code. No \u00a36 rip off for a booklet full of adverts here.</p>\n\n<p>As we walked in, the cast were dotted around the stage an in the auditorium doing various bits of business which made for a jolly start.</p>\n\n<p>Post curtain call there was a lovely speech from the cast thanking us for attending and letting us know about their future projects. Nothing wrong with a piece of shameless advertising to a captive audience \ud83d\ude04</p>\n\n<p>Overall an excellent theatrical experience.</p><img src=\"https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=75485&HTTP_REFERER=JSON\" alt width=1 height=1 loading=eager>","doi":"https://doi.org/10.59350/r0cff-96c14","guid":"https://shkspr.mobi/blog/?p=75485","image":"https://shkspr.mobi/blog/wp-content/uploads/2026/09/wives.webp","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","published_at":1789689600,"rid":"33070-9q085","summary":"The Flywheel theatre company are reviving the rep tradition by having five actors perform five different plays in five weeks. Their interpretation of Moli\u00e8re's classic is gaudy and hilarious. Even the lighting cues are funny! It is fair to say that School for Wives isn't exactly an uncontroversial play. The plot basically boils down to \"Women!","tags":["/etc/","Theatre Review"],"title":"Theatre Review: The School for Wives - at Riverside Studios","updated_at":1789731310,"url":"https://shkspr.mobi/blog/2026/09/theatre-review-the-school-for-wives/","version":"v1"},{"authors":[{"affiliation":[{"name":"Freie Universit\u00e4t Berlin, Open Research Office Berlin"}],"contributor_roles":[],"family":"Duine","given":"Maaike","url":"https://orcid.org/0000-0003-3412-7192"}],"blog":{"authors":null,"community_id":"52aefd81-f405-4349-b080-754395a5d8b2","created":1694476800,"current_feed_url":null,"description":null,"doi":"https://doi.org/10.59350/oaberlin","favicon":"https://rogue-scholar.org/api/communities/52aefd81-f405-4349-b080-754395a5d8b2/logo","feed_format":"application/atom+xml","feed_url":"https://blogs.fu-berlin.de/open-research-berlin/feed/atom/","filter":null,"generator":"WordPress","home_page_url":"https://blogs.fu-berlin.de/open-research-berlin","issn":null,"language":"deu","license":"https://creativecommons.org/licenses/by/4.0/legalcode","prefix":"10.59350","relative_url":null,"secure":true,"slug":"oaberlin","status":"active","subfield":"1802","title":"Open Research Blog Berlin","updated":1789648456,"use_api":true},"blog_name":"Open Research Blog Berlin","blog_slug":"oaberlin","content_html":"<h1>Orte und Tools f\u00fcr digitales, nicht-kommerzielles Publizieren</h1>\n<p><span style=\"font-weight: 400\">Faires, wissenschaftsgeleitetes Open-Access-Publizieren gewinnt zunehmend an Bedeutung, nicht zuletzt durch die </span><a href=\"http://dx.doi.org/10.17169/refubium-49556\"><span style=\"font-weight: 400\">Priorisierungsagenda der BUA-Einrichtungen</span></a><span style=\"font-weight: 400\"> zur Umsetzung des Open-Science-Leitbilds und das </span><a href=\"http://dx.doi.org/10.17169/refubium-52664\"><span style=\"font-weight: 400\">Positionspapier zu Open Research der Berliner Landesinitiative</span></a><span style=\"font-weight: 400\">. Doch welche Alternativen zu etablierten, oft kommerziellen Publikationswegen gibt es eigentlich, und wie funktionieren sie?</span></p>\n<p><span style=\"font-weight: 400\">In diesem einst\u00fcndigen Lunch Meeting stellen wir Ihnen ausgew\u00e4hlte Orte und Tools f\u00fcr digitales Publizieren vor, von fachspezifischen Verlagen wie </span><a href=\"https://scipost.org/\"><span style=\"font-weight: 400\">SciPost </span></a><span style=\"font-weight: 400\">oder </span><a href=\"https://www.openlibhums.org/\"><span style=\"font-weight: 400\">Open Library of Humanities</span></a><span style=\"font-weight: 400\"> bis hin zu neuen Publishing-Tools wie </span><a href=\"https://www.octopus.ac/\"><span style=\"font-weight: 400\">Octopus</span></a><span style=\"font-weight: 400\">. Ein Praxisbericht von Forschenden erg\u00e4nzt die Vorstellung der Publishing-Tools. Dar\u00fcber hinaus geben wir Einblick in die Angebote von </span><a href=\"https://www.berlin-universities-publishing.de/\"><span style=\"font-weight: 400\">Berlin Universities Publishing</span></a><span style=\"font-weight: 400\">. Im Anschluss bleibt ausreichend Zeit f\u00fcr Fragen und Diskussion.</span></p>\n<p><span style=\"font-weight: 400\">Das Meeting findet im Rahmen der internationalen Open Access Week statt und richtet sich an alle Forschenden, die mehr \u00fcber faire und offene Publikationsm\u00f6glichkeiten erfahren m\u00f6chten. Das Thema der diesj\u00e4hrigen Open Access Week lautet \"</span><a href=\"https://www.openaccessweek.org/theme\"><span style=\"font-weight: 400\">The Cost of Knowledge</span></a><span style=\"font-weight: 400\">\": Entsprechend nehmen wir das Motto zum Anlass, um Alternativen zu kommerziell ausgerichteten Publikationsm\u00f6glichkeiten vorzustellen.</span></p>\n<pre><strong>Offen und fair Publizieren: Orte und Tools f\u00fcr digitales, nicht-kommerzielles Publizieren</strong>\n<strong>-Wann: </strong>Montag, 19.10.2026, 13:00-14:00 Uhr\n<strong>-Wo: </strong>Online\n<strong>-Registrierung:</strong> <a href=\"https://fu-berlin.webex.com/weblink/register/r140c0b760f69120235a15a62bca40de4\">Anmeldung per Webex</a></pre>\n<hr />\n<p><strong>Organisiert von:</strong></p>\n<ul>\n<li><span style=\"font-weight: 400\">Maike Neufend und Maaike Duine (Open Research Office Berlin)</span></li>\n<li><span style=\"font-weight: 400\">Maxi Kindling und Michaela Voigt (Universit\u00e4tsbibliothek der TU Berlin)</span></li>\n<li><span style=\"font-weight: 400\">Marcel Wrzesinski (Medizinische Bibliothek der Charit\u00e9 &#8211; Universit\u00e4tsmedizin Berlin)</span></li>\n<li><span style=\"font-weight: 400\">Anja Himpsl-Zeltner (Universit\u00e4tsbibliothek der Humboldt-Universit\u00e4t zu Berlin)</span></li>\n<li><span style=\"font-weight: 400\">Michael Kleineberg und Julian Vuorim\u00e4ki (Universit\u00e4tsbibliothek der Freien Universit\u00e4t Berlin)</span></li>\n</ul>\n<p>&nbsp;</p>","doi":"https://doi.org/10.59350/xcjqw-q0t82","guid":"https://blogs.fu-berlin.de/open-research-berlin/?p=4343","language":"de","license":"https://creativecommons.org/licenses/by/4.0/legalcode","published_at":1789603200,"rid":"99595-v5p57","summary":"Orte und Tools f\u00fcr digitales, nicht-kommerzielles Publizieren Faires, wissenschaftsgeleitetes Open-Access-Publizieren gewinnt zunehmend an Bedeutung, nicht zuletzt durch die Priorisierungsagenda der BUA-Einrichtungen zur Umsetzung des Open-Science-Leitbilds und das Positionspapier zu Open Research der Berliner Landesinitiative.","tags":["Allgemein","Aktuelles","Berlin","Bibliotheken","Open Access"],"title":"Online Lunch Meeting: Offen und fair Publizieren","updated_at":1789716613,"url":"https://blogs.fu-berlin.de/open-research-berlin/2026/09/17/online-lunch-meeting-offen-und-fair-publizieren/","version":"v1"},{"authors":[{"affiliation":[{"id":"https://ror.org/041qv0h25","name":"Deutsches Arch\u00e4ologisches Institut, Zentrale"}],"contributor_roles":[],"family":"von Schr\u00f6der","given":"Asta","url":"https://orcid.org/0009-0007-5852-771X"}],"blog":{"authors":null,"community_id":"d21c5e78-88bc-432c-a20b-4e8a8ead1693","created":1752796800,"current_feed_url":null,"description":"Wissenslabor f\u00fcr naturwissenschaftliche Sammlungen und objektzentrierte Daten","doi":"https://doi.org/10.59350/winoda","favicon":"https://rogue-scholar.org/api/communities/d21c5e78-88bc-432c-a20b-4e8a8ead1693/logo","feed_format":"application/atom+xml","feed_url":"https://winoda.de/feed/atom/","filter":null,"generator":"WordPress","home_page_url":"https://winoda.de","issn":null,"language":"deu","license":"https://creativecommons.org/licenses/by/4.0/legalcode","prefix":"10.59350","relative_url":null,"secure":true,"slug":"winoda","status":"active","subfield":"1209","title":"WiNoDa Knowledge Lab","updated":1789654043,"use_api":false},"blog_name":"WiNoDa Knowledge Lab","blog_slug":"winoda","content_html":"<div id=\"bsf_rt_marker\"></div>\n<p class=\"wp-block-paragraph\">Was lange w\u00e4hrt, wird endlich gut \u2013 oder so hei\u00dft es.<br/>Mit dem Start des Wintersemesters geht das WiNoDa Knowledge Lab noch einmal richtig in die Vollen: <a data-id=\"https://winoda.de/event/byod-de/\" data-type=\"link\" href=\"https://winoda.de/event/byod-de/\">BYOD data clinic</a> am 6. und 9. Oktober 2026, Finale des <a data-id=\"https://winoda.de/event/hackathon-de/\" data-type=\"link\" href=\"https://winoda.de/event/hackathon-de/\">WiNoDa Hackathon am 14./15. Oktober 2026</a>, <a href=\"https://winoda.de/event/winoda-konferenz\">WiNoDa Konferenz am 21. Oktober 2026</a> \u2013 und auch unsere Selbstlernkurse wollen wir noch einmal \"richtig\" gl\u00e4nzen lassen.<br/>Deshalb laden wir alle Interessierten ein, teilzunehmen an unserer <strong>WiNoDa Data Expedition: F\u00fcnf Wochen begleitetes Selbststudium rund um Forschungsdaten, Sammlungen und digitale Methoden</strong>  \u2013 nat\u00fcrlich kostenfrei auf <a href=\"https://moodle.winoda.de/\" rel=\"noopener\" target=\"_blank\">https://moodle.winoda.de/</a>!</p>\n<p class=\"wp-block-paragraph\">Wenn Ihr Euren Lernplan lieber selbst gestalten m\u00f6chtet, aber den Austausch mit anderen nicht missen wollt\u2013 dann ist die WiNoDa Data Expedition genau richtig! Ihr k\u00f6nnt Euch mit den Kursentwicklern austauschen, Eure Fragen stellen und gemeinsam \u00fcberlegen, wie sich das Gelernte konkret anwenden l\u00e4sst. Und Ihr trefft Menschen wieder, denen Ihr vielleicht schon bei einem Webinar oder Workshop begegnet seid\u2013 jetzt habt Ihr endlich Zeit, Euch n\u00e4her kennenzulernen.</p>\n<figure class=\"wp-block-image size-full\"><img alt=\"Social-Media-Bild f\u00fcr die WiNoDa-Datenexpedition, 1. Oktober bis 5. November 2026. Drei Spielzeug-Minifiguren stehen auf einem Schreibtisch. Eine sieht aus wie eine Kuratorin einer Sammlung, sie h\u00e4lt ein Buch in der Hand. Eine andere h\u00e4lt ein Schmetterlingsnetz und einen Schmetterling, w\u00e4hrend der dritte mit einem breitkrempigen Hut und einer Lupe f\u00fcr den Dschungel gekleidet ist. Auf dem Tisch liegen zahlreiche Gegenst\u00e4nde verstreut, die mit einer naturhistorischen Sammlung in Verbindung stehen. Au\u00dferdem ist eine Karte mit einer Route zu sehen, deren Stationen mit \"Planen\", \"Sammeln\", \"Teilen\" usw. beschriftet sind \u2013 der Lebenszyklus von Forschungsdaten.\" class=\"wp-image-15722\" decoding=\"async\" fetchpriority=\"high\" height=\"640\" sizes=\"(max-width: 640px) 100vw, 640px\" src=\"https://winoda.de/wp-content/uploads/2026/09/Data-Expedition.png\" srcset=\"https://winoda.de/wp-content/uploads/2026/09/Data-Expedition.png 640w, https://winoda.de/wp-content/uploads/2026/09/Data-Expedition-300x300.png 300w\" width=\"640\"/></figure>\n<h4 class=\"wp-block-heading\">Expeditionsplan</h4>\n<p class=\"wp-block-paragraph\">Wir starten alle gemeinsam am</p>\n<ul class=\"wp-block-list\">\n<li><strong>Donnerstag, 1. Oktober 2026, 10:00-12:00 Uhr (MESZ | UTC+2) bei einem online Kick-off</strong>.<br/>Wir stellen die Kurse vor, beantworten Fragen und lernen uns kennen.</li>\n</ul>\n<p class=\"wp-block-paragraph\">Direkt danach beginnt Eure</p>\n<ul class=\"wp-block-list\">\n<li><strong>Daten-Expedition als begleitetes Selbst-Studium</strong><br/>Die n\u00e4chsten f\u00fcnf Wochen studiert Ihr unsere Selbstlernkurse \u2013 zeitsouver\u00e4n, wann Ihr wollt. W\u00e4hrend Ihr Euren eigenen Lernpfad durch den Dschungel des Datenlebenszyklus folgt, k\u00f6nnt Ihr neues Wissen sammeln, verarbeiten, analysieren und diskutieren, wie Ihr es in neuen Kontexten anwenden wollt\u2026 Ob Ihr Euch auf einen Kurs oder ein Thema konzentriert, oder mehrere (alle ?!? <img alt=\"\ud83d\ude2f\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f62f.png\" style=\"height: 1em; max-height: 1em;\"/>) unsere Kurse absolvieren wollt, bleibt Eurer Entscheidung \u00fcberlassen. F\u00fcr jeden absolvierten Kurs erhaltet Ihr einen Badge und ein Zertifikat.<br/>Und wenn Ihr unterwegs Fragen habt, k\u00f6nnt Ihr Euch in unserem <a href=\"https://winoda.de/forum/\">Forum </a>austauschen oder die offene Sprechstunde besuchen.</li>\n</ul>\n<p class=\"wp-block-paragraph\">Zum Abschluss treffen wir uns noch einmal alle gemeinsam am</p>\n<ul class=\"wp-block-list\">\n<li><strong>Donnerstag, 5. November 2026, von 10:00-12:00 Uhr (MEZ | UTC+1) zu einer gemeinsamen Abschlussrunde (online)</strong><br/>Wir versammeln uns um das (virtuelle) Lagerfeuer und berichten von unseren Abenteuern \u2013 wo gab es unerwartete Hindernisse? Welche Sch\u00e4tze konntet Ihr heben und wie wollt Ihr Eure neu erworbenen F\u00e4higkeiten zuk\u00fcnftig f\u00fcr Eure Arbeit einsetzen? Wir w\u00fcrden gerne h\u00f6ren, wie es Euch ergangen ist, wie die Kurse und das Format sich bew\u00e4hrt haben, und was Ihr Euch f\u00fcr die zweite F\u00f6rderphase von WiNoDa w\u00fcnscht\u2026</li>\n</ul>\n<p class=\"wp-block-paragraph\"><strong>Alle unsere Selbstlernkurse sind auf englisch. Die Fertigstellung eines jeden Kurses wird mit einem Zertifikat bescheinigt.</strong></p>\n<h4 class=\"wp-block-heading\">WiNoDa Data Expedition: <a href=\"https://winoda.de/en/event/winoda-data-expedition/\">https://winoda.de/en/event/winoda-data-expedition/</a> Hier geht's zur Anmeldung: <a href=\"https://tinyurl.com/winoda-data-exploration\">https://tinyurl.com/winoda-data-exploration</a></h4>\n<p class=\"wp-block-paragraph\">Die Registrierung bleibt w\u00e4hrend der gesamten Data Expedition ge\u00f6ffnet \u2013 Nachz\u00fcgler sind jederzeit willkommen!</p>\n<pre class=\"wp-block-verse\"><a href=\"https://winoda.de/lernangebote/selbstlernkurse/\"><strong>Kursangebot</strong> </a><br/>- RRP - Reusability and its relevance (Basic, ca. 40 minutes)<br/>- RRP - Reusing object-related research data (Basic, ca. 1.5 hours)<br/>- RDM - Core concepts of data quality in research data management (Intermediate, ca. 1,5 hours)<br/>- RDM - Data Governance. Strategies for quality improvement in collection data (Intermediate, ca. 2 hours)<br/>- Regulatory Frameworks for Data Acquisition in Fieldwork (Basic, ca. 1 hour)<br/>- ATR 1 - Introduction: Basic concepts, terminology and workflow of Automatic Text Recognition (ATR) (Basic, ca. 2 hours)<br/>- ATR 2 - Deep Dive: Preprocessing and software selection (Basic, ca. 1 hour)<br/>- ATR 3 \u2013 Deep Dive: Transcription and semantic enrichment (Basic, ca. 1 hour)<br/>- ATR 4 - Deep Dive: Model Training and Publishing (Basic, ca. 1 hour)<br/><br/>Weitere Kurse sind noch in der Entwicklung und werden zu Moodle hinzugef\u00fcgt, sobald sie fertig sind.</pre>","doi":"https://doi.org/10.59350/w6zk6-8pb65","guid":"https://winoda.de/?p=15680","image":"https://winoda.de/wp-content/uploads/2026/09/Data-Expedition.png","language":"de","license":"https://creativecommons.org/licenses/by/4.0/legalcode","published_at":1789603200,"rid":"nbgw5-3tm14","summary":"Was lange w\u00e4hrt, wird endlich gut \u2013 oder so hei\u00dft es.Mit dem Start des Wintersemesters geht das WiNoDa Knowledge Lab noch einmal richtig in die Vollen: BYOD data clinic am [\u2026]","tags":["WiNoDa Knowledge Lab Journal","CfP","Datenkompetenz","FDM","OER"],"title":"Call for Participants: WiNoDa Data Expedition, 01.10.-05.11.2026. F\u00fcnf Wochen begleitetes Selbststudium rund um Forschungsdaten, Sammlungen und digitale Methoden.","updated_at":1789716613,"url":"https://winoda.de/2026/09/17/call-for-participants-winoda-data-expedition-01-10-05-11-2026-fuenf-wochen-begleitetes-selbststudium-rund-um-forschungsdaten-sammlungen-und-digitale-methoden/","version":"v1"},{"authors":[{"affiliation":[{"id":"https://ror.org/046ak2485","name":"Freie Universit\u00e4t Berlin"}],"contributor_roles":[],"family":"Fischer","given":"Georg","url":"https://orcid.org/0000-0001-5620-5759"}],"blog":{"authors":null,"community_id":"52aefd81-f405-4349-b080-754395a5d8b2","created":1694476800,"current_feed_url":null,"description":null,"doi":"https://doi.org/10.59350/oaberlin","favicon":"https://rogue-scholar.org/api/communities/52aefd81-f405-4349-b080-754395a5d8b2/logo","feed_format":"application/atom+xml","feed_url":"https://blogs.fu-berlin.de/open-research-berlin/feed/atom/","filter":null,"generator":"WordPress","home_page_url":"https://blogs.fu-berlin.de/open-research-berlin","issn":null,"language":"deu","license":"https://creativecommons.org/licenses/by/4.0/legalcode","prefix":"10.59350","relative_url":null,"secure":true,"slug":"oaberlin","status":"active","subfield":"1802","title":"Open Research Blog Berlin","updated":1789648456,"use_api":true},"blog_name":"Open Research Blog Berlin","blog_slug":"oaberlin","content_html":"<p>Unsere monatliche Rubrik zu aktuellen Veranstaltungen rund um Open Research.</p>\n<pre>Anmerkung zu dieser Rubrik: Das Open Research Office Berlin erstellt monatlich eine \u00dcbersicht \u00fcber Termine und Veranstaltungen zu Open Access und Open Research in Berlin bzw. an Berliner Einrichtungen. Der Fokus liegt dabei auf unseren Partnereinrichtungen und auf Veranstaltungen, die sich an die \u00d6ffentlichkeit richten bzw. die offen sind f\u00fcr Angeh\u00f6rige der Wissenschafts- und Kulturerbeeinrichtungen in Berlin. Wir erg\u00e4nzen diese Liste gerne (Info bitte via <a href=\"mailto:team@open-research-berlin.de\">Mail</a> ans OROB).</pre>\n<p><!--more--></p>\n<h2>30. September bis 2. Oktober, Zugang gestalten! &#8211; Geschichtspolitik und Erinnerung, Berlin</h2>\n<p><em>Wie gehen Einrichtungen des Kulturerbes mit den Zeugnissen der Vergangenheit um? Nutzen sie diese, um bestimmte Sichtweisen historischer Entwicklungen zu st\u00fctzen, oder \u00fcberlassen sie die Bewertung den Nutzenden und erm\u00f6glichen vor allem den Zugang zu den Quellen? W\u00e4hrend Museen mit kuratierten Ausstellungen h\u00e4ufig st\u00e4rker interpretierend arbeiten, verstehen sich Archive und Bibliotheken traditionell eher als Einrichtungen, die sich auf den Zugang zu ihren Best\u00e4nden konzentrieren. Diese Rollenverteilung ger\u00e4t jedoch unter Druck, wenn es um ein schwieriges Erbe \u2013 etwa rassistische oder antisemitische Zeugnisse \u2013 geht: Archive werden kritisiert, wenn sie scheinbar ungefilterten Zugang gew\u00e4hren, w\u00e4hrend zugleich geschichtspolitische Eingriffe in Kulturerbeeinrichtungen kontrovers diskutiert werden.</em></p>\n<ul>\n<li><strong>Termin: </strong>30.09. bis 02.10.2026, Staatsbibliothek zu Berlin (Standort: Potsdamer Stra\u00dfe 33)</li>\n<li><strong>Organisiert von</strong>: diverse Einrichtungen (<a href=\"https://zugang-gestalten.org/uber-uns/\">\u00dcberblick</a>)</li>\n<li>[<a href=\"https://zugang-gestalten.org/konferenzen/2026-geschichtspolitik-und-erinnerung/\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>1. Oktober, OER-Fachtag, online</h2>\n<p><em>2026 findet die dritte Ausgabe des gro\u00dfen OER-Fachtags von ORCA.nrw statt. Freuen Sie sich \u00fcber den Tag hinweg auf eine spannende Keynote, Projektvorstellungen, Workshops und viel Austausch &amp; Vernetzung!</em></p>\n<ul>\n<li><strong>Termin: </strong>01.10.2026, 9:30 bis 15:00 Uhr, online via Zoom</li>\n<li><strong>Organisiert von</strong>: Orca.NRW</li>\n<li>[<a href=\"https://www.orca.nrw/vernetzung/veranstaltungen/oer-fachtag/oer-fachtag-2026/\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>1. Oktober, Sicherung von Identit\u00e4t, Autorenschaft und Quellen, TU Berlin</h2>\n<p><em> Im Vortrag wird, ankn\u00fcpfend an das Blockchain-Projekt f\u00fcr digitale Zeugnisse, die EUDI-Wallet thematisiert. Die Historie der Entwicklung dieser digitalen Brieftasche auf EU-Ebene wird vorgestellt und die Funktionen und M\u00f6glichkeiten sowie Detailinformationen zur Sicherheit werden erl\u00e4utert. Der aktuelle Stand der Entwicklung wird betrachtet und in Form einer Demo wird die Nutzung an einem konkreten Beispiel veranschaulicht. Nach einem Blick auf zuk\u00fcnftige Entwicklungen im Bereich \"Digitaler Identit\u00e4ten\", wie z. B. Post-Quanten-Verschl\u00fcsselung oder Alternative Biometrische Identifikationsverfahren (AuBi) schlie\u00dft der Abend mit Raum f\u00fcr Diskussionen \u00fcber die Technologie und deren Nutzung.</em></p>\n<ul>\n<li><strong>Termin: </strong>01.10.2026, 18:00 bis 20:00 Uhr, H\u00f6rsaal 14 der Universit\u00e4tsbibliothek der TU Berlin, Fasanenstr. 88, 10623 Berlin (R/S/U Zoologischer Garten)</li>\n<li><strong>Organisiert von</strong>: BAK Information</li>\n<li>[<a href=\"https://bak-information.de/event/sicherung-von-identitaet-autorenschaft-und-quellen/\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>1. Oktober, KI und Demokratie: Rechtsstaat, Teilhabe und Nachhaltigkeit, ECDF Berlin</h2>\n<p><em>Der Einsatz von KI Technologien erstreckt sich zunehmend auf zentrale Bereiche politischer Steuerung, von der \u00f6ffentlichen Verwaltung und der Umweltpolitik bis hin zu Grenzregimen und wirtschaftlicher Regulierung. Dabei ver\u00e4ndern sie nicht nur Verfahren; es verschieben sich Machtkonstellationen, Verantwortung und politische Handlungsspielr\u00e4ume. Das Symposium mit \u00f6ffentlicher Paneldiskussion diskutiert KI als systemische Herausforderung f\u00fcr Demokratie und Rechtsstaat. Die Veranstaltung bietet kurze Einf\u00fchrungen in verschiedene Schwerpunkte unserer Forschung und erm\u00f6glicht eine kollaborative Plattform zur Diskussion der systemischen Kosten algorithmischer Governance f\u00fcr demokratische Strukturen. Dies schafft einen offenen Raum f\u00fcr Austausch mit politischen Entscheidungstr\u00e4ger*innen, Vertreter*innen von NGOs, Forschenden sowie allen, die an der Zukunft einer digitalen Gesellschaft interessiert sind.</em></p>\n<ul>\n<li><strong>Termin: </strong>01.10.2026, 9:00 bis 18:30 Uhr, ECDF, Wilhelmstr. 67, 10117 Berlin</li>\n<li><strong>Organisiert von</strong>: Einstein Center Digital Future</li>\n<li>[<a href=\"https://www.digital-future.berlin/veranstaltungen/ki-und-demokratie-rechtsstaat-teilhabe-und-nachhaltigkeit\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>1.-2. Oktober, Was kostet und wie nachhaltig ist digitale Kultur?, BBAW</h2>\n<p><em>Das Digitale ist ein gro\u00dfes Versprechen: Physische R\u00e4ume und pers\u00f6nliche Speichermedien scheinen ganz \u00fcberfl\u00fcssig zu werden, die Cloud soll ortsunabh\u00e4ngigen, schnellen Zugriff und unbegrenzten Speicherplatz erm\u00f6glichen. Aber was kostet das, welche L\u00f6sungen sind sicher und umweltvertr\u00e4glich?\u00a0Gemeinsam mit bestandserhaltenden Einrichtungen und Vertreter:innen aus Wissenschaft und Forschung wollen wir das Versprechen des Digitalen \u00fcberpr\u00fcfen und konstruktive Vorschl\u00e4ge zur longue dur\u00e9e des digitalen Erbes entwickeln. Es sprechen u.v. a.: Frank Scholze (Deutsche Nationalbibliothek), Richard Ovenden (Bodleian Library Oxford) und Petra Gehring (Rat f\u00fcr Informationsinfrastrukturen).</em></p>\n<ul>\n<li><strong>Termin: </strong>01. bis 02.10.2026, Akademiegeb\u00e4ude am Gendarmenmarkt, Einstein-Saal, J\u00e4gerstra\u00dfe 22/23, 10117 Berlin</li>\n<li><strong>Organisiert von</strong>: Berlin-Brandenburgische Akademie der Wissenschaften in Kooperation mit dem Literaturarchiv Marbach</li>\n<li>[<a href=\"https://www.bbaw.de/veranstaltungen/veranstaltung-was-kostet-und-wie-nachhaltig-ist-digitale-kultur\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>2. Oktober, Anti-Konferenz: Scheitern in den Digital Humanities, Mehringhof Berlin-Kreuzberg</h2>\n<ul>\n<li><strong>Termin: </strong>02.10.2026, 10:00 bis 17:00 Uhr, Mehringhof, Kreuzberg, Berlin</li>\n<li><strong>Organisiert von</strong>: Netzwerk junge Digital Humanities Berlin-Brandenburg in Kooperation mit dem Netzwerk Digitale Geisteswissenschaften Potsdam und der AG Empowerment des DHd-Verbands</li>\n<li>[<a href=\"https://junge-dh-berlin-brandenburg.github.io/termine/konferenzen/antikonferenz/Programm_Antikonferenz.html\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>5. Oktober, Open Science Forum Mitteldeutschland, Leipzig</h2>\n<p><em>Das Open Science Forum Mitteldeutschland 2026 bringt am 5. Oktober Interessierte zu einem offenen Austausch \u00fcber Open Science als Gestaltungsaufgabe zusammen. Wir widmen uns der Frage, welche Rolle wissenschaftsunterst\u00fctzende Einrichtungen spielen, wenn es um neue Ans\u00e4tze in der Forschungsbewertung, nachhaltige Infrastrukturen und digitale Souver\u00e4nit\u00e4t im Spannungsfeld geopolitischer Entwicklungen geht.</em></p>\n<ul>\n<li><strong>Termin: </strong>05.10.2026, 10:00 bis 17:00 Uhr, Bibliotheca Albertina, Beethovenstra\u00dfe 6, Leipzig</li>\n<li><strong>Organisiert von</strong>: Universit\u00e4t Leipzig, SaxFDM, Friedrich-Schiller-Universit\u00e4t Jena, Otto-von-Guericke-Universit\u00e4t Magdeburg,\u00a0Martin-Luther-Universit\u00e4t Halle-Wittenberg</li>\n<li>[<a href=\"https://pretix.eu/OSFM/OSFM2026/\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>8. Oktober, Originale erhalten: Demokratie sichern, Staatsbibliothek zu Berlin</h2>\n<p><em>In Archiven, Bibliotheken und anderen Ged\u00e4chtniseinrichtungen lagern bundesweit gef\u00e4hrdete Originale, die Meinungsvielfalt, Rechtsordnungen, historische Entwicklungen und politisches Handeln dokumentieren. Der Erhalt dieser \u00dcberlieferungen ist Grundvoraussetzung f\u00fcr eine quellen- und faktenbasierte Forschung, eine historische Aufarbeitung sowie die Sichtbarmachung gesellschaftlicher Mehrstimmigkeit und Diskurse. Originalerhalt ist grundlegender Bestandteil der Informationssicherung und ein wichtiger Beitrag zu einer lebendigen, urteilsf\u00e4higen und wehrhaften Demokratie \u2013 insbesondere angesichts der zunehmenden Bedrohung durch hybride Desinformation und andere demokratiegef\u00e4hrdende Entwicklungen.</em></p>\n<ul>\n<li><strong>Termin: </strong>08.10.2026, 9:00 bis 17:30 Uhr, Staatsbibliothek zu Berlin, Wilhelm-von-Humboldt-Saal, Unter den Linden 8, 10117 Berlin</li>\n<li><strong>Organisiert von</strong>: Akademie der K\u00fcnste, Koordinierungsstelle f\u00fcr die Erhaltung des schriftlichen Kulturguts, Bundesbeauftragte f\u00fcr Kultur und Medien und Kultur Stiftung der L\u00e4nder</li>\n<li>[<a href=\"https://www.kek-spk.de/3-kek-tagung-demokratie-sichern\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>15. Oktober, FDM-Sprechstunde Humanities@NFDI, online</h2>\n<p><em>Die FDM-Sprechstunde Humanities@NFDI ist eine Online-Beratung f\u00fcr Studierende, Forschende oder Mitarbeitende aus Forschungs- und Sammlungsinstitutionen zu allen Fragen rund um das Forschungsdatenmanagement. Expert:innen aus den geisteswissenschaftlichen NFDI-Konsortien NFDI4Memory, NFDI4Culture, NFDI4Objects und Text+ stehen f\u00fcr Ihre Fragen zu allen Themen rund ums Forschungsdatenmanagement bereit. Bei Bedarf k\u00f6nnen Einzelgespr\u00e4che in Breakoutr\u00e4umen vertieft werden.</em></p>\n<ul>\n<li><strong>Termin: </strong>15.10.2026, 10:00 bis 11:00 Uhr, online (weitere Termine werden angeboten)</li>\n<li><strong>Organisiert von</strong>: NFDI4Memory, NFDI4Culture, NFDI4Objects und Text+</li>\n<li>[<a href=\"https://events.gwdg.de/category/320/\">Information und Anmeldung</a>]</li>\n</ul>\n<hr />\n<h2>19.-25. Oktober, International Open Access Week: The Cost of Knowledge, online und an diversen Orten</h2>\n<p><em>Increasing consolidation and commercial control over all aspects of knowledge comes at a cost. This year's theme challenges us to consider the financial, human, and environmental costs of creating, sharing, and sustaining knowledge\u2014particularly when these costs are driven by private rather than public interests. Last year's theme of \"Who owns our knowledge?\" reflected on the reality of commercial ownership of knowledge. This year's theme will reckon with the costs of that reality and avenues for reclaiming control of these systems meant to serve the public interest.</em></p>\n<ul>\n<li><strong>Termin: </strong>19. bis 25.10.2026, diverse Termine online wie vor Ort</li>\n<li><strong>Organisiert von</strong>: diverse Einrichtungen</li>\n<li>[<a href=\"https://www.openaccessweek.org/\">Information und \u00dcberblick</a>]</li>\n</ul>\n<h2 class=\"moz-quote-pre\">19. Oktober, Rechtssichere Anwendung von K\u00fcnstlicher Intelligenz im Forschungsdatenmanagement, HU Berlin</h2>\n<p class=\"moz-quote-pre\"><em>In diesem Workshop lernen die Teilnehmenden datenschutzkonforme KI-Anwendungen und Einsatzm\u00f6glichkeiten kennen, die neue Wege f\u00fcr die Nachnutzung von Forschungsdaten erm\u00f6glichen und zur Verbesserung von Datenqualit\u00e4t, Metadatenverf\u00fcgbarkeit und Zug\u00e4nglichkeit beitragen. Mithilfe konkreter Anwendungsf\u00e4lle aus der Forschung werden die rechtssicheren Einsatzm\u00f6glichkeiten der KI im Datenlebenzyklus vorgestellt.</em></p>\n<ul>\n<li class=\"moz-quote-pre\"><strong>Termin:</strong> 19.10.2026, 09:00 &#8211; 15:30 Uhr, Humboldt-Universit\u00e4t zu Berlin, Unter den Linden 6, 10117 Berlin</li>\n<li>[<a href=\"https://www.berlin-university-alliance.de/commitments/sharing-resources/shared-resources-center/CARDS-FDM/cards_events/2026-10-KI-FDM.html\">Information und Anmeldung</a>]</li>\n</ul>\n<h2 class=\"moz-quote-pre\">19. Oktober, Online Lunch Meeting: Offen und fair Publizieren: Orte und Tools f\u00fcr digitales, nicht-kommerzielles Publizieren</h2>\n<p>Faires, wissenschaftsgeleitetes Open-Access-Publizieren gewinnt zunehmend an Bedeutung, nicht zuletzt durch die Priorisierungsagenda der BUA-Einrichtungen zur Umsetzung des Open-Science-Leitbilds und das Positionspapier zu Open Research der Berliner Landesinitiative. Doch welche Alternativen zu etablierten, oft kommerziellen Publikationswegen gibt es eigentlich, und wie funktionieren sie? In diesem einst\u00fcndigen Lunch Meeting stellen wir Ihnen ausgew\u00e4hlte Orte und Tools f\u00fcr digitales Publizieren vor.</p>\n<ul>\n<li>Termin: 19.10.2026, 13:00-14:00 Uhr, online</li>\n<li>[<a href=\"https://blogs.fu-berlin.de/open-research-berlin/2026/09/17/online-lunch-meeting-offen-und-fair-publizieren/\">Information und Anmeldung</a>]</li>\n</ul>\n<h2 class=\"moz-quote-pre\">20. Oktober, OpenRefine \u2013 Effiziente Datenbereinigung f\u00fcr das Forschungsdatenmanagement, HU Berlin</h2>\n<p class=\"moz-quote-pre\"><em>Der Workshop f\u00fchrt in die Grundfunktionen von OpenRefine ein und zeigt an konkreten Anwendungsf\u00e4llen, wie Forschende tabellarische Datens\u00e4tze bereinigen, strukturieren und anreichern k\u00f6nnen. Dabei werden auch geskriptete Bearbeitungsschritte sowie der Import und Export verschiedener Datenformate (CSV, XML, JSON) behandelt. OpenRefine erm\u00f6glicht nicht nur einen schnellen \u00dcberblick \u00fcber gro\u00dfe Datens\u00e4tze, sondern hilft vor allem bei heterogenen und historisch gewachsenen Datens\u00e4tze, die oft inkonsistente Metadaten aufweisen.</em></p>\n<ul>\n<li class=\"moz-quote-pre\"><strong>Termin:</strong> 20.10.2026, 09:00 &#8211; 12:00 Uhr, Humboldt-Universit\u00e4t zu Berlin, Unter den Linden 6, 10117 Berlin</li>\n<li class=\"moz-quote-pre\">[<a href=\"https://www.berlin-university-alliance.de/commitments/sharing-resources/shared-resources-center/CARDS-FDM/cards_events/2026-openrefine-aktionswoche.html\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>20. Oktober, Introduction to electronic lab notebooks (ELN), online</h2>\n<p><em>Der Workshop gibt einen \u00dcberblick \u00fcber ELN-Konzepte, zeigt relevante Forschungsdatenmanagement-Aspekte auf und bietet eine praktische Einf\u00fchrung.</em></p>\n<ul>\n<li><strong>Termin:</strong> 20.10.2026, 13:00 &#8211; 16:00 Uhr, online</li>\n<li>[<a href=\"https://www.berlin-university-alliance.de/commitments/sharing-resources/shared-resources-center/CARDS-FDM/cards_events/2026-10-eln-aktionswoche.html\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>21. Oktober, Aktionstag Forschungsdaten@BUA, FU Berlin</h2>\n<p><em>Der Aktionstag \"Forschungsdaten@BUA\" l\u00e4dt erstmals Forschende der Berlin University Alliance herzlich ein, \u00fcber den Umgang mit Forschungsdaten ins Gespr\u00e4ch zu kommen, sich auszutauschen und zu vernetzen. Ziel ist es, Best Practices sichtbar zu machen, Erfahrungen auszutauschen und den Dialog \u00fcber den Umgang mit Forschungsdaten \u00fcber die vier BUA-H\u00e4user hinweg auszubauen.</em></p>\n<ul>\n<li><strong>Termin: </strong>21.10.2026, 08:30 bis 16:00 Uhr, Freie Universit\u00e4t Berlin, Seminarzentrum, Silberlaube, Otto-von-Simson-Str. 26, 14195 Berlin-Dahlem</li>\n<li>[<a href=\"https://www.berlin-university-alliance.de/commitments/sharing-resources/shared-resources-center/CARDS-FDM/cards_events/2026-10-21-aktionstag-fdm-bua.html\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>22. Oktober, FAIR und reproduzierbar: Tidy Data, Versionskontrolle &amp; Wikidata in der Forschungspraxis, online</h2>\n<p><em>Im Rahmen dieses Hands-on-Workshops werden Konzepte zum effizienten, reproduzierbaren und nachvollziehbaren Arbeiten mit Forschungsdaten vermittelt. Ziel ist es, die Teilnehmenden mit verschiedenen Werkzeugen vertraut zu machen und das Bewusstsein f\u00fcr Computational Thinking, Automatisierung sowie die Optimierung eigener Arbeitsprozesse zu sch\u00e4rfen.</em></p>\n<ul>\n<li><strong>Termin:</strong> 22.10.2026, 09:00 &#8211; 16:00, online</li>\n<li>[<a href=\"https://www.berlin-university-alliance.de/commitments/sharing-resources/shared-resources-center/CARDS-FDM/cards_events/2026-10-FAIR-und-reproduzierbar.html\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>26. Oktober, Urheberrecht in der Forschung: Daten sicher nutzen, teilen, publizieren, FU Berlin</h2>\n<p>Im Forschungsalltag stehen Forschende regelm\u00e4\u00dfig vor urheberrechtlichen Fragen: Welche Inhalte darf ich in meiner Arbeit verwenden? Unter welchen Bedingungen kann ich Daten und Materialien offen teilen? Wie gehe ich mit KI-Tools und deren Trainingsdaten rechtssicher um? Dieser Workshop bietet praxisnahe Orientierung f\u00fcr den sicheren Umgang mit gesch\u00fctzten Inhalten und Lizenzen in der wissenschaftlichen Arbeit.</p>\n<ul>\n<li><strong>Termin: </strong>26.10.2026, 10:00 &#8211; 16:00 Uhr, Universit\u00e4tsbibliothek Garystra\u00dfe 39 14195 Berlin</li>\n<li>[<a href=\"https://www.berlin-university-alliance.de/commitments/sharing-resources/shared-resources-center/CARDS-FDM/cards_events/2026-10-till-kreutzer-ws.html\">Information und Anmeldung</a>]</li>\n</ul>\n<h2>10., 17.,\u00a024. November, Workshop Series &#8222;AI in Research Data Management: Balancing Efficiency and Responsibility&#8220;, online</h2>\n<p><em>In our three-part workshop series, we explore the relationship between the technical aspects, practical applications and critical reflection of the use of AI in research data management. Participants will learn about various AI tools and use cases for research data management, test, and develop criteria for the meaningful and responsible use of AI in their own work.</em></p>\n<ul>\n<li><strong>Termine: </strong>10., 17., 24.11.2026, 10:00 \u2013 11:30 Uhr, online</li>\n<li>[<a href=\"https://www.berlin-university-alliance.de/commitments/sharing-resources/shared-resources-center/CARDS-FDM/cards_events/ai_rdm.html\">Information und Anmeldung</a>]</li>\n</ul>\n<p>weiter zu November 2026 [in K\u00fcrze]</p>","doi":"https://doi.org/10.59350/pzvzm-f9w08","guid":"https://blogs.fu-berlin.de/open-research-berlin/?p=4297","language":"de","license":"https://creativecommons.org/licenses/by/4.0/legalcode","published_at":1788220800,"rid":"208kg-aed59","summary":"Unsere monatliche Rubrik zu aktuellen Veranstaltungen rund um Open Research. Anmerkung zu dieser Rubrik: Das Open Research Office Berlin erstellt monatlich eine \u00dcbersicht \u00fcber Termine und Veranstaltungen zu Open Access und Open Research in Berlin bzw. an Berliner Einrichtungen.","tags":["Veranstaltungshinweise"],"title":"Veranstaltungshinweise Oktober 2026","updated_at":1789716611,"url":"https://blogs.fu-berlin.de/open-research-berlin/2026/09/01/veranstaltungshinweise-oktober-2026/","version":"v1"}],"out_of":57622,"page":1,"per_page":10,"total-results":57622}
