Here's the 26th: "A Relational Model of Data for Large Shared Data Banks", which was the start of relational database, and indirectly the start of SQL.
@ten_cents5 ай бұрын
very surprised this wasn't the first entry
@timothymcglynn19355 ай бұрын
🎉
@patricklong33085 ай бұрын
ByteByteGo is the GOAT
@jrabelo_5 ай бұрын
It would be a great idea to make a video talking about each one of the 25 papers
@gersonadr25 ай бұрын
"The Ubiquitous BTree" paper shaped modern file systems and SQL databases. Please make a similar video about most influencial RFCs which shaped the internet.
@fakegeek5 ай бұрын
does anyone have compiled list of links for all of these papers?
@jamesclark0075 ай бұрын
Excellent work. I found your channel really useful. Wish you a great success!
@Dannychj5 ай бұрын
How do you do the animations? It's awesome
@raj_kundalia5 ай бұрын
Thank you for doing this!
@cit01105 ай бұрын
This is cool, another 25 please!
@Ayanokoji-v1u4 ай бұрын
How do you make this kind of Stunning illustrations. Tell me Please 🥺 🥺 It will be helpful for me because I'm a teacher in college and I have to explain things to my Students briefly and your Animations are Amazing.🙏🥺
@bricko243 ай бұрын
Looks like Adobe After Effects
@JoeBurnett5 ай бұрын
Do you have a resource that has the links to all of these papers?
@AmrMahdy-ch6lj5 ай бұрын
Yes please
@tsingylu5 ай бұрын
Google
@gus4735 ай бұрын
@@michaeldebellis4202 Thank you! 😎✌️
@niranjan_as5 ай бұрын
Why is the system design github repo not maintained? There are lot of unaddressed issues raised which If fixed will make the concepts even more accurate. Please do the needful
@hubstrangers34505 ай бұрын
Thank you......closer to the GOAT....
@returnbackfalls5 ай бұрын
Hello! Thanks for the content. Where I can find Kafka: Internals of the distributed messaging platform paper? I googled but didn't find it. thanks in advance
@felixinit5 ай бұрын
Tomarme el tiempo para leer estos documentos me convertirá en un programador top ❤
@vijarkohli12 ай бұрын
Can you guys add these videos to a YT Podcast Playlist? It'll be easier to listen on-the-go.
@gus4735 ай бұрын
Thanks, bbg! Excellent reference! 😎✌️
@alexmadnix5 ай бұрын
Useful video!
@gersonadr25 ай бұрын
The goto paper proved that any program written with gotos can be design using structured code.
@motilalkharwar43135 ай бұрын
Could you tell which application you use create the charts, I need this to organize my all stuffs as mindmaps
@oneilobi8223 ай бұрын
any idea now
@SuneelKumar-v3z4 ай бұрын
Can any one please help me with pdf link of 25 Computer Papers You Should Read?
@ratanasoth.paragoniu5 ай бұрын
Great work
@Mrslykid19924 ай бұрын
wtf DB! I love these names! @ 8:22
@ishantjadhav84875 ай бұрын
Please make video on dynatrace
@Gabriel-wo8nj4 ай бұрын
Where are the papers to read? Link
@abdoupk17525 ай бұрын
may be somone read this hopfully i understand what is said but i dont understand what is said i think am missing some thing like there is step before going to this lvl maybe this video is just a show for this moduls and for understanding it i need to read the articls
@3vonline5 ай бұрын
how is this video made? Which software do videos like this?
@oneilobi8223 ай бұрын
do you have an idea now?
@orchestrain88keys5 ай бұрын
Many more important ones are not in the list... One such example is Spark.
@shivanshmishra83955 ай бұрын
Does anyone have a list of all these papers?
@wjrasmussen6664 ай бұрын
Links would have been something the op should have given us. I now have a professor who wants us to read all the papers and still no links from her either?
@OOO-CM-DASANITISH5 ай бұрын
Sir Start advance web stack tutorial
@rloliveirajr5 ай бұрын
I just think that Sparks paper is missing from this list
@matheuscosta53305 ай бұрын
Nice!
@rishiraj25485 ай бұрын
Thanks
@kozlovskyi5 ай бұрын
That's gold
@Simplicity47115 ай бұрын
Interesting that it needed a paper to show that goto is bad. 😅
@CM-mo7mv5 ай бұрын
now add a why! they all only address specific tasks. yes understanding the ideas is good, but those papers are more pesky the more specific they are. I'd suggest a good educational book for your respective field and cs courses... subjected with the tasks many engineers would solve them similarly yet never write a paper about them.
@DinHamburg2 ай бұрын
how can you pile up such a collection 'bout distibuted systems w/o mentioning Leslie Lamport... 👎
@Mr.BEV-gq3jk5 ай бұрын
KZbin Tech Stack Please
@timothymcglynn19355 ай бұрын
🎉
@oliverabrahamhamburg5 ай бұрын
Much more influencing things are: GIT, Google pagerank algorithm, Java virtual machine, the backpropagation algorithm (machine learning).
@awsd91565 ай бұрын
did he say "computer" papers lol
@mirakekkle94765 ай бұрын
Well... he's not wrong lol.
@awsd91565 ай бұрын
@@mirakekkle9476 haha true
@mdyousufgazi40305 ай бұрын
epic
@stevenhe34625 ай бұрын
White papers. Haa-choo,
@kennethcarvalho36845 ай бұрын
😂😂😂
@oliverabrahamhamburg5 ай бұрын
Key-value stores aren't significant because they're just a subset of relational databases. The important concepts were developed in the 60s and 70s.
@michaeldebellis42025 ай бұрын
Key-value stores are fundamentally different than relational databases. Here are some of the differences: Data Structure: Key-value databases use a simple data model (key-value pairs), while relational databases store data in structured tables with relationships. Schema: Key-value databases are schema-less, which allows for flexible data models. RDBs require a predefined schema, which ensures data consistency but lacks flexibility. Use Cases: Key-value databases are ideal when you need speed, scalability, and flexibility. They’re often used for caching, session management, and serving real-time data. RDBs are a better choice when you need to perform complex queries and maintain strong data consistency. Data Access: In key-value databases, data is accessed via a unique key, making them typically faster than relational databases for simple queries. Relational databases, however, are designed to handle complex queries and relationships between different data points. www.dragonflydb.io/faq/key-value-store-vs-relational-database
@Dom-zy1qy5 ай бұрын
Semantically speaking, you could consider them relational; but it would probably be more accurate to say they're "associative" to avoid conflating with "relational" in terms of relational database systems. But I guess you only said kv db's are subsets, which implies that relational db's are superset of kv db's, which i would say is true (keys ultimately map to a data point) I think the other commenter just responded with a ChatGPT response...