Soham Kamani – Blog
-
Mục Lục
App Engine Scaling – Basic, Manual, and Automatic Scaling (With Examples)
June 29, 2022
In this post, we’ll learn how to manage and scale your App Engine resources, and the difference between basic, manual, and auto scaling. We’ll also learn how to manage instance classes to increase the memory and CPU available to each instance.
-
Monitoring for Google App Engine: How to View Logs and Metrics
June 18, 2022
We will learn how to view application logs for our AppEngine application, as well as view metrics for throughput, latency and resource usage.
-
Deploying a Java Web Application to Google App Engine
June 18, 2022
In this tutorial we will learn how to deploy and run a Java Spring Boot application to Google App Engine.
-
Building a REST API With Node.js Express and MongoDB
May 17, 2022
A tutorial on building a REST API with Node.js using Express.js and MongoDB
-
Creating a MongoDB Replica Set Using Docker
May 12, 2022
This tutorial is a beginner friendly way to set up your own MongoDB replica sets using docker, and docker-compose.
-
Implementing Set Data Structures in Golang (With Examples)
May 11, 2022
This post describes how we can use the existing native data structures to implement sets (and hash-sets) in Go.
-
How to Execute Shell Commands With Node.Js
May 06, 2022
This tutorial will teach you how to execute shell commands, and even your own custom shell scripts with Node.js.
-
Working With Time, Duration, and Dates in Golang – With Examples
April 20, 2022
This tutorial will teach you how to work with Time in Go (Golang) – including how to parse and format date-time strings, add and subtract time durations, and get the current system time.
-
How to Encode and Decode Base64 Data from the Command Line (With Examples)
March 19, 2022
A tutorial on encoding and decoding data into Base64 using Unix command line tools
-
Creating a RESTful HTTP Server in Spring Boot (Java) – With Full Examples
March 11, 2022
This tutorial will explain how to run a RESTful HTTP server using the Spring Boot framework.
-
Session Cookie Authentication in Node.js (With Complete Examples)
February 22, 2022
How to authenticate users using sessions and cookies in a Node.js server application
-
Using the Builder Pattern in Javascript (With Examples)
November 29, 2021
Learn how to use the builder pattern in Javascript, and see some code examples, as well as advanced concepts like validation and fixed attribute options.
-
Golang’s “defer” Explained (With Examples)
November 28, 2021
This post talks about the special “defer” keyword in Go. We look at some advanced features and code examples to know how and when to use “defer” in your Go application.
-
A Complete Guide to Using Google BigQuery in Java (With Examples)
November 07, 2021
This post will highlight the basics of BigQuery and how to read, write and administer your BigQuery dataset in a Java application.
-
Using an SQL Database in Go (With Production Readiness)
September 22, 2021
This post will go through how to interact with an SQL database in Go, and how to make your Go application production ready when it comes to connecting and querying your database server.
-
Using the BusyBox Docker Image for Building Applications : A Complete Guide
August 27, 2021
This post will go through how to build and run a BusyBox container in Docker and run custom executables on it, using Go (Golang) as an example
-
Making REST API calls with TypeScript (With Examples)
August 18, 2021
A tutorial on how add types to REST API calls using Typescript.
-
Web Security Basics – An Introduction to the Essential Concepts Behind a Secure Website
August 01, 2021
A comprehensive introduction to web security basics like XSS, CSRF, SQL injection, and other important concepts to keep in mind when creating a website.
-
A Complete Guide to HTTP/2 in Node.js (With Example Code)
August 01, 2021
This post will explain what HTTP/2 is, and how we can make use of its features in Node.js. We will learn how to create an HTTP/2 client and server, along with some advanced concepts like routing and timeouts.
-
Running a Java Maven Project from the Command Line(CLI) – With Example Code
July 18, 2021
A tutorial on how to run a java application with maven on the command line