q_id
stringlengths
6
6
title
stringlengths
4
294
selftext
stringlengths
0
2.48k
category
stringclasses
1 value
subreddit
stringclasses
1 value
answers
dict
title_urls
listlengths
1
1
selftext_urls
listlengths
1
1
6kesx9
Why do so many old songs have instruments/vocals that sound only through one ear?
Sorry if the question is weirdly formulated... I couldn't come up with a better way to describe it. When I'm at work, I only use one earphone when listening to music, so I can still hear if anyone asks me a question. However, when listening to older songs, I often have the problem of missing most of the song because so...
Technology
explainlikeimfive
{ "a_id": [ "djlhexe" ], "text": [ "Stereo was invented (or came into common usage) in the 60s and, whenever something new is invented, we like to experiment with it. This, plus all the psychadelic vibe in the 60s, resulted in some very bizarre combos. Over the years, we've perfected the art to something ...
[ "url" ]
[ "url" ]
6kfabs
How do Reddit bots like the "autotldr" bot work? How can it summarize a news article?
Technology
explainlikeimfive
{ "a_id": [ "djlof0n" ], "text": [ "The bot's comments have a FAQ which should answer your question. It rates the importance of sentences based on the frequency of words used." ], "score": [ 7 ], "text_urls": [ [] ] }
[ "url" ]
[ "url" ]
6kfpfa
How do 3D games work?
How does a 3D game like GTA work, where the player moves in all 3 planes? Is the world developed just a 3D array, where the player and other AI objects are vectors that move through that array? How does AI behaviour and physics get computed? Also does the game work by reading the users input, calculate how that input a...
Technology
explainlikeimfive
{ "a_id": [ "djlxphw" ], "text": [ "Former game developer here, 3D games are typically polygonal. A polygon is a triangle in 3D space. This requires 3 points in 3D space. A point has an X, Y, and Z component, a coordinate for each axis. So that's 3 sets of 3, or 9 coordinates for one polygon. Each coordin...
[ "url" ]
[ "url" ]
6kfyya
Do breathalyzers measure BAC accurately for people with lung issues such as asthma, COPD, or just being generally out of shape?
Technology
explainlikeimfive
{ "a_id": [ "djlphio" ], "text": [ "Breathalyzers are \"good estimates\", not highly accurate. They don't measure total breath flow, either. They just determine the percentage of alcohol in the C02 of your breath, and conditions like asthma, COPD, or others don't really have any affect on that. If you're ...
[ "url" ]
[ "url" ]
6khrql
Why is electronic recycling so difficult?
Technology
explainlikeimfive
{ "a_id": [ "djm8kd6" ], "text": [ "They are shredded and then pass through several separation steps. First, steel is extracted via magnets. Then an eddy current separator moves aluminum, copper and other non-magnetic conductors from the plastic stream. They can even separate ABS plastic from polystyrene....
[ "url" ]
[ "url" ]
6kiaay
How have phone operating systems, today managed to reduce the time required to uninstall an app within a second, irrespective of its size(Android OS)
Technology
explainlikeimfive
{ "a_id": [ "djm963g" ], "text": [ "I can't destroy a building you're using in a second, but I can lock the main door in a second. The result will be the same for you, you can't use the building anymore. I'll then take my time to actually destroy it properly. Your phone doesn't completely delete all the s...
[ "url" ]
[ "url" ]
6kjxvc
With all of the advances in technology, why does it still take a few moments for tvs and set-top-boxes to change channels?
Technology
explainlikeimfive
{ "a_id": [ "djmml3k" ], "text": [ "Television signals contain a lot of data in a compressed format. Your state of the art TV needs to find the signal, buffer the data and then send it to your screen. In areas where there is a lot of interference, sometimes the signal you are receiving is degraded and add...
[ "url" ]
[ "url" ]
6kknx6
Why can’t computers directly link parts for faster data speeds?
For example, link your network card to your storage media (without the data ever crossing the CPU or other parts) for a lower-latency download.
Technology
explainlikeimfive
{ "a_id": [ "djmt069" ], "text": [ "There's really not much bottle neck to writing to storage, because that's about the slowest thing that can happen on any computer. Really the latency isn't due to the connections and architecture, but the fact that storage devices are slow. The peripherals do have direc...
[ "url" ]
[ "url" ]
6kkxak
Why do Canadian websites end in .ca and U.K. Websites end in .UK but United States websites don't end in .us?
Technology
explainlikeimfive
{ "a_id": [ "djmvf6x", "djmv5hz", "djmuy8m", "djn01on", "djn4ibs" ], "text": [ "Basically because the US created the internet and the US government controlled all the non-country specific Top Level Domans (TLDs) in the early days (.com, .net, .org, etc). Some of them are still controlled b...
[ "url" ]
[ "url" ]
6km800
How do space agencies keep up with new technologies in their projects/missions?
Hello! Today I came across with [this tweet]( URL_0 ) and the second photo is mission timeline of various mission. So, as you can see, planning phases and mission duration covers huge amounts of time periods and I was wondering how do space agencies (spacecraft companies and researches in similar areas as well) keep up...
Technology
explainlikeimfive
{ "a_id": [ "djn6nf4", "djn6l2y" ], "text": [ "They don't keep up with it. All tech launched into space is fairly old. When they design the craft most of the tech isn't cutting edge, then it takes several years to build it, then a couple years of testing before launch, and by the time it's launched it...
[ "url" ]
[ "url" ]
6kma8m
Why you can put in the recycling bin same files with the same name but you cannot do that in any other folder ?
Technology
explainlikeimfive
{ "a_id": [ "djn4fca", "djo7x7h" ], "text": [ "The recycling bin is a \"virtual\" folder that shows a list of deleted files that can be undeleted. Deleted files aren't actually *moved* in to a different folder: they stay where they were, they're just *marked* as deleted. The recycling bin is a \"view\...
[ "url" ]
[ "url" ]
6kmb6t
What is P2P network? I know it has already been answered here but I still don't get some basic things. Details below.
**What is P2P network or Peer-to-Peer network?** I found this in one answer on reddit -- > Scenario: a needs to talk to c, using service provided by b. client server: a talks to b, b talks to c, c talks to b, b talks to a, and so on. p2p, a and c connect to b, b tells a and c how to talk to each other, b is not needed ...
Technology
explainlikeimfive
{ "a_id": [ "djn5q4w" ], "text": [ "What you're asking for is called [IP routing]( URL_0 ) and is one of the fundamental structure of the internet as we know it today. The basics of it is everything with an ethernet or WiFi adapter keeps a routing table which tells them if I want to access X address, send...
[ "url" ]
[ "url" ]
6kmoix
At what point does a program/software qualify to be called an AI?
Technology
explainlikeimfive
{ "a_id": [ "djn7kkj", "djnpyzi", "djn7veb" ], "text": [ "The problem is that we don't have a formal definition of what AI is, therefore different people have different requirements for calling something AI. It's a bit like asking \"at what point is a movie good\"? On one end of the spectrum we ha...
[ "url" ]
[ "url" ]
6knhfx
I remember gifs being horribly low quality just a few years ago, but now we have super high quality ones. Image quality didn't really get better, so what happened?
Technology
explainlikeimfive
{ "a_id": [ "djndgq6" ], "text": [ "Most sites started switching to HTML5 video elements instead of using conventional GIFs. GIF is an ancient standard in computing. It was first introduced in 1987 and the most recent update to the standard was in 1989 (28 years ago). A key advantage of the GIF standard i...
[ "url" ]
[ "url" ]
6koarp
How did they do music videos Like "Take on me" without computers
Cant imagine how. Blame me for not knowing if its common knowledge but im curious.
Technology
explainlikeimfive
{ "a_id": [ "djnj2gx", "djnpprs" ], "text": [ "First they shot the entire video live-action, then used frames from the parts they wanted to be animated as the basis to trace out sketch drawings, then replaced some of the live-action frames with the animated frames. Where the two were meant to interact...
[ "url" ]
[ "url" ]
6kodqu
How can headphones deliver decent amounts of bass when normal speakers usually require a large subwoofer to produce the same effect?
Technology
explainlikeimfive
{ "a_id": [ "djnju30", "djnqnw2" ], "text": [ "\"Normal speakers\" are trying to make sound in a room that's many times larger than the tiny space in your ear canal where earbuds are making sound (or the small space inside the headphones where they are making the sound). Bigger spaces take more energy...
[ "url" ]
[ "url" ]
6kp0ti
Why cant we send all of our pollution to the sun?
Technology
explainlikeimfive
{ "a_id": [ "djnomks" ], "text": [ "Because it would be ridiculously expensive. Earth produces about 2.6 trillion pounds of garbage every year. The falcon heavy rocket when complete, will be able to boost stuff into low earth orbit for $1,000 per pound. Sending it to the sun would be considerably more exp...
[ "url" ]
[ "url" ]
6kpyj4
how come we have updated data transferring cords like USB, but we haven't updated telephone cords for mainline internet connection?
Over time I know cords have updated to be able to transfer larger pieces of data faster. Such as video games platforms using HDMI now instead of the three colored cords. And I know apple is trying to use the lightning port since it is faster than USB. Why haven't we had to update the mainline connection cords that go i...
Technology
explainlikeimfive
{ "a_id": [ "djnvz4m" ], "text": [ "We have, first it was ISDN, and later DSL. But copper lines are two unshielded, untwisted wires. It's primitive technology, and DSL already squeezes everything that can be had from it, and that only if the line isn't too long, and there's no interfering equipment on the...
[ "url" ]
[ "url" ]
6kqld0
Why do some modern millitary aircraft (E-2C Hawkeye, etc.) still use propellers instead of a jet engine?
Technology
explainlikeimfive
{ "a_id": [ "djo17r0", "djo4my0", "djobfxw" ], "text": [ "well the e-2c hawkeye is from the 1960s. so it's not exactly \"modern\". but this isn't a fighter aircraft, so it doesn't need to be fast. there's no need for a turbojet when the turboprop is still just fine. keepping the turboprop is cheap...
[ "url" ]
[ "url" ]
6kqp8w
What is and how does the md5 checksum of a file work? What makes a checksum so feliable to know if your file is the good one?
Technology
explainlikeimfive
{ "a_id": [ "djo2vbp" ], "text": [ "The MD5 algorithm is a member of a special class of function called a \"cryptographic hash function.\" What this means is that, for any data of any length, you can use the hash function to convert it into a piece of data of fixed size, that is (*very generally speaking,...
[ "url" ]
[ "url" ]
6kr8yx
How are 2-D cartoons (like Spirited Away or Spongebob) animated today using computers?
In other words, how do you get to the 24 FPS in most cartoons from the original single drawing of a scene? There has to be a better way than just drawing a sequential set of scenes! Edit: For more context I suppose, how do programs like Toon Boom Harmony work in the context of making the continuous animation?
Technology
explainlikeimfive
{ "a_id": [ "djo76i5" ], "text": [ "Drawing is still mostly what is done to this day. It is mostly drawn with computers these days, but nonetheless there is still quite a bit of work that comes in to do with 2D animation. It's a long process from the initial idea to the finished product but when the anima...
[ "url" ]
[ "url" ]
6krc4w
I was always told not to put a fridge or AC on an extension cord. Why?
Technology
explainlikeimfive
{ "a_id": [ "djo7l89", "djo8f59" ], "text": [ "Refrigerators and AC units have a much higher peak power draw than most household appliances. An extension cord that isn't rated to handle that kind of draw could overheat and short, or cause a fire.", "Anything that allows current to flow also loses ...
[ "url" ]
[ "url" ]
6krzqk
Why do programs sometimes go unresponsive when you try and close them?
Technology
explainlikeimfive
{ "a_id": [ "djoczd3", "djodb6s" ], "text": [ "Believe it or not, the close button on a program's title bar is not an authoritative operating system command. It's merely a \"suggestion\" to the current program that the user wants to quit. So the program is responsible for cleaning up and shutting down...
[ "url" ]
[ "url" ]
6kss9k
How do people who make song mashups isolate the vocal tracks to songs?
Technology
explainlikeimfive
{ "a_id": [ "djoozpe", "djoiqrx", "djor0n5" ], "text": [ "Vocal-only tracks for many songs can be found publicly. For many songs for which vocal-only tracks aren't publicly available, producers of those mash-ups may have connections to labels/artists and can get the vocal-only audio for a track pr...
[ "url" ]
[ "url" ]
6ksx08
How do Esports professionals get hacks onto the systems during competitions? It seems like it would be a closed and monitored network.
Technology
explainlikeimfive
{ "a_id": [ "djojwip" ], "text": [ "Nobody is actually monitoring every little bit of information sent in the network, and even if they were, it would be nearly impossible to pick out evidence of a hack - you'd have to have a program cross-referencing known hacks or checking packets. If a hack is not yet ...
[ "url" ]
[ "url" ]
6kt28o
Why do some webpages/applets only load if you're actually looking at them in your browser?
It seems strange that pages frequently won't load if the page is open in your browser but you're looking at another tab or you've scrolled past the applet.
Technology
explainlikeimfive
{ "a_id": [ "djomni8" ], "text": [ "Page Visibility API ( URL_0 ). The JavaScript running on the site can detect whether the tab is currently being viewed." ], "score": [ 10 ], "text_urls": [ [ "https://developer.mozilla.org/en-US/docs/Web/API/Page_Visibility_API" ] ] }
[ "url" ]
[ "url" ]
6ktq6g
Why does a high-resolution image have to load, but a high-resolution video can play thousands of frames without having to load each one?
Technology
explainlikeimfive
{ "a_id": [ "djos3wf", "djopxtr", "djortx6", "djoqsre" ], "text": [ "[This video explains quite well how it works online, specifically Youtube]( URL_0 ) TL;DW: Youtube only sends information about changes between frames of a video. Since there is usually very little difference between 2 frames...
[ "url" ]
[ "url" ]
6ku4m9
How knowing mathematics is important for learning how to code a computer
Technology
explainlikeimfive
{ "a_id": [ "djosm63", "djoux57", "djp128x", "djotggk", "djp2o15" ], "text": [ "As a web developer, I wouldn't say I use much mathematics, what I do use is logic. Maybe math is heavily suggested because it forces you to think logically? On a side note, I know certain programming like motio...
[ "url" ]
[ "url" ]
6kvfb5
How does wireless internet work?
I can see how Internet works when I have a cable to my router / modem (with light pulses) - but how does my phone or computer resolve the amount of complex data that even simple websites are made out of wirelessly let alone a Skype call or video conference? Dear internet - How does internet work? ;)
Technology
explainlikeimfive
{ "a_id": [ "djpar89", "djp4b2g" ], "text": [ "Basically, much like with a wired connection, where your data is transmitted through a medium (usually copper or fiber if you're lucky), wireless internet works by sending/receiving radio waves at a certain frequency (usually 2.4Ghz or 5.0Ghz) to and from...
[ "url" ]
[ "url" ]
6kvx80
What is the difference between playing music on your phone through the aux port VS the charging port?
For example, in my car, I can choose to play music through my iPhone by using the auxiliary cord or the "charging cord". What is the difference between the two from a technology perspective?
Technology
explainlikeimfive
{ "a_id": [ "djpd2wo" ], "text": [ "The aux cord is carrying a raw analog audio signal that is then amplified by your car's stereo system and played by the speakers. This is standard across all devices and is why almost anything with an aux port can play sound from almost any device. The charging cord is ...
[ "url" ]
[ "url" ]
6kwtbn
Bluetooth. How does it work?
Technology
explainlikeimfive
{ "a_id": [ "djphaew" ], "text": [ "Bluetooth is a narrow band of the radio wave spectrum, 2.45ghz, set asside by international agreement a long time ago for industrial, scientific and medical purposes. It's a low-power, low-range (1-10m) frequency making it ideal for close proximity digital communication...
[ "url" ]
[ "url" ]
6kx5gm
Why are the vid players on some "big" sites so unreliable?
It's gotten to the point where I hesitate to click on any vid not from youtube, simply because the user experience for other sites is so iffy. Vice videos seem to take forever to load on both my (admittedly ancient) laptop and my snazzy new iPhone. CNN, Twitter, ESPN all range from unreliable/slow loading to occasional...
Technology
explainlikeimfive
{ "a_id": [ "djpp9yj", "djpp7bc", "djprx3d" ], "text": [ "YouTube processes every single video that is uploaded to the site to use the exact same file type with the exact same settings. This particular file type is heavily compressed. Compressing the video file causes a loss of quality but it load...
[ "url" ]
[ "url" ]
6ky2gj
What technology advancement made LEDs become more useful than basic on/off indicators?
There've been LED's around for a long time. What happened in the past few years to make them viable replacements for just about any other type of light bulb (ok, probably not any, but hopefully the point is made)?
Technology
explainlikeimfive
{ "a_id": [ "djppl33" ], "text": [ "Probably the most important advancement was the blue LED. LEDs have always been much more efficient than incandescent lights, but were only available in red and green, so they weren't much good for general-purpose lighting or color displays. The invention of the blue LE...
[ "url" ]
[ "url" ]
6kysg2
Who or what owns/manages the entire internet?
Technology
explainlikeimfive
{ "a_id": [ "djpt9db", "djptnuf", "djpu7qf", "djpvck5" ], "text": [ "Thats the beauty of it. Nobody owns the Internet. Even when some goverments have control over their countries infrastructure. The internet has a decentralised structure to prevent it from collapsing, if one node falls out of ...
[ "url" ]
[ "url" ]
6kz2rg
Why do some ISPs limit data usage?
Also, why are some ISPs able to deliver faster speeds than other ISPs? And while we're on the subject, if nobody "owns" the internet, why isn't it free?
Technology
explainlikeimfive
{ "a_id": [ "djpux2b" ], "text": [ "Regarding the \"nobody owns\" argument - you're not paying for internet content, you're paying for the infrastructure that enables you to access that content. Cabling, servers, cabinets, hosting centres, etc etc. Data usage is limited to restrict overall use, allowing I...
[ "url" ]
[ "url" ]
6kzv2j
how does the gyroscope in mobile phones work?
Technology
explainlikeimfive
{ "a_id": [ "djqdu6v", "djq0hwr" ], "text": [ "It's often called a gyroscope but phones actually don't have gyroscopes they use very tiny accelerometers to measure how the phone is orientated and being rotated", "They use microscopic mechanical devices to measure forces and translate them into ele...
[ "url" ]
[ "url" ]
6l1l4s
Why are 4K videos more crisp that 1080p videos even when the native screen resolution is 1080p?
I notice this a lot when watching YouTube videos on my pc.
Technology
explainlikeimfive
{ "a_id": [ "djqgy6c", "djqt669", "djqf44n", "djqvydf", "djqwack", "djqjfi4", "djqj6kl", "djr9k5y" ], "text": [ "This mainly has to do with how 4k gives you more bitrate (in the context of youtube), or how much less compressed the video gets when it arrives for you to watch. Yo...
[ "url" ]
[ "url" ]
6l1r5a
What are RAIDs (redundant array of independent disks) and how do they work?
Technology
explainlikeimfive
{ "a_id": [ "djqfps4" ], "text": [ "RAID means you distribute your data over more than one disk. You tell the type of RAID with a number (RAID level). RAID 0: Called stripping, no redundancy. You basically write to two (or more) discs parallel, each part of a file goes on a different disk this means you c...
[ "url" ]
[ "url" ]
6l55qg
Difference of LCD, OLED, and AMOLED that can be easily understood
Technology
explainlikeimfive
{ "a_id": [ "djrdn6m" ], "text": [ "/u/kittuboy/ is correct about *LED, but made some mistakes about LCDs. LCD basics: structure with liquid crystals and polarizers that can be switched to pass light through or block it. Three such structures with RGB color filters and white backlight make one pixel. Beca...
[ "url" ]
[ "url" ]
6l9731
How can my external battery fully discharge when charging my phone's battery?
So as I understand batteries, they are based on a difference of potential that, when released, produces energy. But when two identical batteries are connected together I don't get why they don't just end up reaching the same balance and instead one battery will charge the other. Thanks.
Technology
explainlikeimfive
{ "a_id": [ "djs48it" ], "text": [ "A lithium ion battery has a nominal village of 3.7V. When you use an external battery pack to charge your phone, a circuit pulls power from the battery, converts it into 5V (for the standard USB voltage) and sends it to the USB port. Your phone takes that 5V and convert...
[ "url" ]
[ "url" ]
6la37b
What happens when you pause a video game?
Occasionally, I'll tab out of a game or something of a similar nature and leave the game in pause like, what happens to the game and everything in it?
Technology
explainlikeimfive
{ "a_id": [ "djs8iwj", "djsh4jx" ], "text": [ "I found this one cool and decided to do some google, the first video-game to feature pause was [Fairchild Channel F]( URL_0 ), probably different video-games had different systems for implementing pause. But the basic are as follows. The buttons on your c...
[ "url" ]
[ "url" ]
6lajev
How does Facebook (and other social media sites) compile a creepily accurate Suggested Friends list even when you are a new user and have given the site minimal personal information?
Technology
explainlikeimfive
{ "a_id": [ "djsf1m0", "djsds3m", "djsdmme", "djskgrt", "djshmk1" ], "text": [ "Did you give them your phone number? Even if it isn't public, if some idiot installs the facebook app on their phone and has it in their contacts, facebook will link you. Same for email address - if someone has...
[ "url" ]
[ "url" ]
6lbdn2
Why does every website seem to want me to register a username and password to use the search bar and other features? Even when signing up doesn't really accomplish anything other than waste everyone's time?
Technology
explainlikeimfive
{ "a_id": [ "djskg3g" ], "text": [ "1. More accounts = more ad companies willing to pay 2. More registered subscribers = more people that can be contacted/sent messages about promotions 3. It can benefit you-if you have an account you can keep track of your activity on the site as well as get notification...
[ "url" ]
[ "url" ]
6lewna
How large corporations recover once they have been infected by ransom ware.
Technology
explainlikeimfive
{ "a_id": [ "djtftjg" ], "text": [ "Any corporation with a competent IT department does regular system-wide backups on a daily basis. They also have a disaster recovery plan that allows them to stand up new instances of their critical systems on short notice. And sometimes, they just pay the ransom. They ...
[ "url" ]
[ "url" ]
6lgtm3
Simulated Annealing
I have seen this in many other subreddits (r/algorithms, r/compsci, r/programming) but they're all very confusing. Can you explain the ideas behind simulated annealing, what it is, and its uses? Also, what are its uses in tech and such. Thanks.
Technology
explainlikeimfive
{ "a_id": [ "djts0dm" ], "text": [ "There are a number of problems in computer science were they optimal solution is too hard to find, but it is often possible to find non-optimal solutions that are good enough. The traveling salesman problem is the classic example. Simulated annealing is a heuristic that...
[ "url" ]
[ "url" ]
6lgur3
Why electronic boards are green?
I think it's called electronic boards. Well, it's those boards that goes in every kind of hardware: TVs, controles, PCs, video games, etc. They are always green, and full of little components on them. This is an example of a electronic board that I'm talking about: URL_0
Technology
explainlikeimfive
{ "a_id": [ "djtpluf" ], "text": [ "Circuit boards are green because thats the natural color of the most common material used to make them, a type of glass epoxy. They cam be made in any color though" ], "score": [ 5 ], "text_urls": [ [] ] }
[ "url" ]
[ "url" ]
6liohg
A bad electrician can cause a short circuit, a bad doctor can kill a patient. Is hacking just behaving bad at computer science? Something every student of computer science could do?
Technology
explainlikeimfive
{ "a_id": [ "dju4pld" ], "text": [ "Hacking isn't bad computer science, it's taking advantage of bad computer science. Someone can build a website that isn't secure, but someone has to try and exploit it for there to be any hacking. At least, that's true hacking. A lot of what the media calls hacking is a...
[ "url" ]
[ "url" ]
6lm66s
What would be the effect of having one computer connected via LAN and the rest of the computers connected via WiFi?
So lately our router seems to be working rather slow and when we've contacted our supplier the support center told us it could happen due to someone on the network connected via LAN and "taking up all the bandwidth". I've searched around the internet a bit and it seems like unless some 50MBps downloads are currently ru...
Technology
explainlikeimfive
{ "a_id": [ "djutddq", "djuydlo" ], "text": [ "Depends on the router; they're not all equal, and it's not always about the bandwidth being used. Figure a typical router's network ports operate at 1 Gigabit (1000 Mbps). A typical wireless connection is limited to approx 50 Mbps; You could, in theory, c...
[ "url" ]
[ "url" ]
6loave
How can a computer virus "infect" mundane/non-executable filetypes like .png files? How can opening an infected .png file be dangerous?
My antivirus software removed two .png files, labeling them "Trojan.Gen.NPE.2". Surely, .png files are hard to infect? If you store data in one, wouldn't it corrupt the file or at least make it look like garbled gibberish when you opened it? How does opening it cause problems if its opened through standard image-viewin...
Technology
explainlikeimfive
{ "a_id": [ "djvbfzv" ], "text": [ "A data file doesn't runs the virus. The viewer would. Suppose you found a flaw in photo viewer or mspaint that allowed image data to overrun the buffer and execute commands. The way you could distribute the virus would be images on website. Or upload an infected image t...
[ "url" ]
[ "url" ]
6lqh4n
How is it that if I browse something on Amazon on my PC, it shows up on my phone Instagram feed as an ad?
Technology
explainlikeimfive
{ "a_id": [ "djvu0v4" ], "text": [ "To piggyback off of the previous response, companies do build a profile of you based on your internet traffic. If you're signed in to Facebook on a tab in your browser, and unless you've disabled it in your privacy settings, Facebook can sort of follow you around the in...
[ "url" ]
[ "url" ]
6lqotp
In music videos, how does the video play in slowmotion, but the artists still move their instruments and mouth in time to the music?
Technology
explainlikeimfive
{ "a_id": [ "djvvjco" ], "text": [ "You'd need to be more specific, since this can be done a number of ways. The most simple way would probably be to play their instruments/lip the lyrics sped up, so when it's slowed down, the tempo matches (e.g., a video at 1/2 speed would be recorded twice as fast). Tha...
[ "url" ]
[ "url" ]
6lrxgy
What exactly is happening when a video game is loading?
Technology
explainlikeimfive
{ "a_id": [ "djw8j63", "djw4v7f", "djw9gkg", "djwbfb8", "djwjvsy" ], "text": [ "Simple ELI5 Answer. Suppose I have a box of Lego, and my son wants to make a Death Star with them. The box of Lego is the game's contents saved in a hard disk (HDD), the process of making a Death Star is the ga...
[ "url" ]
[ "url" ]
6ltz9y
Why is a 4-digit code sufficient for banking purposes but not for most online accounts?
Technology
explainlikeimfive
{ "a_id": [ "djwmrs8", "djx2bl1", "djwpk3t", "djwinfb", "djwpc7d", "djwr0sx", "djwpo8f", "djwp6pu", "djwjtc8", "djwsqn5", "djwqm4b", "djwpx27", "djx303x", "djx3odi", "djx4tvi", "djxzjvb", "djxn97h", "djwqzuh", "djxeb0u", "djwr38l", "d...
[ "url" ]
[ "url" ]
6luigk
Why does a weird wavy patter appear if a small chequered pattern moves across a screen?
*Pattern
Technology
explainlikeimfive
{ "a_id": [ "djwnx2s" ], "text": [ "As always, there's [a relevant xkcd]( URL_0 ) for that! What you're seeing is a [moiré pattern]( URL_1 ), which happens when a repeating pattern (lines, dots, a grid, etc) is more fine than the sensor/resolution of whatever is photographing or displaying it. Think of al...
[ "url" ]
[ "url" ]
6lukux
How does a TV remote work, or any remote for that matter?
Technology
explainlikeimfive
{ "a_id": [ "djwo28l", "djwnxc5" ], "text": [ "Most TV remotes are IR (Infrared). What that means is that at the top of the remote there is a little lightbulb of sorts behind a red cover. That lightbulb isn't intended to emit light in the spectrum we can see but rather the infrared specturum whose wav...
[ "url" ]
[ "url" ]
6luv5u
Why does Apple have to have everything in their hardware/software proprietary? Why can't they make something that's open source or uses open source components like Android does?
Technology
explainlikeimfive
{ "a_id": [ "djwqhez", "djwr8vi", "djwsfth" ], "text": [ "They make more money on their proprietary connectors like the Lightning cable because other companies have to pay to make gadgets that work with Apple devices. Their homegrown filesystem has some sanity though: it made a LOT more sense when...
[ "url" ]
[ "url" ]
6lvb8h
Doesn't it defeat its purpose if I give the credit card's 3 digit security code out when ordering on the phone or online?
Technology
explainlikeimfive
{ "a_id": [ "djwu3iz" ], "text": [ "Only if the connection you have with the online site isn't secure, or if they keep that information (which they're not supposed to). The purpose of the code is to prove you're holding the real card. If no one is allowed to ask for it, why would you even have that code?"...
[ "url" ]
[ "url" ]
6lvcqm
Regarding the OnePlus5, why does inverting the screen cause the "jelly" scroll effect?
OnePlus decided to invert the panel in their new device and it seems to be causing this: URL_0
Technology
explainlikeimfive
{ "a_id": [ "djwvdg3" ], "text": [ "It's *probably* a trick of the eye combined with a software behavior. Especially considering some users with phones not made by OnePlus can get the same effect by inverting their phone and scrolling. The screen isn't updating the picture all at once. It updates chunks. ...
[ "url" ]
[ "url" ]
6lxc0v
in a keyboard, what are the little bumps in the F and J keys for and why are they on those specific keys?
Technology
explainlikeimfive
{ "a_id": [ "djxamxw", "djxanmv", "djxan54", "djxaot1", "djxcdyt" ], "text": [ "Standard hand placement for typing has both indexes on the f and j key as a resting position. Having the bumps there helps you to position your hand correctly without having to look down.", "If you're a tou...
[ "url" ]
[ "url" ]
6lxfsj
How do people "crack"software?
I always wondered how in the world people come up with keygens, and even some more complicated ways of cracking like altering registry, changing hosts files, etc. How do they initially know where to go, which file they need to change and stuff like that. Obs: I have no intentions on developing cracks or anything like i...
Technology
explainlikeimfive
{ "a_id": [ "djxcraj" ], "text": [ "Each method has its own way of circumventing the security. Keygens are created by figuring out the semi-random method that keys are generated, and making a new key that conforms. Registry altering works by injecting code into your registry that the program looks for to ...
[ "url" ]
[ "url" ]
6lygem
Tesla's massive new battery in Australia
How much can the battery power? Will it be used to power Australian cities or private ventures by the company? How will the solar power be gathered, massive solar panel fields?
Technology
explainlikeimfive
{ "a_id": [ "djxnxkx" ], "text": [ "So you have people who use power when they need it. Hot day : crank up the AC (lots of power). Everyone getting home from work around the same time: stuff turns on. Rise and shine wake up, endless coffee kettles. Power plants work best when constant, and wind farms and ...
[ "url" ]
[ "url" ]
6lzhl6
Why can you see a full preview of your video your editing yet it takes a really long time to render it?
Technology
explainlikeimfive
{ "a_id": [ "djxsn3b", "djxtn7x" ], "text": [ "Why does it take a short time to count from 1 to 10 yet it takes a really long time to count from 1 to 100,000? The incredible increase in detail between a preview and a render, which means an incredible increase in the number of computer operations to re...
[ "url" ]
[ "url" ]
6lzz1y
How will Elon Musk's battery fix South Australias energy problem if it can only power 30k homes?
How will it force prices down as the premier claims?
Technology
explainlikeimfive
{ "a_id": [ "djxw15d" ], "text": [ "It won't 'fix' everything on it's own, it's when you combine it with all their other power stations it provides (in theory) enough extra power to make up for current shortfalls. It needs to be noted also that it won't only be connected to just 30k houses, it will be spr...
[ "url" ]
[ "url" ]
6m06u1
How fast is the fastest computer?
Technology
explainlikeimfive
{ "a_id": [ "djxwu4w", "djxxfev", "djy183q" ], "text": [ "The fastest computer in the world is the Sunway TaihuLight, which can do over 93,000,000,000,000,000 floating point calculations per second. This means that you'd need around 71,000 Xbox Ones working together to match it. > Like say I wante...
[ "url" ]
[ "url" ]
6m0y9i
How/why is Elon Musks Australian battery farm such a gamechanger in the energy business, especially in regards to fossil fuels?
Ultimately a battery is just a storage device for energy. We put energy in, convert to physical form (cathode/anode and electrolytic solution). Then when we need energy, we allow a chemical reaction to occur, releasing energy again. I keep hearing about how his battery farm is a gamechanger that will put fossil fuels o...
Technology
explainlikeimfive
{ "a_id": [ "djy1u19" ], "text": [ "Because energy generation like wind, tidal, and solar aren't consistent. It's easy to shovel coal into a furnace around the clock, but the sun is only out during the day. With large battery stores, power can be generated when the conditions are favorable (regardless of ...
[ "url" ]
[ "url" ]
6m1j5z
why do stores or companies buyback used, broken or old electronics??
I was at the mall today and went into a Virgin Megastore and they had this offer where they take your old devices such as an old IPAD or IPHONE and give you a gift card for about 100 dollars or so depending on the condition of the old device. I've noticed some other places that would exchange your old device with a new...
Technology
explainlikeimfive
{ "a_id": [ "djy6ch0", "djyc6vw" ], "text": [ "Most probably go to their sister divisions within the corp as a refurbished items. They'll have another store sell the refurbished items for a profit. Many of these stores also require a new contract for phones to do am upgrade trade so they make their mo...
[ "url" ]
[ "url" ]
6m27r1
How does resistance of an earbud affect the quality of the sound (eg: 32 ohm vs 150 ohm)
Technology
explainlikeimfive
{ "a_id": [ "djyefq5" ], "text": [ "Essentially, when audio is played through a speaker, an analogue signal is sent to the speaker which causes the wire attached to a membrane to gain a magnetic charge and oscillate due to being very close to a permanent magnet. The higher the impedance rating of the spea...
[ "url" ]
[ "url" ]
6m5af7
Why people create their own APIs ? What can an app or website do with an API that it cannot do without it ? Why people make API before the app or a website ?
Technology
explainlikeimfive
{ "a_id": [ "djz07uq", "djz0kgm" ], "text": [ "An API allows two pieces of software to communicate politely to each other allowing a set of instructions that will achieve something without having to know the internals of the software you are accessing", "Okay. Let's the take infamous example of a ...
[ "url" ]
[ "url" ]
6m6ul9
Why is it so hard to synthesize more superheavy atoms?
I understand that it's more than just accelerating and smashing two elements together, but why does it take so long to synthesize new superheavy atoms? Is the energy required in exponential correlation with the mass? Are they too short lived to be detected? Don't we have a sensitive enough detector? Are there always mo...
Technology
explainlikeimfive
{ "a_id": [ "djzbziy", "djzcd1s" ], "text": [ "They are *extremely* unstable, and hard to assemble in the first place, because you are cramming so many protons into a single nucleus, and they mutually repel.", "The nuclei of the atoms repel each other. To have some chance to combine, you have to s...
[ "url" ]
[ "url" ]
6m6xuu
How do game developer fix video game performance(fps) on games that runs poorly
Technology
explainlikeimfive
{ "a_id": [ "djzdexs", "djzdd2j" ], "text": [ "They optimize the code to make it more efficient. For each frame to be drawn to the screen a certain amount of work needs to be done. You can reduce the amount of work to be done to achieve the same result or optimize how you are doing the work to run fas...
[ "url" ]
[ "url" ]
6m6yjx
What makes nuclear waste such a big concern as opposed to natural radioactive elements?
As I understand it, uranium for instance, is mined, then goes through a refining process, is used in power plants. Then, it is considered waste and it's burried very deep under the ground, because it is radioactive and dangerous People are very concerned about this, and this is not considered a real solution, but we've...
Technology
explainlikeimfive
{ "a_id": [ "djzgzwl" ], "text": [ "Three things: 1. Nuclear waste is made up of many different elements, with different levels of radioactivity, than is uranium as mined in the ground. It is also much more concentrated. The uranium ores, for example, that are mined in the United States have maybe 1% uran...
[ "url" ]
[ "url" ]
6m743b
How come playing Counter Strike at 200FPS feels way smoother than playing at 60FPS even though my monitor is capped at 60FPS
Technology
explainlikeimfive
{ "a_id": [ "djzef0r" ], "text": [ "I think its because there is a frame rendered just before the screen refresh each time that is much closer to the actual state of the game. At 60 FPS you might get a frame anywhere in between the refreshes: [ | ] Refresh At 200 FPS there are more up to date frames rende...
[ "url" ]
[ "url" ]
6m81bc
How does HEX color code works?
Basically what the question is. At a machine level, how is it that this code reflects a color in monitors?
Technology
explainlikeimfive
{ "a_id": [ "djzm3yh", "djzl5qc" ], "text": [ "Hex code are 6 characters, like so: FFFFFF Each group of 2 represents a colour, either red, green or blue and range from 0 to 255 in value (00 to FF). So say we want to have bright yellow, we would it code it like this: FFFF00 which would represent the RG...
[ "url" ]
[ "url" ]
6m841b
How does the entire staff of a major motion picture get paid? Are they salaried or job-to-job?
Technology
explainlikeimfive
{ "a_id": [ "djzm7hz" ], "text": [ "It depends. The movie itself will only have a set budget and pays for the 'wages' out of that. So there's only enough money to pay for that job. So technically everybody is getting paid job-to-job. But movie studios want to keep good workers available so may be prepared...
[ "url" ]
[ "url" ]
6m867k
Why are valve amps so much more powerful and louder than solid state amps with the same wattage?
Technology
explainlikeimfive
{ "a_id": [ "djzm3hd" ], "text": [ "Valve amps produce a subjectively pleasing sound when they are driven past their \"clean\" limits. Among other reasons, they tend to distort (and generally reach limits) in a more gradual way than solid state amps. So first off, you're intentionally exceeding the limits...
[ "url" ]
[ "url" ]
6m87hv
what purpose do cooling towers serve if reheat will be required?
Cooling towers are used to cool down the water. Please note that I am not asking about the condenser. The condenser is used to convert the steam to hot water. The cooling towers take that hot water and cool it. But my question is: why cool it if it needs to be reheated anyway?
Technology
explainlikeimfive
{ "a_id": [ "djzm73t", "djzoeid" ], "text": [ "Cooling towers are condensers. The purpose of the cooling tower is to cool the steam down to water so that you can reuse the water in whatever system it is a part of. Cooling towers are used as part of the AC of some large buildings, as well as the way th...
[ "url" ]
[ "url" ]
6m8plk
Why is it that seemingly every website/game/ANYTHING wants me to log into Facebook to use it?
Technology
explainlikeimfive
{ "a_id": [ "djzs1y0", "djzprcv", "dk0dd67", "djzyrn9", "dk015hd", "dk09re6" ], "text": [ "A lot of people seem to be saying \"so they can target ads\" or \"so they get lots of information about you\", but that's not really the case. Let me explain a bit about how this works. When you ...
[ "url" ]
[ "url" ]
6m9oi5
How does procedural generation work?
Technology
explainlikeimfive
{ "a_id": [ "djzzc80" ], "text": [ "In many video games, the world is manually generated, and hard-coded into the game. There will always be a wall at this location, there will always be a castle at another location. The wall will use a pre-drawn texture that looks like stones. There are some issues with ...
[ "url" ]
[ "url" ]
6mbcyt
How dairy companies take out the lactose of their dairy products?
Technology
explainlikeimfive
{ "a_id": [ "dk0b4yp" ], "text": [ "Lactose isn't really taken out of the milk, instead, what the industry does is to add lactase (the enzyme that digests lactose) to their product. The people that can't digest lactose lack the lactase enzyme, so, by adding it in their product, people without lactase can ...
[ "url" ]
[ "url" ]
6mbfo0
When a physical music album is manufactured, how do they put the tracks to the CD-R without getting them leaked by the people who work at the manufacturing company?
Technology
explainlikeimfive
{ "a_id": [ "dk0cadv", "dk0bss2" ], "text": [ "The companies have large security for all people going in and out of the facilities and track production very well to ensure all copies are accounted for. Before you enter and leave you go through airport like security detectors to see if you're carrying ...
[ "url" ]
[ "url" ]
6mbjd5
What's the deal with videos and buffering?
Honestly, I remember at the dawn of the internet you could pause a video at the start, and the whole thing would (as I thought load) but I'm pretty sure is called buffering these days. Now...perfect example, I'm trying to watch the "Yes, God, Yes" vid and it keeps freezing. It's paused and stopped buffering about 15 se...
Technology
explainlikeimfive
{ "a_id": [ "dk0cnpi", "dk0d3m2" ], "text": [ "Well, buffering is basically \"pre-loading\" the video ahead of where you are actually watching it at, which is nice if the connection is unstable or slow, because it allows you to keep watching the pre-loaded buffered video until the connection kicks bac...
[ "url" ]
[ "url" ]
6mbn16
How/why does the combination of Black, Yellow, Magenta, and Cyan be able to reproduce almost all colors in printed materials?
Technology
explainlikeimfive
{ "a_id": [ "dk0etba" ], "text": [ "Your eyes only have three different types of cells that can detect color (assuming you aren't color-blind). One that responds best to blue light, one that responds best to green light, and one that responds best to red light. Your idea of color is based on how much each...
[ "url" ]
[ "url" ]
6mcag0
How do video games (i.e Chess) change the AI depending on the level set (Easy, Medium, Hard)?
Technology
explainlikeimfive
{ "a_id": [ "dk0ivzo", "dk0jkjo" ], "text": [ "The harder you set it, the more time the computer gives itself to examine every possible future situation -- what you might do next, then what it might do in response, then what you might do after that, etc. On low difficulty it won't look too far ahead."...
[ "url" ]
[ "url" ]
6mcp49
why does RAM not have the same issue of limited write cycles that solid state drives do?
We're told that memory in solid state drives has a limit on how many times it can be written to before the sector becomes unusable. Firstly, how true of a statement is this? Secondly, how does RAM not have the same problems given that it's written to *a lot*.
Technology
explainlikeimfive
{ "a_id": [ "dk0mdxr", "dk0mk52", "dk0nxnv", "dk0m4i4" ], "text": [ "I'm going to try and ELI5 this, so *please* do not consider this a *technical* response. So, RAM has data written to it a lot, but it doesn't need to be *permanent*. That is, when you turn your computer off, and the RAM has n...
[ "url" ]
[ "url" ]
6mdlyg
With Snapchat's new function: ''Our story'', how do snaps get regulated to prevent violence and nakedness appearing on the map?
Technology
explainlikeimfive
{ "a_id": [ "dk0sd3l" ], "text": [ "I am guessing that all the snaps that are going on the map for the general public get viewed by a Snapchat mod because I looked for boobs for hours and came up empty." ], "score": [ 10 ], "text_urls": [ [] ] }
[ "url" ]
[ "url" ]
6mdvml
How is it possible to store Bitcoin offline?
Bitcoin exists in so called wallets online and every user stores information about transactions. Being online based how can it be stored offline in order to protect it. How can it possibly become inacessible to hackers if it is an online currency?
Technology
explainlikeimfive
{ "a_id": [ "dk0vrin" ], "text": [ "Bitcoin is basically one big, publicly viewable ledger book. It has many entries. Each entry says \"this coin (or part thereof) belongs to the person with the password XYZ\". What you actually store are not actual coins, but the password to access them. When you want to...
[ "url" ]
[ "url" ]
6me9c9
Facebook spam accounts that send you friend requests - who is making them and why?
Technology
explainlikeimfive
{ "a_id": [ "dk0vsy2", "dk10cvx" ], "text": [ "People pay for likes and promoting, so spam accounts are created and because they need to be believable they add random people, like a ton of stuff, but rarely have more than 1 or 2 photos.", "I just had one that was an obvious scam. It was a hot \"Am...
[ "url" ]
[ "url" ]
6me9gq
why researching fossils/ancient species is important?
I understand why researching space, energy, technology etc is so important to us, as they have many benefits to us; but what is the benefits of researching fossils and ancient species?
Technology
explainlikeimfive
{ "a_id": [ "dk0yxk2" ], "text": [ "Studying ancient species gives us a better understanding of how species have developed over time. Understanding this gives us a better model to predict where they may go in the future, and a better ability to understand the relation between environmental factors and spe...
[ "url" ]
[ "url" ]
6mfke2
Why are computers unable to decode CAPTCHA?
Technology
explainlikeimfive
{ "a_id": [ "dk161vw", "dk16hf5", "dk16oz6", "dk177b9" ], "text": [ "Google uses captchas to make you do their job. You might have seen text pics from actual books a lot recently. These texts are actually from books which Google's OCR couldn't understand. This was done for making digital books...
[ "url" ]
[ "url" ]
6mgc6e
How do games in a single console generation go from looking one way to looking way better and performing better graphically on the same hardware?
ELI5: How do game devs make games like the original Resident Evil on PS1 with the blockier looking textures and characters to RE3, which looks better and plays better. Additional games like the original Uncharted vs. Uncharted 3 or The Last of Us are both on the same generation of consoles but TLoU and U3 look much bet...
Technology
explainlikeimfive
{ "a_id": [ "dk1cwdx" ], "text": [ "Often they're not taking full advantage of the hardware out of the gate, as they're still learning how to best apply the features of the technology. As an example, let's go back to the Sega Genesis. Here's a launch title for the platform, [alex kidd]( URL_0 ). Look at h...
[ "url" ]
[ "url" ]
6miuns
Why can USB-C be the same plug on both ends, but regular USB-A always had to go from A to a different form factor?
Technology
explainlikeimfive
{ "a_id": [ "dk2hazz" ], "text": [ "The names are a bit misleading. USB was designed to be super cheap so instead of having expensive chips that could automatically determine which is the device and which is the controller they made two plugs, type A and type B. It would always be type A in the controller...
[ "url" ]
[ "url" ]
6mj59b
Why do journalists and producers have to ask for permission to use a tweet or a video, but they don't ask for permission to (famous) people (politicans, rappers, etc.)?
Technology
explainlikeimfive
{ "a_id": [ "dk206mp" ], "text": [ "In America, depending on the state, there are different rules for dealing with public figures lives and private citizen's lives. A media outlet could report any publicly available tweet, but why would it?" ], "score": [ 3 ], "text_urls": [ [] ] }
[ "url" ]
[ "url" ]
6mjm9n
How is high-speed internet and on-demand television transmitted over what is basically just a thin copper wire?
Technology
explainlikeimfive
{ "a_id": [ "dk2cibt" ], "text": [ "Radio, WiFi, Cable Internet all work on the same principles. Fiber internet works slightly differently. In the first 3 cases, the digital signal is converted to an analog one. Several frequencies are chosen as carrier waves (eg. on FM radio it's 2 frequencies near a tar...
[ "url" ]
[ "url" ]
6mkgar
Why audiologists don't suggest bone conduction technology over cochlear implants?
brief context: I'm deaf in my right ear. The doctor suggests implants but I'm not eligible for them where I live. But bone conduction works for me, so I'm curious why I wasn't pointed towards the technology earlier. Is it something to do with the age of the tech, or just limited application?
Technology
explainlikeimfive
{ "a_id": [ "dk29w4u" ], "text": [ "Because they do not fix the same problems. Cochlear implants replace the small bones of the inner ear when there is a major defect with them or they are missing all together. Bone conduction tech relies on the inner ear bones being mostly intact and the defects causing ...
[ "url" ]
[ "url" ]
6mlizm
how font designers can design for Japanese and Chinese, languages that both use millions of individual Chinese characters?
edit: I guess I had overestimated how many characters these languages use -- as many pointed out, it's only tens of thousands, at the most. Thanks for the great responses, though!
Technology
explainlikeimfive
{ "a_id": [ "dk2jwe3", "dk2qj10", "dk2fw6e", "dk2n8e5", "dk2m9kl", "dk2rxrs", "dk2fiq6", "dk2mv9u", "dk39rij", "dk2jy59", "dk2k7pg", "dk2m9u9", "dk331rb", "dk2ml8j", "dk2kz40", "dk2llwa", "dk2mtdb", "dk335op", "dk2sn1s", "dk2oq41", "d...
[ "url" ]
[ "url" ]
6mlsbm
How do metal detectors not detect themselves?
Technology
explainlikeimfive
{ "a_id": [ "dk2i7c9" ], "text": [ "the easiest way to think of it is like a flash camera. so the flash is a bulb with a casing that only allows the light to leave in one direction. It then reflects back into the lens and a picture is formed of everything that reflected light in that direction within a se...
[ "url" ]
[ "url" ]
6mlymv
During deep-space fly-bys, satellite reconnaissance etc. what's with all the composite images, false colors, and "recreations"? Why can't NASA/the ESA just take a photo?
Technology
explainlikeimfive
{ "a_id": [ "dk2it45" ], "text": [ "When youre 37 times further from the sun everything can look pretty dim and grey. The cameras on these craft also don't always image the same wavelength band as human eyeballs. The original photographs are therefore often quite washed out or at incorrect wavelengths. Sp...
[ "url" ]
[ "url" ]
6mm8au
How did Satoshi Nakamoto, the creator of Bitcoin, stay anonymous?
He would even post regularly on bitcoin forums and published a lot of code. Were absolutely no identifying details found (stylometry for text or code, metadata, etc.)?
Technology
explainlikeimfive
{ "a_id": [ "dk2zz5a" ], "text": [ "He took extra care to always communicate over anonymous lines, such as Tor, and avoided giving any information that could connect his real identify with his alterego. Seeing as he went so far to do this, he probably is also a person who takes privacy and anonymity serio...
[ "url" ]
[ "url" ]
6mmkir
Why are software development tools freely available yet photo and video editing software prices so high?
Granted there are paid tools, IDE's and features but an average Joe can get started building software for nothing. Whereas if you wanted to start learning video production or photo editing there is often no free tier (sometimes a short trial) and then you are stuck with purchasing software for more than its worth to an...
Technology
explainlikeimfive
{ "a_id": [ "dk2o3x0", "dk2oe5k", "dk2t3iq" ], "text": [ "There are free options for photo editing as well. GIMP is widely popular. Why are there no free ones? Because programmers that write code for you without asking for anything in return are angels. And beggers shouldn't be whiners.", "For...
[ "url" ]
[ "url" ]
6mnweq
Why do download websites allow fake download buttons/viruses to be on their website?
Seems a little counterintuitive
Technology
explainlikeimfive
{ "a_id": [ "dk2yx2e", "dk2z8q7", "dk31ksx" ], "text": [ "They're ads that the companies with the downloads are paying for. Many sites with the fake download buttons are either illegal or not the main route of downloading things so they see less traffic and have to find alternate methods of financ...
[ "url" ]
[ "url" ]