Lori's Page
RSS FeedThis is a blog written by Lori where the topic is about IT, find Lori's writing on non IT Topic at Medium for more info.
Featured
In C/C++, array is just a pointer..
Published: at 05:04 AMArray is derived data type that has been used anywhere due to its ability to constructed primitive data types (int, float, char) and grouped multiple value of the same type together.
Building an Observability Pipeline for Go Service with Grafana, Loki, and Promtail
Published: at 07:58 PMDebugging a service with less information to analyze could be pain in the ass, especially when there are multiple services communicate to each other. Sometimes we need to move from one server to another just to check the log files and analyze it or utilize `grep` . While obviously not everyone has access to the server itself.
Accelerating Python with Protobuf: Asynchronous Messaging using RabbitMQ
Published: at 07:56 PMIn today’s software industry, applications are becoming increasingly complex, moving beyond simple server-client relationships. Infrastructure complexity has grown significantly with the shift toward Microservices Architecture. In this approach, software is broken down into smaller, independent services. With these separate components, ensuring effective communication between services is crucial.
HashMap, Between Separate Chaining and Open Addressing, the What and the How
Published: at 07:55 PMHashMap, a data structure that efficiently stores key-value pairs, also a data structured loved by programmer because of its advantage with fast lookup, insertion, and deletion which typically have an average time complexity of O(1). It uses hash function to compute an index into an array of buckets where the value can be found.
Why signed int -10 is higher than unsigned int 5 in C?
Published: at 06:08 PMI just scrolling Twitter when I found an interesting tweet about C code screenshot and its behavior, as shown in the attached image, the code looks just fine until you look at code execution result.