Category: Technical
-
Avant UI | Bootstrap UI Kit
I liked the starter template for bootstrap using the Avant UI. I think this was a quick way for RAD, and instead of figuring out a layout that might fit your needs. Avant UI is a free Bootstrap UI Kit for web development— Read on www.avantui.com/ They collect minimal information and if you would like…
-
Spring Boot loading static content
We will try to quickly how to go about loading and serving static content using Spring Boot 2. There was a difference in how boot 2.0.0 was loading static resources to 2.1 version now. In this article, we will take a simple web application and load the static resources that are defined in the resource…
-
Design benchmarks
This is a long-form write-up. The comment that goes something like this., Which means that the people who speak louder online, with higher frequency and reach, are not necessarily the ones striving for Independence, Depth, Honesty, or Breadth through the content they create. They are not necessarily the ones equipped with the experience and knowledge…
-
Quickest way of getting an custom error message in Spring Boot 2.x
There are different ways to get a custom error message page in spring boot. The following solution worked for my web project. Here is the overview of the structure. Pic To start with, if there is 404 error, then we want a custom error page showing up instead of the spring boot’s default page. The…
-
Free-code camp Inventory update solution
One other interesting problem with the inventory update challenge from freecodecamp. After this, it is going to be the modules for creating calculators and other challenges. function updateInventoryWithArr(curInv, newInv) { var arr1 = curInv; var arr2 = newInv; var finalOutPutArr = []; var arr1Map = new Map(); var arr2Map = new Map(); var arr3Map =…