I recently sat through a few meetings where we described doing the same thing many times and in the same way. I was seeing a pattern that could be automated. Since seeing a pattern, I began to think about tools…
I recently sat through a few meetings where we described doing the same thing many times and in the same way. I was seeing a pattern that could be automated. Since seeing a pattern, I began to think about tools…
A Software Development Perspective A process is important as it creates an expectation of an outcome. Outcomes can measure a process and result in different ways making the process essential to follow. Without a strategy, we will not confidently be…
I am the Director of Research and Development ( R&D or Engineering ) at Doxim. My team creates FinTech solutions for Loan Origination and CRM. I have six teams comprising of about 43 developers worldwide, and we are all remote.…
My favourite tool goes wherever I go. I keep it beside the bed, and it is the first thing I put in my suitcase or backpack. My favourite tool knows more about me than anything or anyone else. It carries…
Hey everyone. Life has been a little busy lately. I have every intention to start blogging again soon. If you have questions about where I have been, it means you probably do not know me well ( and that is…
I keep looking for a script to make phone numbers +0000-000-0000 into 00000000000 I always forget my friend RegEx Sample: Regex.Replace(Text, “[^0-9]”, “”)
For some applications it seems to me that the web interface may be at it is limits. For those applications that need large amounts of data on display on a single screen that also include calculations and database updates a…
s.equals(x); Will return true if the strings s and x contain the same character sequence. So: String s = new String(“foobar”);String x = new String(“foobar”); Then s.equals(x) will return true, but s == x will be false, because s and…
When you have a class inherit another class, sometimes you want the base level class to create a collection of the top-level class. In this blog I will demonstrate some basic inheritance and a little reflection trick. Note the examples…