the missile knows where it is EXPLAINED

  Рет қаралды 24,122

oflatt

oflatt

Жыл бұрын

Do you know where you are? I love this meme, so in this educational video I dissect what the true meaning of the missile knows where it is is.
If you liked this video consider subscribing, it would help me out.

Пікірлер: 58
@gatorslife22
@gatorslife22 11 ай бұрын
The ironic part is that what he is saying is actually codeable
@konstantink.2127
@konstantink.2127 Ай бұрын
I feel like because he says it in a way that's pretty much codeable right away, it is close to incomprehensible for most people lol.
@mr.ballstone1914
@mr.ballstone1914 Ай бұрын
Well yeah because he’s just describing the code of the missile
@karoshn
@karoshn 25 күн бұрын
kzbin.info/www/bejne/mWqXk3SCdsx4hK8si=4rTPpPK2hfw_sXdK this dude coded it in JS
@tjdragon7993
@tjdragon7993 10 күн бұрын
The only problem with his explanation is that he's using variable names that are incredibly confusing and unhelpful. This demonstrates the value of picking sensible, easy to understand variable names in your code.
@Pancakewagon26
@Pancakewagon26 9 күн бұрын
Probably because someone coded the computer systems in the missile.
@maxime5257
@maxime5257 Жыл бұрын
abs(where it isn't - where it is) = abs(n't) = absent. QUICK MATH
@Megalomaniakaal
@Megalomaniakaal Жыл бұрын
Absinthe tend to do that to ya.
@deezniel2024
@deezniel2024 9 ай бұрын
That is true only if (where it is=n't/(n't-1))
@diamondthree
@diamondthree 6 ай бұрын
quick maffs
@theta3404
@theta3404 2 ай бұрын
Wait but wouldn't |n't| be yes? Like a positive version of n't.
@alejrandom6592
@alejrandom6592 Ай бұрын
Wait
@pixelmace1423
@pixelmace1423 9 ай бұрын
Dumbed down/explanation version as translated by yours truly: The missile simulates where it is and how to reach the target with its guidance system. If it senses that its simulated position is different from its current position, it adjusts the simulation to make it more accurate. Example: The simulation says “oh move this fin clockwise to go left” The missile follows the simulations command but uh oh! It went RIGHT! “DAMN IT I WAS WRONG” says the system, so it fixes itself to not FUCK UP next time.
@wahtx7717
@wahtx7717 3 ай бұрын
Thank you
@user-mg9uf9rc5o
@user-mg9uf9rc5o 17 күн бұрын
🤓
@GlobalWarmingSkeptic
@GlobalWarmingSkeptic 3 ай бұрын
We always get caught up in where the missile is, but we never bothered to ask how the missile is.
@gavinpfistergavi7803
@gavinpfistergavi7803 Жыл бұрын
Ah yes I fully understand and am not confused whatsoever
@ElectricMahatama
@ElectricMahatama 23 күн бұрын
you should know what you understand by understanding what you dont understand
@TormentDaProtogen
@TormentDaProtogen 4 ай бұрын
1:36 that series of repeated "error" messages at the end, as if it broke something somewhere in your software you can feel the rising, confusion-induced (and confusion-inducing) panic rising as the meme goes on
@kln.b5631
@kln.b5631 2 ай бұрын
Bro gave up halfway in. 😂
@afro_giraffe
@afro_giraffe Жыл бұрын
Okay but does the missile know where I am?
@GenericOceanLinerHistorian
@GenericOceanLinerHistorian Жыл бұрын
Yes.
@B4nanafr3d
@B4nanafr3d 6 ай бұрын
It knows where you aren’t, so that’s a start.
@BananaBalls7
@BananaBalls7 4 ай бұрын
What is your radar cross section
@HastyThots
@HastyThots Ай бұрын
@@B4nanafr3dYou win XD
@Azsx282
@Azsx282 Ай бұрын
class MissileGuidanceSystem: def __init__(self): # Initialize the missile guidance system with no known positions self.current_position = None self.previous_position = None def update_position(self, new_position): # Update the current and previous positions of the missile self.previous_position = self.current_position self.current_position = new_position def calculate_deviation(self): # Calculate the deviation between the current and previous positions if self.current_position is None or self.previous_position is None: return "Error: Unable to calculate deviation without previous positions." deviation = abs(self.current_position - self.previous_position) return deviation def correct_position(self, target_position): # Calculate the correction command to move the missile towards the target position if self.current_position is None: return "Error: Unable to correct position without current position." correction = target_position - self.current_position return f"Correction command: Move {correction} units towards the target position." # Example usage: missile_system = MissileGuidanceSystem() # Update the missile's position missile_system.update_position(100) missile_system.update_position(110) # Calculate the deviation between the current and previous positions deviation = missile_system.calculate_deviation() # Provide a correction command to move the missile towards a target position correction_command = missile_system.correct_position(120) # Display the results print("Deviation:", deviation) print(correction_command)
@maris4621
@maris4621 29 күн бұрын
dude just implemented the copypasta guidance algorithm, love it
@Azsx282
@Azsx282 29 күн бұрын
@@maris4621 I love it too
@MysteriumFX
@MysteriumFX 9 күн бұрын
i got lost in the first sentence when "where it is" was used as an operand in the equation to find out where it is
@Bean_guy2
@Bean_guy2 2 ай бұрын
Telling my kids this was Oppenheimer
@Melody_Raventress
@Melody_Raventress 7 ай бұрын
💕 Love this, just love the... acceleration.
@choonuyehara5709
@choonuyehara5709 3 ай бұрын
It’s basically saying (after replaying and pausing the video to many times) (Position.a-Missile is where it is now. AKA current position. Remember that) that it knows where it is (I), because it knows “where it isn’t” (S).Then it subtracts the s-I, or I-s to get (d) ( “where it isn’t” is everywhere except for its CURRENT position) The missile knows where to go by use it (d) to make commands (Position .b is where it is CURRENTLY)Then after it moves let say 2 inches, it’s no longer at pos.a And remember how I said “where it isn’t is everywhere except for its CURRENT position” well the missile is now in the place we USED to call “where the missile isn’t”. Another way to think of it is. Image a perfectly round kittie pool. Inside is a rubber duck. The water around rubber duck is where it isn’t (a) The duck is where it is (d) The duck moved an inch. The duck in now in a (a)=where it is’t
@llllllll4206
@llllllll4206 13 күн бұрын
This whole video is a nonsense meme made to confuse people to show how you can overcomplicate an explenation. Nobody knows this for some reason and thinks it is a real explenation.
@antikoerper256
@antikoerper256 3 ай бұрын
I lost it at how you stopped drawing for a while after 0:58
@talhashah9594
@talhashah9594 5 ай бұрын
Now this makes a bit more sense
@oldmonkey6753
@oldmonkey6753 Жыл бұрын
Very much so
@ThatoneRussian153
@ThatoneRussian153 4 ай бұрын
Nice background, dude.
@t750rf
@t750rf Жыл бұрын
Yes
@Finley-iy5xf
@Finley-iy5xf 2 ай бұрын
I have more questions than before
@aydencarter4799
@aydencarter4799 3 ай бұрын
The most understandable thing:
@ink2467
@ink2467 11 ай бұрын
i am the missile
@tigrillol5924
@tigrillol5924 11 күн бұрын
Ah yes
@Frankie48902
@Frankie48902 Жыл бұрын
Where it it
@IvanSteinkovich
@IvanSteinkovich 3 ай бұрын
GEA is Guidance Equalizing Apparatus
@JohnDoe-kf3rd
@JohnDoe-kf3rd 2 ай бұрын
I'm sorry can you repeat that
@Sturmmoser
@Sturmmoser 4 ай бұрын
😧
@Steak25gaming
@Steak25gaming 3 ай бұрын
Math be like
@gaus1715
@gaus1715 Жыл бұрын
Pᵣₒmₒˢᵐ
@JoeOvercoat
@JoeOvercoat Жыл бұрын
1:23 That should not a include a question mark, much less two. Punctuation has a structure for a reason, and all of you need to stop using question marks simply because you lack any self-confidence such that you don’t know how to post a declarative statement that you’re unsure of. Jesus!
@oflatt
@oflatt Жыл бұрын
???
@JoeOvercoat
@JoeOvercoat Жыл бұрын
@@oflatt Now that's an appropriate use of a question mark, in series even. We are making progress. Baby steps!
@user-tj1vg4zn5p
@user-tj1vg4zn5p 3 ай бұрын
¿
@Chicken_Eyes
@Chicken_Eyes Ай бұрын
It’s not rocket science my dude
@panickal
@panickal Жыл бұрын
It's funny audio but quite stupid concept, missile only needs to know where it needs to go, not where it isn't in world space.
@k_otey
@k_otey Жыл бұрын
it needs to know where it is, to go where it needs to though
@panickal
@panickal Жыл бұрын
@@k_otey Missile only cares for how to hit its target in relative/local space
@Jasekingg
@Jasekingg Жыл бұрын
But won't knowing where it isn't make it more accurate? Like if it has a command on where it needs to go from start, just like a script/ programming, it needs to know that it isn't there. In theory, you need to know that you aren't somewhere to be somewhere, which makes more sense in the relm of programing
@Eastsidegeorgiaboy
@Eastsidegeorgiaboy 6 ай бұрын
Thats qhy soviet misslea suck. They don't do the complex thinking.
The Missile Knows Where It Is, But It's Actually A Javascript Tutorial
1:53
RobertElderSoftware
Рет қаралды 450 М.
Why do Convolutional Neural Networks work so well?
16:30
Algorithmic Simplicity
Рет қаралды 37 М.
How many pencils can hold me up?
00:40
A4
Рет қаралды 17 МЛН
Super sport🤯
00:15
Lexa_Merin
Рет қаралды 20 МЛН
когда достали одноклассники!
00:49
БРУНО
Рет қаралды 2,7 МЛН
Intercontinental Ballistic Missile Gambit (real opening)
2:38
ChessPage1
Рет қаралды 2,5 МЛН
Rocket Guidance Navigation and Control
18:49
T-Zero Systems
Рет қаралды 81 М.
KF3BJ SUNSDR DX
KF3BJ Carlos
Рет қаралды 1
Why isn't the speed of light infinite? What if it were?
13:05
Arvin Ash
Рет қаралды 818 М.
Is Your Car Safe From Supermaneuverable Air-Defense Fighter Aircraft?
6:01
Bosnian Ape Society
Рет қаралды 8 МЛН
the circuit royal piano is meta
0:55
K3W3L
Рет қаралды 95
Tennison Gambit Intercontinental Ballistic Missile Variation
2:47
Bosnian Ape Society
Рет қаралды 8 МЛН
Why do calculators get this wrong? (We don't know!)
12:19
Stand-up Maths
Рет қаралды 2,1 МЛН
Sea Shanty 2 on stepper motors
2:06
SpaceyMan
Рет қаралды 1,4 МЛН
C-RAM: Oh Look! A CIVILIAN airliner 😨☠️
0:56
Conflict Zone
Рет қаралды 7 МЛН
ИРИНА КАЙРАТОВНА - ПАЦАН (MV)
6:08
ГОСТ ENTERTAINMENT
Рет қаралды 757 М.
Adil - Серенада | Official Music Video
2:50
Adil
Рет қаралды 68 М.
Amre - Есіңде сақта [Album EMI]
2:16
Amre Official
Рет қаралды 138 М.
Қайрат Нұртас - Қоймайсың бей 2024
2:20
Kairat Nurtas
Рет қаралды 901 М.
Artur - Erekshesyn (mood video)
2:16
Artur Davletyarov
Рет қаралды 206 М.
BABYMONSTER - 'LIKE THAT' EXCLUSIVE PERFORMANCE VIDEO
2:58
BABYMONSTER
Рет қаралды 9 МЛН