Jose Yamut, Jr.
A noob geek. Application developer @ IBM. Loves Linux. Uses Ubuntu. Android advocate. Fond of +rw but seldom has time 4 both. (My views are mine alone.) 😎😋🤖
Hello World! v2.0
What is with this Hello World? A lot of people are probably wondering why a fresh WordPress install comes with the intial Hello World! post by default. For the non-techies and non-programmers it ...
(… and Android Auto on Samsung A52 / Android 11) The Mazda Connect Navigation System on my 2019 Mazda 2 1.5L A/T Hatchback stopped functioning this year (2021). I cannot remember exactly when or which month, but it was definitely closer to its 2nd periodic maintenance schedule (PMS) which happens in the middle of each...
Consider a List of Color objects with attributes of index, name and group. This object is defined as, Group is simply an Enum of, My list of colors are the following, Now, I want to divide these colors into their own sub-lists of color grouping based on the value of the object’s Group attribute. Traditionally,...
It is not uncommon for a Java application to have a number of properties that needs to be defined for it to to run smoothly at start. While these configurable parameters that are required by the app can be set in the code, placing those outside is a more logical and cleaner approach. Things like...
It Stutters Yes, it does. Badly. The lag is very noticeable and happens a lot of times. I cannot even just turn a blind eye on it and pretend there is no stutter. Because it does. Granted there are moments where everything goes smoothly. Not buttery smooth still. Yet, when I’ve gone on a string...
Say I have these numbers in an array, for example: I want to do something with that set of numbers, such as taking out null values, and extracting only the odd ones. Too take it further, maybe I want an even number or two mixed in the processed list as well. So I have this...
Did a simple, customized SQL query builder that’s only specific for UPDATE statements some time early last year. Thought I’d just write it down here. It was a smaller part of a bigger application. It wasn’t required for all update cases, but a number of them did. I’ve mostly re-written it from memory. It should...
I recently started on the path on building content on the fly that gets sent out as soon as possible, using a template engine, but from a back-end perspective. If that makes sense? This is for an event-driven application that sits there and listens for incoming messages. A simple one. Consume the message as soon...
From time to time I get some of this odd API response from requesting information for a specific something. I expect the response data to be a simple JSON object. Instead I am looking at a JSON array. I suppose that is still simple enough and it’s not so odd. This kind of response happens...
Books Love to read books. When I was still in Primary and Secondary I must’ve read every one of the Hardy Boys and Nancy Drew series that the school libraries had on its shelves. Later I would go on to read titles from big authors like Tom Clancy, Michael Crichton, John Grisham, and Dan Brown...
Somebody asked me recently why their POJO validator was not working as expected. They had already followed the “code I wrote” down to a T. Emphasis on the quotes, because trust me that block of code for bean validation they used as reference from an older project I did, was pretty much a very trivial...
Yes, this is not a post about a puppy or any living, furry, four-legged companions that many people love and keep at home. Unfortunately. Rather… This is about Diablo III non-combat pets that were intentionally and unintentionally acquired during the course of playing wasting thousands of hours on this once classic and popular, hack and...
For some time now I’ve been planning on learning ReactJS. It is all what front-end developer talk about theses days. Heck, full stack application developer job offers always pair ReactJS with [back end programming language goes here] in the job description almost without fail. That learning plan has not happened yet, though, and unfortunately for...
There is this Java library that I utilize to quickly get values from JSON objects that is fairly easy to use. This would be Jayway JsonPath. More can be had at their GitHub page. It is still being actively maintained. There appear to be a number of contributors involved in this project at different points...
My appetite for media consumption has gone up several notches during the whole pandemic WFH (work from home) phase that has been happening for a long time since March of 2020. Video content to be more exact. All the more so when there was an ongoing lock-down/quarantine/curfew and pretty much all that one can do...
Part 2 – Accessing a Resource Recap This is a continuation of the previous post that I made some time last month. You can start reading from there to get more context – https://www.joseyamut.xyz/2021/02/24/spring-oauth2-using-password-grant-type-with-additional-headers The first part dealt with getting the access token from a 3rd party token service provider using a password grant. The...