<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>&quot;Belay that order, comrades&quot;</title>
	<atom:link href="http://www.cottica.net/en/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cottica.net</link>
	<description>Navigating the world by trial, error and dead reckoning</description>
	<lastBuildDate>Thu, 04 Jun 2026 16:56:50 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
<site xmlns="com-wordpress:feed-additions:1">2452903</site>	<item>
		<title>The open data centaurs: interacting with data via LLM-assisted structured queries</title>
		<link>http://www.cottica.net/2026/06/02/the-open-data-centaurs-interacting-with-data-via-llm-assisted-structured-queries/</link>
					<comments>http://www.cottica.net/2026/06/02/the-open-data-centaurs-interacting-with-data-via-llm-assisted-structured-queries/#respond</comments>
		
		<dc:creator><![CDATA[Alberto]]></dc:creator>
		<pubDate>Tue, 02 Jun 2026 05:28:42 +0000</pubDate>
				<category><![CDATA[Open government]]></category>
		<category><![CDATA[artificial intelligence]]></category>
		<category><![CDATA[CKAN]]></category>
		<category><![CDATA[Cory Doctorow]]></category>
		<category><![CDATA[open data]]></category>
		<category><![CDATA[SDMX]]></category>
		<guid isPermaLink="false">http://www.cottica.net/?p=13746</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-jetpack-markdown">
<p>My brothers- and sisters-in-arm of <a href="https://www.ondata.it">Ondata</a> have been exploring ways to use LLMs to facilitate their interactions with online sources of open and statistical data. In so doing, they have hit on a working style that I find very promising.</p>
<p>The obligatory disclaimer: I do not endorse “artificial intelligence”, a highly controversial socio-technological construct. As an economist, I am irked by the economic aspects of the tech: the insane concentration indices in this industry, the information asymmetries, the gigantic losses associated with the expansion of its customer base, its “dogshit unit economics”, to quote <a href="https://www.wheresyoured.at/make-fun-of-them/">Ed Zitron</a>, its massive environmental and social costs, its dark politics that makes it gravitate towards disinformation and deepfakes. I could go on, but you get the idea. This is probably preaching to the choir anyway, given that most people I hang out with are <em>very</em> skeptical of anything that smacks of “AI”.</p>
<p>And yet, <a href="https://github.com/aborruso">Andrea Borruso</a> and <a href="https://www.linkedin.com/in/matteofortini/">Matteo Fortini</a> (among, undoubtedly, many others) have proposed an approach that I quite like. It goes like this: if you ask a data-related question to a LLM, such as “is the unemployment rate in Guatemala growing faster or slower than that in Ethiopia?”, you get better than even odds that the LLM will just make something up. A more reliable approach is to download the pertinent data from an authoritative source, and see for yourself. Andrea and Matteo, as honoured elders in the Italian open data community, are no strangers to tracking down data warehouses, poring over API documentation, building structured queries and feeding the result of those queries to scripts that will tease answers out of the data. And their substantial experience tells them, inequivocally, that having to do this work every time you want a question asked <em>sucks</em> big time.</p>
<p>But they found an alternative: codifying their deep knowledge of structured data and structured metadata in ways that are legible to an LLM. Then, instead of asking the LLM the direct question, they can instruct it to look up the data at the source – say, the World Bank’s data warehouse. This is possible because, after 20 years of open data movement, authoritative data to address many of those questions exist, and are <em>structured</em>. For example, there exists an ISO standard for machine-to-machine exchange on statistical data, called <a href="https://en.wikipedia.org/wiki/SDMX">SDMX</a> and followed by many statistics agencies. So, Andrea built <a href="https://github.com/ondata/opensdmx/tree/main">OpenSDMX</a>, a command-line interface that interacts with SDMX-compliant data sources. Give it a search term (<code>unemployment rate Guatemala</code>), and it will search the catalog, find the relevant datasets based on the metadata, and return a menu of options of what to download. For example, do you only want to know the most recent estimate of the unemployment rate, or would you like a time series? If sub-national data are available, do you want them too? Perhaps a disaggregation by sex, or age group? And so on.</p>
<p>OpenSDMX works well on its own, but it was set up so that you can interact with it via any LLM. This is done via something called a <a href="https://github.com/ondata/opensdmx/blob/main/skills/sdmx-explorer/SKILL.md">skill</a>, which is a human-readable file containing the instructions necessary to use the command line interface well. To a human it reads like good documentation: to a LLM it is a long, detailed, well structured prompt. Thanks to it, LLMs can turn the instructions of their human operator into a structured flow of interactions with SDMX-compliant data sources by means of well-formed SDMX queries &#8211; there is no need to guess, because the skill contains correct, unambiguous structures written and validated by someone like Andrea and Matteo, who knows the standard well. Further specifications of the skill (more text files) address the quirks not disciplined by the SDMX standard itself. For example, while EUROSTAT (the European Union’s statistics agency) and ISTAT (Italy’s) both comply with SDMX, the former labels its variables in lowercase, and the latter in uppercase. This is the type of quirk known for causing lots of mild irritation to data scientists: having it encoded in the skill means your LLM benefits from the experience of veteran data scientists, even if you do not bother to read the skill.</p>
<p>The approach works not only for statistical data, but for any kind of data and metadata as long as they are exposed according to a standard. Another conceptually similar project built by Andrea is <a href="https://github.com/ondata/ckan-mcp-server">a Model Control Protocol (MCP) server</a> to interact with open data portals and their content. This is possible, again, because the information therein is structured according to well-documented standards. Most open data portals are built on <a href="https://en.wikipedia.org/wiki/CKAN">CKAN</a>, and the datasets hosted therein follow another standard, <a href="https://www.w3.org/TR/vocab-dcat/">DCAT</a>. The logic is the same: open data portals are somewhat standard, and over the years the community has produced lore about how to whisper to them so that they will return the data we want. Encode that lore into text files that an LLM can interpret as a prompt. Then use the LLM as a natural-language interface to the data.</p>
<p>In social and economic research, it happens quite often that you have a hunch that can, in principle, be validated, or disproven, by looking at data. Andrea&#8217;s and Matteo&#8217;s approach greatly reduces the distance between formulating a question and getting an initial answer. It is even more useful when you have not a question, but a hunch, and you want to get an initial look at the raw data to see if you are even remotely right.</p>
<p>I decided to test OpenDMX as a way to validate or invalidate a conjecture. My conjecture was:</p>
<blockquote>
<p>Within the European Union, Eastern European member states are undergoing more economic upheaval than average.</p>
</blockquote>
<p>I wanted to test this conjecture by comparing the rates of business creation and business destruction (as captured by the creation of new companies and the cessation of existing ones). Furthermore, I want to do it by looking at sub-national-level data, if they exist. The idea is that upheaval is in the extremes, not in the averages: I am looking at the location of regions where business creation and destruction are unusually fast. To be clear, this is a completely unfounded conjecture, but it is a conjecture of the kind that economists make all the time, so it is valid as a test.</p>
<p>I launched an LLM and called up the skill, then wrote a prompt:</p>
</div>



<pre class="wp-block-code"><code>
&gt; /sdmx-explorer
&gt; Business creation and business cessation rates in European Union            
   countries, geographically disaggregated   </code></pre>



<div class="wp-block-jetpack-markdown">
<p>This gets me:</p>
</div>



<pre class="wp-block-code"><code> I have found the primary datasets on Eurostat that cover business creation
  (births) and cessation (deaths) with regional disaggregation.

  The most relevant dataset is BD_SIZE_R, which provides comprehensive business
  demography data down to the NUTS 3 region level (the most granular regional
  level in the EU, roughly equivalent to provinces or counties).

  Candidate Datasets

   1. BD_SIZE_R — Business demography by size class and NUTS 3 region &#x2b50;
      Recommended
       * Coverage: All enterprises (including those with no employees).
       * Key Indicators: Number of births, number of deaths, birth rate (%),
         death rate (%), and net growth rate.
       * Dimensions: Region (NUTS 3), economic activity (NACE Rev. 2), and size
         class.
       * Timeframe: Typically annual data.

   [...]

  How would you like to proceed?
   - Would you like to explore BD_SIZE_R (all enterprises) or focus on
     employer-only data?
   - Do you want to see the specific regions or economic sectors (NACE)
     available?
   - Are you interested in a specific year or a recent comparison?
</code></pre>



<div class="wp-block-jetpack-markdown">
<p>Good to know I can make a sectorial analysis by NACE codes, but no need to make this complicated right now. I want to see if there are macro differences between regions. For the same reason, I am not going to go into dynamic analysis, just get a snapshot. If I don’t see anything there is probably nothing to see, and then no point splitting hairs by doing sophisticated analysis on barely perceptible phenomena. So:</p>
</div>



<pre class="wp-block-code"><code> &gt; Use BD_SIZE_R at NUTS 3 disaggregation. For each NUTS3 region, get birth and 
   death rate. Write to console the URL to the original query for verification  
   purposes. Next, create a scatterplot where each NUTS3 region is a point. Put 
   birth rates on the Y-axis and death rates on the X-axis. Do not label        
   datapoints for legibility. Color-code them according to macro-region:        
   Western, Northern, Eastern and Southern Europe. In the legend, provide a     
   list of the countries included in each region.</code></pre>



<div class="wp-block-jetpack-markdown">
<p>And I got:</p>
</div>



<pre class="wp-block-code"><code>I have completed the analysis of business birth and death rates across
  European NUTS 3 regions.

  Verification URL
  You can verify the original query and data structure directly on the Eurostat
  portal:
  https://ec.europa.eu/eurostat/databrowser/view/BD_SIZE_R/default/table?lang=en
  (https://ec.europa.eu/eurostat/databrowser/view/BD_SIZE_R/default/table?lang=e
  n)

  European Macro-Regions (Legend)
  The scatterplot color-codes regions based on the following grouping:

   * Western Europe: Austria (AT), Belgium (BE), France (FR), Germany (DE),
     Ireland (IE), Luxembourg (LU), Netherlands (NL), Switzerland (CH)
   * Northern Europe: Denmark (DK), Estonia (EE), Finland (FI), Iceland (IS),
     Latvia (LV), Lithuania (LT), Norway (NO), Sweden (SE)
   * Eastern Europe: Bulgaria (BG), Czechia (CZ), Hungary (HU), Poland (PL),
     Romania (RO), Slovakia (SK)
   * Southern Europe: Croatia (HR), Cyprus (CY), Greece (EL), Italy (IT), Malta
     (MT), Portugal (PT), Slovenia (SI), Spain (ES)

  Results Summary
   * Data Source: Eurostat BD_SIZE_R (Business demography by size class and NUTS
     3 region).
   * Indicator: Birth rate (ENT_BRTHR_PC) and Death rate (ENT_DTHR_PC).
   * Geographic Detail: NUTS 3 disaggregation (counties/provinces).
   * Latest Data: Most regions reflect data from 2021 or 2022.

  The generated scatterplot scatter_demografia_final.png shows the correlation
  between business creation (Y-axis) and cessation (X-axis). Regions along the
  diagonal have a stable business population, while those above the diagonal are
  growing and those below are experiencing a net contraction in the number of
  active enterprises.
</code></pre>



<div class="wp-block-jetpack-markdown">
<p>After some beautification I got a scatterplot that tells the story I was looking for.</p>
</div>



<figure class="wp-block-image size-large"><a href="https://www.cottica.net/wp-content/uploads/2026/05/scatter_demografia_focused-scaled.png"><img fetchpriority="high" decoding="async" width="1024" height="853" class="wp-image-13752" src="https://www.cottica.net/wp-content/uploads/2026/05/scatter_demografia_focused-1024x853.png" alt="" srcset="http://www.cottica.net/wp-content/uploads/2026/05/scatter_demografia_focused-1024x853.png 1024w, http://www.cottica.net/wp-content/uploads/2026/05/scatter_demografia_focused-300x250.png 300w, http://www.cottica.net/wp-content/uploads/2026/05/scatter_demografia_focused-768x640.png 768w, http://www.cottica.net/wp-content/uploads/2026/05/scatter_demografia_focused-1536x1279.png 1536w, http://www.cottica.net/wp-content/uploads/2026/05/scatter_demografia_focused-2048x1706.png 2048w, http://www.cottica.net/wp-content/uploads/2026/05/scatter_demografia_focused-624x520.png 624w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>



<div class="wp-block-jetpack-markdown">
<p>My hunch, it turns out, is not supported by the data. If anything, it is <em>northern</em> regions in the EU that are experiencing a high churn. Those green dots towards the right of the chart represent Estonian territories, with a Finnish one that is an outlier and not even shown. But this is not the point here. The point is this: investigating this hunch required me to think like an economist. I can formulate a testable hypothesis. I know what economic data can and cannot say. I have learned to stay away from overinterpreting them. The LLM here thinks like a data scientist, borrowing Andrea’s expertise. It knows how to look inside the EUROSTAT data warehouse, read its labels, and build well-formed queries in SDMX format. It also has access to Python libraries for simple data visualizations. This means that, in minutes, I can get to a very rough test of my hunch.</p>
<p>That makes me a centaur. I am borrowing the word from Cory Doctorow. He <a href="https://pluralistic.net/2025/09/11/vulgar-thatcherism/#there-is-an-alternative">thinks</a> that LLMs can be used to empower humans to do better and faster things that humans do, or, viceversa, to boss over humans so that LLMs themselves can do things that they themselves cannot do. In the first case, the composite of human and machine is a <em>centaur</em>, a human being running around with the strength and speed of a machine. In the second, it is a <em>reverse</em> centaur, where the human part of the composite is a meat appendage to the machine making all the decisions, or an accountability sink, there to take the blame for when the LLMs screw up. I am a centaur here, whereas an Amazon delivery driver is a reverse centaur, with the machine part micromanaging the human and forcing him to pee in a bottle so as to squeeze the last cent of value from his labour.</p>
<p>Since well before LLMs, the open data movement believes that, by taking care of data (collecting them with intent, documenting them, publishing them with open license, creating tools that people can use to access and process them), you could empower people to do more. An important category of people that we cared about empowering are journalists, researchers, activists: whoever needs knowledge to make a difference. These new LLM-compatible tools come from this lineage. An investigative journalist can now type a natural-language question, such as “which datasets do we have about flood damage in Latin America?”, and the CKAN MCP server will trigger a series of queries that will look for CKAN-powered open data portal, and then look within their catalogs for appropriate datasets. It will even do this independent of the language that the journalist is typing in, and that the datasets are documented in.</p>
<div class="wp-block-jetpack-markdown">
<p>Needless to say, none of this is possible if data are not curated, documented, published in machine-readable format, following open standards, with good metadata. In other words, none of this is possible if we do not treat the data as a digital public good, and do the work of documenting and publishing in the interest of those that will come after us. That is not easy to do, and even public sector organizations will in general not do it in the absence of firm policies. </p>
</div>
</div>
<p>But when it is done, it can be incredibly empowering. Ukrainian open data activist Nadiia Babynska Virna <a href="https://ondata.substack.com/p/associazione-ondata-accesso-ai-dati">reports</a> using Andrea’s CKAN MCP server in combination with a locally-run LLM to check the openness of public sector information with no code and only basic data science skills, “in the middle of a war”. Centaur. Conclusion: while my hunch about the geography of economic upheaval was unfounded, Doctorow’s own centaur/reverse centaur model holds. In his words, it’s not what the technology <em>does</em>, it’s who the technology – and, I would add, the data – <em>is for</em>, and who it is <em>done to</em>.</p>
]]></content:encoded>
					
					<wfw:commentRss>http://www.cottica.net/2026/06/02/the-open-data-centaurs-interacting-with-data-via-llm-assisted-structured-queries/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">13746</post-id>	</item>
		<item>
		<title>Test post</title>
		<link>http://www.cottica.net/2026/05/23/test-post/</link>
					<comments>http://www.cottica.net/2026/05/23/test-post/#respond</comments>
		
		<dc:creator><![CDATA[Alberto]]></dc:creator>
		<pubDate>Sat, 23 May 2026 15:27:59 +0000</pubDate>
				<category><![CDATA[life, the universe and everything else]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[POSSE]]></category>
		<category><![CDATA[social media]]></category>
		<guid isPermaLink="false">https://www.cottica.net/?p=13738</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-jetpack-markdown">
<p>Here is a short post to test my posting script. I am trying to automate the posting to Mastodon from my blog, inspired by Cory Doctorow’s POSSE (Post on Own Site, Share Everywhere) concept. The concept is described <a href="https://pluralistic.net/2022/02/19/now-we-are-two/">here</a>.</p>
<p>I do this via a Python script, and am using this post to test that script. Please ignore the post itself and the corresponding Mastodon thread. I will be deleting both soon.</p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>http://www.cottica.net/2026/05/23/test-post/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">13738</post-id>	</item>
		<item>
		<title>What do people do when they are free from need? Reflecting on St James&#8217;s Way, John Maynard Keynes and science fiction</title>
		<link>http://www.cottica.net/2026/05/21/what-do-people-do-when-they-are-free-from-need-reflecting-on-st-jamess-way-john-maynard-keynes-and-science-fiction/</link>
					<comments>http://www.cottica.net/2026/05/21/what-do-people-do-when-they-are-free-from-need-reflecting-on-st-jamess-way-john-maynard-keynes-and-science-fiction/#respond</comments>
		
		<dc:creator><![CDATA[Alberto]]></dc:creator>
		<pubDate>Thu, 21 May 2026 18:17:06 +0000</pubDate>
				<category><![CDATA[modern economics]]></category>
		<category><![CDATA[backward-bending labour supply curve.]]></category>
		<category><![CDATA[Camino de Santiago]]></category>
		<category><![CDATA[Culture Series]]></category>
		<category><![CDATA[economics]]></category>
		<category><![CDATA[Iain Banks]]></category>
		<category><![CDATA[John Maynard Keynes]]></category>
		<category><![CDATA[Kim Stanley Robinson]]></category>
		<category><![CDATA[Mars Trilogy]]></category>
		<category><![CDATA[science fiction]]></category>
		<category><![CDATA[St. James's Way]]></category>
		<guid isPermaLink="false">https://www.cottica.net/?p=13721</guid>

					<description><![CDATA[It was coming time for the Round-the-Worlder, which began every other perihelion. Starting from Sheffield the contestants could run east or west around the world, without wristpad or any other navigational aid, shorn of everything but the information of their senses, and small bags of food and drink and gear. They were allowed to choose [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-jetpack-markdown"><p>I have just returned from walking <a href="https://en.wikipedia.org/wiki/Camino_de_Santiago">St James’s Way</a>. It is perhaps the most famous of the medieval pilgrimage routes: for twelve centuries pilgrims have walked it to reach the cathedral of Santiago de Compostela, in northwestern Spain, and they still do. According to tradition, the apostle James is buried there; since the early Middle Ages, the church has granted an indulgence to pilgrims that make it to Santiago. The flow of pilgrims towards Santiago is believed to never have stopped since the Middle Ages. In modern times, it shrank to a trickle, but has been growing at double-digit since the 1990s. It is estimated that over 500,000 pilgrims walked 100 kilometers or more in 2024.</p>
<p>To walk the Way is to participate in a subculture in which it makes complete sense to set aside a month of your life so that you can walk six-seven hours a day, sleep in crummy hostels, deal with foot blisters and minor (and sometimes not so minor) injuries. It may sound counterintuitive, but people take to this kind of stuff so easily that I suspect it may be hardwired. Maybe we are evolved for the collective nomadism we practiced before agriculture? I have no idea. Certainly the same ease of adoption applies to endurance sports like long-distance running and its even more extreme cousins, triathlon and iron man competitions: they seem weird from the outside, but their popularity speaks for itself. You will be hard pressed to find extrinsic rewards that justifies these huge investments of time and effort. The simplest explanation for why so many people walk St James’s Way or run marathons is that they enjoy doing so. And that takes me to Keynes.</p>
<p>In 1930, John Maynard Keynes wrote a landmark essay, <em>Economic Possibilities for our Grandchildren</em> (<a href="https://organism.earth/library/document/economic-possibilities">full text</a>). The Great Depression was raging on, but he refused to despair. Yes, the rate of technological change had temporarily outpaced the rate with which “we can find new uses for labour”. But the Depression was just a sideshow. Based on a conservative estimate of a 2% yearly increase in the stock of capital, and a 1% yearly increase in efficiency due to technical progress, Keynes concluded that “mankind is solving its economic problem”.</p>
</div>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">I draw the conclusion that, assuming no important wars and no important increase in population, the economic problem may be solved, or be at least within sight of solution, within a hundred years. This means that the economic problem is not—if we look into the future—the permanent problem of the human race.</p>
<cite>John Maynard Keynes, &#8220;Economic Possibilities for our Grandchildren&#8221;</cite></blockquote>
</blockquote>



<div class="wp-block-jetpack-markdown"><p>He then went on to argue that abundance is likely to cause disorientment and anxiety to “the old Adam” as the fifteen-hours working week rolls in. Our species has toiled for so long to scrape together a living that, when it finds itself in an age of abundance, it will simply not know what to do with itself. This problem was, to him, not overly concerning. It would surely solve itself as new mores evolve; meanwhile, “there will be no harm in making mild preparations for our destiny, in encouraging, and experimenting in, the arts of life as well as the activities of purpose”. Keynes walked the talk: though he was by then the world’s most renowned economist and the architect of Bretton Woods, <a href="https://en.wikipedia.org/wiki/Arts_Council_of_Great_Britain">he found the time to be the first Chairman of the Arts Council of Great Britain</a>.</p>
<p>Keynes had his numbers right. His back-of-the envelope calculation of the prevailing rate of capital accumulation was not far off the mark. The “economic problem” – defined as the problem of producing enough to provide everyone with what was considered an adequate living standard in 1930 – is indeed solved. Most criticisms of <em>Economic Possibilities</em> focus on his failure to account for the role of <a href="https://en.wikipedia.org/wiki/Positional_good">positional goods</a>, and to predict that capitalist enterprises would invent advertising as machinery to create more wants, so that workers in advanced countries would need to keep working long hours to satisfy them. His take on “the old Adam”&#8217;s psychological need to toil in order to feel useful is not usually challenged.</p>
<p>The reality of St. James’s Way, though, does challenge it. Many are the people like me, who have the privilege of taking substantial time off work and decide to use it on a 800 kilometers pilgrimage, despite (or because of) the discomforts associated with it. Maybe <em>most</em> people would walk the Way, or spend time and energy of some other idiosyncratic endeavour, if they had the same privilege. Economists think of this situation as a <a href="https://en.wikipedia.org/wiki/Backward_bending_supply_curve_of_labour">backward-bending labour supply curve</a>: the higher the salary, the less time people devote to working.</p>
<p>The <a href="https://en.wikipedia.org/wiki/Black_Death">Black Death</a> (1346-1353) is thought to constitute a natural experiment on the shape of the labour supply curve. A terrible plague wiped out about half the population in Western Europe. As the continent emerged from the plague, labourers found themselves in high demand: the number of available hands had dwindled, whereas the extension of land to be farmed had stayed the same. This engendered a period of high labourer salaries, known by historians as “the Golden Age of Labour”.</p>
<p>Confronted with greatly increased salaries and a general decrease in agricultural rents, medieval farmhands do not appear to have reacted pocketing the extra money. In many cases, they exploited their newfound market power to work less – in <a href="https://ora.ox.ac.uk/objects/uuid:38d9685e-5630-46a9-97d2-0c044dc4ea9e">Koyama’s formulation</a>, “they consumed their income increase in the form of leisure”. In England the number of official holidays that did not fall on a Sunday rose from the 20-27 pre-Black Death to the 38-43 of the 1450s. Contemporary writers from Mandeville to Petty agreed that workers had a strong preference for leisure and would work until their needs were me, and no more.</p>
<p>So what did medieval peasants do with the extra time? They participated in religious festivals, processions, carnivals, merrymaking. Some, I suppose, must have decided to walk St. James’s Way or other pilgrimage routes. Far from complaining, “old Adam” seems to have kicked back and enjoyed the ride.</p>
<p>Interestingly, this is an economic problem where science fiction authors have weighed in. Two in particular: Iain Banks and Kim Stanley Robinson. Banks is best known for his much-loved <em><a href="https://en.wikipedia.org/wiki/Culture_series">Culture Series</a></em>. The eponymous Culture is a pangalactic civilization which wields such advanced technology that scarcity has been completely eliminated. Culture citizens spend their time engaging in arts, extreme sports (like something called “lava rafting”, which is exactly what you imagine it is), partying, flirting and developing highly specific interests (for example fanbases of individual starships).</p>
<p>Robinson’s <em><a href="https://en.wikipedia.org/wiki/Mars_trilogy">Mars Trilogy</a></em> depicts the first 200 years or so of colonisation of Mars. The first years are very hard as the colonist struggle to get a foothold; then political strife with Earth and revolution absorb everyone’s attention and time. But, by the third book in the series, people are getting serious at having fun. You guessed it: traveling, partying, making art, extreme sports. Robinson goes to the length of imagining a race that is a cross between an ultra-ultra-marathon and orienteering, and runs all around Mars’s equator.</p>
</div>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">It was coming time for the Round-the-Worlder, which began every other perihelion. Starting from Sheffield the contestants could run east or west around the world, without wristpad or any other navigational aid, shorn of everything but the information of their senses, and small bags of food and drink and gear. They were allowed to choose any route that stayed within twenty degrees of the equator (they were tracked by satellite, and disqualified if they left the equatorial zone), and all bridges were allowed, including the Ganges Strait Bridge, which made routes both north and south of Marineris competitive, and created almost as many viable routes as contestants. <br><br>&#8211; Kim Stanley Robinson, <em>Blue Mars</em></p>
</blockquote>



<div class="wp-block-jetpack-markdown"><p>It may be that Keynes, free spirit though he was, was inadvertently making a normative moral statement, rather than a descriptive psychological one. Not “the common people are going to be uncomfortable and rudderless if they do not work a full time job”, but rather “society cannot be stable unless the common people are occupied selling their labour so that they do not go hungry”. Certainly the latter position reflects the prevalent view of 19th century English élites (I am also re-reading Karl Polanyi’s <em>The Great Transformation</em>, which has a lot to say on the matter).</p>
<p>Whatever Keynes’s reasoning, the people I met on St. James’s Way agree with Iain Banks, Kim Stanley Robinson and medieval peasants, and disagree with him. When (relatively) free from need, people do not face the loss of meaning Keynes attributes to “old Adam”. Instead, they embrace (or invent) deliciously whimsical endeavours such as walking 800 kilometres to visit the shrine of an Apostle. I have no doubt that, should technology allow it, running around Mars’s equator and rafting on lava would find their own crowds of enthusiasts. Through these activities people meet new people, brag about their achievements, flirt and fall in love, and are at their happiest and most human, most of them far more so than when they are working a job. For what is worth, I agree with them too, and wish to dedicate my own work to bringing about a sustainable, time-rich society where we can stop inventing fake needs for each other, provide for the needs (not the artificial “wants”) of everyone, step down from the daily grind, and walk, or run, or raft, to our hearts’ content.</p>
</div>



<div class="wp-block-jetpack-markdown"><p><em>Photo credit: Bjørn Christian Tørrissen &#8211; http://bjornfree.com/galleries.html CC BY-SA 3.0</em></p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>http://www.cottica.net/2026/05/21/what-do-people-do-when-they-are-free-from-need-reflecting-on-st-jamess-way-john-maynard-keynes-and-science-fiction/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">13721</post-id>	</item>
		<item>
		<title>Frictionless reports: harnessing the power of digital and open for knowledge sharing</title>
		<link>http://www.cottica.net/2026/04/08/frictionless-reports-harnessing-the-power-of-digital-and-open-for-knowledge-sharing/</link>
					<comments>http://www.cottica.net/2026/04/08/frictionless-reports-harnessing-the-power-of-digital-and-open-for-knowledge-sharing/#respond</comments>
		
		<dc:creator><![CDATA[Alberto]]></dc:creator>
		<pubDate>Wed, 08 Apr 2026 14:00:37 +0000</pubDate>
				<category><![CDATA[digital life]]></category>
		<category><![CDATA[AltMetric]]></category>
		<category><![CDATA[digital]]></category>
		<category><![CDATA[DOI]]></category>
		<category><![CDATA[ORCID]]></category>
		<category><![CDATA[SCOPUS]]></category>
		<category><![CDATA[Web of Science]]></category>
		<category><![CDATA[Zenodo]]></category>
		<guid isPermaLink="false">https://www.cottica.net/?p=13708</guid>

					<description><![CDATA[A large part of the economy deals in knowledge – and I&#8217;m not talking about education alone. Knowledge is a major ingredient, as well as a byproduct of, any credible attempt at societal change. A host of institutions – universities, governments, parliaments, think tanks and what have you – continuously produce knowledge. Much of that [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>A large part of the economy deals in knowledge – and I&#8217;m not talking about education alone. Knowledge is a major ingredient, as well as a byproduct of, any credible attempt at societal change. A host of institutions – universities, governments, parliaments, think tanks and what have you – continuously produce knowledge. Much of that is codified into reports and other publications, which are then made available for download from their respective websites.</p>
<p>However, many reports are rarely read. A famous <a href="http://documents.worldbank.org/curated/en/387501468322733597">2014 World Bank study</a> found that about a third of their reports received zero downloads. This does not mean no one reads them, but it does highlight how difficult it is for <em>non-intended readers</em>—like researchers or practitioners in related fields—to find them. The current system is low in serendipity. Additionally, as websites change, old URLs break, resulting in 404 errors and lost access to content. This phenomenon is known as “link rot”.</p>
<p>We can do better. Academia has faced the challenge of serendipitous knowledge reuse for centuries. Over the past thirty years, it has built a robust ecosystem by leveraging the digital revolution and the power of open standards and open licenses. If your work includes producing reports and publications for public consumption, you too can adopt these practices to make them more discoverable and reusable, increasing their impact.</p>



<h2 class="wp-block-heading">Unique identifiers enable a digital ecosystem of services</h2>



<p>At the heart of this ecosystem are <strong>Digital Object Identifiers</strong> (<a href="https://www.doi.org/">DOIs</a>). A DOI uniquely identifies any file—article, report, dataset, or executable application. DOIs are an ISO standard, issued by Registration Agencies that maintain metadata (authors, year, organisation, keywords, etc.) in interoperable databases. The largest is <a href="https://www.crossref.org/">Crossref</a>, a consortium of 23,000 publishers, currently handling two billion API requests per month. In a similar way, authors are <strong>uniquely identified by ORCID </strong>– <a href="https://orcid.org/">Open Researcher and Contributor ID</a>. ORCID provides an open, API-accessible database of researchers, automatically updated as new papers are uploaded. DOIs and ORCIDs create a web of linked data: papers link to their authors, and authors link back to their works.</p>
<p>These open, machine-readable datasets of uniquely identified knowledge products and authors have enabled a rich ecosystem of services. <strong>Repositories</strong> like <a href="https://arxiv.org/">arXiv</a>, <a href="https://www.mendeley.com/">Mendeley</a> and <a href="https://zenodo.org/">Zenodo</a> allow researchers to upload papers and assign DOIs. Applications like <a href="https://www.altmetric.com/">Altmetric</a> index documents in these repositories to <strong>measure their impact</strong> by tracking citations and aggregating them into bibliometric indicators. These, in turn, influence inclusion in <strong>major academic databases</strong>, such as Web of Science, Scopus, Lens and Google Scholar.</p>
<p>Academic repositories accept papers before they get peer reviewed (“preprints”), acknowledging that some knowledge is at most useful when its fresh, and academic review processes typically takes months. So, <strong>knowledge products from non-academic organizations (like NGOs) and academic research papers have become interoperable, part of the same digital space</strong>. The research community has come to read and cite reports more often, and this adds to their serendipity and impact. UNDP and other organizations could even take advantage of this to <strong>curate their own series and even journals</strong>, displaying content from repositories via API and experimenting with forms of review and curation. The European Commission’s <a href="https://open-research-europe.ec.europa.eu/">Open Research Europe</a> is an example of this model. These innovations, and others that will come, are enabled by community-created <strong>software libraries</strong> to access Crossref’s APIs, for example for Python and R.</p>
<p>The ecosystem includes <strong>bibliography management applications</strong> like <a href="https://www.zotero.org/">Zotero</a>. Instead of manually creating a bibliography for every publication, researchers maintain libraries of works they cite, from which these applications create bibliography on the fly. Such applications download metadata from Crossref and transform them into citations and bibliographies in any format, via plugins for LaTeX, Word, Google Docs, Obsidian and other editing applications.</p>



<h2 class="wp-block-heading">Legal interoperability unlocks the power of open</h2>



<p>The digital revolution enables remixing and cross-referencing from a technical perspective, but legal barriers remain. Knowledge products are governed by intellectual property rights (IPRs), which by default restrict many uses. Licenses specify what can and cannot be done. For example, Google Maps data is not open. This means that you can use Google Maps as a service, but you are not allowed to do anything else with the data. Say you use Google Maps to obtain the coordinates of UNDP’s offices around the world and put the coordinates in a CSV file. Although you knew the locations of the offices and have produced the file, the fact of having used Google Maps to find out the coordinates entangles your file with Google’s IPRs. You cannot publish it without calling in the lawyers.</p>
<p>To be truly frictionless, knowledge products must be both technically and legally open: irrevocably cleared by their copyright holder for use, redistribution, modification, and remixing by all, as per the <a href="https://opendefinition.org/od/2.1/en/">open definition</a>. This is crucial for datasets, as researchers avoid data with legal hurdles. Failing to use open licenses limits the spread, and therefore the impact, of your work. If you have a say in crafting your organization&#8217;s policies on licensing its own content, I would recommend you push for an explicit and blanket authorization to publish using open licenses, like those provided by Creative Commons. </p>



<h2 class="wp-block-heading">Publish for frictionlessness</h2>



<p>To wrap up, here’s some recommendations for publishing reports and publications. </p>
<ul>
<li>Use <a href="https://zenodo.org/">Zenodo</a> as a long-term repository. It provides free DOIs, supports versioning, and is run by CERN, ensuring reliability.</li>
<li>Obtain a (free) <a href="https://orcid.org/">ORCID</a> for each author or contributor and include them in the metadata. Zenodo supports multiple contributor roles, such as &#8220;team leader&#8221; and &#8220;data curator&#8221;.</li>
<li>If your report is based on data you collected, publish the dataset separately with its own DOI and cite it in the report. Publishing open data is nontrivial; see<a href="https://github.com/UNDP-Accelerator-Labs/document-dataset-frictionless"> a detailed guide to do that</a>.</li>
<li>Use open licences, such as<a href="https://creativecommons.org/licenses/by/4.0/"> Creative Commons Attribution 4.0 International</a> (versions 4 and above protects your readers from <a href="https://creativecommons.org/2022/02/08/copyleft-trolls/">copyleft trolling</a>), which is widely used and protects both creators and users.</li>
<li>Link your website’s report page to Zenodo for downloads to centralise page views and download statistics.</li>
<li>Consider using bibliometric services such as <a href="https://www.altmetric.com/">Altmetric</a> to track your impact over time.</li>
</ul>
<p><em>Image made by Notebook LLM, based on the text of the post and a prompt written by myself.</em></p>
]]></content:encoded>
					
					<wfw:commentRss>http://www.cottica.net/2026/04/08/frictionless-reports-harnessing-the-power-of-digital-and-open-for-knowledge-sharing/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">13708</post-id>	</item>
		<item>
		<title>A Matter of Choice: reflecting on alternative economic models after the Istanbul Innovation Days 2025 </title>
		<link>http://www.cottica.net/2025/08/07/a-matter-of-choice-reflecting-on-alternative-economic-models-after-the-istanbul-innovation-days-2025/</link>
					<comments>http://www.cottica.net/2025/08/07/a-matter-of-choice-reflecting-on-alternative-economic-models-after-the-istanbul-innovation-days-2025/#respond</comments>
		
		<dc:creator><![CDATA[Alberto]]></dc:creator>
		<pubDate>Thu, 07 Aug 2025 09:10:06 +0000</pubDate>
				<category><![CDATA[modern economics]]></category>
		<category><![CDATA[cities]]></category>
		<category><![CDATA[economic transformation]]></category>
		<category><![CDATA[Istanbul Innovation Days]]></category>
		<category><![CDATA[UNDP]]></category>
		<guid isPermaLink="false">https://www.cottica.net/?p=13704</guid>

					<description><![CDATA[Reposted from the blog of the Istanbul Innovation Days 2025 conference for archival purposes. The original post is here.&#160; Spring has arrived for economic alternatives As I stood on the stage of the Istanbul Innovation Days 2025, I experienced a feeling like the beginning of spring, when you throw the windows wide open and let [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><em>Reposted from the blog of the Istanbul Innovation Days 2025 conference for archival purposes. The original post is <a href="_wp_link_placeholder" data-wplink-edit="true">here</a>.&nbsp;</em></p>





<h2 class="wp-block-heading">Spring has arrived for economic alternatives</h2>



<p>As I stood on the stage of the Istanbul Innovation Days 2025, I experienced a feeling like the beginning of spring, when you throw the windows wide open and let warm air fill the room. The economics winter was over, for good. It was March 26 – the beginning of spring indeed – and I had the honour of facilitating the plenary session on “Alternative Economic and Financial Models”. Our panel had come together to claim that <strong>bold, comprehensive economic transformation was both urgent and possible </strong>– in fact, it was already under way in many parts of the world.&nbsp;&nbsp;</p>
<p>For economists such as myself, this is an extraordinary claim. Since the 1980s, the economics profession has been all but dominated by a paradigm known as neoclassical economics, vigorously promoted by many prestigious scholars associated with the University of Chicago. The Chicago school’s success was not limited to academia: it persuaded political leaders the world over that its brand of economics was the only sound, reasonable one, not only in existence, but <em>possible</em>. British Prime Minister Margaret Thatcher summarized it brilliantly in 1980: “there is no alternative”, no point looking for other ways. Two full generations of economists and policy makers complied, defining a half-a-century long winter of economics.&nbsp;&nbsp;</p>



<h2 class="wp-block-heading">Progress everywhere</h2>



<p class="wp-block-paragraph">And yet, there we were, in Istanbul, and spring had come. We were seeing robust <a href="https://medium.com/@undp.innovation/charting-pathways-to-the-transformation-of-economic-systems-dd1091ea8d08" target="_blank" rel="noreferrer noopener">policy innovation</a> to equip economic decisions makers with new tools – job guarantees, universal basic income and services, carbon coins, community land trusts, local energy communities, tailor-made financial instruments, twenty minute cities, missions and moonshots, and more. We were seeing ambitious <a href="https://istanbulinnovationdays.org/a-time-to-build-shaping-the-next-generation-of-public-institutions/" target="_blank" rel="noreferrer noopener">redesign of economic institutions</a> to deploy these new tools effectively. And we were seeing <a href="https://medium.com/@undp.innovation/charting-pathways-to-the-transformation-of-economic-systems-dd1091ea8d08" target="_blank" rel="noreferrer noopener">rapid progress</a> in devising indicators of economic performance to guide those deployments, indicators that move beyond GDP – with <a href="https://hdr.undp.org/data-center/human-development-index#/indicies/HDI" target="_blank" rel="noreferrer noopener">UNDP</a> and the <a href="https://unsceb.org/topics/beyond-gdp" target="_blank" rel="noreferrer noopener">UN as a whole</a> taking a leading role.&nbsp;&nbsp;</p>



<p>The best part? None of this is only theoretical, and none of this is limited to a narrow club of best-in-class from affluent countries. Our panel was itself composed of <em>doers</em>, practitioners, with solid experience, hailing from all over the world. In Costa Rica, <a href="https://istanbulinnovationdays.org/speaker/eduard/" target="_blank" rel="noreferrer noopener">Eduard Mülle</a>r and <a href="https://en.costaricaregenerativa.org/" target="_blank" rel="noreferrer noopener">Costa Rica Regenerativa</a> turned a previously extractive economic system into one that rewards the regeneration of soil and nature. In Indonesia, <a href="https://istanbulinnovationdays.org/speaker/natalia/" target="_blank" rel="noreferrer noopener">Natalia Arjomand</a> and <a href="https://www.secondmusecapital.com/" target="_blank" rel="noreferrer noopener">Second Muse Capital</a> devised a highly successful financial instrument to deliver interest-free loans to small enterprises in the waste management and recycling sector. In South Africa, <a href="https://istanbulinnovationdays.org/speaker/miles/" target="_blank" rel="noreferrer noopener">Miles Kubheka</a> and <a href="https://wakanda.org.za/" target="_blank" rel="noreferrer noopener">Wakanda Food Accelerator</a> build economic inclusivity around food, an economic good which also encodes conviviality and care. And in Sicily, <a href="https://istanbulinnovationdays.org/speaker/giacomo/" target="_blank" rel="noreferrer noopener">Giacomo Pinaffo</a> and the <a href="https://fdcmessina.org/about-us/" target="_blank" rel="noreferrer noopener">Messina Community Foundation</a> have built a rich and diverse local economy in solidarity, with hundreds of businesses coordinating under a single strategic umbrella in sectors like landscaping services, bioplastics, energy production, social housing, beverages, and the arts. The anti-colonial movement played a large role in opening our eyes, letting us see these contributions (which started well ahead of, and independent from, progress in academia) not as “lagging economies”, but as viable alternatives in their own right. </p>



<h2 class="wp-block-heading">The power of local (and of science fiction)&nbsp;</h2>



<p class="wp-block-paragraph">There is much to be learned from their stories, and the stories of practitioners like them. I, for one, am determined to continue learning for years to come. But three learnings in particular stood out for me.&nbsp;&nbsp;</p>



<p class="wp-block-paragraph">The first one is that <strong>economic transformation </strong><strong><em>works</em></strong>, not always, obviously, but more often and better than conventional economic wisdom gives it credit for. And it stands to reason: thanks to the progress I mentioned above, reformers in this generation simply have more tools in their armory than the conservative thinkers that oppose them. Exaggerating a bit for the sake of clarity, the latter have spent half a century developing one single option, that of free markets that, once correctly liberalized, will automatically deliver the best possible outcome. If that option fails, they have nothing else to offer.&nbsp;&nbsp;</p>



<p class="wp-block-paragraph">The second one is that <strong>economic transformation tends to happen fastest and deepest at the local level</strong>. Economists invariably point out that this is non-optimal, because critical levers for economic policies are only available to states, not to regions or districts or cities. They are right: and yet this oddity tells us that collective institutions closest to the people feel the demand for economic transformation strongest. I predict that regions and cities will continue to lead in institutional and policy innovation when it comes to the economy – and also that small states might have large impacts if they get on board with the economic transformation agenda.&nbsp;</p>



<p class="wp-block-paragraph">The third one is that we can only build economies we can imagine. Fifty years of “there is no alternative” have weakened our ability to imagine economies more humane and egalitarian than the ones we inhabit now. <strong>We need to re-develop our economic imagination muscle if we are to design successful economic transformation</strong>. Economists are not of much help there, so <a href="https://istanbulinnovationdays.org/speaker/kate/" target="_blank" rel="noreferrer noopener">Kate Beecroft</a> and <a href="https://istanbulinnovationdays.org/speaker/ozgur/" target="_blank" rel="noreferrer noopener">Özgür Can Özüdoğru</a> – with remote support from complexity economist <a href="https://resilience.asu.edu/applegate" target="_blank" rel="noreferrer noopener">Joffa Applegate</a> – demonstrated how science fiction (especially in its more economically inclined variants, like cli-fi, solarpunk and afrofuturism) can help us travel with our minds to alien economic systems, and try them on for size. They made this point by delivering a brilliant workshop they designed with the <a href="https://scifieconomicslab.net/" target="_blank" rel="noreferrer noopener">Science Fiction Economics Lab</a>, that took us to a fictional future Istanbul that had seriously tackled some of the very real economic problems it is facing now, such as housing and water scarcity.&nbsp;&nbsp;</p>



<p class="wp-block-paragraph"><strong>Stories are, as ever, a potent catalyst of human transformation</strong>. People don’t abandon broken systems because they have seen graphs on inequality graphs or read critiques of GDP. They change when they see new models come to life. When Costa Rican farmers heal their lands, and see the butterflies return. When Indonesian small businesspeople are entrusted with the capital to build their vision of a circular economy. When South African “foodpreneurs” gain access to platforms where food becomes power, pride, and possibility. When Sicilian researchers, businesses and workers find ways to build a social economy from the ground up, for themselves and others.&nbsp;&nbsp;</p>



<p class="wp-block-paragraph">As we traded war stories with one another and the audience of the Istanbul Innovation Days, I believe it became clear to everyone that Margaret Thatcher was wrong. She was wrong in 1980; she is even more wrong now, in the face of all this progress and creativity. Let’s leave “there is no alternative” behind, and embrace, instead, the message of UNDP’s Human Development Report 2025: <strong>“it’s a matter of choice”</strong>. The report refers to Artificial Intelligence, but I believe it applies to economic institutions as well. Those we have, we chose. And we could, and should, choose others, if they serve us better.&nbsp;&nbsp;</p>



<p class="wp-block-paragraph">I look forward to a future where we do so, with everybody’s contribution. In fact, <strong>I am working on a draft concept note to develop a portfolio on economic transformation</strong>. Please reach out if you want to contribute, or simply know more.&nbsp;&nbsp;</p>



<p><em>Heartfelt thanks to all panel- and workshop- participants for their suggestions in writing this blog post.</em>&nbsp;</p>
<p>&nbsp;</p>


]]></content:encoded>
					
					<wfw:commentRss>http://www.cottica.net/2025/08/07/a-matter-of-choice-reflecting-on-alternative-economic-models-after-the-istanbul-innovation-days-2025/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">13704</post-id>	</item>
		<item>
		<title>Of production, extraction, degrowth and doing magic: theories of value in Naomi Novik&#8217;s Scholomance Trilogy</title>
		<link>http://www.cottica.net/2025/07/20/of-production-extraction-degrowth-and-doing-magic-theories-of-value-in-naomi-noviks-scholomance-trilogy/</link>
					<comments>http://www.cottica.net/2025/07/20/of-production-extraction-degrowth-and-doing-magic-theories-of-value-in-naomi-noviks-scholomance-trilogy/#respond</comments>
		
		<dc:creator><![CDATA[Alberto]]></dc:creator>
		<pubDate>Sun, 20 Jul 2025 17:23:35 +0000</pubDate>
				<category><![CDATA[modern economics]]></category>
		<category><![CDATA[externalities]]></category>
		<category><![CDATA[inequality]]></category>
		<category><![CDATA[Naomi Novik]]></category>
		<category><![CDATA[Scholomance]]></category>
		<category><![CDATA[value theory]]></category>
		<guid isPermaLink="false">http://www.cottica.net/?p=13687</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-jetpack-markdown">
<p>The Scholomance is a school for wizard children, set in the eponymous world created by fantasy author Naomi Novik. In this world, magical predators called maleficaria feed on mana, a substance that allows wizards to do magic. Both children and adult wizards have it, but the adults are more dangerous than most of the maleficaria themselves, so the latter need to feed on children. This is a major threat to wizardkind: in the wild, nineteen out of twenty wizard children are eaten before maturity. The solution to this is the Scholomance: a semi-sentient, heavily warded magical building where children are better protected while they learn to defend themselves against the maleficaria. However, this solution is far from perfect: some predators still get in, and kill three out of four students before graduation.</p>
<p>Novik’s <a href="https://en.wikipedia.org/wiki/The_Scholomance_Trilogy">Scholomance Trilogy</a> is a hugely enjoyable read. Cory Doctorow wrote a <a href="https://pluralistic.net/2023/03/29/hobbeswarts/">raving review</a> of it; he’s not wrong, and I am glad he put me onto it. Even more so because, as I went through the three novels, I discovered the literary equivalent of a secret door to… a political economy based on a particular value theory called the <a href="https://en.wikipedia.org/wiki/Labor_theory_of_value">labour theory of value</a> (LVT). And look, maybe I am seeing ghosts here (no pun intended). I <em>am</em> like into analyses of science fiction novels, so maybe I am a guy with a hammer and all I see is nails. But still… humour me here, and see if it makes sense</p>
<p>Let’s start with mana. Wizards can do magic, but only if they have mana to spend. A powerful wizard is like a powerful car; its power is only theoretical until you put fuel into the equation. How do you get mana? A wizard can produce mana directly by engaging in a tiring or tedious activity, like doing pushups or crochet. He or she can also receive it from another wizard who gives it willingly: in fact, this how wizards purchase from each other things that they value. Finally, a wizard can get mana from his or her own storage: besides their own bodies, wizards have access to magical artifacts that hold mana and can be drawn from as needed.</p>
<p>To an economist this means that mana is <em>currency</em> in the Scholomance world. It serves as mean of exchange, numeraire, storage of value; it is fungible. It also means that magic is derived from human labour: every act of magic requires mana, hence somebody’s effort or drudgery. In LVT terms, the <em>socially necessary labour</em> or <em>absolute value</em> (not to be confused with the exchange value) of an act of magic is equal to the amount of labour gone into producing the necessary mana. The analogy is quite strict, to the point that, as a wizard gets fitter and doing pushups becomes easier, he or she needs to do more of them to produce the same quantity of mana. (Novik: “The physical labor isn’t what counts. What turns it into mana is how much effort it costs me.”).</p>
<p>So far, so good. Here’s the curveball: it turns out there is another way to do magic after all. It’s called <em>malia</em>, and consists in pulling mana from your surroundings. Novik:</p>
<blockquote>
<p>Everyone—almost everyone—uses a bit of malia here and there, stuff they don’t even think of as wicked. Magic a slice of bread into cake without gathering the mana for it first, that sort of thing, which everyone thinks is just harmless cheating. Well, the power’s got to come from somewhere, and if you haven’t gathered it yourself, then it’s probably coming from something living, because it’s easier to get power out of something that’s already alive and moving around. So you get your cake and meanwhile a colony of ants in your back garden stiffen and die and disintegrate.</p>
</blockquote>
<p>So, in the Scholomance world there are two paths to doing magic: mana and malia. If you use the LVT analogy to translate this sentence in terms of our world, it reads like this: <strong>there are two paths to value production: labour and extraction</strong>. “The power’s got to come from somewhere” is Novik’s equivalent of “there is no free lunch”. If you have power and have not created it with the sweat of your brow, you have appropriated it from something or someone else.</p>
<p>This is a rather elegant formulation, because it puts under the same analytical umbrella two phenomena that most economists would consider distinct: negative externalities and exploitation. Negative externalities appear when an economic actor manages to shift some of the costs associated to their production onto the environment, for example through pollution. A company might be doing well, like, say, <a href="https://en.wikipedia.org/wiki/Robert_Bilott">Dupont at the end of the 1990s</a>, its profit tidy and its markets bullish – meanwhile, though, they are discharging poisonous chemicals into rivers, and people are dying of kidney and testicular cancer. Malia. Or take the example of high-octane fashion brand Armani, who was <a href="https://finance.yahoo.com/news/armani-group-company-receivership-over-104028284.html?">caught by Italian police</a> subcontracting its 1,800 EUR bags, by way of a contractor, to sweatshops were workers were paid 2-3 EUR an hour to works 10 hours a day so that the sweatshops in question could sell the bags to Armani’s contractors for 93 EUR. Malia.</p>
<p>Some wizards go all in, only finance their magic with malia, and end up being responsible for a lot of suffering and death. Some do not want any part of this malia business, and go “strict mana”. Most are somewhere in between; they produce mana of their own, but also “cheat a little”. In the Scholomance world there are two problems with cheating a little. The first is that cheating adds up to create a negative balance on the other side of the ledger, compensating the positive balance of the additional magic that the cheater can do. Novik:</p>
<blockquote>
<p>Whenever somebody needs a little more mana than they’ve got, they steal it from somewhere, seems like no big deal – but you end up with a negative flow [sic] of mana. When that negative flow gets big enough, a maleficaria will generate around it. It’s not a secret, but people do it anyway […] All the psychopatic wizards in the world put together aren’t the real problem. The problem is that <em>everyone</em> cheats. And the we get more maleficaria, and our kids die, and still everyone cheats, because the two things are too far apart. You can live your whole life without cheating once […] and still your kid’s just as likely to get eaten, and meanwhile someone else cheats every day and their kid sails through.</p>
</blockquote>
<p><strong>That, ladies and gents, is a textbook prisoner’s dilemma, with maleficaria in the role of negative externalities</strong>. And now to the second problem with cheating a little: by being so obviously beneficial, it makes it easier to cheat a lot more. In the Scholomance world, the highest-reputed wizards have figured out way to create magical fortresses called enclaves, that will keep maleficaria out, making their lives <em>a lot</em> safer and more comfortable, <em>and</em> give them the opportunity to acquire a lot of cheap labour by less fortunate wizards, dangling in front of them the possibility of a place in the safety of the enclave.</p>
<p>In the Scholomance world, safety is <em>the</em> main scarce resource around which the wizarding economy turns – the quantity on the left side of its production function, as it were. From an economic perspective, therefore, book three of the trilogy comes with the main plot twist: <strong>the scarcity of safety is, at least in part, manufactured</strong>.</p>
<p>Here’s how this happens. The protagonist, a powerful witch, discovers that making one of these fortresses requires hideous human sacrifices, and releases deadly maleficaria into the world. So, enclaves as a magical technology make the world safer for the privileged few, but <em>less</em> safe for everyone else. She then digs up a set of spells (a magical technology) to build enclaves without human sacrifices. “The power has to come from somewhere”, so the resources that do not come from those sacrifices must come from honestly earned mana; and the process cannot build shiny, gigantic fortresses, but only smaller ones, that would reduce the space available for each wizard.</p>
<p>Still, no human sacrifices and no extra terrifying wizard-eating monsters released into the wild sounds like a great value proposition. And yet, the witch has no takers at all: no wizarding community would replace their grisly foundations with something cleaner and more durable, though more modest. The idea of renouncing to their advantages is, for enclaves-dwelling wizards, simply unthinkable. As Novik is not shy to point out, the system works poorly for wizardkind as a whole, but it works brilliantly for the more privileged wizards in the enclaves, who have safety <em>and</em> substantial leverage on everybody else. Producing monsters is perversely <em>useful</em> for enclavers, because it makes wizards on the outside even more desperate to sacrifice their lives and abilities to serving the enclaves in the hope of being allowed in: in other words, it enables exploitation. Enclavers are basically in the protection business: they create a threat for other wizards, then extract services from them for partially protecting them against those threats. <strong>Creating externalities and exploiting independent wizards is how enclavers procure the mana that powers their dominance</strong>.</p>
<p>Something similar happens in our own real-world economy. Countries that got wealthy on the back of colonial extraction and fossil-fuels burning are not only refusing to provide proper loss and damage compensation to the countries that suffered for the very real “maleficaria” brought into existence by those behaviors. They are taking advantage of the dire conditions created by climate change in vulnerable countries to extract even more resources, like critical raw materials, in return for desperately needed capital. Like in the Scholomance world, our safety needs are, at least in part, manufactured: <a href="https://doi.org/10.1016/j.gloenvcha.2020.102168">recent research</a> suggests that we could meet everyone’s energy needs while remaining within planetary boundaries. But we don’t, because, like those wizards in the enclaves, we do not want to share.</p>
<p>I don’t know if Novik is familiar with the economic notions of sufficiency and degrowth. I suspect she does. If not, she has reinvented them, alongside the social and moral dilemmas that stand in the way of their widespread adoption. That is at the same time depressing and great: depressing, as she mercilessly rubs in our face the cruelty and injustice of the economic systems both we and the wizards live in, and great because the Scholomance trilogy makes for a great metaphor to explain capitalism to young adults. And, yes, to economists such as myself.</p>
</div>
<p><em>Photo: Public domain, from https://www.needpix.com/photo/download/1017235/witch-sorcerer-woman-female-young-medieval-magic-gothic-dark</em></p>
]]></content:encoded>
					
					<wfw:commentRss>http://www.cottica.net/2025/07/20/of-production-extraction-degrowth-and-doing-magic-theories-of-value-in-naomi-noviks-scholomance-trilogy/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">13687</post-id>	</item>
		<item>
		<title>Four things I learned building a cohousing project in Brussels</title>
		<link>http://www.cottica.net/2024/11/20/four-things-i-learned-building-a-cohousing-project-in-brussels/</link>
					<comments>http://www.cottica.net/2024/11/20/four-things-i-learned-building-a-cohousing-project-in-brussels/#respond</comments>
		
		<dc:creator><![CDATA[Alberto]]></dc:creator>
		<pubDate>Wed, 20 Nov 2024 12:45:18 +0000</pubDate>
				<category><![CDATA[cohousing]]></category>
		<category><![CDATA[Brussels]]></category>
		<category><![CDATA[Bruxelles]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[information management]]></category>
		<category><![CDATA[real estate]]></category>
		<category><![CDATA[sociocracy]]></category>
		<category><![CDATA[Stekke & Fraas]]></category>
		<category><![CDATA[Triodos]]></category>
		<guid isPermaLink="false">http://www.cottica.net/?p=13654</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-jetpack-markdown"><p>I am part of a group which is building a cohousing in Brussels. It’s a risky endeavor but I could just not resist it: I dislike how the real estate market has financialized the right of humans to decent housing, and I dislike how the manner of building homes have made us lonely, alienated, surrounded by strangers. As an economist, I also find modern housing incredibly inefficient, because it does not produce public goods – like common spaces and communities – that are, by definition, the most efficient goods there are. And so, after many years of longing and reflections, in late 2021 I found myself in a small group willing to try it out, and took the plunge. Our cohousing is  called <a href="https://thereef.brussels">The Reef</a> in tribute to the diverse webs of cooperation and competition that exists in real coral reefs, and also as an act of remembrance should all coral reefs in the world die, which is not unlikely at all.</p>
<p>It is an incredibly rich, life-changing experience. It is also the second most difficult thing I have ever done (the first was founding a <a href="https://en.wikipedia.org/wiki/Modena_City_Ramblers">reasonably successful punk-folk band</a>), and the one with the first-highest stakes (for most of us it is all of our lives’ savings). Yet, I never posted about it before, with <a href="http://www.cottica.net/2022/05/24/is-cohousing-a-solarpunk-movement/">one exception</a> at the beginning of the journey. Frankly, I was not sure of what lessons one could draw from it: we were certainly working hard, but were we getting anywhere? Were we on our way to success, or just deluding ourselves? I could not tell. In the legal framework and economic landscape of Belgium in the 2020s, building a cohousing is a highly uncertain affair. At every turn, you face another obstacle that has the potential to stop the entire project dead in its track. Will we find a site to build the cohousing in? Will we be able to work together in reasonable harmony, or will the group collapse under the weight of interpersonal conflict? Is there even enough demand for cohousings to complete a group? Will the war in the East make construction materials unaffordable, and our project with it?</p>
<p>Still, people around me are interested in learning about cohousing. Many have encouraged me to start sharing my reflections about it. And it is the right time: the project has reached a degree of maturity where, I think, we can start drawing some lessons from it – though it could still fail, of course. There is a lot to share, but I am going to start with only few of the clearest learnings so far.</p>
<h2>1. Self-managed projects are surprisingly efficient</h2>
<p>Over the years, I have spoken to many people that dream of living in a cohousing. Despite this, it is almost impossible to just go out and buy a house or an apartment that is part of one. There appears to be what economists call a market failure: there is a market demand for a more social way of living, but no supply. So, if you want to live in a cohousing you will most likely need to start a group, or join one, and have your cohousing built to specifications. Groups must make a choice as to how to organize themselves. One possibility is for the group to directly take charge of the project management: find a site to buy, negotiate with the owner, purchase it, hire an architect and a construction company, organize the financial flows and so on. The other is to hire a company that will take care of the project management for you. In Belgium we are fortunate that there exist two such companies.</p>
<p>The Reef chose to be a self-managed group. In practice, this means that a bunch of random people, none of whom is a real estate or construction professional, is now running a 9 million Euro real estate project. Counterintuitively, this is working better than we had any right to expect: processes are transparent and relatively fast. We learned to work as a team quite quickly, and there is a high level of accountability. The Reef is a healthier, more efficient working environment than many professional spaces I have worked in. We have to work harder, but that work will pay for itself in terms of added trasparency and fuller ownership of the project. There is pride and joy in working together as a group to build our future home, and we believe that doing it this way will make our little community even more cohesive – and we save money.</p>
<h2>2. Building community comes natural</h2>
<p>Most people in our group did not know each other before joining. Most of us joined not based on previous friendships or family ties, but because we are drawn to the idea of cohousing itself. Some of us thought this might pose a challenge: in this kind of project people are making large investments in an endeavor the outcome of which depends on their cohousing mates playing nice. <em>A lot</em> of trust is needed. Among the many challenges of cohousing, this one turned out to be fairly easy. Common involvement in this kind of project builds mutual trust, even friendships, relatively quickly. This is because the project itself gets you into repeated interactions with each other. Reputation is obviously valuable, so people do not like to drop the ball on one another. In a short time, you realize you can trust these people after all, and start to relax and enoy their company. I have no doubt that The Reef will be an imperfect but functional, and even beautiful, community.</p>
<h2>3. Process and information tidiness are critical</h2>
<p>In 2021, as a prequel to the formal start of the process of building The Reef, the founding group spent a few months researching cohousing. We read up on everything we could find, and engaged with extant cohousing groups to learn from their experiences. We also arranged to visit several already-built cohousings. All sources pointed to how critical good process is.</p>
<p>The reasoning is straightforward. Building a cohousing takes 4-7 years. During this period, you will be doing weekly meetings plus individual- or small-group work. All of this effort is unpaid, and you will still have all of your personal and professional responsibilities. You might even be asked to step up a little to cover for your cohousing mates: for example, in our group parents of small children are given a pass, and just asked to respect the deadlines and otherwise do what they can, no questions asked.</p>
<p>In a situation like this, it is super important to be methodical and efficient, or you will become overwhelmed. The Reef is <em>very</em> methodical, on two fronts. First, we are organized according to a variant of a model called <a href="https://en.wikipedia.org/wiki/Sociocracy">sociocracy</a>. This means plenaries + teams that report to the plenary and do the heavy lifting of preparing the decisions for the plenary to take. All meetings are facilitated (by a Team Facilitation, whose members took trainings in sociocratic methods). The entire group took trainings in non-violent communication as a measure to prevent the escalation of conflicts. This method is very efficient, and it saves time on decision making that we sorely need for operations. For example, while searching for a site we scouted the entire city on bicycles and on foot for six months, mapping and evaluating 170 potential sites. Even with a fairly large group of a dozen active adults, you see why efficiency is so important.</p>
<p>Second, we take information management seriously, and adopted ways inspired by the open source and open knowledge movement. All information is public by default, and protected only if there is a need for confidentiality. A very successful move was to ban emails completely, and instead move our communication onto an online forum. This reduces Inbox stress and allows people full access to every communication, letting them choose what they want to engage with. It also makes past communications very searchable (we even use tags consistently, something that I have not experienced in any other working environment). Do not underestimate the impact of using good forum software over email – let alone stuff like Facebook or Whatsapp or Slack groups, which is not, repeat <em>not</em>, optimized for economical and accountable communication! Our forum as of now hosts over 10,000 messages, and has over 300,000 pageviews, and the fact that it allows access while not flooding us with notifications is valuable. Transparency is also important</p>
<p>From open source culture we also learned the importance of good documentation: for example, we have a <a href="https://edgeryders.eu/t/understanding-the-reefs-digital-assets/16775?u=alberto">guide to The Reef’s digital assets</a>, one to <a href="https://edgeryders.eu/t/overview-of-team-tags-and-team-groups-in-the-edgeryders-forum/18635/2?u=alberto">using tags and groups in the forum</a>, one to <a href="https://edgeryders.eu/t/the-reefs-website-understanding-it-and-making-changes/19153?u=alberto">making changes to the website</a>, a <a href="https://c301.nl.tabdigital.eu/s/ccmKqPj9cS59df4">manual to onboard new members</a>, a <a href="https://c301.nl.tabdigital.eu/s/izi6T4mHapX2KGF">governance document</a>. Each one of these shares knowledge and empowers everyone in the group, removing organizational bottlenecks, at the cost of having to write things down in a clear and accessible format.</p>
<h2>4. A cohousing ecosystem is coalescing in Brussels</h2>
<p>Self-managed groups like ours need not be navigating uncharted waters all the time. To our surprise and delight, cohousing is something like a movement. People support each other, mostly with information that can save us enormous amount of time. The advice we received from our sister cohousings at the beginning of the journey was invaluable. Also, there are now a few professionals in Brussels that understand cohousing and have experience of building them: the architects’ studio <a href="https://stekkeplusfraas.be/">Stekke and Fraas</a> has already built three cohousings in Brussels; Mark Van den Dries, a retired entrepreneur that has led several successful cohousing projects (he lives in one) and now offers himself as a coach; the Namur notary Pierre-Yves Erneux. A Dutch-Belgian bank, Triodos, offers mortgages adapted to the reality of cohousing.</p>
<p>All this means that we have it much easier than first-generation cohousings. Like all economic movements, cohousing is cumulative: if you were to start a project now, you would face fewer uncertainties than we did, because you could build on our experience. And if you or someone you know <em>did</em> start a cohousing, I would be interested to learn about it, be it through a link you share or by sharing war stories over coffee.</p>
<p><em>Photo: The Reef’s group explore a candidate site for the cohousing project in summer 2024. CC-BY The Reef Cohousing</em></p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>http://www.cottica.net/2024/11/20/four-things-i-learned-building-a-cohousing-project-in-brussels/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">13654</post-id>	</item>
		<item>
		<title>A system working as intended: appreciation for the Belgian authorities in charge of asylum applications</title>
		<link>http://www.cottica.net/2024/11/15/a-system-working-as-intended-appreciation-for-the-belgian-authorities-in-charge-of-asylum-applications/</link>
					<comments>http://www.cottica.net/2024/11/15/a-system-working-as-intended-appreciation-for-the-belgian-authorities-in-charge-of-asylum-applications/#comments</comments>
		
		<dc:creator><![CDATA[Alberto]]></dc:creator>
		<pubDate>Fri, 15 Nov 2024 14:32:55 +0000</pubDate>
				<category><![CDATA[life, the universe and everything else]]></category>
		<category><![CDATA[asylum seekers]]></category>
		<category><![CDATA[Belgium]]></category>
		<category><![CDATA[Sinterklaas]]></category>
		<category><![CDATA[Universal Declaration of Human Rights]]></category>
		<guid isPermaLink="false">http://www.cottica.net/?p=13642</guid>

					<description><![CDATA[I have a story that I feel needs to be shared. It happened three weeks ago, and made me proud to be Belgian. A friend – I will call her Caroline – got in touch after a silence of several years. We used to work together back in the day, and had become friends. We [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>I have a story that I feel needs to be shared. It happened three weeks ago, and made me proud to be Belgian. </p>
<p>A friend – I will call her Caroline – got in touch after a silence of several years. We used to work together back in the day, and had become friends. We had stayed in touch, very irregularly, through a common friend, who, like me, lives in Brussels. Caroline herself, who lived in the US when we worked together, was now back to France.</p>
<p>She had another former colleague, a man I will call Malik. Malik is Palestinian, and lives in Gaza with his wife and two children, 4 and 3 years old. You can see where this is going. His house was bombed, twice. His immediate family was unharmed, though some of his nephews, that used to play with his children, are gone.</p>
<p>Malik managed to get his family into Egypt via Rafah. Thanks to Caroline&#8217;s invitation, he obtained a tourist visa for the family to travel to the USA. With her help, he tried to obtain political asylum in the USA and Canada. But nothing worked. At the end of the customary three months, the visa was about to expire. So, Caroline&#8217;s message told us &#8220;Malik has decided to apply for refugee status in Belgium. Can you help?&#8221;</p>
<p>It turned out we could, a little bit. Mostly with information, and by giving him someone that he could call, a friendly voice in the New Place.</p>



<p>So in they flew, Malik and his wife and their two children, with a stopover in Brussels and a connecting flight to Cairo. They had a plan, supported by information we could find on the Belgian end: intentionally miss the flight to Cairo, then report to the airport authorities and ask for asylum.</p>
<p>It turns out that Belgium has an &#8220;airport track&#8221; for asylum seekers, and that it becomes very fast when minor children are involved. Malik and his family were first made to wait, and yes, after a long flight from the US and with two small children that&#8217;s not a joke.</p>



<p>But at the end of that wait, the system kicked into gear. The family was put into a car and driven to a building in the airport&#8217;s region. They were given the keys to an apartment, some money to buy food and information on where to buy it, and told to get some rest.</p>
<p>As the weekend came around, my girlfriend, who had taken point on the whole Malik initiative, went to meet the family and accompany it on a trip to Antwerp.</p>
<p>The trip was, she reports, very touching. They had a story to tell, and they wanted to tell it. They had photos on their phones: a house shot to pieces. Toys retrieved from the rubble. The missing cousins of the children, who they will never see again (though they have not been told that yet).</p>
<p>But check this out: they had an appointment with the Federal agency which processes asylum requests for the intake interview <em>on the following Monday</em>, less than one week after arrival!</p>



<p class="wp-block-paragraph">The interview went something like this: the whole family had their photos and biometrics taken and was issued ID cards. After which, the official in charge basically told them: look, the situation is clear. You are from Gaza and cannot go back. Your status as refugee is straightforward and we might not even bother with a second interview. Welcome to Belgium. Here is information about your rights and the support that come with refugee status. See you in five years when you apply for citizenship.</p>



<p>The language was no doubt more formal (I was not there), but that was the gist of it.</p>
<p>It&#8217;s going to be difficult for them. Malik is a highly qualified professional, but the truth is many Belgian landlords do not like to rent to refugees. He and the family will have to learn French or Dutch to function in society. But this, by the Gods, is <em>the asylum system working as intended</em>. Belgium is a member state of the United Nations, which voted to adopt the <a href="_wp_link_placeholder" data-wplink-edit="true">Universal Declaration of Human Rights</a> in 1948 (Belgium voted in favour). So, it is now beholden to it, and that implies offering safe haven to Malik and his family. No ifs, no buts. This is <em>honorable</em>.</p>



<p>And meanwhile my cohousing group is trying to make this a softer landing for the family. Since the group organizes some social event, it is easy to act as a sort-of-peer group for the adults while they find their feet.</p>
<p>Also, someone is organizing a Sinterklaas visit for their children, and maneuvers are in place to involve Malik&#8217;s little monsters.</p>
<p>(Because Belgium, we do not care for Santa Claus, and have our own version)</p>



<p class="wp-block-paragraph"><a href="https://en.wikipedia.org/wiki/Sinterklaas">https://en.wikipedia.org/wiki/Sinterklaas</a></p>



<p>And look, the gods know that Belgium can be gleefully dysfunctional and infuriating at times. Look up &#8220;Belgian solution&#8221; and you&#8217;ll see what I mean. And the Belgian <em>government</em> is so blasé about dysfunctionality that it makes it own jokes about the Belgian government. But underneath it all, there are (some) functioning bureaucracies, and some simple just doing the bloody job, ESPECIALLY if your job is standing up for the underdog and the people in need.</p>



<p>And here, I have to say, I am having a bit of a patriotic moment, and am proud of the country where I chose to make my own stand, and of my fellow Belgians. I was never happier and prouder to have become one of you. Let&#8217;s keep doing this. Laten we dit blijven doen. Continuons comme ça. &lt;3</p>
]]></content:encoded>
					
					<wfw:commentRss>http://www.cottica.net/2024/11/15/a-system-working-as-intended-appreciation-for-the-belgian-authorities-in-charge-of-asylum-applications/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">13642</post-id>	</item>
		<item>
		<title>The Draghi Report vs. New Economic Thinking (long)</title>
		<link>http://www.cottica.net/2024/10/15/the-draghi-report-vs-new-economic-thinking/</link>
					<comments>http://www.cottica.net/2024/10/15/the-draghi-report-vs-new-economic-thinking/#respond</comments>
		
		<dc:creator><![CDATA[Alberto]]></dc:creator>
		<pubDate>Tue, 15 Oct 2024 12:58:13 +0000</pubDate>
				<category><![CDATA[modern economics]]></category>
		<category><![CDATA[degrowth]]></category>
		<category><![CDATA[doughnut economics]]></category>
		<category><![CDATA[European Commission]]></category>
		<category><![CDATA[GIorgos Kallis]]></category>
		<category><![CDATA[Human Development Index]]></category>
		<category><![CDATA[James Easterlin]]></category>
		<category><![CDATA[Jason Hickel]]></category>
		<category><![CDATA[Joel Millward-Hopkins]]></category>
		<category><![CDATA[Julia Steinberger]]></category>
		<category><![CDATA[Kate Raworth]]></category>
		<category><![CDATA[Mariana Mazzucato]]></category>
		<category><![CDATA[Mario Draghi]]></category>
		<category><![CDATA[modern monetary theory]]></category>
		<category><![CDATA[new economic thinking]]></category>
		<category><![CDATA[Ole Peters]]></category>
		<category><![CDATA[Olivier de Schutter]]></category>
		<category><![CDATA[post-growth]]></category>
		<category><![CDATA[Randall Wray]]></category>
		<category><![CDATA[Stephanie Kelton]]></category>
		<category><![CDATA[Thomas Piketty]]></category>
		<category><![CDATA[Tim Jackson]]></category>
		<category><![CDATA[Timothée Parrique]]></category>
		<category><![CDATA[Usrsula von der Leyen]]></category>
		<category><![CDATA[well-being economics]]></category>
		<guid isPermaLink="false">http://www.cottica.net/?p=13567</guid>

					<description><![CDATA[In September 2024, the European Commission published a report titled The future of European competitiveness, better known as &#8220;the Draghi report&#8221; after the name of its lead author, former European Central Bank governor Mario Draghi. While Brussels politics is as subject to hype cycles as politics anywhere else, this particular report packs an unusual amount [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">In September 2024, the European Commission published a report titled <a href="https://commission.europa.eu/topics/strengthening-european-competitiveness/eu-competitiveness-looking-ahead_en">The future of European competitiveness</a>, better known as &#8220;the Draghi report&#8221; after the name of its lead author, former European Central Bank governor Mario Draghi. While Brussels politics is as subject to hype cycles as politics anywhere else, this particular report packs an unusual amount of firepower. The <a href="https://commission.europa.eu/about-european-commission/president-elect-ursula-von-der-leyen/commissioners-designate-2024-2029_en">mission letters</a> received by all incoming European Commissioners from Commission president Ursula von der Leyen tell them in no uncertain terms to draw on it. The president herself is clearly already doing that, to the point of tweaking Teresa Ribera&#8217;s job title into &#8220;Executive Vice President-designate for a clean, just <em>and competitive</em> transition&#8221; (emphasis mine). This appears to be the latest rebranding of the &#8220;twin transitions&#8221; (green and digital) of the 2019 von der Leyen Commission.</p>



<p class="wp-block-paragraph"><p>The 2024 von der Leyen Commission aspires to deliver economic reform, and prepares to invoke the Draghi report as the rationale for its reform agenda. This comes at an interesting time for economic policy, because in recent years – after decades of incremental tinkering around the neoclassical model – economists have come up with several new, bold theories, models, and policy implications thereof. This body of work is new enough that people are still discussing what it should be called: in what follows I call it New Economic Thinking (NET), mirroring <a href="https://demoshelsinki.fi/julkaisut/an-emergent-economic-movement-in-europe/">this 2022 report</a> by Demos Helsinki.</p>
<p>NET is not a single new paradigm; rather, it is a collection of approaches (Demos calls it&nbsp; &#8220;a landscape&#8221;). They differ, but share the conviction that neoclassical economics is unfit for purpose, and that, once you let go of the old orthodoxy, new instruments for economic policies become available. Methodologically, many of the authors associated with NET are skeptical about measuring human wellbeing in monetary terms, and prefer to fall back on physical quantities like calories intakes or square meters of housing (<a href="http://www.cottica.net/2024/08/07/the-hidden-inefficiency-reflecting-on-modes-of-provisioning-in-new-economic-thinking/">more on this</a>). In fact, many of them have intellectual roots in disciplines other than economics, such as physics ( Julia Steinberger, Ole Peters) or anthropology (Jason Hickel). NET approaches have names like degrowth; post-growth; modern monetary theory; doughnut economics; wellbeing economics; and more. Both NET scholars and the group behind the Draghi report call for reform. In this article, I want to look at the report through the prism of NET, and reflect on the similarities and differences between the two.</p></p>



<h3 class="wp-block-heading">1. Report narrative</h3>



<p class="wp-block-paragraph">The Draghi report starts with three statements.</p>



<ol class="wp-block-list">
<li><strong>The European Union needs economic growth to realize its ambitions on social cohesion, decarbonization and strategic autonomy</strong>.</li>



<li><strong>Its economy suffers from a large and growing competitiveness gap with respect to the rival economies of the USA and China.</strong> This gap must be closed to achieve the EU&#8217;s strategic objectives.</li>



<li><strong>To increase competitiveness, Europe must invest massively, way more than at any point in its history, and pursue coherent policies across multiple areas.</strong> This is true for economics policies writ large, and beyond: trade, competition, industrial, monetary, defence development cooperation. All these policies must be tightly integrated and put in service of the overarching strategic goal of being competitive.</li>
</ol>



<p class="wp-block-paragraph">Given these premises, the report identifies intervention areas: ten sectoral policies (energy, critical raw materials, digitalisation and advanced technologies – in turn broken down into high speed and broadband networks, computing and AI and semiconductors – clean tech, automotive, defence, space, pharma and transport) and five horizontal ones (accelerating innovation, closing the skills gap, revamping competition and strengthening governance). The bulk of the report then proposes, for each of these policies, some concrete objectives and the interventions to achieve them.</p>



<p>



</p>





<p class="wp-block-paragraph"><p>Similarly, many NET scholars refute the idea of a positive linkage between economic growth and social cohesion. We have known for a long time that reported satisfaction is uncorrelated to GDP per capita: this is called <a href="https://doi.org/10.1073/pnas.1015962107">the happiness-income paradox</a> and was discovered by James Easterlin in 1974. More recently, Ole Peters <a href="https://doi.org/10.1038/s41567-019-0732-0">has shown</a> that systems that grow on average while practically all its participants are reduced into poverty are perfectly possible : indeed, such systems arise naturally when the income of individuals grows randomly and multiplicatively over time, like most financial markets most of the time.</p>
<p>As for social cohesion, it has now become&nbsp; clear that, from a NET standpoint, there is no automatic path from economic growth to poverty reduction. This is a key concern for academic thinkers like Jason Hickel (who <a href="https://doi.org/10.1016/j.wdp.2024.100612">argues</a> rich countries are better off with <em>degrowth </em>instead), Giorgos Kallis, Tim Jackson and others. Judging from the recent report of the United Nations Special Rapporteur on Extreme Poverty and Human Rights – bearing the NET-friendly title <a href="https://www.srpoverty.org/2024/07/01/eradicating-poverty-in-a-post-growth-context-preparing-for-the-next-development-goals/">Eradicating poverty beyond growth</a> – these ideas are getting buy-in in the global policy space.</p>
<p>Social cohesion is also linked to decarbonization. The debate on just transitions shows that decarbonization is much harder for the financially more vulnerable, and therefore harder to do in more unequal societies. Joel Millward-Hopkins <a href="https://doi.org/10.1038/s41467-022-32729-8">calculated</a> that highly unequal systems require far more energy to provide everyone with decent living standards. The implication is that&nbsp; inequality is a drain on productivity when you measure input in physical terms and output in human well-being.</p></p>



<p class="wp-block-paragraph">The second statement – that the European economy is less competitive than the economies of the US and China, and that this is a bad thing &#8211; looks <em>a priori</em> reasonable. Seen through a NET prism, however, it raises empirical and normative questions. How do we measure competitiveness? By dividing the input into the economy by it output. How does the Draghi report measure output? I have not found a methodology section in the published report, but Figure 1 uses GDP to compute productivity. <strong>That&#8217;s a fatally flawed measure of productivity, because it misses what economies are actually supposed to be producing</strong>. That would be human well-being, and GDP is simply not fit to measure it, not even approximately.&nbsp; This has been known since Simon Kuznets operationalized it in 1934, so I will not embark on a critique here. Suffice it to say that, when you log primary forest, you increase GDP. When you sell a public park to a real estate developer to build luxury housing on, you increase GDP. It is a wildly inadequate measure of economic performance. It is disappointing to see it used in a document of the importance of the Draghi report. NET scholars would have tried to estimate <em>physical</em> productivity: for example, by comparing worked hours and material input with some measure of human welfare like the United Nations&#8217; <a href="https://en.wikipedia.org/wiki/Human_Development_Index">Human Development Index</a>.</p>



<p class="wp-block-paragraph"><p>The Draghi report&#8217;s reliance on GDP as a proxy of welfare means that its authors accept the neoclassical theory of value based on utility theory, and believe that the f<a href="https://en.wikipedia.org/wiki/Fundamental_theorems_of_welfare_economics">undamental theorems of welfare economics</a> apply to the European economy, at least approximately. NET thinkers reject these beliefs, as do most people who are not professional economists. This leads the report to pursuing an economy that, at times, can feel dystopian – like when the report laments that most pension systems in Europe are public and mutualized, instead of private and finance-based like in the US. This is a bad thing, <em>if you are an investment banker</em>, because it leaves much less hot money sloshing around on financial markets for you to profit from. But if you are a human believing in human solidarity, unwilling to trust financial markets with providing for you in your old age, you are likely to find it rather good.</p>
<p><strong>From the point of view of non-investment bankers, the Draghi report suffers from a &#8220;garbage in, garbage out&#8221; problem: the best analysis will still be useless, or worse, if it aims at optimizing the wrong indicator.</strong></p></p>



<h3 class="wp-block-heading">3. Policy innovation – but to do what?</h3>



<p class="wp-block-paragraph"><p>The third statement – that the European Union is not investing nearly enough in its future, and suffers and a gap in policy coherence with respect to the USA and China – seems intuitively correct. Europe is polycentric in nature, so everything is a hard-achieved compromise, including investment. &#8220;Frugal&#8221; member states are notoriously suspicious of public investment, seen as a machine to produce Southern European public debt and shift it to Northern Europeans. Even when there are no ideological disagreements, polycentricity means that a certain amount of horse trading is baked into any major policy decision in Brussels. On average, this reduces policy coherence: it is hard, for example, to imagine a European version of the American Inflation Reduction Act.</p>
<p>I can imagine several NET authors agreeing with Draghi here. Already in the foreword, the report calls for unprecedented levels of investment.</p>
<blockquote>
<p>To digitalise and decarbonise the economy and increase our defence capacity, the investment share in Europe will have to rise by around 5 percentage points of GDP to levels last seen in the 1960s and 70s. This is unprecedented: for comparison, the additional investments provided by the Marshall Plan between 1948-51 amounted to around 1-2% of GDP annually.</p>
</blockquote>
<p>This can-do attitude resonates with the insistence of NET scholars that we can and should do things differently, if &#8220;differently&#8221; brings better results. Scholars like Stephanie Kelton, Mariana Mazzucato, Thomas Piketty, Kate Raworth, Randall Wray have produced substantial economic policy innovations, and are advocating, sometimes successfully, for their implementation. These and other NET thinkers believe Margaret Thatcher&#8217;s quip, &#8220;there is no alternative&#8221;, to be wrong. Apparently, so does Draghi. How to organize the economy is a political choice, not an inevitability. Policy makers are more free than the study of neoclassical economics has led us to believe.</p></p>



<p class="wp-block-paragraph">Mario Draghi began his career as an academic economist. But he is best known as a banker and a policy maker; a practitioner, more than a theorist. So, it is no surprise that the most interesting content of the report that bears his name is its discussion of various specific policies. There is some solid advice here, built on insightful analysis. For example, Chapter 3 (&#8220;A joint decarbonisation and competitiveness plan&#8221;) starts with a discussion on the root cause of energy prices. The report argues that the price of energy – gas in particular – is made &#8220;unnecessarily high&#8221; by institutional factors. Even long-term contracts are indexed to spot energy prices, and spot energy markets are vulnerable to speculation because (1) the supply is highly concentrated, and (2) the European regulation on commodities derivatives grants exemptions to companies whose primary purpose is not trading. Energy prices can be reduced and stabilized by de-financializing the energy markets; abolishing exemptions from regulation on commodities derivatives trading is a good place to start, and indeed is part of the American playbook. In a similar vein, the report offers good advice in Chapter 6, dedicated to governance: consolidate coordination mechanism; consolidate budgetary resources; extend decision making by qualified majority voting in the European Council, and so on. These are not new ideas, but the Commission may hope that Draghi&#8217;s prestige lends them extra weight.</p>



<p class="wp-block-paragraph">But not all the report&#8217;s policy advice is unambiguously good. Viewed through the lens of NET, some policy proposals suffer from the fundamental misalignment, noted above, on what a &#8220;good&#8221; economy looks like. If you – like me – are sympathetic to NET approaches, it sometimes makes for disturbing reading. Several times I found things that I believe are (good) <em>features</em> of the European economy described as <em>bugs</em>. For example, regulating the tech sector (the use of the precautionary principle, data protection laws, compliance on AI) may be &#8220;a barrier to scaling up&#8221; (Chapter 2), but it has protected European citizens, at least a little bit, from the worst data protection and privacy abuse of the tech giants. Same story in Chapter 5, where the report deplores the weakness of private equity funds on the European markets. This certainly raised my eyebrows: private equity is known for asset stripping companies and impoverishing workers to the benefit of the wealthy (&#8220;buy, strip and flip&#8221;). Cory Doctorow <a href="https://pluralistic.net/2024/10/11/democracys-antitrust-paradox/">describes</a> its effects in a colourful, but factually correct, way:</p>


<blockquote>
<p>When PE buys up all the treatment centers for kids with behavioral problems, they hack away at staffing and oversight, turning them into nightmares where kids are routinely abused, raped and murdered (<a href="https://www.nbcnews.com/news/us-news/they-told-me-it-was-going-be-good-place-allega-tions-n987176">NBC News</a>). When PE buys up nursing homes, the same thing happens, with elderly residents left to sit in their own excrement and then die (<a href="https://www.politico.com/news/magazine/2023/12/24/nursing-homes-private-equity-fraud-00132001">Politico</a>).</p>
</blockquote>


<p class="wp-block-paragraph"><a href="https://www.theguardian.com/business/2024/oct/10/slash-and-burn-is-private-equity-out-of-control">Here is a Guardian article</a> with many links to the documented effects on private equity on the economy. It is safe to say they are not productive at all. They only appear so if you insist measuring economic output wrong. Adopting a NET perspective would have avoided the dystopian moments in the report.</p>



<h3 class="wp-block-heading">4. A deeper European integration</h3>



<p class="wp-block-paragraph">The report builds on technical arguments to advocate for deeper European integration. We need to increase productivity; to increase productivity, we need bold, tightly coordinated policies across the board; to have those, we need deeper integration. European institutions must work in a more coherent way with one another; member states must work in a more coherent way with the EU (in Chapter 1). Specifically:</p>



<ol class="wp-block-list">
<li>If tighter integration means a two-tier EU (a tightly integrated core, plus a more loosely integrate outer layer), so be it.</li>



<li>The EU should move towards &#8220;the issuance of a common safe asset&#8221; (in Chapter 5), by which Draghi means &#8220;emitting European sovereign debt&#8221;.</li>
</ol>



<p class="wp-block-paragraph">Deep integration of economic policy and sovereign debt issuance would bring the European Union closer to something like a federal state. This is a large step, but it appears much more realistic after the COVID crisis, when European institutions were deployed to protect the population from another massive financial crisis on top of the epidemic. Debt was issued, overcoming the resistance of the &#8220;frugal&#8221; member states, and the worst was avoided. Achieving social cohesion while decarbonizing the economy, Draghi argues, is also a crisis, in the sense that <em>it cannot wait</em>. He is not wrong in that. Why not, then, use the same instruments that have served us well before?</p>



<p class="wp-block-paragraph">I expect that most of the public debate on the Draghi report will focus on these two proposals. Considerations more pertinent to NET, such as those on value theory and indicators of economic performance, are likely to be the province of economics geeks like myself. Still, GDP as a reliable measure of well-being? In 2024? it seems like a missed opportunity. Draghi could have made his two main proposals for European integration equally well from a NET standpoint. That would likely elicit more public support: most Europeans are facing insecurity and are more likely to support policy mixes that zero in on their well-being rather than on self-referential constructs like &#8220;the economy&#8221;.</p>



<p> </p>
<p><strong>UPDATE</strong>: Hans Stegeman has published <a href="https://hansstegeman.substack.com/p/32-the-european-dream-differs-from">a post in a similar vein</a>. What I liked most about it is that he spent some time quantifying where the difference in GDP growth between Europe and the USA ended up making an impact: population increase, increase in the per capita income of the top 10% earners,  increase in the per capita income of the bottom 90% earners. The results are surprising: the bottom 90% earners have, on average, seen their income grow <em>more</em> in Europe than in the USA. If you take the bottom 50%, the effect is even stronger: their average income has grown 20% more in Europe than in the USA over the period 1990-2023. This reinforces the point, made in my own post, that the Draghi report is optimizing for the wrong variables.</p>



<p><em><span class="">Photo: </span><a href="https://foto.wuestenigel.com/der-eurotower-in-frankfurt-am-main/" target="_blank" rel="noopener"><span class="">The Eurotower in Frankfurt am Main</span></a><span class=""> by </span><a href="https://piwigo.wuestenigel.com" target="_blank" rel="noopener"><span class="">Marco Verch</span></a><span class=""> under </span><a href="https://creativecommons.org/licenses/by/2.0/" target="_blank" rel="noopener"><span class="">Creative Commons 2.0</span></a></em></p>
]]></content:encoded>
					
					<wfw:commentRss>http://www.cottica.net/2024/10/15/the-draghi-report-vs-new-economic-thinking/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">13567</post-id>	</item>
		<item>
		<title>The hidden inefficiency. Reflecting on modes of provisioning in new economic thinking</title>
		<link>http://www.cottica.net/2024/08/07/the-hidden-inefficiency-reflecting-on-modes-of-provisioning-in-new-economic-thinking/</link>
					<comments>http://www.cottica.net/2024/08/07/the-hidden-inefficiency-reflecting-on-modes-of-provisioning-in-new-economic-thinking/#comments</comments>
		
		<dc:creator><![CDATA[Alberto]]></dc:creator>
		<pubDate>Wed, 07 Aug 2024 13:02:05 +0000</pubDate>
				<category><![CDATA[modern economics]]></category>
		<category><![CDATA[ClimateCrisis]]></category>
		<category><![CDATA[Coase theorem]]></category>
		<category><![CDATA[degrowth]]></category>
		<category><![CDATA[economics]]></category>
		<category><![CDATA[mode of provision]]></category>
		<guid isPermaLink="false">http://www.cottica.net/?p=13543</guid>

					<description><![CDATA[The ever-brilliant Cory Doctorow calls our attention to the fact that, in the US of A, three companies control the market for school lunch payments, and they hit poor families with junk fees that go up to 60% of what families pay. Now, some of you might have seen newer economics papers refer to something [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">The ever-brilliant Cory Doctorow calls our attention to the fact that, in the US of A, three companies control the market for school lunch payments, and they hit poor families with junk fees that go <em>up to 60%</em> of what families pay.</p>



<div class="wp-block-jetpack-markdown"><p><a href="https://pluralistic.net/2024/07/26/taanstafl/#stay-hungry">https://pluralistic.net/2024/07/26/taanstafl/#stay-hungry</a></p>
</div>



<p class="wp-block-paragraph">Now, some of you might have seen newer economics papers refer to something called &#8220;mode of provisioning&#8221;. The concept is not very intuitive, but – I believe – the story of school lunch payments is great to explain it.</p>



<p class="wp-block-paragraph">Some of these papers come up with dramatic – and often very encouraging – results. As a recent example, consider <em>How much growth is required to achieve good lives for all? Insights from needs-based analysis</em> by Jason Hickel and Dylan Sullivan </p>



<p class="wp-block-paragraph"><a href="https://doi.org/10.1016/j.wdp.2024.100612">https://doi.org/10.1016/j.wdp.2024.100612</a></p>



<p class="wp-block-paragraph">This paper comes up with a terrific punchline: you could provide everyone on the planet with &#8220;decent living standard&#8221; (I will define that in a minute) with <em>as little as 30% of the energy and materials that we consume now</em>. This is surprising, especially given that now we are nowhere near those levels of global welfare: Hickel and Sullivan cite an upcoming paper by Hoffman et al. that find over 95% of residents of low- and middle-income countries are deprived over at least one dimension of the decent living standard! So how is it that we could technically vastly improve our welfare with one third of the resources we are spending now? There must be a gigantic source of inefficiency lying around, but what is it?</p>



<div class="wp-block-jetpack-markdown"><p>To answer this question, I need to backtrack a little and introduce needs-based analysis. This approach grew out of the dissatisfaction with the dominant method for measuring poverty, associated with the World Bank. This consists of choosing a “poverty line”, which is a level of per capita income. People who earn less than that level are labeled as poor. The World Bank defines <em>extreme poverty</em> as the conditions of the people whose income is lower than 1.9 dollars a day, measured in <a href="https://en.wikipedia.org/wiki/Purchasing_power_parity">purchasing power parity</a> (PPP).</p>
<p>PPPs were invented to normalize monetary measures to the different cost of living in different countries. Intuitively, a salary that barely allows a single individual to survive in Tokyo might support comfortably a family of four in Bucharest. But PPPs come with all sorts of statistical pitfalls. The one that interests us here is this: they are calculated on the basis of a basket of goods that attempts to account for a broad range of goods and services, including those that are irrelevant to measuring poverty – like jewelry, luxury restaurants, commercial airfare. In this situation, if the prices of essential goods rise faster than the growth of PPP income, poverty might increase.</p>
<p>To overcome this problem, needs-based analysis takes a different approach to measuring poverty. It starts by defining poverty as the inability to procure a chosen basket of <em>physical goods and services</em>, not income: for example, Allen’s basic needs poverty line is defined as 2,100 calories per day, plus certain quantities of protein, fat and mineral, plus some clothing and heating, plus 3 square meters of housing. One person is poor according to this definition if their income does not permit them to purchase this basket in full. To calculate how many people live in poverty in a given country, economists can now compare household income data with the price of this basket.</p>
<p><a href="https://doi.org/10.1146/annurev-economics-091819-014652">https://doi.org/10.1146/annurev-economics-091819-014652</a></p>
<p>This is where the mode of provision comes in. Consider, for example, China. Extreme poverty – as measured by the share of the population which did not have access to Allen’s basic needs basket – was, in 1981, 5.6%, much lower than in countries like Brazil or Venezuela – which stood at around 30%, despite their per capita incomes being around five times that of China. China’s low rate of extreme poverty was due to socialist policies that ensured basic necessities like food and housing were widespread and affordable. The capitalist reforms of the 1990s, while contributing to developing China’s manufacturing base, coincided with a large increase rate in the rate of extreme poverty, which peaked at 68% (!) before finally returning, in the 2010s, to the level of the 1980s. The paper by Hickel and Sullivan mentions other cases in which extreme poverty increased even as PPP per capita income was growing: Brazil, Indonesia, Kyrgyzstan.</p>
<p>The paper then goes on to discuss the relationship between growth and poverty, when poverty is measured in PPP income. I, instead, want to reflect on the “socialist policies” mentioned by the authors in passing. What might they be? 1980s China was a planned economy. One can easily imagine meetings of the Central Committee of the Chinese Communist Party deliberating to allocate resources like construction materials and workforce to construct X buildings in province Y, or to direct their vehicle factories to build more tractors and fewer cars for private transportation so that agricultural output would increase. But it is just as easy to imagine policies that obtain similar results by deploying appropriate incentives, such as taxes and subsidies, while leaving production decisions to private businesses. For example, the Italian government decided that its post-COVID recovery stimulus would target retrofitting the housing stock for better insulation, in the interest of reducing household consumption of fossil fuels. Households could claim a tax credit of up to 110% of the money spent on insulation. This process was no shining example and had plenty of problems, but it did lead to <a href="https://lavoce.info/archives/103673/occupazione-senza-crescita-il-puzzle-del-2023/">a robust rise in overall employment, even in presence of a limited economy-wide growth</a>. This means that the (fully capitalist) Italian economy redirected part of its capacity to retrofitting the country’s housing stock for better insulation. In the bargain, it also got more jobs (construction is labour-intensive) and less precarity.</p>
<p>Having established that “socialist policies” can be enacted also in non-socialist economies (as long as they have robust governance of the economy), it’s time to go back to the mode of provisioning, and to those American companies taking a 60% cut on the lunch money of poor schoolchildren.</p>
<p>Suppose you are the minister of education, and your problem is to make sure that all children eat healthy food at school. You already made sure that school cafeterias serve healthy menus. However, there’s a problem: some of those children come from poor families, and those families might be tempted to reduce their expenses by giving children, instead, cheap processed food containing only empty calories. You have an idea: you could give each poor child an electronic wallet, containing electronic cash financed by your ministry, which can be only spent at the school’s cafeterias. Now that you have come up with that, you need to choose a way to make this service available: a “mode of provision”.</p>
<p>One solution is direct provisioning. Your ministry takes it on itself to produce the simplest electronic wallet possible, ideally starting from an existing open source solution that you would then contribute to maintaining. This solution, like any other, will still need to cover its running costs by taking a cut from the transactions involved; but, given economies of scale, you can imagine these costs to be of the order of magnitude of 1% of the resources your ministry credits to these wallets.</p>
<p>Another solution is market provisioning. Your ministry allocates the money for school lunches, but it leaves it to fintech companies to provide wallets, and cover their own costs, <em>plus profit</em>, by taking a cut. At this point, neoclassical economics usually invokes the <a href="https://en.wikipedia.org/wiki/Coase_theorem">Coase theorem</a> to conclude that, in a world of perfect information and perfect competition, the costs of making something in house are the same as those of buying it on the market. But we do not live in that world: we live in the world of Myschoolbucks, Schoolcafé, and Linq Connect. In <em>this</em> world, a transaction comes down at 8% for the relatively affluent parents who are paying for school lunches out of pocket, and at up to 60% for the poorer ones, for which it is your ministry, hence the taxpayer, who is footing the bill.</p>
<p>So, with direct provisioning, buying one euro of school lunches will cost you, say EUR 1.01. With market provisioning, it will cost you up to EUR 2.50 (coincidentally, these numbers are not so far from those reported in Hickel and Sullivan’s paper). Where does the extra EUR 1.49 go? If we imagine both solutions use the same tech, which costs the same EUR 0.01, it goes into shareholder profit, where it is, presumably, used to finance the consumption of things like luxury cars, commercial air travel and so on. That consumption implies that, with market provisioning, school lunches need a lot more energy and materials to land on children’s plates; those extra energy and materials are needed to manufacture and deliver those luxury consumption goods. Without the incentives provided by the latter, private sector companies will have no reason to provide children with electronic wallets with which to pay for school lunches.</p>
<p>This explains the impressive efficiency gains associated to changes in the mode of provisioning estimated in papers by New Economics authors such as Millward, Hickel, Steinberger and others. It gives me a lot of hope, because it means we can massively increase our ability to satisfy human needs while staying within planetary boundaries at the relatively modest price of curbing the luxury consumption of the 1%.</p>
<p><em>Photo credit: Sustainable Economies Law Center on flickr.com, CC-BY</em></p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>http://www.cottica.net/2024/08/07/the-hidden-inefficiency-reflecting-on-modes-of-provisioning-in-new-economic-thinking/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">13543</post-id>	</item>
	</channel>
</rss>
