The Computer Science Iceberg Explained (Part 1)

  Переглядів 514,320

Quabl

Quabl

День тому

Computers. What are they? How do they work? And if computers are so good, why hasn’t there been a sequel to them yet? This video is part 1 of the Computer Science Iceberg Chart Explained.
Timestamps:
0:00 - Intro
0:31 - Websites (Level 1)
2:41 - Cookies (Level 1)
4:22 - Deep web and Indexed web (Level 1)
4:47 - CPU (Level 2)
7:05 - Randomness (Level 2)
9:01 - Hashing (Level 2)
11:55 - Data storage (Level 2)
13:46 - Rendering, Computer Graphics, and 3D (Level 3)
18:10 - Machine learning (Level 3)
20:00 - Datatypes (Level 3)
21:11 - Y2K Problem (Level 3)
22:21 - Year 2038 Problem (Level 3)
23:52 - Outro
Music used in the video, can be found here: quabl.bandcamp.com/album/comp...
- Link to iceberg / the_computer_science_i...
- Attributions: pastebin.com/DmtNDKRj

КОМЕНТАРІ: 1 000
@cutsign
@cutsign 11 місяців тому
Not publishing part 2 is A CRIME.
@Danilio.
@Danilio. 3 місяці тому
Ikr, it's almost been 2 years
@sjeff26
@sjeff26 2 роки тому
As a CS major, this is amazing work. I particularly liked the part about graphics rendering. The explanations are not only consistently clear; they are concise, which is a non-trivial feat.
@snorman1911
@snorman1911 2 роки тому
Hey everyone, CS major over here!
@soksamnang2150
@soksamnang2150 2 роки тому
@@snorman1911 Hey CS major, everyone over here!
@pelvismen5510
@pelvismen5510 2 роки тому
@@soksamnang2150 lmao ur pfp. No smiley :(
@snk-js
@snk-js Рік тому
I'm do not a CS but I'm software engineer :(
@noobiamyes4853
@noobiamyes4853 Місяць тому
Counter strike major is crazy
@pauldirac5069
@pauldirac5069 2 роки тому
I’m currently studying compilers and language design, I make programming languages basically, and your explanation of high-level languages to assembly was very good. It was simple and easy to understand, I’m definitely yoinking it.
@Dylan-uv9nu
@Dylan-uv9nu 2 роки тому
Gonna do that module this semester
@DaBulgarianQueen
@DaBulgarianQueen 2 роки тому
It will be cool to connect and share info on the topics :) what platforms if any do you use to share info besides UKposts ? I am new to the cs so I will love to learn from anyone in this field before me :)
@Jtak-qu5hk
@Jtak-qu5hk 2 роки тому
I got irrationally angry at how he called the binary and assembly different languages. They actually are, i was thinking of machine code when i commented
@zesanurrahman6778
@zesanurrahman6778 2 роки тому
Bro I need to make cpu iceberg video
@loveiswaytruthlife995
@loveiswaytruthlife995 2 роки тому
Would assembly Language be a core of creating our own language, like my own language in computer science
@kiranreddy4046
@kiranreddy4046 2 роки тому
I wish more people appreciate the insane amount of effort went into making this video. The writing, scripting, animating, editing, voicing. Absolutely brilliant
@harukiva
@harukiva 2 роки тому
Your videos are insane, the amount of effort that goes into compiling all this information, making it digestible for the average viewer and ALSO having it be interesting? On top of that the insane amount of editing and graphic work to make it coherent and fun to watch? You're going places man, love it.
@moioyoyo848
@moioyoyo848 2 роки тому
No this video is pretty ignorant
@bri-et1sd
@bri-et1sd 2 роки тому
@@moioyoyo848 care to explain how it’s ignorant?
@moioyoyo848
@moioyoyo848 2 роки тому
@@bri-et1sd he ignored most importants parts of pc and he doesnt know enough
@SilverTheFlame
@SilverTheFlame 2 роки тому
@@moioyoyo848 bad day? He clearly knows what he’s talking about (or at least has done a lot of research). And obviously this isn’t meant to be a complete guide to comprehending computers in the 21st century lmao...
@moioyoyo848
@moioyoyo848 2 роки тому
@@SilverTheFlame does your parents know you are not on youtube kids?
@benjaminbadina2201
@benjaminbadina2201 2 роки тому
As a computer science student, I love the fact that there's no clickbait, you know your topic and explain it very clearly. You earned yourself a new subscriber
@phoenixfront
@phoenixfront 2 роки тому
Finally remembered his password! (All jokes aside I understand these videos take ages to make and research and I think I speak on behalf of all your subscribers when I say we are glad you are back!)
@missingsemi
@missingsemi 2 роки тому
10:38 just an extra note about using SHA for passwords: while it can be used, its often not the best choice. SHA was designed to be fast to compute making it very useful for older hardware and things like signatures, but you typically want the exact opposite for passwords. For a password hashing algorithm, you want it as slow as possible until it starts annoying users. That way, an attacker will be able to calculate fewer hashes per second while brute forcing. As of right now, the usual choices for password hashing are bcrypt or argon2id, both of which were designed to be slow.
@itsb680
@itsb680 2 роки тому
This information was insanely valuable, and delivered at exactly the right time in my dev-life. Thanks a heap.
@SahilP2648
@SahilP2648 2 роки тому
I don't know what you are talking about (and I am a full-time developer btw). Hashing algorithms are designed to be computationally inexpensive one way and super computationally expensive the other way. Meaning if you calculate the hash of say a document, and then you change a single bit anywhere in the document, then compare both the hashes, they are going to be vastly different. That means finding two documents with the exact same hash code is statistically impossible. With SHA-256 you get a possible 2^256 number of hashes to describe a file. So, if you just have a hash code and you want to find out the original contents of the file, it is impossible to do so because there is not only not enough information but also the total possibility is so high. That's about it. That's why hash codes are used to verify the integrity of files in servers and for making sure that the password is verified. Servers almost always store salted hash codes to verify, never the original password. Whatever other hash functions you described might be 'designed to be slow' or whatever, but SHA-256 (and SHA-512) is the industry standard and there is no reason why you need to use some other function/algorithm. If you are using hashing algorithms which are slower but offer nothing in return, you probably don't even know why hash codes are being used in the first place.
@missingsemi
@missingsemi 2 роки тому
@@SahilP2648 you are correct that SHA is extremely fast to compute and infeasible to reverse. It is for this exact reason that attackers make no attempt to reverse hashes. Instead, they will often use rainbow tables or they will outright brute force inputs until they find a matching output. This is why slow algorithms are typically considered better for password hashing. An attacker can not compute anywhere near as many hashes in the same amount of time, meaning it will take them significantly longer to find an input that matches a hash in the database. As for industry standards, slow algorithms like bcrypt have been the standard choice for years now. For example, websites like dropbox, facebook, github, reddit, twitter, and yahoo are all using slow hashing algorithms like bcrypt and scrypt. Additionally, the most of these algorithms salt by default and have adjustable work factors so you can continue to make your hashes take a long time even as computational power increases. Here's some good resources: Key stretching - en.m.wikipedia.org/wiki/Key_stretching Owasp - cheatsheetseries.owasp.org/cheatsheets/Password_Storage_Cheat_Sheet.html List of which hashing algorithms specific websites use: pulse.michalspacek.cz/passwords/storages
@biraloman2967
@biraloman2967 9 місяців тому
Wow very helpful comment
@richtigmann1
@richtigmann1 2 роки тому
Taking computer science, I am amazed at how many computer science concepts you are able to fit all in so little time, yet explain with so much accuracy so concisely! It's really a shame it only has 9k views
@EragonShadeslayer
@EragonShadeslayer 2 роки тому
WHAT I just realized that
@redcodeink7151
@redcodeink7151 2 роки тому
Now at 60k views
@squeakypickles
@squeakypickles 2 роки тому
Even knowing most of this information, the way you simplify it and make it so clear is really impressive. This is super well made and entertaining 👍
@BongoRGB
@BongoRGB 2 роки тому
3:08 Years of academy training prepared me well.
@idedary
@idedary 2 роки тому
This topics attracts very specific kind of people, so i have already known most of what you said, but I'm looking forward to part 2 where I can learn something new on a silver plate presented to me.
@fotisvon9943
@fotisvon9943 2 роки тому
Yeah this video is a gem
@ZaidAhmad-rp1ro
@ZaidAhmad-rp1ro 2 роки тому
same
@antekokic4279
@antekokic4279 Рік тому
There was no part 2 😢
@AdamBrusselback
@AdamBrusselback 2 роки тому
As others have said, this video is seriously impressive. Just amazed that I didn't notice any technical errors when you packed that much info into it. Congrats on the amazing work you've done with this these videos. Loved the humor!
@psychicpenguin2850
@psychicpenguin2850 2 роки тому
Man this was really great! Can't wait for part 2
@pacenal_18
@pacenal_18 2 роки тому
I just love this. I thought I would be really bored but you put it in a really fun and understanding way. This is cool
@SilverTheFlame
@SilverTheFlame 2 роки тому
Wow, what a fantastic video! I’ve taken many computer science classes and so I’ve learned a little about many of these topics, but the way you presented the information is just phenomenal. A great balance of educational and intriguing :) thank you!
@melarbi
@melarbi 2 роки тому
currently studying computer engineering- this video was incredible man keep up the great work, you have a gift of explaining concepts so well, even the most obscure technical ones professors’ spend a whole semester’s worth of time on and can’t do it well. Hats off to u man. If this is your lane, i would love to see videos going in depth on these concepts down the road.
@hunterzilla9385
@hunterzilla9385 2 роки тому
its insane that you have 3 videos and are doing this well that just proves that your content is amazing keep it up
@pixelbogpixxelbog2090
@pixelbogpixxelbog2090 2 роки тому
This video was so good I even liked it with my second account. For real... animation, humor, non-boringness, graphics, high quality and knowledge. This video has it all. Rlly well done!
@100dcx
@100dcx 2 роки тому
For people passionate for computer science, this video is absolutely amazing, I didnt even feel the 24 minutes passing, everything was high quality and you made it interesting, I can't wait for part two! :D
@Synapse203
@Synapse203 2 роки тому
Wow ! I clicked on this video because I just wanted some background noise to keep me distracted, most iceberg videos are "meh alright I guess" but as soon as it started I realized this wasn't what I was expecting. The work put into the video is impressive (both in the presentation and information), that's some high quality content and you've definitely won a subscriber
@juanjozo1000
@juanjozo1000 2 роки тому
This video is truly amazing. Didn't think it was possible for anybody to explain so many concepts with such a clarity and short amount of time, while keeping it really interesting. Keep up the good work man 💪🏻
@mahdithebest1439
@mahdithebest1439 2 роки тому
great work man, cant wait for part 2!
@SneckoBoi
@SneckoBoi 2 роки тому
I was shocked when I saw that you only had 3 videos. Keep it coming, your videos are amazing.
@Anaoa_Official
@Anaoa_Official 2 роки тому
Yep. You really are underrated, the editing and script writing and explanations are insanely clear and amazing I DIDN'T EVEN KNOW THEY USED GRADIENCE FOR 3D OBJECTS LIKE CIRCLES *I can't wait for part 2*
@eryntodd
@eryntodd 2 роки тому
Studying computer science too. This is the first, actually intriguing, video I’ve watched about these topics that aren’t putting me to sleep. I felt like I just gained so much more info on the back-end that I’ve never learned before. Especially the cookies part & the history of databases, omg.
@Xoplex
@Xoplex 2 роки тому
Incredibly informative, I'm excited about your next video!
@vuufke4327
@vuufke4327 2 роки тому
very well made, great job dude
@AwokenEntertainment
@AwokenEntertainment 2 роки тому
crazy amount of info explained here.. We use these almost every day yet most people have no idea how they work
@Daniel-to3yh
@Daniel-to3yh 2 роки тому
As a computer science student I enjoyed a lot this video, top quality content!
@luismata8824
@luismata8824 Рік тому
Just fantastic! Can´t wait for part 2
@Rizimar
@Rizimar 2 роки тому
This is an exceptionally-made video on these concepts. Concise explanations, great visuals, and it all flows quite nicely. Great work!
@DomskiPlays
@DomskiPlays 2 роки тому
Even though I already knew almost everything here, you made it very interesting to watch and I followed along until the end! See you at a million :)
@KILOPOWER
@KILOPOWER 2 роки тому
Your motion graphics are top notch! As an animator and editor myself I know that this video probably took you hundreds of hours to make, amazing production quality for such a small channel, you need more viewes and subscribers
@alvinpoly2781
@alvinpoly2781 2 роки тому
Amazing Video! Had me hooked on to it till the very end.
@limegreentechnologies8803
@limegreentechnologies8803 2 роки тому
Amazing video, excited for the next one
@pvic6959
@pvic6959 2 роки тому
As a computer science major and how software engineer, this will be really fun!! Thank you!
@vladusa
@vladusa 2 роки тому
For the randomness section: we don't use time anymore. We use CPU activity or noise (entropy, patterns, etc), as well as modulo arithmetic and state transition functions.
@TheBeanhacker
@TheBeanhacker 2 роки тому
Or if you are Cloudflare, a wall full of lava lamps 🤷🏻‍♂️🤣
@bierba
@bierba 2 роки тому
@@TheBeanhacker Beat me by 40 minutes, just wanted to comment this😂
@maskettaman1488
@maskettaman1488 2 роки тому
That's incorrect. Could you point me towards a single standard library that does any of that to seed its randomness?
@kmikc909
@kmikc909 2 роки тому
This is really cool, I think it is a good way to share information with people that are not part of the computer science world so that the get a glimpse of whats out there, really looking forwards for part 2! And which topics you selected for that!
@cosmic_417
@cosmic_417 2 роки тому
This is.. too good Keep up the good work bro
@Regenperf
@Regenperf 2 роки тому
I watched this with the assumption that your channel has multiple millions of subscribers. The insane amount of research and simplification alone is palpable. Add onto it, being able to keep it interesting and fun to watch?!? Dude… congratulations on the successes you will have in the future 🙏🏽🙏🏽 Looking forward to more from you!!
@Bogo0112
@Bogo0112 2 роки тому
As a computer scientist I can say almost everything in this video is accurate. At least for very basic levels.
@ardentlyearning9195
@ardentlyearning9195 2 роки тому
One of the best videos I have ever seen, great work
@unsymphatisch
@unsymphatisch 2 роки тому
Just found your channel like 3 days ago and absolutely love it
@legendofnat5477
@legendofnat5477 2 роки тому
12:25 i think you meant to say either « the beginning of the 19th century » or « the end of the 18th century ». Great video tho your content is insanely good and the production is perfect. Great balance between education and entertainment :)
@m4rt_
@m4rt_ 2 роки тому
2:55 Technically all a cookie is, is just a name, and a value, that the website can check, this can for example be a token that proves you are logged in so you don't have to log in all the time, or it can be what is in your shopping cart, the value is just text, but it can be for example formatted as something known as JSON which is a way of putting information in one long string of text that is easy for JavaScript to understand, and the name is like a label for that piece of data.
@aikidoo852
@aikidoo852 2 роки тому
This is so great explained, this deserves sooo much more attention. Looking forward to part 2 ty for doing these vids :)
@hamzahaddani6240
@hamzahaddani6240 2 роки тому
Amazing video!! Can't wait for part 2
@splits8999
@splits8999 2 роки тому
love the way u adapted stuff to fit the computer vibe and very interesting love it dont regret my sub thank for this content
@Raudnen
@Raudnen 2 роки тому
Yess, finally another video from the creator who has 3 videos but whose production quality is higher than the one of the average netflix show
@roywastaken
@roywastaken 7 місяців тому
Just an outstanding video series. Bravo.
@manuelnovella39
@manuelnovella39 2 роки тому
Please, keep it up! Quality content, so welcome!
@insomnia20422
@insomnia20422 2 роки тому
In regards to the Year 2038 problem: Im not so sure about the impact on microcontrollers and such. I think old microcontrollers wont really be used anymore in 2038 and the new ones should probably already address the issue. Like lets say cars that are built today might still run in 16 years so they should use microcontrollers with a flaw like that. Overall though I think the impact wouldnt be that devastating. Most controllers have the possiblity of firmware-updates, or maybe can even be physically replaced. Every counter that runs for a long time and relies on int is doomed eventually regardless of the UTC timestamp. In this day and age there is no good reason to not just use 64 bit ints, also because they are widely supported on most microcontrollers.
@Danielle_1234
@Danielle_1234 2 роки тому
For the uninformed, IT or information technology is the study of information (ie networks, web pages, servers) and technology (ie computers, computer hardware, and similar). Almost everything in this video is the study of IT. CS, on the other hand, is the study of the organization and movement of data. So data types at the end of the video is the most 101 CS topic there is, despite being at seemingly the bottom of the IT iceberg. CS studies how to organize and move data in such a way to speed programs up. This way you don't have long loading screens and you have a higher frame rate when playing a video game. CS does bridge into hardware programming, like assembly language, but sadly it's rarely taught these days and tends to more and more fall into the domain of IT these days. CS also studies ways to think about problems. Eg if you have a overwhelmingly large problem you can break that problem into a handful of smaller easy to solve problems, solve them, then combine them. The combined solution solves the larger problem. This topic in CS is the study of algorithms. At the end of the day CS studies data structures and algorithms.
@SETHthegodofchaos
@SETHthegodofchaos Рік тому
Hm, i am not sure thats correct. Even Wikipedia has CS as a broad definition: "Computer science is the study of computation, automation, and information. Computer science spans theoretical disciplines (such as algorithms, theory of computation, and information theory) to practical disciplines (including the design and implementation of hardware and software)." Although it also quickly states that "Algorithms and data structures are central to computer science." So yes, while in an academic sense, your definition is the commonly used one. But I guess it also depends on the university. Some do offer more specialized fields, like more hardware near programming, medicine or game development.
@fffgeraldy
@fffgeraldy 2 роки тому
Subscribed off the strength, keep ‘em coming Maine, didn’t know I needed this 🔊
@PriceAintRight
@PriceAintRight 2 роки тому
You're insane. I absolutely love it. Subscribed.
@user-ip4us2zf2o
@user-ip4us2zf2o 2 роки тому
I mean, that iceberg is pretty good for average computer user and you're good at explaining complex things in simple way, but I think CS iceberg explanation needs 2nd part, there's certainly enough cool things to tell about: ternary computer architectures, quantum computers, organic neural networks, etc. Thanks for your work.
@1chapo1
@1chapo1 2 роки тому
When the world needed him most, he came back
@Zaerysh
@Zaerysh 2 роки тому
Amazing video!
@altalio5383
@altalio5383 2 роки тому
i love how the video is both really informative and has an insane amount of memes and references
@roardinoson7
@roardinoson7 2 роки тому
Although I don't work in IT or computer science, I found this video super interesting! It was well-illustrated and digestible for the average person, so thanks!
@im_byzd
@im_byzd Рік тому
Where is part 2
@malkulaas6380
@malkulaas6380 2 роки тому
Your videos are amazing! Keep going 🥰 I can't wait for the next part!
@muhammadolim6959
@muhammadolim6959 2 роки тому
Good job man! Keep it up! Waiting for second part...
@mohdxmage
@mohdxmage 2 роки тому
Quabl is one of the best channels to explain the depths of the things around us So let's say if a random person was sent to the past what is he wouldn't make such difference to the discovery of lots of things like we don't know how to make a clock or a fridge Point is this kind of information is something quite better to know
@deffnotmike
@deffnotmike 2 роки тому
Very good work man, this is such a good explanation of so many topics with great visual representations.
@lazyybunnyy
@lazyybunnyy 2 роки тому
As many people have mentioned already; this video was fantastic! From the style of presenting information, voice, and keeping the audience interested. I really enjoyed watching this despite me not knowing much about computers.
@sammysomething8699
@sammysomething8699 2 роки тому
What an amazing video. I can't wait to watch the second part. :3
@mwicken92
@mwicken92 2 роки тому
Dude this is really good stuff. I've been working in software development for 20 yrs and I like this video. Your doing really good my man!
@alqamahasnain6428
@alqamahasnain6428 2 роки тому
Amazing content. I'm hungry for more!
@bmdubz
@bmdubz 2 роки тому
Great video! You earned my sub. Cant wait for part 2 !!!
@joshuaolian1245
@joshuaolian1245 2 роки тому
this is such an incredibly high quality video. the animation, jokes, and narration make it such a pleasure to consume. would absolutely love a second
@tinaguardman8549
@tinaguardman8549 2 роки тому
Can't wait to see part 2!
@nnlp5854
@nnlp5854 2 роки тому
You are giving the real info here, great work
@nerdtale8801
@nerdtale8801 2 роки тому
your content is fancy bro keep it up
@nKacey
@nKacey Рік тому
probably the most high quality iceberg videos ive watched. actually, probably one of the only ones that I have actually sat down and "watched" lol incredible work, and congrats on 100K!
@faysoufox
@faysoufox 2 роки тому
Great video, looking forward to part 2
@d3adstarr
@d3adstarr 2 роки тому
Thanks for the video man really appreciate the effort you put in!
@farhan44able
@farhan44able 2 роки тому
One of the greatest videos of Computer Science Intros. It was entertaining and fascinating as well.
@fabriciolopes6007
@fabriciolopes6007 2 роки тому
Just loved this content, thanks!
@arnabghosh6636
@arnabghosh6636 2 роки тому
This is really well made, you earned a subscriber!
@ibrahimalghofili3934
@ibrahimalghofili3934 2 роки тому
YOU ARE INSANE THESE VIDEOS ARE AMAIZING
@AbdulMannan_2298
@AbdulMannan_2298 2 роки тому
Great work! Keep it Up! Would love to see the second part...
@bourhanb9317
@bourhanb9317 2 роки тому
Excellent overview ! Good job
@JamesSailor
@JamesSailor 2 роки тому
This video is an absolute work of art. I envy your deep understanding, and ability to it piece together. Keep doing what you're doing.
@rolandinho5279
@rolandinho5279 2 роки тому
Best video i have seen all month, good job
@bagonbee
@bagonbee 2 роки тому
i love this channel so informative and the edit is 10/10
@iffathrazachowdhury3338
@iffathrazachowdhury3338 2 роки тому
Smoothest explanation i've ever seen.. Great work man.
@philipmvee8466
@philipmvee8466 2 роки тому
Actually incredible 🔥🔥🔥, I rarely comment on videos but this was done so well. Hope your channel grows!
@juanmacias5922
@juanmacias5922 2 роки тому
This was so awesome! Part two!
@vitustillebeck4965
@vitustillebeck4965 2 роки тому
This is great quality! Thank you for this amazing video.
@iansarenski
@iansarenski Рік тому
oh man I love you! keep up the good work please!
@GratissTVofficial
@GratissTVofficial 2 роки тому
This video is a masterpiece. Subscribed
@croskii
@croskii 2 роки тому
sick video mate
@samdraker
@samdraker 2 роки тому
Finally!!! I've been waiting for this.
@tonaxysam
@tonaxysam 2 роки тому
First video that got recommended to me from this channel. First middle-long video that I saw complete from recommendations. New subscriber earned Very good content
@Husstavo2844
@Husstavo2844 2 роки тому
This is literally perfect timing holy moly! YOU ARE A BEAST!!! btw can we just applaud for just how good the editing is ?!! truly fantastic
@onurc4kir
@onurc4kir 2 роки тому
Bro your video is insane thank you for your effort 👍
@mpdocs1026
@mpdocs1026 2 роки тому
Your humor, editing and explanation is superb. I learned while entertained thanks man
@vortex5405
@vortex5405 2 роки тому
hey finally a new video 100% worth the wait this and the space iceberg were my favorite
Is Meat Really that Bad?
12:08
Kurzgesagt – In a Nutshell
Переглядів 8 млн
Map of Computer Science
10:58
Domain of Science
Переглядів 6 млн
"Поховали поруч": у Луцьку попрощались із ДВОМА Героями 🕯🥀 #герої #втрати
00:15
Телеканал Конкурент TV - новини Луцька та Волині
Переглядів 57 тис.
😱СНЯЛ ФИКСИКОВ НА КАМЕРУ‼️
00:35
OMG DEN
Переглядів 1 млн
MINHA IRMÃ MALVADA CONTRA O GADGET DE TREM DE DOMINÓ 😡 #ferramenta
00:40
Something Strange Happens When You Follow Einstein's Math
37:03
Veritasium
Переглядів 3 млн
Harder Drive: Hard drives we didn't want or need
36:47
suckerpinch
Переглядів 1,5 млн
We should use this amazing mechanism that's inside a grasshopper leg
19:19
God-Tier Developer Roadmap
16:42
Fireship
Переглядів 6 млн
I've never seen ANYTHING like this before... Temple OS
17:57
Linus Tech Tips
Переглядів 4,1 млн
The Hardest Easy Game
11:30
Vsauce2
Переглядів 4,2 млн
The Rise of the Machines - Why Automation is Different this Time
11:41
Kurzgesagt – In a Nutshell
Переглядів 14 млн
Roko's Basilisk: The Most Terrifying Thought Experiment
11:45
Kyle Hill
Переглядів 6 млн
1,204,986 Votes Decided: What Is The Best Thing?
11:12
Tom Scott
Переглядів 5 млн
Romantic Gifts
11:19
D!NG
Переглядів 1 млн
"Поховали поруч": у Луцьку попрощались із ДВОМА Героями 🕯🥀 #герої #втрати
00:15
Телеканал Конкурент TV - новини Луцька та Волині
Переглядів 57 тис.