<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:g="http://base.google.com/ns/1.0">
  <channel>
    <title>tardate 2026</title>
    <description>This blog is my occasional diary of Quite Interesting Things. It is generally technical, meaning all things web, open source, polyglot-programming, electronics and concerning data. But sometimes ravings on books or musics, and occasionally a rant or philosophical dribble.
</description>
    <link>https://blog.tardate.com/</link>
    <atom:link href="https://blog.tardate.com/feed.xml" rel="self" type="application/rss+xml" />
    
      <item>
        <title>LLM Limits: GPUs or Data?</title>
        
          <atom:summary>Large Language Models (LLMs) are statistical inference machines that project from available data and training sets. When they stray beyond the data, they hallucinate. Which may be a good thing, depending upon your intent. But usually not. LLM advances in the past 10 years have largely been constrained by the capital and supply-chain wizardry required to put farms of GPUs on the job of training the latest model. But are we reaching the point where data becomes the strangling bottleneck, not GPUs?</atom:summary>
        
        
        <description>&lt;p&gt;Large Language Models (LLMs) are statistical inference machines that project from available data and training sets. When they stray beyond the data, they hallucinate. Which may be a good thing, depending upon your intent. But usually not. LLM advances in the past 10 years have largely been constrained by the capital and supply-chain wizardry required to put farms of GPUs on the job of training the latest model. But are we reaching the point where DATA becomes the strangling bottleneck, not GPUs?
&lt;img src=&quot;/assets/2026-03-09-ai-data-trap/hero.png&quot; alt=&quot;hero_image&quot; /&gt;&lt;/p&gt;

&lt;h2 id=&quot;the-bait-and-switch&quot;&gt;The Bait And Switch&lt;/h2&gt;

&lt;p&gt;Remember the early days of AI hype, promising to cure cancer and solve climate change?&lt;/p&gt;

&lt;p&gt;Well, … no. Things are a lot more prosaic these days.&lt;/p&gt;

&lt;p&gt;In his 2026 presentation to the Royal Society, Professor Michael John Wooldridge explained how the LLM breakthroughs of the past 10-20 years really just boil down to the ability to apply scale (i.e. lots of GPUs and storage) to a simple and elegant idea - &lt;a href=&quot;https://en.wikipedia.org/wiki/Transformer_(deep_learning)&quot;&gt;the transformer&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=CyyL0yDhr7I&amp;amp;t=1765&quot;&gt;&lt;img src=&quot;/assets/2026-03-09-ai-data-trap/CyyL0yDhr7I-0.jpg&quot; alt=&quot;clip&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What was the training data that the model builders were using?
Andrej Karpathy famously characterised model training as a
&lt;a href=&quot;https://youtu.be/zjkBMFhNj_g?t=6m01s&quot;&gt;lossy compression of the Internet&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;While &lt;a href=&quot;https://commoncrawl.org/&quot;&gt;Common Crawl&lt;/a&gt; remains a good starting point for experiments, leading efforts such as
&lt;a href=&quot;https://aiwiki.ai/wiki/gpt-3#training-data&quot;&gt;OpenAI GPT-family models&lt;/a&gt; are trained on combinations of:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Public web data&lt;/li&gt;
  &lt;li&gt;Licensed data&lt;/li&gt;
  &lt;li&gt;Human-created data&lt;/li&gt;
  &lt;li&gt;Code repositories&lt;/li&gt;
  &lt;li&gt;Books and reference materials&lt;/li&gt;
  &lt;li&gt;User interactions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Which sounds great. All of human knowledge in a bottle!&lt;/p&gt;

&lt;p&gt;But not quite.&lt;/p&gt;

&lt;p&gt;I’ve noticed that people in tech, especially, over-estimate the completeness of the Internet. After-all, the early Internet cultivated an apparently self-evident truth that &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;information wants to be free&lt;/code&gt;
.. as documented by Steven Levy in &lt;a href=&quot;https://www.goodreads.com/book/show/31129366-hackers&quot;&gt;Hackers: Heroes of the Computer Revolution&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;So how much information, and more importantly &lt;em&gt;knowledge&lt;/em&gt;, is readily machine-reasonable?
Some may be surprised that is is still a relatively small fraction, likely &amp;lt;5–10% of all recorded human knowledge.&lt;/p&gt;

&lt;p&gt;If you include all tacit knowledge: far less than 1% is represented.&lt;/p&gt;

&lt;p&gt;A quick thought-experiment may help:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Think of your last job, and the key activities you were occupied with to be successful day-to-day. How much of that was captured, written down, and stored somewhere?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;For most people, even in very digitized roles, the answer is somewhere between “none” and “very little”. And that is how much data the AI has to work with.&lt;/p&gt;

&lt;p&gt;Does it matter though?&lt;/p&gt;

&lt;p&gt;A casual interaction with an LLM may appear satisfactory.
That may be a low bar, as the roasting that
&lt;a href=&quot;https://www.youtube.com/watch?v=02pBnDkV0rQ&quot;&gt;Richard Dawkins got for his Claude Delusion&lt;/a&gt;
illustrates.&lt;/p&gt;

&lt;p&gt;My retrospectively-enlightening career is festooned with examples of good intentions boldly proceeding before an absence of data. To wit…&lt;/p&gt;

&lt;h2 id=&quot;skinny-data&quot;&gt;Skinny Data&lt;/h2&gt;

&lt;blockquote&gt;
  &lt;p&gt;Data, though rich an voluminous, does not contain the necessary detail&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I recall conducting a machine-learning exploration on 12 years worth of customer support data. Multiple gigabytes of valuable digital dust.&lt;/p&gt;

&lt;p&gt;It was successful to a degree: the model could predict resolution categorization with a high degree of confidence.&lt;/p&gt;

&lt;p&gt;But it couldn’t determine exactly &lt;strong&gt;how&lt;/strong&gt; to resolve a given case, because the actual technical steps and details were not recorded in the dataset.&lt;/p&gt;

&lt;p&gt;So if you wanted to build an AI replacement for the support agent with this data, what you’d get would go something like this:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Customer: I seem to have problem X with these symptoms Y and Z. Can you help?&lt;/p&gt;

  &lt;p&gt;AI: Of course we can! Based on my training data I can confidently say that our resolution would be “Network Configuration”&lt;/p&gt;

  &lt;p&gt;Customer: er, ok? So what exactly should I do?&lt;/p&gt;

  &lt;p&gt;AI: You are right, perhaps my instructions were not clear. If you need further help, call our interactive voice-assisted ChatBot at 1-800-FUCK-OFF. I am sure they will be able to resolve your inability to follow our instructions&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;As the basis for anything remotely useful or intelligent, it turned out that the data was pretty much useless.&lt;/p&gt;

&lt;p&gt;The data-capture challenge was that much of the real action happened “off-screen”. If the support agent needed to swivel and &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;ssh&lt;/code&gt; into a remote device … totally transparent. Or consult with a colleague … unrecorded. Or use an air-gapped device to do some queries .. unmonitored.&lt;/p&gt;

&lt;p&gt;It’s almost as if 90% of the job did not leave a digital footprint.&lt;/p&gt;

&lt;p&gt;Correct!&lt;/p&gt;

&lt;p&gt;And that was for a technical job. Imagine how much of a non-technical job fails to leave the digital footprints that an AI requires. 98+%?&lt;/p&gt;

&lt;p&gt;Key learning:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Most “jobs” do not leave a meaningful digital footprint. If you want to capture the details, you will need a specific data capture initiative.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Meta may have belatedly wizened up to this deficit in their datasets, before it was revealed that they would &lt;a href=&quot;https://www.reuters.com/sustainability/boards-policy-regulation/meta-start-capturing-employee-mouse-movements-keystrokes-ai-training-data-2026-04-21/&quot;&gt;start capturing employee mouse movements, keystrokes for AI training data&lt;/a&gt;.&lt;/p&gt;

&lt;h2 id=&quot;shadow-data&quot;&gt;Shadow Data&lt;/h2&gt;

&lt;blockquote&gt;
  &lt;p&gt;The data is out there, but it can’t be accessed&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I’ve noticed this is a particular problem with historical research, as an example.&lt;/p&gt;

&lt;p&gt;If one is looking for specific information, such as aircraft tail codes and operations logs,
or uniform details for specific information, the information may exist somewhere - but it is in a book on a shelf, in a museum, library, or archive, and definitely not part of the training data, or accessible by search.&lt;/p&gt;

&lt;p&gt;AI responses on such topics will be lacking in the necessary detail, or worse, fictitious.&lt;/p&gt;

&lt;p&gt;If one were to ask, for example,  about the uniforms worn by the Japanese in Peleliu, we get:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Olive-drab or khaki cotton tunic and trousers&lt;/li&gt;
  &lt;li&gt;Often faded to light brown, tan, or greenish-grey from tropical exposure&lt;/li&gt;
  &lt;li&gt;Many wore simplified tropical shirts instead of full tunics&lt;/li&gt;
  &lt;li&gt;Puttees (cloth leg wraps) or canvas gaiters&lt;/li&gt;
  &lt;li&gt;Split-toe tabi shoes or hobnailed ankle boots&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;i.e the equivalent of&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;y’sir, he kinda looked japanese&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Not useful! There is a great deal of information that is not generally accessible, or yet to be digitized. Rather than deliver glib deceptive answers, it would be far better if the concerned agents were able to promote relevant digitization efforts.&lt;/p&gt;

&lt;h2 id=&quot;data-black-hole&quot;&gt;Data Black Hole&lt;/h2&gt;

&lt;blockquote&gt;
  &lt;p&gt;No-one thought to collect that data yet&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Early in my career, I was involved in projects to improve predictive machine maintenance.&lt;/p&gt;

&lt;p&gt;The problem was: the machines didn’t produce any data.&lt;/p&gt;

&lt;p&gt;So the first step in most projects was to figure out what data you really needed, and how to collect it. It was usually a non-trivial exercise in itself; often the bulk of the dollars spent.&lt;/p&gt;

&lt;p&gt;And these projects were successful, but for very bounded problems.&lt;/p&gt;

&lt;p&gt;These days, people often assume the data is a given, or simply subject to a price for access being agreed.&lt;/p&gt;

&lt;p&gt;But no. So much or the world remains inaccessible to machine-reasoning.&lt;/p&gt;

&lt;p&gt;Key learning:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Do not underestimate the challenge of capturing “all the data”.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2 id=&quot;the-best-datasets&quot;&gt;The Best Datasets&lt;/h2&gt;

&lt;p&gt;Hang on, I thought we were supposed to be curing cancer, solving climate change, or something equally important?&lt;/p&gt;

&lt;p&gt;But no, we’re optimising software development instead!!!!&lt;/p&gt;

&lt;p&gt;It is no surprise that “coding” is the domain within which
&lt;a href=&quot;https://simonwillison.net/2026/May/19/5-minute-llms/&quot;&gt;AI agents got really good&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Coding presents the most complete and self-contained dataset, with much of the technical field
available for AI training from books, blogs, and open source repositories such as &lt;a href=&quot;https://github.com/kamyu104/LeetCode-Solutions&quot;&gt;LeetCode-Solutions&lt;/a&gt;, and an almost infinite selection of example TODO list implementations.&lt;/p&gt;

&lt;p&gt;So we proclaim “job done”!
… before remembering we were meant to be solving more important problems.&lt;/p&gt;

&lt;p&gt;Are we selecting the best data to solve the most important problems,
of finding the easiest problem that the most available data can solve?&lt;/p&gt;

&lt;p&gt;Remember 2015, the year the world declared developer productivity as the most imminent threat to humanity?&lt;/p&gt;

&lt;p&gt;Wait, no!
It was &lt;a href=&quot;https://www.weforum.org/stories/2015/01/top-10-global-risks-2015/&quot;&gt;water crises and interstate conflict&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Has AI helped solve those problems? Well, no…&lt;/p&gt;

&lt;h2 id=&quot;but-at-least-ai-can-code&quot;&gt;But At Least AI Can Code&lt;/h2&gt;

&lt;p&gt;Hmm, AI &lt;a href=&quot;https://news.ycombinator.com/item?id=42336553&quot;&gt;still falls short&lt;/a&gt; at just generating code.&lt;/p&gt;

&lt;p&gt;In my experience, the biggest challenge in software engineering is “figuring out what people want/need”.&lt;/p&gt;

&lt;p&gt;Call it requirements analysis, UX design, or just consulting - bringing clarity to the messy mix of inter-personal and business incentives
was always the more critical (and challenging) part of project.&lt;/p&gt;

&lt;p&gt;The part that AI is far from being able to master.&lt;/p&gt;

&lt;h2 id=&quot;where-to-from-here&quot;&gt;Where To From Here?&lt;/h2&gt;

&lt;h3 id=&quot;more-data&quot;&gt;More Data&lt;/h3&gt;

&lt;p&gt;If we pursue the LLM paradigm, then clearly what we need is more data.&lt;/p&gt;

&lt;p&gt;Current LLMs, no matter how good they appear to be, are working on datasets that represent less than 1% of all knowledge.&lt;/p&gt;

&lt;p&gt;But all the easily accessible data has already been plundered.&lt;/p&gt;

&lt;p&gt;QED: LLMs need a massive data collection exercise, like Meta’s &lt;a href=&quot;https://www.reuters.com/sustainability/boards-policy-regulation/meta-start-capturing-employee-mouse-movements-keystrokes-ai-training-data-2026-04-21/&quot;&gt;MCI&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;But surely this as an exponential race to the bottom?  As fast as GPUs can process, we need even more data to ingest.
I am picturing a lecturer’s chart scooting off to the top-right…&lt;/p&gt;

&lt;h3 id=&quot;unbounded-by-data&quot;&gt;Unbounded by Data&lt;/h3&gt;

&lt;p&gt;Or perhaps LLMs are an evolutionary dead-end?&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.ineffable.ai/#mission&quot;&gt;Ineffable Intelligence&lt;/a&gt;
was founded by &lt;a href=&quot;https://en.wikipedia.org/wiki/David_Silver_(computer_scientist)&quot;&gt;David Silver&lt;/a&gt;
in November 2025 to chart an alternative path:
focus on developing reinforcement learning algorithms that would have the ability to endlessly discover knowledge and skills,
rather than the transformer approaches that are fundamentally bounded by the data they have available.&lt;/p&gt;

&lt;p&gt;Translated, I believe this simply means:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;rather than just work on data we are given&lt;/li&gt;
  &lt;li&gt;we will go collect data for ourselves&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Presumably with suitably Black Mirror-esque data appendages and sensors
to cross the machine-ecosystem boundary.&lt;/p&gt;

&lt;h3 id=&quot;composability&quot;&gt;Composability&lt;/h3&gt;

&lt;p&gt;I’ve been increasingly drawn to the concept of job composability as a way of thinking about AI impacts on the workforce.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://support.tulip.co/docs/build-composable-apps&quot;&gt;Task composability&lt;/a&gt; is a design principle where complex workloads are broken down into smaller, independent, and reusable “tasks” that can be easily combined or reconfigured to create new workflows.&lt;/p&gt;

&lt;p&gt;Most AI pitches assume they can do the “whole job”. But real people know this is BS.&lt;/p&gt;

&lt;p&gt;So the question becomes: can AI do a little bit of the job, and a human do the rest?&lt;/p&gt;

&lt;p&gt;It depends on whether the task is composable or not.&lt;/p&gt;

&lt;p&gt;A good example of a composable task could be content marketing: an AI can independently take care of Research &amp;amp; Data Gathering, while a human can take care of selecting appropriate sources and tailoring the pitch for the client.&lt;/p&gt;

&lt;p&gt;Typical characteristics of non-decomposable tasks:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Lack of Objective Truth: Tasks where the “correct” answer depends entirely on subjective human values. e.g. writing a sympathy card for a friend&lt;/li&gt;
  &lt;li&gt;Tacit Knowledge: Skills that are learned through physical embodiment rather than data. e.g. how to master kigumi&lt;/li&gt;
  &lt;li&gt;High-Stakes Accountability: Roles where a human must “own” the moral consequences of a decision. e.g. someone must be on the line for this forecast call!&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;conclusion&quot;&gt;Conclusion&lt;/h2&gt;

&lt;p&gt;So this is the rational middle-ground: LLMs are not worth the trillion dollar valuations, but they can be useful
in the routine course of working a task.&lt;/p&gt;

&lt;p&gt;I just hope that someone gets stuck with that AI training bill,
like the investors who paid for the Global Crossing bankruptcy and unwittingly
ushered in the era of “effectively free” global communications!&lt;/p&gt;

</description>
        <pubDate>Mon, 09 Mar 2026 10:00:00 +0000</pubDate>
        <link>https://blog.tardate.com/2026/03/ai-data-trap.html</link>
        <guid isPermaLink="true">https://blog.tardate.com/2026/03/ai-data-trap.html</guid>
      </item>
    
      <item>
        <title>AISLE: The End of Zero-Days?</title>
        
          <atom:summary>AISLE have been developing a complete AI workflow for deep cybersecurity discovery and remediation, and if their Wall of Fame is any indicator of potential, they may prove to be one of the most transformative companies to emerge from the AI bubble.</atom:summary>
        
        
        <description>&lt;p&gt;AISLE have been developing a complete AI workflow for deep cybersecurity discovery and remediation,
and if their &lt;a href=&quot;https://aisle.com/wall-of-fame&quot;&gt;Wall of Fame&lt;/a&gt; is any indicator of potential,
they may prove to be one of the most transformative companies to emerge from the AI bubble.
&lt;a href=&quot;https://aisle.com/wall-of-fame&quot;&gt;&lt;img src=&quot;/assets/2026-02-11-aisle/hero.png&quot; alt=&quot;hero_image&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I must admit to being a little jaded. Where are all the AI startups delivering meaningful breakthroughs?&lt;/p&gt;

&lt;p&gt;We were sold a vision of AI curing cancer, ending the climate crisis, and eliminating poverty.&lt;/p&gt;

&lt;p&gt;Instead, much of the commercial narrative seems to have fixated on workforce reduction and generating a tidal wave of AI slop, along with a huge power bill.&lt;/p&gt;

&lt;p&gt;So I wasn’t expecting to be impressed when I heard about &lt;a href=&quot;https://aisle.com/&quot;&gt;AISLE&lt;/a&gt; on &lt;a href=&quot;https://www.grc.com/sn/sn-1063.htm&quot;&gt;Security Now #1063&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;But I was.&lt;/p&gt;

&lt;h2 id=&quot;its-2026-and-we-still-treat-vulnerabilities-as-normal&quot;&gt;It’s 2026, and we still treat vulnerabilities as “Normal”&lt;/h2&gt;

&lt;p&gt;Since computing’s original sin of mixing code and data, security has been a cat-and-mouse game. We’ve made enormous advances in system and network security, yet we still accept one assumption as inevitable:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;There is no such thing as bug-free code.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;As developers, we follow secure coding practices. We run static analysis. We adopt DevSecOps pipelines. And still, vulnerabilities ship.&lt;/p&gt;

&lt;p&gt;Our experience with AI coding tools such as &lt;a href=&quot;https://claude.com/product/claude-code&quot;&gt;Claude Code&lt;/a&gt;
and &lt;a href=&quot;https://github.com/features/copilot&quot;&gt;GitHub Copilot&lt;/a&gt; is mixed.
They fix some bugs, hallucinate others, chase red herrings, and lack a true closed-loop workflow for discovering and eliminating security flaws.&lt;/p&gt;

&lt;h2 id=&quot;what-is-aisle-doing-differently&quot;&gt;What is AISLE doing differently?&lt;/h2&gt;

&lt;p&gt;AISLE’s ambition is simple and radical: software released with zero known security vulnerabilities.
Where software is assured by AISLE to be free from security vulnerabilities before it is released.&lt;/p&gt;

&lt;p&gt;The company emerged from stealth in October 2025. In the absence of reliable cybersecurity benchmarks, they targeted live, heavily audited open-source projects including:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;OpenSSL&lt;/li&gt;
  &lt;li&gt;curl&lt;/li&gt;
  &lt;li&gt;Firefox&lt;/li&gt;
  &lt;li&gt;Linux&lt;/li&gt;
  &lt;li&gt;OpenVPN&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The results have been remarkable:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;OpenSSL security patch of 2026-01-27 addressed 12 new zero-day vulnerabilities - &lt;a href=&quot;https://www.lesswrong.com/posts/7aJwgbMEiKq5egQbd/ai-found-12-of-12-openssl-zero-days-while-curl-cancelled-its#January_2026__12_out_of_12_new_vulnerabilities&quot;&gt;all discovered and remediated by AISLE&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.lesswrong.com/posts/7aJwgbMEiKq5egQbd/ai-found-12-of-12-openssl-zero-days-while-curl-cancelled-its#Broader_impact__curl&quot;&gt;curl 8.18.0 released January 8, 2026, AISLE was responsible for 3 of the 6 CVEs&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If accurate, that’s not incremental improvement. That’s industrialized vulnerability discovery and remediation.&lt;/p&gt;

&lt;p&gt;AISLE appears to be succeeding not by building a better autocomplete engine, but by creating a full AI-driven workflow dedicated to one problem space.&lt;/p&gt;

&lt;h2 id=&quot;is-zero-vulnerabilities-realistic&quot;&gt;Is “Zero Vulnerabilities” Realistic?&lt;/h2&gt;

&lt;p&gt;For many of us versed in the “old ways”, this sounds too good to be true! And to be sure, if software is free from &lt;strong&gt;security vulnerabilities&lt;/strong&gt;, that is not the end of &lt;strong&gt;security issues&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Even perfect code doesn’t eliminate phishing or credential theft. Humans will always remain part of the attack surface.&lt;/p&gt;

&lt;p&gt;But removing exploitable software flaws changes the economics of cybercrime dramatically. No zero-days means fewer catastrophic breaches.&lt;/p&gt;

&lt;h2 id=&quot;another-ai-unicorn&quot;&gt;Another AI Unicorn?&lt;/h2&gt;

&lt;p&gt;AISLE emerged from stealth backed by angel investors. No major institutional round or valuation has been disclosed yet.&lt;/p&gt;

&lt;p&gt;But if their trajectory continues, they may become something rare: not the first AI unicorn, but possibly the first AI unicorn to actually do something significantly good for the world!&lt;/p&gt;

&lt;h2 id=&quot;what-happens-next&quot;&gt;What Happens Next?&lt;/h2&gt;

&lt;p&gt;The obvious path is integration into CI/CD pipelines with a security assurance as a subscription service.
One can &lt;a href=&quot;https://aisle.com/demo&quot;&gt;request a demo&lt;/a&gt;, but I’ve not yet seen any pricing.&lt;/p&gt;

&lt;p&gt;Longer term? Pure speculation, but I would not be surprised to see a rapid exit and acquisition. My bet would be Microsoft:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;to use internally:
    &lt;ul&gt;
      &lt;li&gt;A world without Windows security patches, because there are no vulnerabilities to fix!&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;to integrate with Microsoft-owned GitHub as a value-added service:
    &lt;ul&gt;
      &lt;li&gt;A perfect pairing or upgrade to the existing Dependabot and Code Scanning services&lt;/li&gt;
      &lt;li&gt;A must for enterprise clients, while ensuring the open-source supply chain that so many companies rely on is kept free from issues&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If AISLE can assure software security before release, “reasonable industry practice” changes. Releasing vulnerable code may eventually be considered negligent under the law,
with the old “no liability” boiler plate in license agreements challenged in court. Be prepared to defend why you are &lt;strong&gt;not&lt;/strong&gt; using a service like AISLE!&lt;/p&gt;

&lt;p&gt;References:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://aisle.com/&quot;&gt;aisle.com&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.lesswrong.com/posts/7aJwgbMEiKq5egQbd/ai-found-12-of-12-openssl-zero-days-while-curl-cancelled-its&quot;&gt;AI found 12 of 12 OpenSSL zero-days (while curl cancelled its bug bounty)&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.grc.com/sn/sn-1063.htm&quot;&gt;Security Now Episode #1063&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
        <pubDate>Wed, 11 Feb 2026 05:00:00 +0000</pubDate>
        <link>https://blog.tardate.com/2026/02/aisle.html</link>
        <guid isPermaLink="true">https://blog.tardate.com/2026/02/aisle.html</guid>
      </item>
    
      <item>
        <title>AI in the Call Centre</title>
        
        
        <description>&lt;p&gt;AI is &lt;a href=&quot;https://www.reddit.com/r/singularity/comments/1cei2y3/generative_ai_could_soon_decimate_the_call_center/&quot;&gt;decimating call centres&lt;/a&gt;, but two can play at that game!
Inspired by true events😂
&lt;img src=&quot;/assets/2026-02-03-ai-in-the-call-centre/ai_in_the_call_center.jpg&quot; alt=&quot;hero_image&quot; /&gt;&lt;/p&gt;

</description>
        <pubDate>Tue, 03 Feb 2026 05:00:00 +0000</pubDate>
        <link>https://blog.tardate.com/2026/02/ai-in-the-call-centre.html</link>
        <guid isPermaLink="true">https://blog.tardate.com/2026/02/ai-in-the-call-centre.html</guid>
      </item>
    
      <item>
        <title>Tyranny of the Urgent</title>
        
        
        <description>&lt;p&gt;The &lt;a href=&quot;https://agileembeddedpodcast.com/&quot;&gt;Agile Embedded Podcast&lt;/a&gt;
is as thought-provoking as ever with their take on the
&lt;a href=&quot;https://agileembeddedpodcast.com/episodes/tyranny-of-the-urgent&quot;&gt;Tyranny of the Urgent&lt;/a&gt;.
The discussion focused very much on how the agile mantra of creating immediate customer value
can lead a team astray,
but it made me think of all the other ways I’ve seen and experienced the “Tyranny of the Urgent” over the years.&lt;/p&gt;

&lt;p&gt;Three thoughts came to mind:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;We’re Not Being Honest about Impact and Urgency&lt;/li&gt;
  &lt;li&gt;We are ignoring the Full Feature Lifecycle&lt;/li&gt;
  &lt;li&gt;When Things are Always Urgent, it may just be a Capacity Problem&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;strong&gt;Tyranny of the Urgent:&lt;/strong&gt;
An anti-pattern where short-term urgent demands systematically override long-term important work, causing reactive behavior and worsening future urgency.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2 id=&quot;problem-1-were-not-being-honest-about-impact-and-urgency&quot;&gt;Problem 1. We’re Not Being Honest about Impact and Urgency&lt;/h2&gt;

&lt;p&gt;Task priority should be a factor of both Impact and Urgency. This is as true in agile environments as elsewhere. It’s a common prioritisation technique that appears in many guises (in &lt;a href=&quot;https://www.projectmanagement.com/wikis/688788/prioritization-matrices#_&quot;&gt;project management&lt;/a&gt;, &lt;a href=&quot;https://wiki.en.it-processmaps.com/index.php/Checklist_Incident_Priority&quot;&gt;ITIL support&lt;/a&gt;, &lt;a href=&quot;https://en.wikipedia.org/wiki/Time_management#Eisenhower_method&quot;&gt;Eisenhower matrix&lt;/a&gt;, &lt;a href=&quot;https://en.wikipedia.org/wiki/PICK_chart&quot;&gt;PICK Charts&lt;/a&gt;) but as a concept is trivially simple.&lt;/p&gt;

&lt;p&gt;No matter how a team calculates priority, it is very sensitive to the fact that both impact and priority are hard to quantify and extremely subjective.&lt;/p&gt;

&lt;p&gt;In reality, I’ve often had to deal with, let’s say “misleading”, assessments of impact or urgency. For example:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;the product owner claiming a feature is critical based on an imaginary concept of the customer
    &lt;ul&gt;
      &lt;li&gt;i.e. trust me, I know what the customer needs without any data or actual customer input to back it up&lt;/li&gt;
      &lt;li&gt;it can be a symptom of a team that is far past their initial requirements efforts and is now coasting.&lt;/li&gt;
      &lt;li&gt;Solutions?
        &lt;ul&gt;
          &lt;li&gt;without being rude about it, find a way to reset expectations around validating requirements before they are accepted for development.&lt;/li&gt;
          &lt;li&gt;Discuss the “definition of done” for a story/requirement itself.&lt;/li&gt;
          &lt;li&gt;May need a jolt to re-engage meaningfully with the customer group, perhaps with a new round of focus group, customer surveys, or customer visits.&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;a sales person claiming features are deal-breakers for a new customer and must be urgently delivered to close the sale
    &lt;ul&gt;
      &lt;li&gt;sometimes this may be true, but in many cases I’ve discovered it’s not (most painfully, after the fact)&lt;/li&gt;
      &lt;li&gt;it may be “lazy sales”: passing the buck to development rather than do the hard work of selling the solution as-is and overcoming customer objections&lt;/li&gt;
      &lt;li&gt;but it can also be a skills gap: sales or pre-sales don’t know the solution well enough or have the requirements analysis skills to help best assess the solution fit and gaps for the customer&lt;/li&gt;
      &lt;li&gt;Solutions?
        &lt;ul&gt;
          &lt;li&gt;the main way I found to battle this is greater involvement of development in the pre-sales process, proposal design and review.&lt;/li&gt;
          &lt;li&gt;it may point to a lack of training on your product with the sales, pre-sales, or customer care teams&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;whatever the C-suite says this week is the most urgent and important thing to work on
    &lt;ul&gt;
      &lt;li&gt;i.e. if you have the authority, you can bypass whatever process is in place for product management&lt;/li&gt;
      &lt;li&gt;This can be tough, because at the end of the day “the boss is always right”!!&lt;/li&gt;
      &lt;li&gt;I’ve mainly seen this in places where senior management either don’t understand the processes used to manage product development, or they don’t trust it to deliver the necessary results&lt;/li&gt;
      &lt;li&gt;Solutions?
        &lt;ul&gt;
          &lt;li&gt;invest time in building the stakeholder relationships and educating them on how development works.&lt;/li&gt;
          &lt;li&gt;nothing beats a good track record to build trust.
            &lt;ul&gt;
              &lt;li&gt;if execs only hear about development when things go wrong, they’ll think that’s the norm&lt;/li&gt;
              &lt;li&gt;make sure to provide regular updates that include all the good news about the process working correctly&lt;/li&gt;
            &lt;/ul&gt;
          &lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;problem-2-we-are-ignoring-the-full-feature-lifecycle&quot;&gt;Problem 2. We are ignoring the Full Feature Lifecycle&lt;/h2&gt;

&lt;p&gt;The podcast did touch on the &lt;a href=&quot;https://en.wikipedia.org/wiki/Three_Horizons&quot;&gt;Three Horizons&lt;/a&gt; model for ensuring there’s always an innovation pipeline, but on a smaller scale I’ve seen insufficient attention paid to appropriately balancing effort across the full lifecycle of features.&lt;/p&gt;

&lt;p&gt;The most common anti-pattern I’m sure we’ve all seen is all effort consumed on new feature development, and only allowing for some effort to be clawed back to fix bugs.
The team ignores the important work of taking features from good to great, and never gets around to retiring features that no longer add value.&lt;/p&gt;

&lt;p&gt;I’m my own practice I’ve found &lt;a href=&quot;https://fla.evendis.com/&quot;&gt;“4Rs Feature Lifecycle Analysis”&lt;/a&gt; a very useful diagnostic to combat this. In essence, all stories get classified as belonging to one of the four stages of a feature lifecycle:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Stage 1, Reveal: new feature development&lt;/li&gt;
  &lt;li&gt;Stage 2, Refine: improving a feature&lt;/li&gt;
  &lt;li&gt;Stage 3, Rectify: fixing bugs, CVEs, updating dependencies etc&lt;/li&gt;
  &lt;li&gt;Stage 4, Retire: removing the feature when it no longer has sufficient value&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Looking at where effort is bucketed makes it very clear if the product management process is delivering a pipeline of work that matches the maturity of the product. i.e.:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;during initial product development, one expects most effort to go into new feature development&lt;/li&gt;
  &lt;li&gt;after launch
    &lt;ul&gt;
      &lt;li&gt;if one is not seeing a shift towards refinement, it may indicate we are stuck in “new feature mode” and are not taking the time to improve the “v1” features already launched&lt;/li&gt;
      &lt;li&gt;and if we see rectification starting to swamp feature development, it may indicate systemic quality issues&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;in very mature products, we’d expect to see effort largely shift to rectification and ideally an uptick in retirement effort&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If we are using agile software development process, isn’t Feature Lifecycle Analysis redundant?
A well-balanced and high-performing team should be able to find the optimal balance by trusting the process:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;customer/business requirements rule, and are represented in the team through a product owner or even an onsite customer&lt;/li&gt;
  &lt;li&gt;we prioritise work for each iteration as a team, balancing customer/business requirements with other things that the team knows are important in order to meet customer expectations (like performance)&lt;/li&gt;
  &lt;li&gt;we keep our iterations short and continuously deliver working software, so even if we get things wrong we can course-correct in short order&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That is of course the ideal. But we operate in the real world, and many things can upset the balance. For example:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Urgency Trumps Impact
    &lt;ul&gt;
      &lt;li&gt;It’s easy to find a queue of people ready to argue for the latest urgent requirement, but there’s no-one around to champion the more impactful stuff that hasn’t also been called out as urgent. Result? Six months later, we’ve delivered all the urgent things, but 90% of the potential impact (“value”) is still on the table.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;The New Shiny
    &lt;ul&gt;
      &lt;li&gt;The new shiny trumps last week’s idea. This can be a problem in startups where the founder/ideas person is also the product owner. Excellent at generating new ideas, but no time or ability to follow-through. So the team leaves a trail of half-baked implementations but never seems to achieve anything great.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;Uninspired Leadership
    &lt;ul&gt;
      &lt;li&gt;The team is looking for insight and vision to drive priorities but just hears “meh”. So the results are naturally also meh.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;Unreal Priorities
    &lt;ul&gt;
      &lt;li&gt;A product owner who is (consciously or not) skewing priorities towards a certain theme or faction over all others, like one particularly vocal customer. Or perhaps lacking real customer insight, priorities are out of touch with reality.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;Weak Team
    &lt;ul&gt;
      &lt;li&gt;A weak development team that’s not able to put up a convincing case for something they believe is important.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;Domineering Team
    &lt;ul&gt;
      &lt;li&gt;Conversely, a development team that is too strong and always manages to spin the product owner to their way of thinking.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;Group Think
    &lt;ul&gt;
      &lt;li&gt;Although we use a strict planning game to prioritize stories, the team is suffering from “group think” and priorities end up skewed to one point of view.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;ScrumMaster At Sea
    &lt;ul&gt;
      &lt;li&gt;A scrum master that doesn’t recognise there’s an issue of balance until it is too late, or is running out of tricks to help the team fix it.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Feature Lifecycle Analysis is really just a diagnostic that can present in a picture what may otherwise just be a gut-feeling that something is not quite right.&lt;/p&gt;

&lt;h2 id=&quot;problem-3-when-things-are-always-urgent-it-may-just-be-a-capacity-problem&quot;&gt;Problem 3. When Things are Always Urgent, it may just be a Capacity Problem&lt;/h2&gt;

&lt;p&gt;We refined our scope to death, optimised all our processes, fine-tuned our tools,
made all the improvements surfaced by our retrospectives,
ensured all our people are well trained and working at their best…
BUT we are still consistently failing to meet expectations for feature delivery.&lt;/p&gt;

&lt;p&gt;We may just need to admit we have a fundamental capacity issue, and no amount of clever scheduling can plan our way out of the hole. Are we trying to do the work of an 8 person team with a team of 3?&lt;/p&gt;

&lt;p&gt;If that’s the case, frankly it’s time for leaders to step up and either:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;reset expectations with stakeholders&lt;/li&gt;
  &lt;li&gt;or make the case for investing in greater capacity&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;listen-to-the-podcast&quot;&gt;Listen to the Podcast&lt;/h2&gt;

&lt;p&gt;Yes, it is an old episode from 2023 but no less relevant for the fact. I’m busily catching up on back episodes;-)&lt;/p&gt;

&lt;iframe height=&quot;200px&quot; width=&quot;100%&quot; frameborder=&quot;no&quot; scrolling=&quot;no&quot; seamless=&quot;&quot; src=&quot;https://player.simplecast.com/dfd6f664-49c0-41ff-9f4a-a46180bb084c?dark=false&quot;&gt;&lt;/iframe&gt;
</description>
        <pubDate>Thu, 08 Jan 2026 06:00:00 +0000</pubDate>
        <link>https://blog.tardate.com/2026/01/tyranny-of-the-urgent.html</link>
        <guid isPermaLink="true">https://blog.tardate.com/2026/01/tyranny-of-the-urgent.html</guid>
      </item>
    
      <item>
        <title>After Pivotal Tracker</title>
        
          <atom:summary>Reviewing the successors to Pivotal Tracker</atom:summary>
        
        
          
            <g:image_link>https://blog.tardate.comhttps://blog.tardate.com/assets/2025-10-21-after-pivotal-tracker/bardtracker-1.png</g:image_link>
          
        
        <description>&lt;p&gt;When Broadcom/VMware announced it was
&lt;a href=&quot;https://web.archive.org/web/20250321135732/https://www.pivotaltracker.com/blog/2024-09-18-end-of-life&quot;&gt;shutting down Pivotal Tracker effective April 30, 2025&lt;/a&gt;, it signalled the end of an era. And had me scrambling to find a replacement!&lt;/p&gt;

&lt;p&gt;TLDR: I moved to
&lt;a href=&quot;https://bardtracker.com/&quot;&gt;BardTracker&lt;/a&gt; and
&lt;a href=&quot;https://litetracker.com/&quot;&gt;LiteTracker&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Pivotal Tracker (PT) was created in 2008 by Pivotal Labs as an internal project management tool based on agile principles. It was later released as a commercial product but eventually became part of VMware Tanzu Labs after its parent company, Pivotal Software, was acquired by VMware in 2019. Following VMware’s acquisition by Broadcom, Tanzu Labs was shut down in early 2025, and PT was retired in April 2025.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;2008: Pivotal Labs develops Pivotal Tracker for internal use.&lt;/li&gt;
  &lt;li&gt;2012: The company, now known as Pivotal Software, is formed.&lt;/li&gt;
  &lt;li&gt;2019: Pivotal Labs is acquired by VMware and renamed VMware Tanzu Labs.&lt;/li&gt;
  &lt;li&gt;2023: VMware is acquired by Broadcom.&lt;/li&gt;
  &lt;li&gt;2025: Tanzu Labs is shut down in January, and Pivotal Tracker is retired in April.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I was first introduced to PT while working alongside Pivotal Labs consultants on Rails projects in 2008/2009.
For me, it represented the same simplicity and effectiveness in planning that Ruby and Rails brought to development itself.&lt;/p&gt;

&lt;p&gt;I was converted, and while I’ve had to use many other systems before and since (Jira, Trello, bugzilla, even FogBugz and others),
nothing has helped me to just get things done so well, without adding undue cost or complexity.&lt;/p&gt;

&lt;p&gt;So like many others, I was in a desperate search for alternatives in 2024/2025, and even considered writing my own if I couldn’t find anything suitable. This was especially true as I’d long since internalised PT and used it for getting things done in all aspects of life.&lt;/p&gt;

&lt;p&gt;The good news: I found answers and was able to smoothly migrate all my ongoing PT activity to alternatives. Here’s a quick summary of what I ended up using&lt;/p&gt;

&lt;h2 id=&quot;bardtracker&quot;&gt;&lt;a href=&quot;https://bardtracker.com/&quot;&gt;BardTracker&lt;/a&gt;&lt;/h2&gt;

&lt;p&gt;I’ve moved all my personal and small project activity to &lt;a href=&quot;https://bardtracker.com/&quot;&gt;BardTracker&lt;/a&gt;.
It was specifically developed by Bot and Rose Design (BARD) as a PT replacement for their own consulting work,
and they now offer it as a service for others.&lt;/p&gt;

&lt;p&gt;What I like:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;it has a nice free tier - perfect, especially for personal GTD/TODO lists&lt;/li&gt;
  &lt;li&gt;GitHub integration&lt;/li&gt;
  &lt;li&gt;looks and works similarly enough to PT&lt;/li&gt;
  &lt;li&gt;is really well supported. I’ve had very fast response to any issues or features requests I’ve raised.&lt;/li&gt;
  &lt;li&gt;it’s backed by an operating concern, so should have some longevity&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To consider:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;the UI is not identical to PT - there are differences, some of which may be significant for you&lt;/li&gt;
  &lt;li&gt;no API access (yet)&lt;/li&gt;
  &lt;li&gt;no mobile app, but mobile responsive view is quite OK&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href=&quot;https://bardtracker.com/&quot;&gt;&lt;img src=&quot;/assets/2025-10-21-after-pivotal-tracker/bardtracker-1.png&quot; alt=&quot;bardtracker-1&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2 id=&quot;litetracker&quot;&gt;&lt;a href=&quot;https://litetracker.com/&quot;&gt;LiteTracker&lt;/a&gt;&lt;/h2&gt;

&lt;p&gt;It really is the most complete and “identical” PT replacement that has made it into full operation.
If you want something exactly like PT, this is the best I’ve found.
As it has no free tier, I haven’t adopted it for personal projects,
but it would be my first choice the next time I start a new project with a larger team.&lt;/p&gt;

&lt;p&gt;What I like:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;every feature you ever liked from PT is here&lt;/li&gt;
  &lt;li&gt;it really is pretty much identical&lt;/li&gt;
  &lt;li&gt;after the initial focus on migrating from PT, they’ve continued to add migrations from other popular planning tools&lt;/li&gt;
  &lt;li&gt;now has a mobile app&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To consider:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;the developer API is still a work-in-progress&lt;/li&gt;
  &lt;li&gt;only paid tiers&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href=&quot;https://litetracker.com/&quot;&gt;&lt;img src=&quot;/assets/2025-10-21-after-pivotal-tracker/litetracker-1.png&quot; alt=&quot;litetracker-1&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2 id=&quot;other-solutions&quot;&gt;Other Solutions&lt;/h2&gt;

&lt;p&gt;Quick notes on some of the others I considered when looking for a PT replacement.&lt;/p&gt;

&lt;h3 id=&quot;direct-pt-replacements&quot;&gt;Direct PT Replacements&lt;/h3&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://lanes.pm/&quot;&gt;Lanes&lt;/a&gt;
    &lt;blockquote&gt;
      &lt;p&gt;The secret superpower of the most productive teams.&lt;/p&gt;
    &lt;/blockquote&gt;
    &lt;ul&gt;
      &lt;li&gt;I applied for the beta but never heard back&lt;/li&gt;
      &lt;li&gt;appears they have now launched with something that looks very much like PT.&lt;/li&gt;
      &lt;li&gt;Doesn’t mention having any integrations or API&lt;/li&gt;
      &lt;li&gt;Have not tried it though&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.pivotalreplacement.com/&quot;&gt;Pivotal Replacement&lt;/a&gt;
    &lt;ul&gt;
      &lt;li&gt;Never made it live (yet)&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://talk.storytime.solutions/&quot;&gt;Storytime&lt;/a&gt;
    &lt;ul&gt;
      &lt;li&gt;Began a discussion on PT replacements&lt;/li&gt;
      &lt;li&gt;Not a solution itself&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&quot;other-planning-solutions&quot;&gt;Other Planning Solutions&lt;/h3&gt;

&lt;p&gt;For a while I did consider whether I really wanted a PT replacement, or would be better served by something different.&lt;/p&gt;

&lt;p&gt;These never aimed to replace PT directly, and none offered any migration support from PT.
It is not an exhaustive list of tools by any stretch, and I excluded all the more traditional project management tools.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://clickup.com/&quot;&gt;ClickUp&lt;/a&gt;
    &lt;ul&gt;
      &lt;li&gt;Didn’t like it.&lt;/li&gt;
      &lt;li&gt;Although has a free option, the task management is overly cluttered. Does not help keep things organised.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.todoist.com/&quot;&gt;Todoist&lt;/a&gt;
    &lt;blockquote&gt;
      &lt;p&gt;“Use Todoist for free forever or upgrade to unlock our most powerful features for work and collaboration”&lt;/p&gt;
    &lt;/blockquote&gt;
    &lt;ul&gt;
      &lt;li&gt;Lacks GitHub integration&lt;/li&gt;
      &lt;li&gt;Had no PT migration solution&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://linear.app/homepage&quot;&gt;Linear&lt;/a&gt;
    &lt;blockquote&gt;
      &lt;p&gt;“a purpose-built tool for planning and building products”&lt;/p&gt;
    &lt;/blockquote&gt;
    &lt;ul&gt;
      &lt;li&gt;Has a free tier with GitHub integration&lt;/li&gt;
      &lt;li&gt;Had no PT migration solution&lt;/li&gt;
      &lt;li&gt;Works very differently than PT&lt;/li&gt;
      &lt;li&gt;Wasn’t the immediate replacement I was looking for but has me interested to try at some point&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://plane.so/&quot;&gt;Plane&lt;/a&gt;
    &lt;blockquote&gt;
      &lt;p&gt;“Plane is the modern project management platform—bringing projects, knowledge, and agents together in one place.”&lt;/p&gt;
    &lt;/blockquote&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://asana.com/&quot;&gt;Asana&lt;/a&gt;
    &lt;ul&gt;
      &lt;li&gt;the grand-daddy of “social networking, but for work”&lt;/li&gt;
      &lt;li&gt;has a free tier, with integrations&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.aha.io/&quot;&gt;Aha!&lt;/a&gt;
    &lt;ul&gt;
      &lt;li&gt;expensive&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.wrike.com/&quot;&gt;Wrike&lt;/a&gt;
    &lt;ul&gt;
      &lt;li&gt;more for enterprise planning&lt;/li&gt;
      &lt;li&gt;limited free tier&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;http://monday.com/&quot;&gt;monday.com&lt;/a&gt;
    &lt;ul&gt;
      &lt;li&gt;The Asana killer&lt;/li&gt;
      &lt;li&gt;At the time, not particularly geared for development&lt;/li&gt;
      &lt;li&gt;But I note that has now changed with &lt;a href=&quot;https://monday.com/w/dev&quot;&gt;monday dev&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://trello.com/&quot;&gt;Trello&lt;/a&gt;
    &lt;ul&gt;
      &lt;li&gt;Never really liked it&lt;/li&gt;
      &lt;li&gt;Works for initial brainstorming, but once things grow to real-world levels of complexity, things get easily lost&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
&lt;/ul&gt;
</description>
        <pubDate>Tue, 21 Oct 2025 03:00:00 +0000</pubDate>
        <link>https://blog.tardate.com/2025/10/after-pivotal-tracker.html</link>
        <guid isPermaLink="true">https://blog.tardate.com/2025/10/after-pivotal-tracker.html</guid>
      </item>
    
      <item>
        <title>Airline: the DC-3 in Post-war History</title>
        
          <atom:summary>The Douglas DC-3 (and Austin Tilly) have starring roles in this TV series from 1982 that brilliantly captures post-war society and events through the end of British Mandate and Palestine Emergency to the Berlin Airlift. I give you 4 reasons to love the show and 1 reason to loathe it!</atom:summary>
        
        
          
            <g:image_link>https://blog.tardate.comhttps://blog.tardate.com/assets/2025-07-13-airline-the-dc3-in-post-war-history/poster.jpg</g:image_link>
          
        
        <description>&lt;p&gt;I recently discovered the British TV Series from 1982, &lt;a href=&quot;https://www.imdb.com/title/tt0083378/&quot;&gt;“Airline”&lt;/a&gt;,
currently &lt;a href=&quot;https://www.youtube.com/playlist?list=PLcOKn2Ebnf7nwdGdbuqkDWGNJ9ascPkcg&quot;&gt;free to watch on YouTube, thanks to “Forgotten British Television”&lt;/a&gt;. The star of the show is really the DC-3 (and an Austin Tilly). I can give you at least 4 reasons why it is wonderful viewing, and 1 reason why you’ll hate it!&lt;/p&gt;

&lt;p&gt;The good:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;For TV made as late as 1982, it brilliantly captures the immediate post-war period in Britain. From &lt;a href=&quot;https://en.wikipedia.org/wiki/Rationing_in_the_United_Kingdom#Post-Second_World_War_1945%E2%80%931954&quot;&gt;rationing and the black market&lt;/a&gt;, to social upheaval of returned services and the changing role of women in society, to the expectation of a new social contract reflected by the &lt;a href=&quot;https://en.wikipedia.org/wiki/Beveridge_Report&quot;&gt;Beveridge Report&lt;/a&gt; and the &lt;a href=&quot;https://en.wikipedia.org/wiki/1945_United_Kingdom_general_election&quot;&gt;Labour victory in 1945&lt;/a&gt; - all are handled with convincing realism.&lt;/li&gt;
  &lt;li&gt;It features the forgotten history of the end of the &lt;a href=&quot;https://en.wikipedia.org/wiki/Jewish_insurgency_in_Mandatory_Palestine&quot;&gt;British Mandate and the Palestine Emergency&lt;/a&gt;, with the Airline being dupped into smuggling guns for Zionist militias who were fighting the British at the time. The show deftly presents the moral dilemma that continues to dominate western politics to this day: sympathy and a need to atone for the treatment of the Jewish people in Europe up to and including the holocaust; yet discomfort with Zionist methods and all that means for others in the middle east, in particular the people of Palestine and Lebanon.
For more on the period, I can highly recommend &lt;a href=&quot;https://amzn.to/40QD3EH&quot;&gt;The Hundred Years’ War on Palestine by Rashid Khalidi&lt;/a&gt;.&lt;/li&gt;
  &lt;li&gt;Later episodes depict the &lt;a href=&quot;https://en.wikipedia.org/wiki/Berlin_Blockade&quot;&gt;Berlin airlift&lt;/a&gt; from a perspective I’d never considered before: the rapid assemblage of motley crews and operators to provide an airlift capability that had been unceremoniously moth-balled at the conclusion of WWII. For more on the history, I really enjoyed reading &lt;a href=&quot;https://amzn.to/46qEwFB&quot;&gt;The Berlin Airlift by Robert Jackson&lt;/a&gt;.&lt;/li&gt;
  &lt;li&gt;Finally, if you appreciate the &lt;a href=&quot;https://en.wikipedia.org/wiki/Douglas_DC-3&quot;&gt;DC-3/Dakota&lt;/a&gt; - it is really the star of the show. There is lots of footage of it in the air and on the ground, in pieces and various liveries. And as a bonus, the show regularly co-stars a period &lt;a href=&quot;https://en.wikipedia.org/wiki/Tilly_(vehicle)&quot;&gt;Austin Tilly&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In short, so many aspects of the story and production will have one thinking: “crikey, forgot about that!” Or even, “crikey, never knew that!”&lt;/p&gt;

&lt;p&gt;So what’s not to like? Well in short: “Jack Ruskin”. This is a lead character you will learn to loathe, as does his fiancée who ends up leaving him by the end of season 1. For all his drive and passion to establish a new airline, he manages to be obnoxious to all concerned, far beyond just being a “blunt no-nonsense Yorkshireman”. Perhaps the main reason there is no season 2, is that there’s no amount of success he could have with the airline to redeem him as a character!&lt;/p&gt;

&lt;h3 id=&quot;airline-the-synopsis&quot;&gt;Airline: The Synopsis&lt;/h3&gt;

&lt;p&gt;&lt;a href=&quot;https://www.imdb.com/title/tt0083378/&quot;&gt;&lt;img src=&quot;/assets/2025-07-13-airline-the-dc3-in-post-war-history/poster.jpg&quot; alt=&quot;poster&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;After the end of the Second World War, Jack Ruskin, a demobbed pilot, attempts to make a living from his one-plane airline business.&lt;/p&gt;

  &lt;p&gt;Newly-discharged from the RAF after World War II, Jack Ruskin, a blunt no-nonsense Yorkshireman, decides to set up his own airline, Ruskin Air Services. Something of an idealist, Jack is prepared to bend every rule in the book to achieve his goal of flying a Dakota once again.
He soon does a deal with Ernie Cade, a notorious spiv who can lay his hands on any item of war surplus - for the right price - and then enlists Peter Witney as co-pilot and Jock McEvoy as maintenance engineer. But his long absences start to put a strain on his relationship with Jennie, his girlfriend.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Episode summary:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;S1.E1 “Look After Number One”: In 1946 Flight Sgt. Russell tries to stay in the RAF as a pilot. A former mentor falls under suspicion of massive illegalities and needs a favor, leading to a brush with smuggling.&lt;/li&gt;
  &lt;li&gt;S1.E2 “Brave New World”: Demobilized from the Air Force, Jack Ruskin hustles to start his own private air service with a few other men.&lt;/li&gt;
  &lt;li&gt;S1.E3 “Conscience”: Ruskin Air Service’s first cargo run is a failure when the cargo of eggs is confiscated. Debts and interest on the aircraft loan pile up. A load of tractor parts headed to Palestine goes awry when a fuel stop leads to a change in cargo.&lt;/li&gt;
  &lt;li&gt;S1.E4 “Touch and Go”: February. Ruskin Air Services is grounded: locked in the icy grip of winter, Enter Ernie Cade, with a proposition the men find hard to refuse, Had they known what they were letting themselves in for, they would have remained earthbound.&lt;/li&gt;
  &lt;li&gt;S1.E5” Fool’s Errands”: March 1947, Ruskin is broke. His plane is badly damaged and Cade is putting the screws on. Hardly the time to expand, one would think, But Ruskin’s determination to succeed knows no bounds.&lt;/li&gt;
  &lt;li&gt;S1.E6 “Captain Clarke Plus One”: Spring 1947, With the forces of bureaucracy massing against him in England, Ruskin finds himself in Malta, with no fuel, no cooperation and no way out. All seems lost until the winds of fortune change - for the worse.&lt;/li&gt;
  &lt;li&gt;S1.E7 “Not Much of a Life”: Stripped of his pilot’s licence and no airline to run, Ruskin, undaunted, embarks on a new ‘money earner’ - and that’s where he comes unstuck: military training hasn’t exactly prepared his crew for carrying passengers.&lt;/li&gt;
  &lt;li&gt;S1.E8 “Officers and Gentlemen”: Spring 1948. Dark clouds are gathering over Jennie and Jack’s wedding plans, The airline is in deep -and deadly - trouble. Ruskin must make a decision which will affect the lives of everyone around him, But will he make the right choice?&lt;/li&gt;
  &lt;li&gt;S1.E9 “Too Many Promises”: Autumn 1948. With high financial rewards to be made from the Berlin airlift, independent operator Ruskin has nothing to operate. He has lost his licence, one of his planes and most of his crew. Can he save himself from disaster.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;See also: &lt;a href=&quot;https://www.imdb.com/title/tt0083378/&quot;&gt;Airline on IMDB&lt;/a&gt;&lt;/p&gt;

&lt;h3 id=&quot;airline-playlist-by-forgotten-british-television&quot;&gt;Airline: Playlist by Forgotten British Television&lt;/h3&gt;

&lt;p&gt;Available &lt;a href=&quot;https://www.youtube.com/playlist?list=PLcOKn2Ebnf7nwdGdbuqkDWGNJ9ascPkcg&quot;&gt;on YouTube&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.youtube.com/playlist?list=PLcOKn2Ebnf7nwdGdbuqkDWGNJ9ascPkcg&quot;&gt;&lt;img src=&quot;/assets/2025-07-13-airline-the-dc3-in-post-war-history/cover.jpg&quot; alt=&quot;cover&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3 id=&quot;for-modellers-the-dc3&quot;&gt;For Modellers: The DC3&lt;/h3&gt;

&lt;p&gt;The &lt;a href=&quot;https://en.wikipedia.org/wiki/Douglas_DC-3&quot;&gt;Douglas DC-3&lt;/a&gt;, also known in its military role as the
&lt;a href=&quot;https://en.wikipedia.org/wiki/Douglas_C-47_Skytrain&quot;&gt;Douglas C-47 Skytrain or Dakota (RAF designation)&lt;/a&gt;,
is a propeller-driven airliner manufactured by the Douglas Aircraft Company. It had a lasting effect on the airline industry from the 1930s, with examples still in use today.&lt;/p&gt;

&lt;p&gt;In 1:72 scale, Airfix is the queen of the sky.
It’s new tool from 2013 has shown up in a number of releases - most recently in 2022 as the &lt;a href=&quot;https://www.scalemates.com/kits/airfix-a08014-douglas-c-47-skytrain--1452855&quot;&gt;Airfix Douglas C-47 Skytrain No. A08014&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.scalemates.com/kits/airfix-a08014-douglas-c-47-skytrain--1452855&quot;&gt;&lt;img src=&quot;/assets/2025-07-13-airline-the-dc3-in-post-war-history/A08014.jpg&quot; alt=&quot;A08014&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Other recent toolings of the DC-3 in 1:72 include:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.scalemates.com/kits/aanda-models-7242-basler-bt-67--1535771&quot;&gt;A&amp;amp;A Models Basler BT-67 No. 7242&lt;/a&gt; from 2024&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.scalemates.com/kits/hobbyboss-87264-c-47a-skytrain--1021821&quot;&gt;HobbyBoss C-47A Skytrain No. 87264&lt;/a&gt; from 2017&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.scalemates.com/kits/amodel-72244-li-2p-t--148905&quot;&gt;Amodel Li-2P/T No. 72244&lt;/a&gt; from 2011&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href=&quot;https://www.scalemates.com/kits/aanda-models-7242-basler-bt-67--1535771&quot;&gt;&lt;img src=&quot;/assets/2025-07-13-airline-the-dc3-in-post-war-history/7242.jpg&quot; alt=&quot;7242&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.scalemates.com/kits/hobbyboss-87264-c-47a-skytrain--1021821&quot;&gt;&lt;img src=&quot;/assets/2025-07-13-airline-the-dc3-in-post-war-history/87264.jpg&quot; alt=&quot;87264&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.scalemates.com/kits/amodel-72244-li-2p-t--148905&quot;&gt;&lt;img src=&quot;/assets/2025-07-13-airline-the-dc3-in-post-war-history/72244.jpg&quot; alt=&quot;72244&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In 1:144
Ukrainian manufacturer Roden has a 2013 tool, most recently released in 2015 as the
&lt;a href=&quot;https://www.scalemates.com/kits/roden-310-douglas-ac-47d-spooky--936191&quot;&gt;Douglas AC-47D Spooky No. 310&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.scalemates.com/kits/roden-310-douglas-ac-47d-spooky--936191&quot;&gt;&lt;img src=&quot;/assets/2025-07-13-airline-the-dc3-in-post-war-history/310.jpg&quot; alt=&quot;310&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Hasegawa seems to dominate “airline scale” 1:200 offerings,
with a 1994 tooling, most recently released in 2012 as the
&lt;a href=&quot;https://www.scalemates.com/kits/hasegawa-10687-l2d-type-zero-transport-and-c-47-skytrain-pacific-carriers--264633&quot;&gt;L2D Type Zero Transport &amp;amp; C-47 Skytrain “Pacific Carriers” 2 kits in the box No. 10687&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.scalemates.com/kits/hasegawa-10687-l2d-type-zero-transport-and-c-47-skytrain-pacific-carriers--264633&quot;&gt;&lt;img src=&quot;/assets/2025-07-13-airline-the-dc3-in-post-war-history/10687.jpg&quot; alt=&quot;10687&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3 id=&quot;for-modellers-the-austin-tilly&quot;&gt;For Modellers: The Austin Tilly&lt;/h3&gt;

&lt;p&gt;A &lt;a href=&quot;https://en.wikipedia.org/wiki/Tilly_(vehicle)&quot;&gt;Tilly&lt;/a&gt; is a utility vehicle produced during the Second World War based on existing car designs for use by the British armed forces. They were all officially classed as Car, Light Utility 4 x 2.&lt;/p&gt;

&lt;p&gt;The Austin variant is used in the show:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/2025-07-13-airline-the-dc3-in-post-war-history/tilly.jpg&quot; alt=&quot;tilly&quot; /&gt;&lt;/p&gt;

&lt;p&gt;I’ve built the 1:72 Austin Tilly from ACE of Ukraine:
&lt;a href=&quot;https://www.scalemates.com/kits/ace-72500-tilly-10hp--170588&quot;&gt;British Light Utility Car Tilly 10HP No. 72500&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.scalemates.com/kits/ace-72500-tilly-10hp--170588&quot;&gt;&lt;img src=&quot;/assets/2025-07-13-airline-the-dc3-in-post-war-history/72500.jpg&quot; alt=&quot;72500&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It’s a great kit - see &lt;a href=&quot;https://modelart.tardate.com/projects/britisharmy/tilly10hp/&quot;&gt;my build here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://modelart.tardate.com/projects/britisharmy/tilly10hp/assets/tilly10hp_build.jpg&quot; alt=&quot;tilly10hp_build&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Tamiya have some of the best examples in 1:35 and 1:48:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.scalemates.com/kits/tamiya-35308-light-utility-car-10hp--102652&quot;&gt;British Light Utility Car 10HP Tamiya No. 35308 - 1:35&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.scalemates.com/kits/tamiya-32562-british-light-utility-car-10hp--133498&quot;&gt;British Light Utility Car 10HP Tamiya No. 32562 - 1:48&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href=&quot;https://www.scalemates.com/kits/tamiya-35308-light-utility-car-10hp--102652&quot;&gt;&lt;img src=&quot;/assets/2025-07-13-airline-the-dc3-in-post-war-history/35308.jpg&quot; alt=&quot;35308&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.scalemates.com/kits/tamiya-32562-british-light-utility-car-10hp--133498&quot;&gt;&lt;img src=&quot;/assets/2025-07-13-airline-the-dc3-in-post-war-history/32562.jpg&quot; alt=&quot;32562&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
</description>
        <pubDate>Sun, 13 Jul 2025 00:00:00 +0000</pubDate>
        <link>https://blog.tardate.com/2025/07/airline-the-dc3-in-post-war-history.html</link>
        <guid isPermaLink="true">https://blog.tardate.com/2025/07/airline-the-dc3-in-post-war-history.html</guid>
      </item>
    
      <item>
        <title>Turning Points - HMS Prince of Wales</title>
        
          <atom:summary>HMS Prince of Wales (R09) arrived in Singapore on the 23 June 2025, docking at the Marina Bay Cruise Centre. Many remember the last visit by a ship bearing her name, HMS Prince of Wales (53), doomed to be sunk a few days later on 10 Dec 1941 as Force Z was effectively wiped out by Japanese aircraft. In 2025, we are at an equally momentous turning point in military doctrine. Will the the new HMS Prince of Wales weather the storm?</atom:summary>
        
        
          
            <g:image_link>https://blog.tardate.comhttps://blog.tardate.com/assets/2025-06-25-turning-points-hms-prince-of-wales/hms-pow-r09-1.jpg</g:image_link>
          
        
        <description>&lt;p&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/HMS_Prince_of_Wales_(R09)&quot;&gt;HMS Prince of Wales (R09)&lt;/a&gt;
arrived in Singapore on the 23 June 2025,
&lt;a href=&quot;https://www.channelnewsasia.com/singapore/hms-prince-wales-uk-aircraft-carrier-marina-bay-cruise-centre-5197761&quot;&gt;docking at the Marina Bay Cruise Centre&lt;/a&gt;.
Many remember the last visit by a ship bearing her name,
&lt;a href=&quot;https://en.wikipedia.org/wiki/HMS_Prince_of_Wales_(53)&quot;&gt;HMS Prince of Wales (53)&lt;/a&gt;, doomed to be sunk a few days later on 10 Dec 1941 as
&lt;a href=&quot;https://en.wikipedia.org/wiki/Force_Z&quot;&gt;Force Z&lt;/a&gt;
was effectively wiped out by Japanese aircraft.
In 2025, we are at an equally momentous turning point in military doctrine. Will the the new HMS Prince of Wales weather the storm?
&lt;img src=&quot;/assets/2025-06-25-turning-points-hms-prince-of-wales/hms-pow-r09-3.jpg&quot; alt=&quot;HMS Prince of Wales (R09) at the Marina Bay Cruise Centre&quot; /&gt;&lt;/p&gt;

&lt;p&gt;The loss of the battleship &lt;a href=&quot;https://en.wikipedia.org/wiki/HMS_Prince_of_Wales_(53)&quot;&gt;HMS Prince of Wales (53)&lt;/a&gt;
and her companion, the battlecruiser
&lt;a href=&quot;https://en.wikipedia.org/wiki/HMS_Repulse_(1916)&quot;&gt;HMS Repulse&lt;/a&gt;,
in just a matter of hours drove home the lesson
that strategic advantage at sea had decisively shifted from
the battleship to the air.&lt;/p&gt;

&lt;p&gt;This was the same lesson painfully taught the US just
a few days earlier with the Dec 7th
&lt;a href=&quot;https://en.wikipedia.org/wiki/Attack_on_Pearl_Harbor&quot;&gt;attack on Pearl Harbor&lt;/a&gt;,
and ironically demonstrated by the British themselves a month before
with the &lt;a href=&quot;https://en.wikipedia.org/wiki/Battle_of_Taranto&quot;&gt;Swordfish attack on the Italian fleet at Taranto&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;This was a turning point in military doctrine that set the blueprint for much of the rest of the Pacific War.
&lt;a href=&quot;https://en.wikipedia.org/wiki/HMS_Prince_of_Wales_(53)&quot;&gt;&lt;img src=&quot;/assets/2025-06-25-turning-points-hms-prince-of-wales/hms-pow-53-1.jpg&quot; alt=&quot;HMS Prince of Wales (53) in Singapore 1941&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In 2025, the aircraft carrier
&lt;a href=&quot;https://en.wikipedia.org/wiki/HMS_Prince_of_Wales_(R09)&quot;&gt;HMS Prince of Wales (R09)&lt;/a&gt;
represents Britain’s continued commitment to the strategy of the
&lt;a href=&quot;https://en.wikipedia.org/wiki/UK_Carrier_Strike_Group#Carrier_Strike_Group_25_(Operation_Highmast)&quot;&gt;Carrier Strike Group&lt;/a&gt;.
Her main air capability comprises
the
&lt;a href=&quot;https://en.wikipedia.org/wiki/Lockheed_Martin_F-35_Lightning_II&quot;&gt;Lockheed Martin F-35B fighter jets&lt;/a&gt;,
with
&lt;a href=&quot;https://en.wikipedia.org/wiki/AgustaWestland_AW159_Wildcat&quot;&gt;AgustaWestland Wildcat HMA2&lt;/a&gt; and
&lt;a href=&quot;https://en.wikipedia.org/wiki/AgustaWestland_AW101&quot;&gt;AgustaWestland Merlin HM2/HC4&lt;/a&gt;
helicopters.&lt;/p&gt;

&lt;p&gt;HMS Prince of Wales (R09) was commissioned in 2019, and
&lt;a href=&quot;https://en.wikipedia.org/wiki/HMS_Prince_of_Wales_(R09)#Operation_Highmast_2025&quot;&gt;Operation Highmast&lt;/a&gt; is only her second major exercise.
But is she already on the wrong side of another turning point of doctrine, just as her namesake was 84 years ago?&lt;/p&gt;

&lt;p&gt;The world of 2025 looks very different from 2008 when she was ordered.
&lt;a href=&quot;https://en.wikipedia.org/wiki/Russian_invasion_of_Ukraine&quot;&gt;Russia invaded Ukraine&lt;/a&gt; and started a very hot war that
is not only showing the limits of nuclear deterrence,
but that the battlefield is now ruled by drones.
The &lt;a href=&quot;https://en.wikipedia.org/wiki/Brexit&quot;&gt;UK left the EU&lt;/a&gt;,
and the &lt;a href=&quot;https://en.wikipedia.org/wiki/Foreign_policy_of_the_first_Donald_Trump_administration&quot;&gt;Trump administration&lt;/a&gt; has called into question its support for NATO and Ukraine, while continuing the US obsession with a threat from China.&lt;/p&gt;

&lt;p&gt;We have seen two significant effects on the zeitgeist:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;A dramatic shift towards uncrewed and autonomous combat systems&lt;/li&gt;
  &lt;li&gt;Questioning the wisdom of relying on the US as an all-weather ally. Many are already making moves to “de-risk” the control and supply of military technology from US dependence. For example, Portugal is &lt;a href=&quot;https://www.snopes.com/fact-check/portugal-f35-jets/&quot;&gt;re-considering its planned F35 purchase&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There was perhaps no better time for the UK to release its latest
&lt;a href=&quot;https://www.gov.uk/government/publications/the-strategic-defence-review-2025-making-britain-safer-secure-at-home-strong-abroad&quot;&gt;Strategic Defence Review&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;While it remains steadfast in its commitment to the US as a strategic partner, indeed recommending to&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;double down on both pillars of the AUKUS agreement,&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;many of the recommendations reflect the dramatic re-centering of the role of autonomous and uncrewed systems, and that&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Defence should also learn from Ukraine’s extraordinary experience in land warfare, drone, and hybrid conflict.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;It foreshadows a significant shift in the role of the aircraft carrier&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Carrier strike is already at the cutting-edge of NATO capability but much more rapid progress is needed in its evolution into ‘hybrid’ carrier airwings, whereby crewed combat aircraft (F-35B) are complemented by autonomous collaborative platforms in the air, and expendable, single‑use drones.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Specifically it recommends that:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;The Royal Navy must continue its transformation in the skills, equipment, and ways of operating needed for the 21st century maritime domain as part of an Integrated Force. This should include:&lt;/p&gt;

  &lt;ul&gt;
    &lt;li&gt;Moving to a ‘hybrid’ carrier airwing, comprising crewed combat aircraft, autonomous collaborative platforms in the air, single-use drones, and, eventually, long-range missiles capable of being fired from the carrier deck.&lt;/li&gt;
    &lt;li&gt;Rapid evolution of anti-submarine warfare through the integration of underwater, surface, and airborne drones (including Protector) with Type 26 frigates, P-8 maritime patrol and reconnaissance aircraft, and SSN attack submarines.&lt;/li&gt;
    &lt;li&gt;Rapid evolution of mine-hunting to be delivered with autonomous platforms.&lt;/li&gt;
    &lt;li&gt;Exploring possible development from a Type 45 destroyer to a minimally crewed or autonomous air dominance system that could integrate directed energy weapons and enable better connectivity to other assets within the UK’s Integrated Air and Missile Defence system.&lt;/li&gt;
  &lt;/ul&gt;
&lt;/blockquote&gt;

&lt;p&gt;So while the aircraft carrier
&lt;a href=&quot;https://en.wikipedia.org/wiki/HMS_Prince_of_Wales_(R09)&quot;&gt;HMS Prince of Wales (R09)&lt;/a&gt;
is not yet obsolete, one may expect dramatic changes in the way it is equipped and fought to be in the wind. Perhaps a refit when it returns from the Pacific at the end of Operation Highmast?&lt;/p&gt;

&lt;p&gt;More references:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.scmp.com/week-asia/politics/article/3315502/uk-soft-power-display-singapore-anchors-marina-bay-skyline-berth&quot;&gt;https://www.scmp.com/week-asia/politics/article/3315502/uk-soft-power-display-singapore-anchors-marina-bay-skyline-berth&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.nationalreview.com/photos/hms-prince-of-wales/&quot;&gt;https://www.nationalreview.com/photos/hms-prince-of-wales/&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.gov.uk/government/publications/the-strategic-defence-review-2025-making-britain-safer-secure-at-home-strong-abroad&quot;&gt;https://www.gov.uk/government/publications/the-strategic-defence-review-2025-making-britain-safer-secure-at-home-strong-abroad&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
        <pubDate>Wed, 25 Jun 2025 00:00:00 +0000</pubDate>
        <link>https://blog.tardate.com/2025/06/turning-points-hms-prince-of-wales.html</link>
        <guid isPermaLink="true">https://blog.tardate.com/2025/06/turning-points-hms-prince-of-wales.html</guid>
      </item>
    
      <item>
        <title>Chili Lime Peanuts ถั่วทอดสมุนไพร</title>
        
          <atom:summary>Making Pailin&apos;s recipe for Chili Lime Peanuts</atom:summary>
        
        
          
            <g:image_link>https://blog.tardate.comhttps://blog.tardate.com/assets/2025-06-23-tua-tod-samun-prai/my-attempt1a.jpg</g:image_link>
          
        
        <description>&lt;p&gt;&lt;a href=&quot;https://hot-thai-kitchen.com/&quot;&gt;Pailin’s Kitchen&lt;/a&gt;
has gifted so many wonderful recipes that frequently appear on our table.
It didn’t take much convincing to have a go at the latest recipe I’d seen,
&lt;a href=&quot;https://hot-thai-kitchen.com/chili-herb-nuts/&quot;&gt;Chili Lime Peanuts (ถั่วทอดสมุนไพร, Tua Tod Samun Prai)&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=89gaob4ovkA&quot;&gt;&lt;img src=&quot;https://img.youtube.com/vi/89gaob4ovkA/0.jpg&quot; alt=&quot;clip&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;How did it go?
Well let’s say I kept downsizing my storage container requirements.
As we were warned, these are indeed very addictive!&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/2025-06-23-tua-tod-samun-prai/my-attempt1a.jpg&quot; alt=&quot;my-attempt1a&quot; /&gt;&lt;/p&gt;

&lt;p&gt;I followed the basic recipe, the main variation
being that I used
&lt;a href=&quot;https://www.fairprice.com.sg/product/knorr-stock-powder-%E2%80%93-chicken-120g-308371&quot;&gt;Knorr Serbuk Pati (Seasoning Powder - Chicken) from NTUC Fairprice&lt;/a&gt;
in place of “chicken bouillon”. I’m not sure if these are actually
similar products, but it worked just fine. The first time I made this, I also left out the cashews  as I didn’t have any around - also works, but I can now attest that it is better with them in.&lt;/p&gt;

&lt;p&gt;My ingredient list:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Frying oil (canola)&lt;/li&gt;
  &lt;li&gt;2 garlic bulbs, ~15-20 cloves, sliced&lt;/li&gt;
  &lt;li&gt;15-20 makrut lime leaves. Stem removed and torn into smaller pieces.&lt;/li&gt;
  &lt;li&gt;1 stalk lemongrass&lt;/li&gt;
  &lt;li&gt;10-15 dried chilies, chopped
    &lt;ul&gt;
      &lt;li&gt;&lt;a href=&quot;https://www.fairprice.com.sg/product/pasar-dried-chillies-value-pack-150g-13088595&quot;&gt;Pasar Dried Chilies&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;400g raw peanuts
    &lt;ul&gt;
      &lt;li&gt;&lt;a href=&quot;https://www.fairprice.com.sg/product/pasar-raw-peanuts-800g-13101694&quot;&gt;Pasar Raw Peanuts from NTUC Fairprice&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;(fried for 7-8 mins)&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;100g raw cashews
    &lt;ul&gt;
      &lt;li&gt;&lt;a href=&quot;https://www.fairprice.com.sg/product/pasar-raw-casher-nut-200g-13218859&quot;&gt;Pasar Raw Cashew Nuts from NTUC Fairprice&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;(fried for 5-6 mins)&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And for the seasoning:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;2 teaspoons granulated sugar
    &lt;ul&gt;
      &lt;li&gt;I used brown sugar, as no white sugar on hand&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;1 teaspoon table salt&lt;/li&gt;
  &lt;li&gt;1 teaspoon lime juice powder
    &lt;ul&gt;
      &lt;li&gt;&lt;a href=&quot;https://www.unileverfoodsolutions.com.sg/en/product/knorr-lime-flavoured-powder-400g-1-EN-694361.html&quot;&gt;Knorr Lime Flavoured Powder&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;1 teaspoon chicken bouillon powder, optional but recommended
    &lt;ul&gt;
      &lt;li&gt;&lt;a href=&quot;https://www.fairprice.com.sg/product/knorr-stock-powder-%E2%80%93-chicken-120g-308371&quot;&gt;Knorr Serbuk Pati (Seasoning Powder - Chicken) from NTUC Fairprice&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;2 teaspoons chili powder
    &lt;ul&gt;
      &lt;li&gt;I used &lt;a href=&quot;https://shopee.sg/product/221176277/22656741097&quot;&gt;Korean Gochugaru&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Highly recommend. You may want to consider doubling all the quantities though!&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.fairprice.com.sg/product/knorr-stock-powder-%E2%80%93-chicken-120g-308371&quot;&gt;&lt;img src=&quot;/assets/2025-06-23-tua-tod-samun-prai/knorr-serbuk-pati.jpg&quot; alt=&quot;knorr-serbuk-pati&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.fairprice.com.sg/product/pasar-raw-peanuts-800g-13101694&quot;&gt;&lt;img src=&quot;/assets/2025-06-23-tua-tod-samun-prai/pasar-raw-peanuts.jpg&quot; alt=&quot;pasar-raw-peanuts&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.fairprice.com.sg/product/pasar-raw-casher-nut-200g-13218859&quot;&gt;&lt;img src=&quot;/assets/2025-06-23-tua-tod-samun-prai/pasar-raw-cashews.jpg&quot; alt=&quot;pasar-raw-cashews&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.unileverfoodsolutions.com.sg/en/product/knorr-lime-flavoured-powder-400g-1-EN-694361.html&quot;&gt;&lt;img src=&quot;/assets/2025-06-23-tua-tod-samun-prai/knorr-lime-flavoured-powder-400g.jpg&quot; alt=&quot;knorr-lime-flavoured-powder-400g&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://shopee.sg/product/221176277/22656741097&quot;&gt;&lt;img src=&quot;/assets/2025-06-23-tua-tod-samun-prai/gochugaru.jpg&quot; alt=&quot;gochugaru&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
</description>
        <pubDate>Mon, 23 Jun 2025 00:00:00 +0000</pubDate>
        <link>https://blog.tardate.com/2025/06/tua-tod-samun-prai.html</link>
        <guid isPermaLink="true">https://blog.tardate.com/2025/06/tua-tod-samun-prai.html</guid>
      </item>
    
      <item>
        <title>The Mosquito In Film</title>
        
          <atom:summary>When the De Havilland Mosquito takes a starring role: including Mosquito Squadron, 633 Squadron, Skyggen i mit øje/The Bombardment</atom:summary>
        
        
          
            <g:image_link>https://blog.tardate.comhttps://blog.tardate.com/assets/2025-06-20-the-mosquito-in-film/mosquito.jpg</g:image_link>
          
        
        <description>&lt;p&gt;The &lt;a href=&quot;https://en.wikipedia.org/wiki/De_Havilland_Mosquito&quot;&gt;de Havilland DH.98 Mosquito&lt;/a&gt;
is one of the most famous (and beautiful) aircraft of the Second World War.
Its use evolved to successfully fulfil many roles, including low- to medium-altitude daytime tactical bomber, high-altitude night bomber, pathfinder, day or night fighter, fighter-bomber, intruder, maritime strike, and photo-reconnaissance aircraft.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/De_Havilland_Mosquito&quot;&gt;&lt;img src=&quot;/assets/2025-06-20-the-mosquito-in-film/mosquito.jpg&quot; alt=&quot;mosquito&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;There are of course many books covering the Mosquito, for example:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.goodreads.com/book/show/60119154-mosquito&quot;&gt;Mosquito: The RAF’s Legendary Wooden Wonder and its Most Extraordinary Mission&lt;/a&gt;, by Rowland White.&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.goodreads.com/book/show/19340862-mosquito-mayhem&quot;&gt;Mosquito Mayhem: de Havilland’s Wooden Wonder in Action in WWII&lt;/a&gt;, by Martin W. Bowman.&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.goodreads.com/book/show/63002244-mosquito-men&quot;&gt;Mosquito Men: The Elite Pathfinders of 627 Squadron&lt;/a&gt;, by David Price&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.goodreads.com/series/163680-633-squadron&quot;&gt;633 Squadron Series&lt;/a&gt;, by Frederick E. Smith.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As such an iconic aircraft, it is no surprise that many films
have also made it the hero of the story. Let’s take a look at a few..&lt;/p&gt;

&lt;h2 id=&quot;633-squadron-1964&quot;&gt;633 Squadron (1964)&lt;/h2&gt;

&lt;p&gt;&lt;a href=&quot;https://www.imdb.com/title/tt0057811/&quot;&gt;&lt;img src=&quot;/assets/2025-06-20-the-mosquito-in-film/poster-633-squadron.jpg&quot; alt=&quot;poster-633-squadron&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;An RAF squadron is assigned to knock out a German rocket fuel factory in Norway. The factory supplies fuel for the Nazi effort to launch rockets on England during D-Day.&lt;/p&gt;

&lt;p&gt;The plot, which involves the exploits of a fictional World War II British fighter-bomber squadron, was based on the 1956 novel of the same name by former Royal Air Force officer Frederick E. Smith, which itself drew on several real RAF operations.&lt;/p&gt;

&lt;p&gt;More:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.imdb.com/title/tt0057811/&quot;&gt;https://www.imdb.com/title/tt0057811/&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/633_Squadron&quot;&gt;https://en.wikipedia.org/wiki/633_Squadron&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It can be found on YouTube:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=sNbzteFqcS4&quot;&gt;&lt;img src=&quot;https://img.youtube.com/vi/sNbzteFqcS4/0.jpg&quot; alt=&quot;clip&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2 id=&quot;mosquito-squadron-1969&quot;&gt;Mosquito Squadron (1969)&lt;/h2&gt;

&lt;p&gt;&lt;a href=&quot;https://www.imdb.com/title/tt0064699/&quot;&gt;&lt;img src=&quot;/assets/2025-06-20-the-mosquito-in-film/poster-mosquito-squadron.jpg&quot; alt=&quot;poster-mosquito-squadron&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In World War II, an RAF squadron leader mourns the death of a comrade and receives a bombing mission against a secret German V-2 rocket testing facility in France.&lt;/p&gt;

&lt;p&gt;Although not a sequel, the film is similar to the 1964 film 633 Squadron and was influenced by it, even using some of its footage.&lt;/p&gt;

&lt;p&gt;More:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.imdb.com/title/tt0064699/&quot;&gt;https://www.imdb.com/title/tt0064699/&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Mosquito_Squadron&quot;&gt;https://en.wikipedia.org/wiki/Mosquito_Squadron&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It can be found on YouTube:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=Q97wK9Pk5-s&quot;&gt;&lt;img src=&quot;https://img.youtube.com/vi/Q97wK9Pk5-s/0.jpg&quot; alt=&quot;clip&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The raid in Mosquito Squadron echoes &lt;a href=&quot;https://en.wikipedia.org/wiki/Operation_Jericho&quot;&gt;Operation Jericho&lt;/a&gt;, a combined RAF–Maquis raid which freed French prisoners from Amiens prison in which the Mosquitos took part.&lt;/p&gt;

&lt;p&gt;The pilots, navigators and planners of Operation Jericho tell their tales in their own words in this documentary, with copious contemporary footage:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=DJZQr5eecjk&quot;&gt;&lt;img src=&quot;https://img.youtube.com/vi/DJZQr5eecjk/0.jpg&quot; alt=&quot;clip&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2 id=&quot;skyggen-i-mit-øje-2021&quot;&gt;Skyggen i mit øje (2021)&lt;/h2&gt;

&lt;p&gt;&lt;a href=&quot;https://www.imdb.com/title/tt9170516/&quot;&gt;&lt;img src=&quot;/assets/2025-06-20-the-mosquito-in-film/poster-bombardment.jpg&quot; alt=&quot;poster-bombardment&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/The_Shadow_in_My_Eye&quot;&gt;Skyggen i mit øje&lt;/a&gt;
is a Danish film also known as “The Shadow in My Eye”, or “The Bombardment” in English.&lt;/p&gt;

&lt;p&gt;It is a powerful story based around &lt;a href=&quot;https://en.wikipedia.org/wiki/Operation_Carthage&quot;&gt;Operation Carthage&lt;/a&gt;.
On March 21st, 1945, the British Royal Air Force set out on a mission to bomb Gestapo’s headquarters in Copenhagen. The raid had fatal consequences
when one of the planes crashed near Institut Jeanne d’Arc, causing the school to be misidentified as the target and also bombed.
More than 120 people were killed, 86 of whom were children.&lt;/p&gt;

&lt;p&gt;I saw The Bombardment on Netflix.&lt;/p&gt;

&lt;h2 id=&quot;for-modellers&quot;&gt;For Modellers&lt;/h2&gt;

&lt;p&gt;Airfix has a long history of kitting the Mosquito.
In 1:72 scale, the new tooling from 2021 is now powering a wonderful line
of variants, for example
&lt;a href=&quot;https://www.scalemates.com/kits/airfix-a04023-havilland-mosquito-bxvi--1324974&quot;&gt;De Havilland Mosquito B.XVI (A04023)&lt;/a&gt;.
I’ve &lt;a href=&quot;https://modelart.tardate.com/projects/raf/mosquito/&quot;&gt;enjoyed building this one&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.scalemates.com/kits/airfix-a04023-havilland-mosquito-bxvi--1324974&quot;&gt;&lt;img src=&quot;/assets/2025-06-20-the-mosquito-in-film/A04023-box.jpg&quot; alt=&quot;A04023-box&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Airfix are perhaps most famous for their massive 1:24 kit,
most recently released in a 2015 boxing from the original 2010 tooling:
&lt;a href=&quot;https://www.scalemates.com/kits/airfix-a25001a-havilland-mosquito-fbvi--830358&quot;&gt;De Havilland Mosquito FB.VI (A25001A)&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.scalemates.com/kits/airfix-a25001a-havilland-mosquito-fbvi--830358&quot;&gt;&lt;img src=&quot;/assets/2025-06-20-the-mosquito-in-film/A25001A-box.jpg&quot; alt=&quot;A25001A-box&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Hasegawa have kitted a series of variants in 1:72 from a 1999 tooling,
the latest being the 2016 release:
&lt;a href=&quot;https://www.scalemates.com/kits/hasegawa-02198-mosquito-nf-mkxiii-night-fighter--989764&quot;&gt;Mosquito NF Mk.XIII ‘Night Fighter’ (02198)&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.scalemates.com/kits/hasegawa-02198-mosquito-nf-mkxiii-night-fighter--989764&quot;&gt;&lt;img src=&quot;/assets/2025-06-20-the-mosquito-in-film/02198-box.jpg&quot; alt=&quot;02198-box&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Tamiya also entered the 1:72 Mosquito market at the same time as Hasegawa
and have produced a few variants from a 1999 tooling,
the latest being the 2001 release:
&lt;a href=&quot;https://www.scalemates.com/kits/tamiya-60765-havilland-mosquito-nf-mkxiii-xvii--121605&quot;&gt;De Havilland Mosquito NF Mk.XIII/XVII&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.scalemates.com/kits/tamiya-60765-havilland-mosquito-nf-mkxiii-xvii--121605&quot;&gt;&lt;img src=&quot;/assets/2025-06-20-the-mosquito-in-film/60765-box.jpg&quot; alt=&quot;60765-box&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Is there a good 1:48 scale mosquito? There hasn’t been a new tool for many years,
but  quite a few manufacturers:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Airfix: &lt;a href=&quot;https://www.scalemates.com/kits/airfix-a07112-havilland-mosquito-prxvi--721978&quot;&gt;De Havilland Mosquito PR.XVI D-DAY 70th Anniversary No. A07112&lt;/a&gt; - 2014 release from a 1977 tooling.&lt;/li&gt;
  &lt;li&gt;Revell:
&lt;a href=&quot;https://www.scalemates.com/kits/revell-03923-dh-mosquito-b-mk-iv--1114531&quot;&gt;D.H. Mosquito B Mk. IV No. 03923&lt;/a&gt; - 2017 release from a 2008 tooling.&lt;/li&gt;
  &lt;li&gt;Tamiya:
&lt;a href=&quot;https://www.scalemates.com/kits/tamiya-89786-havilland-mosquito-nf-mkii--140731&quot;&gt;de Havilland Mosquito NF Mk.II &amp;amp; British Light Utility Car 10HP No. 89786&lt;/a&gt; - 2009 release from a 1998 tooling.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A similar story for 1:32:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Revell: &lt;a href=&quot;https://www.scalemates.com/kits/revell-04758-havilland-mosquito-mkiv--237841&quot;&gt;De Havilland Mosquito Mk.IV No. 04758&lt;/a&gt; - 2014 release from a 1971 tooling.&lt;/li&gt;
  &lt;li&gt;Tamiya: &lt;a href=&quot;https://www.scalemates.com/kits/tamiya-60326-export-havilland-mosquito-fb-mkvi--1489994&quot;&gt;De Havilland Mosquito FB Mk.VI w/clear engine covers No. 60326&lt;/a&gt; - 2015 tooling and release&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;More exciting perhaps is the range of Mosquito kits produced by Mark I Models
in 1:144 scale from a 2018 tooling. The latest being
&lt;a href=&quot;https://www.scalemates.com/kits/mark-i-models-mkm144124-dh-mosquito-fb-vi--1530237&quot;&gt;DH Mosquito FB. VI Amiens Prison Raid No. MKM144124&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.scalemates.com/kits/mark-i-models-mkm144124-dh-mosquito-fb-vi--1530237&quot;&gt;&lt;img src=&quot;/assets/2025-06-20-the-mosquito-in-film/MKM144124-box.jpg&quot; alt=&quot;MKM144124-box&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;At the very extreme end of the scale, Pit-Road produce a wonderful 1:700 scale Mosquito in their
&lt;a href=&quot;https://www.scalemates.com/kits/pit-road-s32-wwii-royal-air-force-wings-set-1--1134373&quot;&gt;WWII Royal Air Force Wings Set 1 No. S32&lt;/a&gt;, last released in 2022 from a 2013 tooling.
I’ve actually used it to make a little &lt;a href=&quot;https://modelart.tardate.com/projects/raf/mosquito/mozziebite/&quot;&gt;resin-encased diorama&lt;/a&gt;:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://modelart.tardate.com/projects/raf/mosquito/mozziebite/&quot;&gt;&lt;img src=&quot;https://modelart.tardate.com/projects/raf/mosquito/mozziebite/assets/MozzieBite_build.jpg?raw=true&quot; alt=&quot;MozzieBite_build&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;See also:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.cybermodeler.com/aircraft/mosquito/mossie_all.shtml&quot;&gt;Mosquito Modeler’s Online Reference&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href=&quot;https://www.goodreads.com/book/show/1052555.Modelling_the_De_Havilland_Mosquito&quot;&gt;Modelling the De Havilland Mosquito&lt;/a&gt;, by Roy Sutherland. Although a little out of date - it was published in 2005.&lt;/li&gt;
&lt;/ul&gt;
</description>
        <pubDate>Fri, 20 Jun 2025 00:00:00 +0000</pubDate>
        <link>https://blog.tardate.com/2025/06/the-mosquito-in-film.html</link>
        <guid isPermaLink="true">https://blog.tardate.com/2025/06/the-mosquito-in-film.html</guid>
      </item>
    
      <item>
        <title>Close Quarters</title>
        
          <atom:summary>Close Quarters (1943) is a docudrama that follows a Royal Navy submarine on a North Sea patrol during World War II</atom:summary>
        
        
          
            <g:image_link>https://blog.tardate.comhttps://blog.tardate.com/assets/2025-06-18-close-quarters/HMS_Tribune_2.jpg</g:image_link>
          
        
        <description>&lt;p&gt;Close Quarters (1943) is a docudrama that follows a Royal Navy submarine on a North Sea patrol during World War II.
It uses vessels, equipment, and crew of the day,
being filmed onboard the Royal Navy T-class Submarine
&lt;a href=&quot;https://en.wikipedia.org/wiki/HMS_Tribune_(N76)&quot;&gt;N76 HMS Tribune&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;HMS Tribune survived the war and was scrapped in 1947.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/HMS_Tribune_(N76)&quot;&gt;&lt;img src=&quot;/assets/2025-06-18-close-quarters/HMS_Tribune_2.jpg&quot; alt=&quot;HMS_Tribune_2&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The film also includes rare footage of a Royal Navy submarine depot ship in action..&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/assets/2025-06-18-close-quarters/depot-ship.png&quot; alt=&quot;depot-ship&quot; /&gt;&lt;/p&gt;

&lt;p&gt;See details on
&lt;a href=&quot;https://www.imdb.com/title/tt0221880/&quot;&gt;IMDB&lt;/a&gt;,
find it at the
&lt;a href=&quot;https://www.iwm.org.uk/collections/item/object/1060006911&quot;&gt;Imperial War Museum&lt;/a&gt;,
or watch it on YouTube:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=8lKRZp4NDSo&quot;&gt;&lt;img src=&quot;https://img.youtube.com/vi/8lKRZp4NDSo/0.jpg&quot; alt=&quot;clip&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.imdb.com/title/tt0221880/&quot;&gt;&lt;img src=&quot;/assets/2025-06-18-close-quarters/poster.jpg&quot; alt=&quot;poster&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2 id=&quot;submarine-on-patrol-1943&quot;&gt;Submarine On Patrol (1943)&lt;/h2&gt;

&lt;p&gt;Submarine On Patrol is a British World War II information film describing to the public the technicalities and roles of Royal Navy submarine operations.&lt;/p&gt;

&lt;p&gt;Again it features HMS Tribune masquerading as &lt;em&gt;HMS Tyrant&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;While it appears to have been made at the same time as filming of “Close Quarters”, most of the footage is unique.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=-Q8hHbFyVB8&quot;&gt;&lt;img src=&quot;https://img.youtube.com/vi/-Q8hHbFyVB8/0.jpg&quot; alt=&quot;clip&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2 id=&quot;for-modellers&quot;&gt;For Modellers&lt;/h2&gt;

&lt;p&gt;SSMODEL released a new
&lt;a href=&quot;https://www.scalemates.com/kits/ssmodel-ssc350958s-hms-thrasher--1583217&quot;&gt;1:350 3D-printed kit  of the T-class Submarine (HMS Thrasher)&lt;/a&gt;
in 2024.
This joins an older &lt;a href=&quot;https://www.scalemates.com/kits/pit-road-wf-2-t-class-group-ii--1429548&quot;&gt;Pit-Road plastic injection kit&lt;/a&gt;, also 1:350.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.scalemates.com/kits/ssmodel-ssc350958s-hms-thrasher--1583217&quot;&gt;&lt;img src=&quot;/assets/2025-06-18-close-quarters/ssmodel-ssc350958s.jpg&quot; alt=&quot;ssmodel-ssc350958s&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
</description>
        <pubDate>Wed, 18 Jun 2025 00:00:00 +0000</pubDate>
        <link>https://blog.tardate.com/2025/06/close-quarters.html</link>
        <guid isPermaLink="true">https://blog.tardate.com/2025/06/close-quarters.html</guid>
      </item>
    
  </channel>
</rss>
