쉐도잉 연습: 10 weird OSS projects you need right now... - YouTube로 영어 말하기 배우기

C1
Yesterday, I was looking at my GitHub feed and realized it was 90% AI agents reviewing other AI agents' pull requests.
⏸ 일시 정지
138 문장
문장이 너무 짧거나 길면 Edit를 눌러 조정하세요.
1
Yesterday, I was looking at my GitHub feed and realized it was 90% AI agents reviewing other AI agents' pull requests.
2
My For You page is just six wrappers around the same Claude API key,
3
and all the most starred repos are literally just markdown files that tell you how to talk to robots.
4
I thought I had died and went to hell,
5
but I realized this can't be hell,
6
because this is my terminal emulator.
7
It's 3D, it uses 300MB of RAM,
8
it has a spinning wrap for a cursor,
9
and it might be the most important software released in 2026.
10
Underneath the AI sewage layer,
11
and below the Prompt Bros and Notion template goblins,
12
there are still real humans building insane,
13
beautiful, and deeply unnecessary software.
14
In today's video, we'll look at 10 projects you've never heard of,
15
built by people who absolutely should not be allowed near a compiler,
16
and I mean that as the highest possible compliment.
17
It is May 26, 2026,
18
and you're watching The Code Report.
19
The first project I want to talk about is Rati.
20
It's a new terminal emulator built in Rust and inspired by TempleOS.
21
And as you can see here,
22
the cursor is a spinning 3D rat.
23
It was created by Oren Parmaxes,
24
and unlike most terminal emulators,
25
it doesn't just render text,
26
but rather an entire GPU-accelerated 3D scene using the Bevy game engine.
27
That means you can do incredibly useless things,
28
like hit Ctrl-Alt-Enter, to physically tilt your terminal in a 3D space like you're flying through a PS2 game.
29
And you can even bring in your own crappy 3D models from tools like Blender.
30
The only catch is that it eats 300 megabytes of RAM,
31
and RAM is not cheap these days.
32
The creator fully acknowledges that this is insane by saying,
33
quote, everything comes at a cost,
34
especially the spinning rat cursor.
35
But if 3D rats are not enough,
36
your terminal's about to get even more awesomer thanks to a project called Terminal Phone.
37
Imagine this, you're in the terminal,
38
vim open, three TMUX panes deep,
39
and instead of unlocking your phone to take a call,
40
you just make the call from bash.
41
The Terminal Phone is an open-source push-to-talk voice and text app that runs entirely over Tor as a shell script.
42
There are no servers, no accounts, no phone numbers.
43
Instead, a .onion address is your identity,
44
which means everything is ephemeral and end-to-end encrypted.
45
The developer shipped this project in February with a custom protocol built from scratch.
46
This is the project cypherpunks were promising us in 1995,
47
and now finally, after 30 years,
48
one psychopath finally delivered it.
49
But this next project might even be more rebellious.
50
Back in 1988, before the internet even existed,
51
John Carpenter made an awesome movie where this dude puts on sunglasses,
52
and suddenly every billboard, magazine,
53
and advertisement on Earth is revealed to be what it truly is,
54
alien mind-control propaganda telling us to obey, consume, marry, and reproduce.
55
Developer David Lawrence realized that this is also the most aesthetically correct way to implement an ad blocker.
56
He actually had the idea all the way back in 2015,
57
sat on it for a decade,
58
and then finally shipped it recently as a fork of uBlock Origin Lite.
59
Instead of just blocking ads,
60
it turns the entire experience of surfing the World Wide Web into an 80s sci-fi horror movie.
61
But our next project, Kuda Oxide,
62
didn't come from some basement hacker.
63
It was quietly dropped on GitHub by the 5 trillion market cap NVIDIA last week.
64
And it addresses an important problem.
65
In order to write CUDA kernels,
66
code that runs on a GPU,
67
you need to carefully craft C++.
68
Pray the compiler doesn't segfault,
69
because it only takes one wrong pointer to turn your $40,000 GPU cluster into a worthless paperweight.
70
CUDA Oxide tries to fix this by letting you write GPU kernels in pure Rust.
71
Just annotate a function with kernel,
72
and now you have Rust code that can actually run on a GPU.
73
And it actually compiles straight to PTX.
74
There's no foreign functions interface or C++ involved at all.
75
But all these awesome projects should have their own theme songs,
76
and that's where WarioSynth comes in.
77
This is a weird project where you paste in a song,
78
and it spits it back out as a Game Boy chiptune.
79
Under the hood, it uses the Web Audio API to take two pulse waves,
80
one wave channel, and one noise channel,
81
to re-synthesize an entire song as something that sounds like it's coming out of a 1989 Game Boy.
82
And it can do all of this in the browser,
83
with zero server-side processing required.
84
Enjoy it before Nintendo's legal team nukes it and memory holes it,
85
but speaking of memory holes,
86
I completely forgot about the Epstein files after the Iran War and UFO disclosures.
87
Luckily, though, the files are easier than ever to consume now thanks to projects like Jmail,
88
which emulates Gmail as if you were Jeffrey himself using it.
89
But if you truly want to go deep down this rabbit hole,
90
Epstein Exposed provides a searchable database for the files,
91
and also this awesome network graph that shows you how deep the connections of the deep state actually go.
92
If that's a little too dark for you,
93
though, you'll really like this next project, Exipedia.
94
Developer Lyra Rebane looked at the dumpster fire that's modern social media and asked the only sensible question.
95
What if doom scrolling was actually good for you?
96
So she built Wikipedia as a TikTok feed.
97
You open up the web app,
98
pick a few categories, and it downloads 40 megabytes of simple Wikipedia in the background,
99
and then you have an infinite feed you can scroll through endlessly.
100
This project is also open source and runs its algorithm entirely in the browser.
101
But what if we could run an entire computer in the browser?
102
Well, that's where Pewter comes in.
103
It's a project you can self-host,
104
or if you go to pewter.com,
105
you'll be taken to a desktop environment where you have a taskbar,
106
draggable windows, a file manager,
107
and a bunch of applications like a notepad,
108
code editor, terminal, and so on.
109
It's kind of like the dream of Chrome OS,
110
except it's actually free, actually open, and actually fun.
111
But now, it's time to learn about Honker.
112
This one's for the SQLite gang,
113
and honestly, it might be the single most underrated project on this list.
114
SQLite is an incredible database that can handle even the most ambitious of failed side projects.
115
But if you end up needing a feature like a job queue,
116
things start to get complicated.
117
You might think you need to spin up Redis,
118
install Celery, or run a message broker,
119
but developer Russell Romney says no. Honker is a SQLite extension written in Rust
120
that adds Postgres-style notify-listen directly into your database file.
121
You get durable PubSub, task queues,
122
event streams, and a cron scheduler,
123
and all that lives inside the same .db file as your business data.
124
It's yet another humble reminder that 99% of us don't f***ing need motherf***ing Kubernetes,
125
and would be perfectly fine running SQLite and Node on a $5 VPS.
126
And that brings us to number 10,
127
HyperAgent, the sponsor of today's video.
128
Most agent platforms only give you tool calls,
129
but HyperAgent lets you build and deploy agents with their own browser,
130
shell, and file system, all running in an isolated cloud sandbox.
131
I used it to build a research workflow for our Bytes newsletter that studies past issues,
132
scouts tech Twitter and Hacker News for promising story topics,
133
and saves them to our team's Airtable.
134
Then I turn that workflow into an agent we can invoke from Telegram or Slack whenever we need ideas.
135
Right now, HyperAgent is giving away $10 million to founders building agent-first companies,
136
and the first 1,000 viewers to use the link below will get $1,000 in free inference credits.
137
This has been The Code Report,
138
thanks for watching, and I will see you in the next one.

앱 다운로드

당신이 말하는 모든 문장을 AI가 채점

TRENDING

인기 동영상

이번 레슨에 대해

이번 레슨에서는 최신 유튜브 비디오의 내용을 바탕으로 영어 쉐도잉을 연습합니다. 비디오에서는 흥미롭고 기발한 오픈소스 프로젝트에 대해 이야기합니다. 이를 통해 기술 용어와 신선한 문장 구조를 배우며, 생생한 대화 스타일로 표현력을 확장할 수 있습니다. 여러분은 다양한 아이디어를 탐색하고, 창의적인 표현 방식을 배우게 될 것입니다.

주요 어휘 및 구문

  • terminal emulator (터미널 에뮬레이터): 컴퓨터에서 명령어를 입력하고 실행하는 소프트웨어.
  • GPU-accelerated (GPU 가속): 그래픽 처리 장치의 도움을 받아 속도로 개선된 기능.
  • push-to-talk (푸시 투 톡): 버튼을 눌러서 소리를 전달하는 방식의 통신.
  • ephemeral (일시적): 짧은 시간만 존재하는, 영구적이지 않은 특성.
  • end-to-end encryption (종단 간 암호화): 데이터가 송신자에서 수신자까지 안전하게 암호화되어 전송되는 방식.
  • Tor (토르): 익명성을 보장하는 인터넷 통신 프로토콜.
  • 3D scene (3D 장면): 공간을 입체적으로 표현한 시각적 환경.

연습 팁

이번 비디오의 속도는 중간 정도이며, 말하는 톤도 경쾌하고 재미있습니다. 영어 쉐도잉을 할 때는 비디오의 목소리와 리듬에 맞춰 따라 해보세요. 특히 중요한 용어나 표현을 반복하여 익히는 것이 좋습니다. 예를 들어, "terminal emulator"나 "push-to-talk" 같은 표현은 자연스럽게 문장에 포함시켜 연습하세요. shadowspeak을 통해 발음의 뉘앙스를 잡고, 필요시 멈추면서 따라 해보는 것도 좋습니다. 나만의 shadowspeaks 스타일을 만들고, 음성의 억양과 감정을 함께 표현해 보세요. 그렇게 하면, 비디오의 긍정적인 에너지를 느끼면서 자신감도 키울 수 있습니다.

쉐도잉이란? 영어 실력을 빠르게 키우는 과학적 방법

쉐도잉(Shadowing)은 원래 전문 통역사 훈련을 위해 개발된 언어 학습 기법으로, 다언어 학자인 Dr. Alexander Arguelles에 의해 대중화된 방법입니다. 핵심 원리는 간단하지만 매우 강력합니다: 원어민의 영어를 들으면서 1~2초의 짧은 지연으로 즉시 소리 내어 따라 말하는 것——마치 '그림자(shadow)'처럼 화자를 따라가는 것입니다. 문법 공부나 수동적인 청취와 달리, 쉐도잉은 뇌와 입 근육이 동시에 실시간으로 영어를 처리하고 재현하도록 훈련합니다. 연구에 따르면 이 방법은 발음 정확도, 억양, 리듬, 연음, 청취력, 말하기 유창성을 크게 향상시킵니다. IELTS 스피킹 준비와 자연스러운 영어 소통을 원하는 분들에게 특히 효과적입니다.

커피 한 잔 사주기