ahmadreza marashi
@ahmad1997rezamarashi_pgzz1two4• Mar 13, 2023
[Best Version] The Great Dictator Speech - Charlie Chaplin + Time - Hans Zimmer (INCEPTION Theme) - YouTube

2:26
[Best Version] The Great Dictator Speech - Charlie Chaplin + Time - Hans Zimmer (INCEPTION Theme) - YouTubewww.youtube.com
ahmadreza marashi
@ahmad1997rezamarashi_pgzz1two4• Feb 22, 2023
GopherCon 2017: Mitchell Hashimoto - Advanced Testing with Go - YouTube

1:00

34:10
GopherCon 2017: Mitchell Hashimoto - Advanced Testing with Go - YouTubewww.youtube.com
ahmadreza marashi
@ahmad1997rezamarashi_pgzz1two4• Jan 28, 2023
Billie Eilish - Bored (Audio) - YouTube

0:00
Billie Eilish - Bored (Audio)www.youtube.com
ahmadreza marashi
@ahmad1997rezamarashi_pgzz1two4• Jan 27, 2023
GopherCon 2019: Gabbi Fisher - Socket to Me: Where do Sockets Live in Go? - YouTube

19:34

26:34
GopherCon 2019: Gabbi Fisher - Socket to Me: Where do Sockets Live in Go? - YouTubewww.youtube.com
ahmadreza marashi
@ahmad1997rezamarashi_pgzz1two4• Jan 22, 2023
Linux Virtual Network Devices - SoByte
the drivers for network devices do not interact directly with the protocol stack in the kernel, but rather use the kernel’s network device management module as an intermediate bridge.
The advantage of this is that the driver does not need to know the details of the network stac
A bridge is a virtual network device, so it has the characteristics of a virtual network device and can be configured with IP and MAC addresses.
Linux Virtual Network Devices - SoBytewww.sobyte.net
ahmadreza marashi
@ahmad1997rezamarashi_pgzz1two4• Jan 22, 2023
Scheduling In Go : Part I - OS Scheduler
Your program is just a series of machine instructions that need to be executed one after the other sequentially
t’s the job of the Thread to account for and sequentially execute the set of instructions it’s assigned.
I call a Thread, “a path of execution”
Scheduling In Go : Part I - OS Schedulerwww.ardanlabs.com
ahmadreza marashi
@ahmad1997rezamarashi_pgzz1two4• Jan 11, 2023
linux - How do SO_REUSEADDR and SO_REUSEPORT differ? - Stack Overflow
The protocol of a socket is set when a socket is created with the socket() function
The source address and port are set with the bind() function
The destination address and port are set with the connect() function.
linux - How do SO_REUSEADDR and SO_REUSEPORT differ? - Stack Overflowstackoverflow.com
ahmadreza marashi
@ahmad1997rezamarashi_pgzz1two4• Jan 10, 2023
بهترین فیلم و سریال های ۲۰۲۲ / Best Movies & Series 2022 - YouTube

4:03
بهترین فیلم و سریال های ۲۰۲۲ / Best Movies & Series 2022www.youtube.com
ahmadreza marashi
@ahmad1997rezamarashi_pgzz1two4• Jan 9, 2023
Redis Sentinel — High Availability: Everything you need to know from DEV to PROD: Complete Guide | by Amila Iddamalgoda | Medium
Sentinel acts as a configuration provider or a source of authority for clients service discovery.
Redis Sentinel — High Availability: Everything you need to know from DEV to PROD: Complete Guidemedium.com
ahmadreza marashi
@ahmad1997rezamarashi_pgzz1two4• Jan 9, 2023
Redis replication | Redis
there is a leader follower (master-replica) replication that is simple to use and configure
It allows replica Redis instances to be exact copies of master instances. The replica will automatically reconnect to the master every time the link breaks, and will attempt to be an exact copy of it regardless of what happens to the master.
When a partial resynchronization is not possible, the replica will ask for a full resynchronization. This will involve a more complex process in which the master needs to create a snapshot of all its data, send it to the replica, and then continue sending the stream of commands as the dataset changes.
Redis replication | Redisredis.io