user-profile-img

ahmadreza marashi

@ahmad1997rezamarashi_pgzz1two4• Mar 13, 2023open-state

[Best Version] The Great Dictator Speech - Charlie Chaplin + Time - Hans Zimmer (INCEPTION Theme) - YouTube

snapshot

2:26

-

[Best Version] The Great Dictator Speech - Charlie Chaplin + Time - Hans Zimmer (INCEPTION Theme) - YouTubewww.youtube.com

user-profile-img

ahmadreza marashi

@ahmad1997rezamarashi_pgzz1two4• Feb 22, 2023open-state

GopherCon 2017: Mitchell Hashimoto - Advanced Testing with Go - YouTube

snapshot

1:00

snapshot

34:10

-

GopherCon 2017: Mitchell Hashimoto - Advanced Testing with Go - YouTubewww.youtube.com

user-profile-img

ahmadreza marashi

@ahmad1997rezamarashi_pgzz1two4• Jan 28, 2023open-state

Billie Eilish - Bored (Audio) - YouTube

snapshot

0:00

-

Billie Eilish - Bored (Audio)www.youtube.com

user-profile-img

ahmadreza marashi

@ahmad1997rezamarashi_pgzz1two4• Jan 27, 2023open-state

GopherCon 2019: Gabbi Fisher - Socket to Me: Where do Sockets Live in Go? - YouTube

snapshot

19:34

snapshot

26:34

-

GopherCon 2019: Gabbi Fisher - Socket to Me: Where do Sockets Live in Go? - YouTubewww.youtube.com

user-profile-img

ahmadreza marashi

@ahmad1997rezamarashi_pgzz1two4• Jan 22, 2023open-state

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

user-profile-img

ahmadreza marashi

@ahmad1997rezamarashi_pgzz1two4• Jan 22, 2023open-state

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

user-profile-img

ahmadreza marashi

@ahmad1997rezamarashi_pgzz1two4• Jan 11, 2023open-state

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

user-profile-img

ahmadreza marashi

@ahmad1997rezamarashi_pgzz1two4• Jan 10, 2023open-state

بهترین فیلم و سریال های ۲۰۲۲ / Best Movies & Series 2022 - YouTube

snapshot

4:03

-

بهترین فیلم و سریال های ۲۰۲۲ / Best Movies & Series 2022www.youtube.com

user-profile-img

ahmadreza marashi

@ahmad1997rezamarashi_pgzz1two4• Jan 9, 2023open-state

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

user-profile-img

ahmadreza marashi

@ahmad1997rezamarashi_pgzz1two4• Jan 9, 2023open-state

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