<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Posts on Sean Mata</title><link>http://www.example.com/posts/</link><description>Recent content in Posts on Sean Mata</description><generator>Hugo -- gohugo.io</generator><language>en</language><lastBuildDate>Sun, 10 Aug 2025 22:08:48 +0800</lastBuildDate><atom:link href="http://www.example.com/posts/index.xml" rel="self" type="application/rss+xml"/><item><title>Is all the low hanging fruit gone in technology development? What we can do to shape innovation</title><link>http://www.example.com/posts/low-hanging-fruit/</link><pubDate>Sun, 10 Aug 2025 22:08:48 +0800</pubDate><guid>http://www.example.com/posts/low-hanging-fruit/</guid><description>As a recent engineering graduate, it’s easy to think the “low-hanging fruit” of technology has already been picked. The scientific revolutions of the past—mastering physics, chemistry, and biology—gave us nuclear power, plastics, and antibiotics. Back then, inventing calculus could change the course of history; today, mastering it is merely a graduation requirement.1
Yet the opportunities for innovation are far from over, although we may need to look for them in other areas.</description></item><item><title>Ingredients for Happiness — The Science in Three Sentences</title><link>http://www.example.com/posts/how-to-be-happy/</link><pubDate>Mon, 04 Aug 2025 12:17:50 +0800</pubDate><guid>http://www.example.com/posts/how-to-be-happy/</guid><description>Exercise1 and have good friends.
Being lonely is as bad for health as smoking half a pack of cigarettes a day, or being obese.2 Exercise has the opposite effect: every minute of exercise increases your life expectancy by about seven minutes.3
That&amp;rsquo;s pretty much it. I can&amp;rsquo;t really imagine a life where you have both and you&amp;rsquo;re not doing at least okay.
You want more?4
Okay find a good spouse, sleep and eat well.</description></item><item><title>How to be rich</title><link>http://www.example.com/posts/how-to-be-rich/</link><pubDate>Mon, 28 Jul 2025 23:32:37 +0800</pubDate><guid>http://www.example.com/posts/how-to-be-rich/</guid><description>If you want to be rich you have to own something.
That&amp;rsquo;s it.
Why? Okay well two reasons:
In any salaried job you work you will produce more value than you are paid (otherwise why would they hire you?). Who gets to keep all this extra value you created? Owners. (This is called the exploitation of surplus value).1
If you don&amp;rsquo;t own something, your monetary value will be strictly tied to the amount of hours you work each week.</description></item><item><title>You don't need to solve hard, technical problems: From an Oxford University Engineer</title><link>http://www.example.com/posts/solving-hard-complex-problems/</link><pubDate>Tue, 15 Jul 2025 22:06:05 +0800</pubDate><guid>http://www.example.com/posts/solving-hard-complex-problems/</guid><description>When I started as a student, I wanted to solve &amp;ldquo;hard technical problems&amp;rdquo;. After all, it&amp;rsquo;s what I was good at in school and what interested me. The process of learning new maths or physics models and playing with them in my head to understand their consequences excited me - often a 3blue1brown video and a concept I didn&amp;rsquo;t understand were all I needed. However, once I started working I realised that most problems that warrant a solution are not technical.</description></item><item><title>Visualising every day of your life</title><link>http://www.example.com/posts/days-of-life-visualisation/</link><pubDate>Tue, 08 Jul 2025 13:18:02 +0800</pubDate><guid>http://www.example.com/posts/days-of-life-visualisation/</guid><description>Life in Days (Block View) :root { --day-size: 4px; } body { margin: 0; background: #f5f5f5; font-family: sans-serif; } h1 { text-align: center; padding: 1rem; } .container1 { margin: 0 auto; padding: 1rem; display: flex; flex-direction: column; gap: 1rem; } .container { max-width: 100% !important; width: 100%; } .container2 { max-width: none; margin: 0 auto; padding: 1rem 0; display: flex; flex-direction: column; align-items: center; box-sizing: border-box; } .legend-container { display: flex; align-items: flex-start; gap: 1rem; flex-wrap: wrap; } .</description></item><item><title>Visualising every day of your life-plain version</title><link>http://www.example.com/posts/days-of-life-visualisation-simple/</link><pubDate>Tue, 08 Jul 2025 13:18:02 +0800</pubDate><guid>http://www.example.com/posts/days-of-life-visualisation-simple/</guid><description>Every day of a 90-year life Each box is a day. Days of a Life body { margin: 0; background: #f5f5f5; font-family: sans-serif; } h1 { text-align: center; padding: 1rem; } .grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(5px, 1fr)); gap: 1px; padding: 10px; max-width: 100vw; box-sizing: border-box; } .container { max-width: 100% !important; width: 100%; } .day { width: 5px; height: 5px; background-color: #ccc; } const days = 90 * 365; const grid = document.</description></item><item><title>Time with Loved Ones Calculator</title><link>http://www.example.com/posts/time-with-loved-ones/</link><pubDate>Tue, 08 Jul 2025 09:32:21 +0800</pubDate><guid>http://www.example.com/posts/time-with-loved-ones/</guid><description>body { font-family: sans-serif; padding: 20px; max-width: 800px; margin: auto; } label { display: block; margin-top: 10px; } input { width: 100%; padding: 8px; margin-top: 4px; } button { margin-top: 20px; padding: 10px; font-size: 16px; } #results { margin-top: 30px; } .grid { display: grid; grid-template-columns: repeat(auto-fill, 5px); gap: 1px; max-height: 1000px; overflow-y: auto; } .cell { width: 5px; height: 5px; border: 1px solid #ccc; } .filled { background-color: #3498db; border: none; } .</description></item><item><title>Compound Interest Calculator</title><link>http://www.example.com/posts/compound-interest/</link><pubDate>Mon, 07 Jul 2025 13:00:53 +0800</pubDate><guid>http://www.example.com/posts/compound-interest/</guid><description>Initial Amount (£) Annual Return (%) Years Wealth at specific years: body { font-family: sans-serif; padding: 20px; max-width: 800px; margin: auto; } input { width: 100%; padding: 0.5rem; margin-top: 0.25rem; margin-bottom: 1rem; font-size: 1rem; } label { font-weight: bold; font-size: 1.6rem; } #year-labels-list { font-size: 1.25rem; } const ctx = document.getElementById('chart').getContext('2d'); let chart; function calculateData(initial, rate, years) { const data = []; for (let year = 0; year i.</description></item><item><title>Career path advice I wish I had as an ambitious student — From an Oxford University Engineer</title><link>http://www.example.com/posts/reflecting-on-2nd-year-career/</link><pubDate>Thu, 26 Jun 2025 18:15:53 +0100</pubDate><guid>http://www.example.com/posts/reflecting-on-2nd-year-career/</guid><description>Looking back to 2023, I was a lot more uncertain about my career This post came from rereading an old entry where I wrote about why I started this website. One point stood out: &amp;ldquo;To have a testament to my skills and beliefs&amp;rdquo;. I explained it by saying: &amp;ldquo;Whenever i get the feeling of imposter syndrome, this is a nice place to check back on that has some detail on who I am.</description></item><item><title>Cost of living crisis visualised</title><link>http://www.example.com/posts/cost-of-living/</link><pubDate>Tue, 24 Jun 2025 17:12:43 +0100</pubDate><guid>http://www.example.com/posts/cost-of-living/</guid><description>Over the last few years, many in the UK have felt the pressure of rising costs—from groceries to gas bills, rent to rail fares. But this isn&amp;rsquo;t just inflation. The UK is facing a cost of living crisis, where essential costs have risen disproportionately faster than incomes, deepening economic hardship for millions.
The Big Issue newspaper defines the cost of living crisis as “a scenario in which the cost of everyday essentials like energy and food is rising much faster than average incomes.</description></item><item><title>The 1 Mistake Made When Setting Goals and New Year's Resolutions</title><link>http://www.example.com/posts/setting-goals-feedback/</link><pubDate>Mon, 06 Jan 2025 17:25:17 +0000</pubDate><guid>http://www.example.com/posts/setting-goals-feedback/</guid><description>If you are like most people you&amp;rsquo;ve tried to set goals before and roughly followed the method above. Instead let me explain how the feedback loop below can speed up your personal growth!
In the real world, your growth is not linear A-&amp;gt;B-&amp;gt;C so structuring your development like this does not make sense. Instead of aiming for results the real aim is to be able to plan and carry out a specific process to achieve your goals, and the best way to do that is by considering feedback (or reflection or mindfulness).</description></item><item><title>Why All Future Leaders in Engineering Should Apply to the ELS RAEng scholarship</title><link>http://www.example.com/posts/els-scholarship/</link><pubDate>Thu, 02 Jan 2025 23:12:52 +0000</pubDate><guid>http://www.example.com/posts/els-scholarship/</guid><description>Me alongside the cohort of 2023 Engineering Leadership Scholars
Future leaders in engineering are not simply born—they are shaped by opportunities like the Engineering Leadership Scholarship (ELS) scholarship offered by the Royal Academy of Engineering (RAEng). This scheme takes ambitious students like you and me and provides resources to accelerate your personal development. While you need to demonstrate passion for engineering (and to be studying towards it or a related discipline), they simply want you to make the biggest impact you can and pivoting is ok in the end.</description></item><item><title>7 Ways Scholarships Can Boost Your Career and Future</title><link>http://www.example.com/posts/why-apply-scholarships-7/</link><pubDate>Thu, 02 Jan 2025 21:21:09 +0000</pubDate><guid>http://www.example.com/posts/why-apply-scholarships-7/</guid><description>Scholarships can be the catalyst that propel you toward a thriving career and a prosperous future.
They come in all sorts of flavours (including academic, music, financial need, sporting achievement, industry). Besides the money, they are one of the highest returns on investment on yourself you can make. You owe it to yourself to find and apply for them (and grants and bursaries).
If you aren&amp;rsquo;t convinced yet, here are some reasons you should be applying for them now.</description></item><item><title>Unlocking the internet as an independent learning tool - The resources I use</title><link>http://www.example.com/posts/internet-resources/</link><pubDate>Tue, 31 Dec 2024 16:37:06 +0000</pubDate><guid>http://www.example.com/posts/internet-resources/</guid><description>The internet is an amazing tool. Never before in history has human knowledge been so accessible. The great part, most of it is out there free. However, you usually need to spend a lot of time cutting through the noise. I want to save you some of that time, so here are the best resources I&amp;rsquo;ve used to learn from 48 different areas. I&amp;rsquo;ve spent 3 hours+ with most of these books/youtube creators/podcasters, so they come with well-informed recommendations.</description></item><item><title>Getting over the fear of publishing your writing, from an engineering student with no prior experience</title><link>http://www.example.com/posts/fear-of-publishing/</link><pubDate>Mon, 30 Dec 2024 20:25:14 +0000</pubDate><guid>http://www.example.com/posts/fear-of-publishing/</guid><description>Getting over the fear of publishing I think there are potentially two ways of going about this. First, you could dive into the deep end. This strategy will likely be terrifying at first, but especially if you are in an environment that supports you, you will realise that the thing is probably not as bad as you feared. The second strategy is to break down and face your fears ahead of time.</description></item><item><title>Interesting quotes and thoughts</title><link>http://www.example.com/posts/interesting-quotes-thoughts/</link><pubDate>Sun, 31 Dec 2023 16:40:18 +0000</pubDate><guid>http://www.example.com/posts/interesting-quotes-thoughts/</guid><description>Your personality lags behind your actions by two years (Colin and Samir). Showing up is more important than being perfect. (Arnold Shwarzenaegger) Perfect practise makes perfect Make a lot of pots Opportunities hide at unlikely intersections (Nicholas Cole) Hang around the hoop (Ali Abdaal) Be so specific you’re universal (Nicholas Cole) The best time to plant a tree was 20 years ago. The second best time is now. (old Chinese proverb) No man has the right to be an amateur in the matter of physical training.</description></item><item><title>Questions</title><link>http://www.example.com/posts/questions/</link><pubDate>Tue, 17 Oct 2023 20:53:15 +0100</pubDate><guid>http://www.example.com/posts/questions/</guid><description>Some questions and thoughts I&amp;rsquo;ve had/heard Why do investment banks have employees all work insane hours (e.g. 80 hour weeks) instead of employing twice the amount of people who work normal (40 hour) weeks? -suggested by Luke. Thoughts: There must be some mechanism that means that this state is more efficient. This could be because the field shifts so quickly that it is difficult to stay up to date on information, so long hours are necessary instead of spreading work/information over multiple people.</description></item><item><title>Travel</title><link>http://www.example.com/posts/travel/</link><pubDate>Mon, 25 Sep 2023 23:29:51 +0100</pubDate><guid>http://www.example.com/posts/travel/</guid><description>Countries visited (in approximate order):
Ireland (10 years) Russia (month) United Kingdom (10 years) France (weeks) Germany (week) Greece (weeks) Spain (months) Portugal (weeks) Italy (week) - Pescara and Sicily Morocco (week) Korea (month) The Netherlands (week) The United States of America (four months so far) I can talk about any of these. Let me know if you want some stories :)</description></item><item><title>Archive</title><link>http://www.example.com/posts/archive/</link><pubDate>Mon, 25 Sep 2023 21:06:02 +0100</pubDate><guid>http://www.example.com/posts/archive/</guid><description>This is an Archive of some random parts of the website which I liked a bit but don&amp;rsquo;t really have a place to put right now.
Section of old &amp;ldquo;About&amp;rdquo; page: Goals: Creating a sustainable, happier and more equal society Creating a strong, stable community around me that lifts each other up Finding a career where I can work on projects I find interesting intellectually Use and develop my leadership skills to help reach my goals Live each day mindfully The idea of this website: To &amp;ldquo;show my work&amp;rdquo; or sell myself Inspire a culture of &amp;ldquo;showing your work&amp;rdquo; in Oxford Act as a point of outreach and inspiration to show how people like me can be successful Read more about the reason why I made this website here.</description></item><item><title>Why I started this site</title><link>http://www.example.com/posts/why/</link><pubDate>Mon, 25 Sep 2023 21:06:02 +0100</pubDate><guid>http://www.example.com/posts/why/</guid><description>In short:
To act as a serendipity vehicle. To find people interested in the same things I am, find good suggestions for reading and research, and hopefully meet some interesting people. To act as a catalogue of my interests and achievements. For people interested in me, and to act as inspiration or provide direction for others. To have a testament to my skills and beliefs. It&amp;rsquo;s quite easy to try and fit in the boxes job applications or other people expect you to be in.</description></item><item><title/><link>http://www.example.com/posts/book-club/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>http://www.example.com/posts/book-club/</guid><description>📖!!!!!ELS Book Club!!!!!📖
Hi everyone! At the end of the weekend I mentioned starting a book club. I feel like everyone wants to read more and it is incredibly useful to learn new things in a way that conversations or youtube videos can&amp;rsquo;t do because they offer more depth and time with a topic. Hence, I think this would be a nice opportunity to have some accountability while letting people get to know each other more as we share stories and experiences about how we interpret and relate to different parts of the books.</description></item><item><title/><link>http://www.example.com/posts/books/garys-economics/rough-notes/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>http://www.example.com/posts/books/garys-economics/rough-notes/</guid><description>Five competitors had been put through from each of five universities: LSE, Oxford, Cambridge, Durham, Warwick. I guess as far as Citibank was concerned, other universities didn’t matter. That made twenty-five competitors, including me, and I’d now played with all of the LSE contingent. I fancied my chances.
By way of anecdote, I also went to LSE and studied in a department focused entirely on inequality and poverty, and their remedies.</description></item><item><title/><link>http://www.example.com/posts/courses/sicp/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>http://www.example.com/posts/courses/sicp/</guid><description>https://www.reddit.com/r/computerscience/comments/w3c0m3/personally_what_do_you_think_is_the_appeal_of_sicp/
Fundamentally, SICP is a book about all aspects of programming languages. Specifically:
Programming Language Theory
a. Eager/Applicative-order evaluation b. Lazy/Normal-order evaluation c. Lambda Calculus d. Formal Semantics e. Mutability and State f. Algebraic Data Types (implicitly) g. Substitution Model of Evaluation h. Environment Model of Evaluation Programming Language Design
a. Functional Programming b. Imperative Programming c. Object-oriented Programming d. Logic (Declarative) Programming e. Domain Specific Languages f. Pattern Matching</description></item><item><title/><link>http://www.example.com/posts/development-learning-projects/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>http://www.example.com/posts/development-learning-projects/</guid><description>C++ (not sure abt it but useful to learn) maybe contribute to open source, or look at ML on the edge with like PyTorch lite Embodied stuff Find some ESP32 projects or something in C++ (with real time control) - like PID balancing robot
Like wednesday waffle device, where its like video voicemail
Or ESP32 habit tracker?
LLM on raspberry Pi 5?</description></item><item><title/><link>http://www.example.com/posts/els-weekend/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>http://www.example.com/posts/els-weekend/</guid><description/></item><item><title/><link>http://www.example.com/posts/marx-main-points/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>http://www.example.com/posts/marx-main-points/</guid><description>Exploitation of surplus value
https://www.reddit.com/r/ABoringDystopia/comments/t37ocb/letting_the_cat_out_of_the_bag_from_united_auto/ https://en.wikipedia.org/wiki/Capital_in_the_Twenty-First_Century
Exploitation of surplus value, as Marx calls it. Along with Alienation and class, it&amp;rsquo;s one of the main standpoints in his works. explain this
• Great question — and one that sits at the center of economic and political debate. • Supporters of capitalism (including economists, political theorists, and entrepreneurs) do acknowledge some of Marx’s concerns, but they offer counterarguments based on efficiency, freedom, opportunity, and innovation.</description></item><item><title/><link>http://www.example.com/posts/notes-100m-world-record/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>http://www.example.com/posts/notes-100m-world-record/</guid><description>are people actually getting more athletic? certain athletic improvement e.g. track technology from ash tracks, starting blocks, spikes
I think the stuff you&amp;rsquo;re doing with Lodestar is very cool and I imagine there&amp;rsquo;s some interesting problems to solve esp since space requires such high reliability and precision
I am looking to start around July-September though, so I don&amp;rsquo;t know if that would work with your hiring timelines?</description></item><item><title/><link>http://www.example.com/posts/notes-all-the-goddamn-note-taking-apps/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>http://www.example.com/posts/notes-all-the-goddamn-note-taking-apps/</guid><description>heptabase
obsidian
silverbullet.md
notesnook
onenote
https://zettelkasten.de/overview/
justin sung
emacs org mode (too heavy_)</description></item><item><title/><link>http://www.example.com/posts/notes-applying-jobs/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>http://www.example.com/posts/notes-applying-jobs/</guid><description>TODO for post jobs
company size, sector and role matters for working your way up leadershp too
dynamic range, ability to acquire context
able to converse with marketing theme for example, spent just a week reading marketing books
adept at working with PR theme, can also engineer. Can bridge. Be a translator between organs of the company.
NOt the smartest person in the room (the highest leverage person in the room)</description></item><item><title/><link>http://www.example.com/posts/notes-consulting-cv/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>http://www.example.com/posts/notes-consulting-cv/</guid><description>notes consulting CV Candidates must demonstrate effectiveness in: • Working with data and quantitative approaches. • Problem solving and analytical thinking. • Working individually and as part of project teams. • Maintaining responsibility and accountability for quality and work delivery. • Client focus and relationship management. • Time management and priority setting. • Data awareness and business interest. • Learning new technologies. • Presenting and communicating ideas, particularly those that might sometimes be complicated for a non-expert to understand.</description></item><item><title/><link>http://www.example.com/posts/notes-market-research-supermarker-pricing-app/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>http://www.example.com/posts/notes-market-research-supermarker-pricing-app/</guid><description>key competitors:
supermarker wizard (pivot to discount dragon)
mysupermarket is dead now
trolley.co.uk
grocerycompare
thinking about price comparison website
what do you need
-people to usually spend time comparing/researching the price or specs -need to have a regular amount of people shopping for it
ideally high value goods, with limited catalog so you can compare more easily consumer benefit - can tell teh supermarket to price match so they get cashback, or always get the lowest prices</description></item><item><title/><link>http://www.example.com/posts/notes-mle-cv/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>http://www.example.com/posts/notes-mle-cv/</guid><description>notes MLE cv summary statement only if you&amp;rsquo;re changing fields
every line must show measurable impact</description></item><item><title/><link>http://www.example.com/posts/podcasts/eva-doac/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>http://www.example.com/posts/podcasts/eva-doac/</guid><description>Eva woman The best leaders are not emotional Make sure you are conspicuous of your inner circle</description></item><item><title/><link>http://www.example.com/posts/podcasts/scott-galloway-doac/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>http://www.example.com/posts/podcasts/scott-galloway-doac/</guid><description>Nvidia stock is worht more than UK stock market You’re not going to make it in Stutgart (ride the waves, better waves easier money) For example, being a great manager at GM is much worse than manager at google
You have flexibility to move while young (move to one of 20 global cities)
Ask people before making important decisions (making quick decisions is not sign of great leader) Meritocracy in USA What money buys you in the USA If you have a side hustle, it’s to try a new main hustle.</description></item><item><title/><link>http://www.example.com/posts/the-two-fish/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>http://www.example.com/posts/the-two-fish/</guid><description>the two sharks An lazy shark had a friend he once swam into, the amitious shark.
The ambiitious shark had one core question - why am I here? And each year he would find a different answer. One year it was to try and swim as fast as possible. Another it was to eat as much as possible, because he felt happy when he ate. Another it was to listen to his father, another it was to have and raise good kids.</description></item></channel></rss>