-
Project AI code update
AI code is a programmable calculator for Android.
AI code supports Forth-style definitions, variables, code import and lamda expressions. The latest update adds Vector/Matrix operations and statistics. Along with the color coded editor it is a new concept of using a programmable calculator.// Vector, Matrix in variable [ 1 2 3 ] "Vector " + sto.v1 [ [ 3 2 1 ] [ 1 0 2 ] ] "Matrix " + sto.m1 rcl.v1 rcl.m1 // Matrix multiplication [ [ 1 2 ] [ 0 1 ] [ 4 0 ] ] [ [ 3 2 1 ] [ 1 0 4 ] ] * // solve system of equations [ [ 1 2 3 ] [ 1 1 1 ] [ 3 3 1 ] ] [ 2 2 0 ] solve // Matrix invert [ [ 1 2 0 ] [ 2 4 1 ] [ 2 1 0 ] ] invSee the pre installed scripts for more examples.

-
Hulopo'e Beach, Maui, Hawaii
The Hulopo'e Beach Park is located next to the Four Seasons Hotel on the Lana'i island, Hawai'i.
-
Westin Maui Resort, Ka'anapali, Maui, Hawaii
I was in Maui for a few days at the Westin Maui Resort, Ka'anapali. The Garden next to the pools just nicely matched the "wwp921 Set" event of WorldWidePanorama.
-
Project AI code
AI code is a programmable calculator for Android.
It is also available within the StockRoom App to support financial calculations.AI code supports Forth-style definitions, variables and lamda expressions. As an engineer, I have been using a HP calculator since University and this is how I imagine a modern programmable calculator. The app comes preloaded with lots of example code to try out.
Use :clearcode to remove all examples, and :defaultcode to restore all examples.
See also Project AI code update and AI code calculus examples
AI code @github
Observe the secret message to find out what AI stands for and enjoy the psychedelic dots while staring at the keys.
-
Project StockRoom
StockRoom is a financial stock tracking app for Android which I have developed with some talented young engineers.
It was a great learning experience using the most recent Android APIs and the Kotlin language to create a native app. The code structure is clean and simple and is using LiveData technology to present the stock data in all the activity screens.
See StockRoom @github