Sidharthan Chandrasekaran Kamarajthebugshots.dev·Sep 12, 2023Synchronising Periodic Tasks and Graceful Shutdown with Goroutines and Tickers | GolangGoroutines and channels are very useful and powerful primitives provided in the Go programming language for concurrently handling events, signals, and other asynchronous operations. The ticker can be used to create a repeatedly firing timer that will...101 readsGolanggolang
Abhismanabhii85.hashnode.dev·Jan 4, 2023What is POSIX and how does it translate to KubernetesPOSIX stands for Portable Operating System Interface. It's a set of standards that define a common interface for operating systems. Unix was the original operating system developed but POSIX came around as a standardization to address issues between ...134 readsKubernetes
Mattia Giambirtoneblog.nocturn9x.space·Jun 22, 2022Search files by content on LinuxThe problem Have you ever found yourself looking for a document in your PC and not being able to find it because you only remember its contents and not its name? If so, then this post may be for you! First attempt: find + cat + grep If you're not ter...90 readsLinux
Jesús Torresjesustorres.hashnode.dev·Mar 30, 2015Introducción a las señales POSIXLos sistemas operativos compatibles con el estándar POSIX implementan un tipo de interrupción por software conocida como señales POSIX. Estas son enviadas a los procesos para informar de situaciones excepcionales durante la ejecución del programa, co...552 readsNotas sobre Sistemas OperativosLinux
Jesús Torresjesustorres.hashnode.dev·Mar 2, 2013BSD socketsPOSIX sockets es una parte de la especificación POSIX. POSIX son las siglas de Portable Operating System Interface, una familia de estándares especificados por el IEEE para mantener la compatibilidad entre sistemas operativos. POSIX define una API (A...441 readsNotas sobre Sistemas Operativosunix