Skip to content

Commit

Permalink
Merge branch 'trivia-shorts'
Browse files Browse the repository at this point in the history
  • Loading branch information
Savjee committed Sep 17, 2024
2 parents 373e884 + 768ecca commit 2f2ae70
Show file tree
Hide file tree
Showing 4 changed files with 70 additions and 6 deletions.
17 changes: 12 additions & 5 deletions src/site/_includes/youtube-embed.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="relative group hover:cursor-pointer youtube-embed" data-videoid="{{videoId}}">
<div class="relative group hover:cursor-pointer youtube-embed {% if shortform %}md:max-w-md mx-auto {% endif %}" data-videoid="{{videoId}}">
<div class="player absolute top-0 bottom-0 left-0 right-0"></div>

{% comment %} Backdrop {% endcomment %}
Expand All @@ -12,11 +12,18 @@
{% comment %} Thumbnail (with WebP support) {% endcomment %}
{% xd_img %}
<img
src="https://i.ytimg.com/vi/{{videoId}}/maxresdefault.jpg"
class="w-full py-0"
loading="lazy"
width="320"
height="180"
{% if shortform %}
src="https://i.ytimg.com/vi/{{videoId}}/oar2.jpg"
class="w-full aspect-[9/16]"
height="320"
width="180"
{% else %}
src="https://i.ytimg.com/vi/{{videoId}}/maxresdefault.jpg"
class="w-full py-0 aspect-[16/9]"
width="320"
height="180"
{% endif %}
{%- if videoDescription -%}
alt="Thumbnail for video '{{ videoDescription }}'"
{%- endif -%}
Expand Down
2 changes: 1 addition & 1 deletion src/site/trivia.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: "Trivia"
quote: ""
---

<div>
<div class="prose dark:prose-dark max-w-none">
<p>I honestly don't know how I come up with these questions...</p>
<br>

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
title: "20 Watts of Pure Genius: How Your Brain Outsmarts ChatGPT"
date: 2024-09-17
tags:
- AI
- LLM
- ChatGPT
---

The human brain, with its 100 billion neurons, operates on just 20 watts of power. That's less than most light bulbs!

Compared to AI models like ChatGPT, the brain is 17,000 times more energy-efficient!

Training ChatGPT, required the same amount of energy that 40,000 US homes consume in a day. And that's just for training, not even running it!

{% render "youtube-embed.html", videoId: "-TShmxKIwk8", videoDescription: title, shortform: true %}

With this vast power difference, you'd think ChatGPT runs circles around humans, but no. The human brain still outperforms AI in various tasks.

So, next time you flip on a light switch, remember: your brain is doing millions of calculations using less power than that light bulb.

## Sources
{% bibtex %}
@online{src,
title={Heating up: how much energy does AI use?},
url={https://techhq.com/2023/03/data-center-energy-usage-chatgpt/},
author={Molly Loe},
organization={TechHQ},
year={2023},
month={3},
day={24}
}

@online{src,
title={How Much Electricity Does The Us Use In A Day?},
url={https://www.utilitysmarts.com/electricity/how-much-electricity-does-the-us-use-in-a-day/},
organization={The UtilitySmarts Team},
}
{% endbibtex %}
18 changes: 18 additions & 0 deletions src/site/trivia/navigation-lights-on-airplanes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: "Navigation Lights: The Blinking Lights on Plane Wings"
date: 2024-09-17
---

I built a nightlight for my son's room in the shape of an airplane, and I wanted to make it as realistic as possible.

Ever notice the blinking lights on the tip of the wings of planes?

These are **navigation lights**. Green on the right wing, red on the left.

They're used so others can infer the orientation of a craft. If you see the lights of an airplane, and the green light is on the left, then you know it's moving toward you. If it's on the right, it's moving away from you.

{% render "youtube-embed.html", videoId: "YF-RhCSKPWE", videoDescription: title, shortform: true %}

It's a very simple system, and in case of emergency, say your radar is broken, you can use these lights to determine if a craft is coming toward you or moving away.

And navigation lights are not only used by planes, also used on boats and even spacecraft, such as the SpaceX Dragon capsule.

0 comments on commit 2f2ae70

Please sign in to comment.