shlogg · Early preview
Said Olano @josesaid

Student of Italian (A1) and Portuguese (A1). Native Spanish speaker (Born in Xalapa, Veracruz, Mexico).

Cloud Load Balancer Scaling For Distributed Systems

Cloud load balancer scales up with increased traffic, preventing single points of failure and bottlenecks in distributed systems.

Maven Java Project Compilation With Embedded Python

To compile a Maven Java project that uses internal Python, change the `executable` value in the `<configuration>` tag.

Designing Microservices Architecture With Subdomains

Organize subdomains into independently deployable components, called services. Each service consists of one or more subdomains and is owned by a specific team. Services are loosely coupled and can be deployed separately.

Indexing With SolrJ: Adding Documents To TechProducts Collection

Indexing in Solr is simple with SolrJ. Build documents as SolrInputDocument instances and pass them to SolrClient's add() methods, like this: `SolrClient.add(doc);` for the "techproducts" collection.

Uninstalling IntelliJ Plugin: Remove Plugin From Library Folder

Uninstalling a problematic plugin in Intellij Idea? Remove it from /Users/josesaidolanogarcia/Library/Application Support/JetBrains/IdeaIC2024.3/plugins to resolve issues.

Nginx HTTP Server And Reverse Proxy Basics

Nginx is an HTTP web server & reverse proxy that can also cache content, load balance, and act as a TCP/UDP mail proxy. Default runs on port 80, expose via e.g. port 3000.

Redis As A Database Cache Or Message Broker With Lettuce Support

Redis is an in-memory key-value store used as a database, cache or message broker. Lettuce supports full Redis API, including data structures & pub/sub messaging.

Deploy Containerized Apps With Ease On Azure Kubernetes Service (AKS)

Azure Kubernetes Service (AKS) simplifies container orchestration with minimal expertise required. AKS offloads complexity to Azure, providing high availability, scalability & portability for containerized apps.

Recording Java Web Apps In Docker Containers

Recording a video on my dev workflow! Watch me create & run a Java Web App in Docker, then open it on a default browser. Skip the errors, I'll improve next time! https://youtu.be/Iu1663nfhLY

IT World Tasks And Activities Diagrammed

Multiple tasks in IT include software development, testing, deployment, maintenance, security, and more. These tasks are often layered and implemented together.

Cloud Design Patterns: First 10 Explained

Cloud design patterns: 1) Fan-out, 2) Circuit Breaker, 3) Bulkhead, 4) Load Shedder, 5) Request Router, 6) API Gateway, 7) Service Proxy, 8) Event Handler, 9) Cache Aside, 10) Circuit Breaker.

Testing Apache Kafka With TestContainers Suite

Apache Kafka being tested with TestContainers suite. Lightweight Docker containers provide throwaway instances of message brokers like Apache Kafka.

PgAdmin 4: Powerful Graphical Interface For Postgres Management

pgAdmin 4 is a leading Open Source management tool for Postgres, offering a powerful graphical interface for creating, maintaining & using database objects.