1914 Reader

198 posts

1914 Reader

1914 Reader

@1914Reader

Updates on the latest essays and episodes from 1914 Reader and Frontier Matters podcast.

Katılım Ekim 2025
30 Takip Edilen254 Takipçiler
1914 Reader retweetledi
Efosa Ojomo
Efosa Ojomo@EfosaOjomo·
I got into this and more with Feyi Fawehinmi and Tobi Lawson on the Frontier Markets podcast. We covered The Prosperity Paradox, what made Clay Christensen so special, and the new book I am working on. Listen here. 1914reader.com/p/efosa-ojomo-…
English
0
3
11
1.2K
1914 Reader retweetledi
Efosa Ojomo
Efosa Ojomo@EfosaOjomo·
Jobs are not the goal. They are the output of consumption. When people consume more, businesses hire more. This is why a consistent commitment to market creation matters more than almost anything else in development.
English
4
47
106
18.5K
1914 Reader retweetledi
jeroen blokland
jeroen blokland@jsblokland·
A humanoid robot crushed the world record for a half marathon. But not before it crashed near the finish and had to be set straight by 'simple' humans. Forget performance-enhancing drugs; get ready for an era of performance-enhancing technologies. Athletes will put technologies inside their bodies to become Olympic champions.
Kyle Chan@kyleichan

This Chinese humanoid robot just shattered the world record for a half marathon, finishing in 50 min 26 sec. This video shows its crash just meters before the finish line where it had to be picked up by a team of humans. The robot is from Honor, the smartphone maker and Huawei spin-off. This robot was teleoperated while others were autonomous. It seems like all the robots had battery swaps along the way.

English
5
3
12
10.2K
1914 Reader retweetledi
Oyeronke Oyebanji
Oyeronke Oyebanji@OyeRonke_·
Spent the week having (too many) conversations about NGR. This @1914Reader piece expresses it well “Taking reforms beyond short-term stabilisation towards structural transformation requires a new kind of political leadership & elite bargain than we have” 1914reader.com/p/reform-is-no…
English
0
2
2
132
1914 Reader retweetledi
Kevin A. Bryan
Kevin A. Bryan@Afinetheorem·
Industrial policy revisionism is out of control. Yes, there can be industries with spillovers. No, the average 1970s economy that subsidized with debt random industries connected to government monopolies wasn't on path to growth! Look at what pre-WC policy actually looked like!
Morgan Ricks@MorganRicks1

World Bank to world: oops

English
11
79
750
62.8K
1914 Reader retweetledi
Habyb
Habyb@eta_habyb·
If food is cheap, you can exploit cheap labour for manufacturing productivity. Expensive food is a problem for African manufacturers -- Carl Henri Prophete (Frontier Matters).
English
1
15
33
1.9K
1914 Reader retweetledi
Carl-Henri Prophète 🇭🇹
I enjoyed chatting with Feyi and Tobi on the @1914Reader podcast. We discussed: The current situation in Haiti, the good and dark side of remittances, high labor costs in Africa and much more. @kaytikal/note/c-243768669?r=7371m" target="_blank" rel="nofollow noopener">substack.com/@kaytikal/note…
Carl-Henri Prophète 🇭🇹 tweet media
English
0
1
3
84
1914 Reader retweetledi
Reuters Africa
Reuters Africa@ReutersAfrica·
Nigeria will slash import duties on food, vehicles and industrial inputs from July 1, the presidency said on Tuesday, as Africa's most populous country seeks to rein in inflation and ease rising living costs. reuters.com/world/africa/n…
English
6
104
162
9.2K
1914 Reader retweetledi
tyro
tyro@DoubleEph·
Mo Ibrahim on the war in Sudan
tyro tweet media
Indonesia
0
11
19
1.9K
1914 Reader retweetledi
Chris Giles
Chris Giles@ChrisGiles_·
Even after mitigations, the Iran war reduces global liquid fuel supplies by at least 10% (That's half the size of the worst lockdown months of Covid) And prices of crude oil do not reflect this yet My newsletter as.ft.com/r/a3833ead-4f8…
Chris Giles tweet media
English
6
36
86
30K
1914 Reader retweetledi
tyro
tyro@DoubleEph·
This is such a high value tweet. Writing a book at the moment (details in next tweet) and I've amassed a tonne of PDFs and books for research. Each chapter in the book is a standalone story so I previously organised the PDFs in one folder per chapter. Dumped everything in one folder and handed it - along with this tweet - to Claude Cowork with which it built a wiki. And oh my....magic has once again happened.
Andrej Karpathy@karpathy

LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research interest. In this way, a large fraction of my recent token throughput is going less into manipulating code, and more into manipulating knowledge (stored as markdown and images). The latest LLMs are quite good at it. So: Data ingest: I index source documents (articles, papers, repos, datasets, images, etc.) into a raw/ directory, then I use an LLM to incrementally "compile" a wiki, which is just a collection of .md files in a directory structure. The wiki includes summaries of all the data in raw/, backlinks, and then it categorizes data into concepts, writes articles for them, and links them all. To convert web articles into .md files I like to use the Obsidian Web Clipper extension, and then I also use a hotkey to download all the related images to local so that my LLM can easily reference them. IDE: I use Obsidian as the IDE "frontend" where I can view the raw data, the the compiled wiki, and the derived visualizations. Important to note that the LLM writes and maintains all of the data of the wiki, I rarely touch it directly. I've played with a few Obsidian plugins to render and view data in other ways (e.g. Marp for slides). Q&A: Where things get interesting is that once your wiki is big enough (e.g. mine on some recent research is ~100 articles and ~400K words), you can ask your LLM agent all kinds of complex questions against the wiki, and it will go off, research the answers, etc. I thought I had to reach for fancy RAG, but the LLM has been pretty good about auto-maintaining index files and brief summaries of all the documents and it reads all the important related data fairly easily at this ~small scale. Output: Instead of getting answers in text/terminal, I like to have it render markdown files for me, or slide shows (Marp format), or matplotlib images, all of which I then view again in Obsidian. You can imagine many other visual output formats depending on the query. Often, I end up "filing" the outputs back into the wiki to enhance it for further queries. So my own explorations and queries always "add up" in the knowledge base. Linting: I've run some LLM "health checks" over the wiki to e.g. find inconsistent data, impute missing data (with web searchers), find interesting connections for new article candidates, etc., to incrementally clean up the wiki and enhance its overall data integrity. The LLMs are quite good at suggesting further questions to ask and look into. Extra tools: I find myself developing additional tools to process the data, e.g. I vibe coded a small and naive search engine over the wiki, which I both use directly (in a web ui), but more often I want to hand it off to an LLM via CLI as a tool for larger queries. Further explorations: As the repo grows, the natural desire is to also think about synthetic data generation + finetuning to have your LLM "know" the data in its weights instead of just context windows. TLDR: raw data from a given number of sources is collected, then compiled by an LLM into a .md wiki, then operated on by various CLIs by the LLM to do Q&A and to incrementally enhance the wiki, and all of it viewable in Obsidian. You rarely ever write or edit the wiki manually, it's the domain of the LLM. I think there is room here for an incredible new product instead of a hacky collection of scripts.

English
6
23
179
22.8K
1914 Reader retweetledi
ripples
ripples@Adheydayor·
When everything doesn’t work in a superior currency, then it’s not an indictment on the funding models. Even when you raise in local currency, the value destruction is clear. I think it’s better to separate solvency (or exits) from value creation.
GIANT@tomiwalker_

VC doesn’t work, private equity doesn’t work, dollar denominated debt doesn’t work Why? Because the African market is small and returns are battling poor revenues/profits, inflation, devaluation Answer? Raise local. Build local Raise global. Build for export

English
1
18
26
5.7K