शैडोइंग अभ्यास: The Most Confused Concepts in Engineering - वीडियो के साथ अंग्रेजी बोलना सीखें

पाठ बनाया जा रहा है...
1
Think back to the last time when you were searching something on Google.
2
If you notice your browser bar, you may see something like this.
3
If we look carefully, we can see that the spaces are actually replaced by person 20, and question mark is replaced by person 3f.
4
The browser somehow transformed our query into something different.
5
Why?
6
Because the URLs are allowed to have only a limited number of characters, and in that character set, characters like space are not valid.
7
but it still needs to be sent, and therefore it is converted into something that belongs to the allowed character set.
8
This type of transformation of data from one form to another, for the purpose of storage or transmission, is called encoding.
9
And similar to this, the data can be encoded to other forms as well.
10
For example, the text hello can be converted into many different forms, for example binary, hexadecimal, or base64.
11
The encoding is not only limited to transmitting data, but has other uses as well.
12
For example, if you work on the front-end with CSS, you might have seen the color codes which have the RGB values.
13
Those values are usually written in hexadecimal for its compact nature.
14
In decimal, the same value would look like this.
15
Similarly, in HTML, you may have seen the image stack to add images to your page, which refer to the URL where the image resides.
16
While this is fine for large images, The lighter images can be directly embedded in the Base64 format via HTML or CSS to save a network call.
17
The key point to understand here is that encoding is reversible.
18
For example, anyone who sees person 20 can decode it back to a space.
19
It's about data representation, not security.
20
And speaking of security, let's talk a bit about hashing.
21
Whenever you create an account online, your password is never stored in plain text.
22
Instead, it's converted into a fixed-length string of characters, which could look like this.
23
From this string alone, it is impossible to construct the original password again, and this type of transformation is possible by a process called hashing.
24
Hashing is a process where you convert data into another irreversible form by the use of a hashing algorithm, which does some complex math behind the scenes to achieve this.
25
So when you login, the password that you enter is hashed again and compared with the hash that exists in the system.
26
If they are same, the login is successful.
27
Hashing is defined by three main things.
28
First, that it is one way.
29
You can't reverse a hash to retrieve the original input.
30
Second, it is deterministic.
31
The same input always produces the same hash.
32
And third, is that it is always of fixed length.
33
So, no matter how long your password is, the hash always will be of the same size.
34
Hashing is not only used in passwords, but it has other applications as well.
35
For example, in file downloads.
36
If the downloaded file is corrupt, its hash would be different from the original file.
37
Whereas if the downloaded file is intact, its hash would be the same as original file.
38
If you're intrigued by hashing, check out my deep dive video on what is hashing, to learn about different hashing algorithms and hash collisions.
39
Now, what if you need that one-way transformation to be two-way, but only for some selected people or systems?
40
That's where encryption comes in.
41
Imagine that you have a top-secret document on your computer.
42
Anyone with access to your machine can open and read it.
43
Encryption provides a way to transform your document or data into a form
44
that can only be reversed by the use of a key.
45
So whoever holds the key can access the data.
46
If someone tries to open it without the key, they'll only see gibberish.
47
Let's take a simple example of encryption, one that dates back over 2000 years.
48
Julius Caesar used a basic encryption technique to protect messages of military importance.
49
It's now famously known as Caesar's cipher, or the shift cipher.
50
The idea?
51
Shift each letter of the message by a fixed number of positions in the alphabet.
52
say 3.
53
So if we take the word hello and shift each letter by 3, H becomes K, E becomes H,
54
L becomes O, the next L also becomes O, and O becomes R.
55
That gives us KHOOR.
56
To anyone who intercepts this message without knowing the shift, it looks like gibberish.
57
But if the recipient knows that each letter was shifted by 3, they can just reverse the shift and decrypt the message back to hello.
58
This kind of encryption is laughably easy to crack today, especially with modern computers.
59
But it beautifully illustrates the core idea.
60
The message is only readable to someone who has the key.
61
Modern encryption is, let's just say, a bit more advanced.
62
Instead of the letter shifts, we now use complex mathematical algorithms that are designed to be unbreakable by brute force, at least with current computers.
63
Quantum computing might change that, but that's a topic for another video.
64
Take WhatsApp, for example.
65
Every message that you send is encrypted on your device before it even leaves your phone.
66
If someone tries to snoop on the network, all they see is garbled nonsense.
67
Only the person that you are messaging with the matching decryption key can turn that noise back into actual words.
68
That's encryption, locking your data in such a way that only the right key can unlock it.
69
To put it all together, encoding is like translating data into another format so computers can store or transmit it properly.
70
It's not about secrecy, it's about structure and readability.
71
And yes, it is completely reversible.
72
Some examples are UTF-8, binary, hexadecimal, and base64.
73
Hashing takes your data and runs it through a special formula to create a unique, fixed-length code.
74
This code doesn't reveal the original data, and you cannot convert it back.
75
That's why it's perfect for safely storing passwords or checking if a file has been tampered with.
76
If the data changes, the hash changes too.
77
Encryption is about confidentiality.
78
It transforms your data into something unreadable, but only temporarily.
79
Because unlike hashing, encryption is reversible if and only if you have the right key.
80
That's how secure messaging apps like WhatsApp protect your conversations even from their own servers.

इस पाठ के बारे में

इस वीडियो में, आप एंरजीनियरिंग के कुछ भ्रमित करने वाले विचारों के बारे में जानेंगे। विशेष रूप से, हम डेटा के एन्कोडिंग, हैशिंग और एन्क्रिप्शन के उपयोगों पर ध्यान केंद्रित करेंगे। इन अवधारणाओं को समझना केवल तकनीकी ज्ञान के लिए नहीं है, बल्कि आपके अंग्रेजी बोलने के अभ्यास के लिए भी महत्वपूर्ण है। जब आप इन शब्दों और अवधारणाओं के साथ अभिप्रेरणा से संवाद करेंगे, तो आप अपनी अंग्रेजी में आत्मविश्वास महसूस करेंगे।

मुख्य शब्दावली और वाक्यांश

  • एन्कोडिंग - डेटा को एक रूप से दूसरे रूप में परिवर्तित करना।
  • हैशिंग - डेटा को अपरिवर्तनीय रूप में बदलना।
  • एन्क्रिप्शन - डेटा को एक कुंजी के माध्यम से पुनः प्राप्त करने योग्य रूप में परिवर्तित करना।
  • उपयोगी कैरेक्टर्स - डेटा भेजने के लिए वैध अक्षर सेट का उपयोग करना।
  • सुरक्षा - डेटा की सुरक्षा के लिए एन्क्रिप्शन का उपयोग।
  • सीज़र सिफर - एक सरल एन्क्रिप्शन तकनीक।

अभ्यास सुझाव

वीडियो में विचारों की गति और टोन को समझने के लिए, आपको अंग्रेजी शैडोइंग तकनीक का उपयोग करने की सलाह दी जाती है। पहले, वीडियो को ध्यान से सुनें और प्रमुख अवधारणाओं को समझें। फिर, shadowspeaks के माध्यम से वीडियो के साथ बोलने का प्रयास करें। इसे कई बार करें ताकि आप सही उच्चारण और लहजे को पकड़ सकें। जब आप shadow speak करते हैं, तो ध्यान रखें कि आप वीडियो की गति को अपने बोलने में घोलें। इससे आप अपनी बोलने की क्षमता को मजबूत कर सकेंगे और अन्य अंग्रेजी बोलने वालों के साथ अनुभव साझा कर सकेंगे। इसलिए, नियमित रूप से अभ्यास करें और अपनी प्रगति को ट्रैक करें।

शैडोइंग तकनीक क्या है?

शैडोइंग (Shadowing) एक विज्ञान-समर्थित भाषा सीखने की तकनीक है जो मूल रूप से पेशेवर दुभाषिया प्रशिक्षण के लिए विकसित की गई थी। विधि सरल लेकिन शक्तिशाली है: आप मूल अंग्रेज़ी ऑडियो सुनते हैं और तुरंत इसे ज़ोर से दोहराते हैं — जैसे वक्ता की छाया 1-2 सेकंड की देरी से। शोध से पता चलता है कि यह उच्चारण सटीकता, स्वर, लय, जुड़ी हुई ध्वनियाँ, सुनने की समझ और बोलने की प्रवाहशीलता में काफ़ी सुधार करता है।