0xViking.eth 🔮 Profile picture
Feb 26 21 tweets 7 min read
Let's talk about some basic "Networking Concepts"

This is part of the web3 developer roadmap
bit.ly/WEB3-ROADMAP

🧵👇

1/

#100DaysOfCode #100DaysOfWeb3 #21DaysOfLearnandShare #R2D2(total-Day23)
Networking is the word we use when we talk about connecting computers together so that they can share data with each other.

Local networks range from simple networks consisting of two computers to networks connecting hundreds of thousands of devices

2/
Who owns the internet?
internet is not owned by any individual or group.

The internet is a worldwide collection of interconnected networks (network of networks), cooperating with each other to exchange information using common standards

3/
Well, I mentioned that the network is interconnected so that we can share data.

Now let's see what data is and how is it transmitted.

Data can be anything, starting from sending mail to transactions at ATMs to sharing a post on social media to sending a snap.

4/
Data in the digital world is stored in the form of bits(either '0' or '1').

Few examples -
Capital letter: V = 01010110
Number: 9 = 00110110
Special character: # = 00100011

5/
Common methods of transmission

* Electrical - Represents data as electrical pulses on copper wire

* Optical - Converting the electrical signals into light pulses

* Wireless - Using infrared, microwave, or radio waves through the air

6/

*** image source from CISCO Image
Bandwidth - It is the capacity to carry data

Throughput - It is the measure of the transfer of bits across the media over a given period of time

Latency - It refers to the amount of time, including delays, for the data to travel from one point to another

7/ Image
Types of Communication Networks

-- Clients and Server --
All devices connected to a network that participate directly in the network
communication can be referred to as hosts

Hosts can send and receive messages on the network

Hosts can act as a client, a server, or both

8/ Image
-- Peer-to-Peer --

The simplest P2P network consists of two directly connected computers are then able to use this simple network to exchange data and services with each other, acting as either a client or a server as necessary

9/ Image
Communication

All communication methods have three elements in common.

The first is the message source or sender

The second is the destination, or receiver, of the message

The third is the transmission medium or channel

10/
Communication Standard :

Networking and internet standards ensure that all devices connecting to the network implement the same set of rules or protocols in the same manner.

These standards are developed, published, and maintained by a variety of organizations.

11/
When a new standard is proposed, each stage of the development and approval process is recorded in a numbered RFC document so that the evolution of the standard is tracked. RFCs for internet standards are published and managed by the IETF.

12/
Network Communication Models

There are two basic types of models to describe the functions that must occur for network communications to be successful: protocol models and reference models.

The most widely known internetwork reference model is the OSI model.

13/
The OSI model breaks network communications down into multiple processes. Each process is a small part of the larger task.

The protocols that make up the TCP/IP protocol suite can be described in terms of the OSI reference model.

14/
The IPv4 address is a logical network address that identifies a particular host.

An IPv4 address is assigned to the network interface connection for a host.

This connection is usually a network interface card (NIC) installed in the device.

15/
Every packet sent across the internet has a source and destination IPv4 address.

An IPv4 address is simply a series of 32 binary bits (1's & 0's).

The 32 bits are grouped into four 8-bit bytes called octets.

Each octet is presented as a decimal value, separated by (.)

16/
Most internal networks, from large enterprises to home networks, use private IPv4 addresses for addressing all internal devices (intranet) including hosts and routers.

However, private addresses are not globally routable.

17/
Before an ISP(Internet Service Provider) can forward a packet with a private address out to the internet, the address must be translated to a public IPv4 address using NAT(Network address translation).

18/
I can understand these are a little over the head but I believe a basic understanding of the above concept is enough to cope-up with the roadmap.

Resources:
by Sajid Mughal from #LearnWithPurpose

by @ansh9685

19/
If you think you need a detailed understanding of each concept I would recommend doing the following course by CISCO(total of ~70 hrs content, so at least the "Network Protocols and Architecture" is required). It is a 100% FREE course.
skillsforall.com/course/network…

20/
Thank you for reading till here.

I am a budding developer in web3, Started #21DaysOfLearnandShare to learn more and share.

If you like the content,
✅Like the first post
✅RETWEETS are appreciated
✅Please follow @0xViking for more such content

Thanks again
0xViking

• • •

Missing some Tweet in this thread? You can try to force a refresh
 

Keep Current with 0xViking.eth 🔮

0xViking.eth 🔮 Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @0xViking

Mar 1
Day-5(#R2D5)

Focusing on JavaScript alone can change your life.

JavaScript lets you become a:

✅ Frontend Developer
✅ Backend Developer
✅ Blockchain/Web3 Developer
✅ Game Developer
✅ Embedded Systems Engineer
✅ Mobile App Developer

Resources🧵👇
Yes, our main topic today is

"JAVASCRIPT"

This thread is part of the WEB3 developer roadmap.
bit.ly/WEB3-ROADMAP

#100DaysOfWeb3 #100DaysOfCode #web3 #developer #21DaysOfLearnandShare
As I told you already JS alone can change your life so I cannot restrict how many days you want to spend JS as part of the roadmap.

But If you decide to have strong building blocks in JS check:-

One of the best interactive courses I found by @scrimba

scrimba.com/learn/learnjav…
Read 13 tweets
Feb 28
Day-4(#R2D4)

Today's here are the resources about:-
HTTP Caching, RPC Protocol, Browser’s developer tools

As part of the WEB3 developer roadmap.
bit.ly/WEB3-ROADMAP

🧵👇

#100DaysOfWeb3 #100DaysOfCode #web3 #developer #21DaysOfLearnandShare
1/
Caching :

As yesterday mentioned our browser tries to check the local cache first to resolve DNS.

Similarly, there are CDN services that provide complete websites from their cache using the HTTP protocol.

cloudflare.com/en-in/learning…

2/
RPC Protocol :

Normally our programs and processes run locally in our system, but there are some protocols that support execution in a remote system. Such as RPC protocol, which makes it easy for the peer-to-peer networks.

guru99.com/remote-procedu…

3/
Read 6 tweets
Feb 27
Well, today let us see some more very basic yet important that we use daily and don't notice what happens in the background.

How does a WEB BROWSER work?
What is DNS, HTTP protocol?

You can start directly from 9/ tweet if you don't need basic introduction stuff.

🧵👇

1/ Image
Companies typically make free web-browsers with some financial interest in how you use their product.

With this, they are able to track your computing habits and make revenue by selling your data to third-party vendors

2/
Okay, what exactly is a web browser?

In short, it is the place where you interact with the web.

Remember: The words internet and web are not interchangeable, They are related but two different things
Read 28 tweets
Feb 25
Welcome to the first thread on our roadmap

"LINUX and Bash commands"

Below we will discuss why Linux is important, what Open Source Software is, and the basic usage of the Linux terminal

let's dive in 🧵👇

#100daysofweb3 #100daysofcode #web3 #linux #21DaysOfLearnandShare
1/ Image
You might have interfaced with Linux many times before because so many devices run Linux.

Phones, TVs, Point-Of-Sale devices, Networking devices, Game consoles, In-flight entertainment systems as well as stock exchanges.

2/
You might have also heard about the recent buzzword "cloud", which is just a Linux system.

Your favorite applications on the internet like mail, productivity suites, watching entertainment every product run in the cloud on Linux based systems.

3/
Read 24 tweets
Jan 22
Have you recently heard the word "DeFi" or "Decentralized finance" and never know what is that or anything about it?

Well here i am, to help you understand the basic details of it in simple terms

So, Lets dive in "WTF is DeFi?"

👇🧵

1/
- In the previous "WTF is" thread about ETHEREUM part 1 i told that ethereum was created with the intention to decentralize everything.

- Smart Contracts help acheive decentralization of majority of things on blockchain.

Check this 👉bit.ly/WTFisSMARTCONT…

2/
- Financial system is one main thing that runs by centralized entities like governments and intermediaries like banks

- DeFi relies heavily on - Cryptography, Blockchain & Smart Contracts

- According to @defipulse today in DeFi Total Value Locked(TVL) is $92.36B 😱

3/
Read 24 tweets
Jan 21
Well in the last thread of "WTF is" about ETHEREUM we said it pioneered the concept of a blockchain smart contract platform.

But have you ever wondered what is this "SMART CONTRACTS" is and what it does?

Lets dive into this "WTF is SMART CONTRACTS?" thread and learn more

1/
In simple words Smart contracts are translations of an agreement, including terms and conditions into a computational code.

- The term "SMART CONTRACT" was coined by a well-known computer scientist, law scholar & cryptographer Nick Szabo( @NickSzabo4 ) in early 1990's.

2/
@NickSzabo4 - It is a piece of code that can be executed automatically in a deterministic way

- Usually stored and executed on the blockchain

- Smart contracts can store, send and receive crypto currency

- Even call other smart contracts

- Smart contracts once deployed are immutale

3/
Read 10 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Don't want to be a Premium member but still want to support us?

Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal

Or Donate anonymously using crypto!

Ethereum

0xfe58350B80634f60Fa6Dc149a72b4DFbc17D341E copy

Bitcoin

3ATGMxNzCUFzxpMCHL5sWSt4DVtS8UqXpi copy

Thank you for your support!

Follow Us on Twitter!

:(