12/03/2025
[Windows 11] Initial setup without forced login
12/01/2025
[Android] Sprescia app for run activity tracking
No it is not Christmas today, but here is another free, no ads, no trackers, no data collection, minimalistic app to track your run activity!
Built for Android 14+ using help from ChatGPT and icons from SVG Repo this app writes to a local Rooom DB in 1 table: run
Run view allows you to add, edit, delete run details and calculates average speed for each entry, comparing it with the previous one, giving you a quick view of your training progression. You can also export and import data to/from csv for quick backup and restore logic.
Daily stats view allows you to see daily run data and compare it to previous runs using key metrics: steps, average speed, distance, time.
Monthly stats view provides the same capability but averages the data grouping per month instead.
You can find the Sprescia project on my GitHub
[Android] MaiCar app for car expense management (refuels and maintenance)
15/12/2024
[Android] Recompile and sign APK
08/11/2024
[Google Sheets] Import data from Investing.com
DISCLAIMER: This is not a stock picking recommendation, the tickers shown are used as example and not provided as financial or investment advice.
DISCLAIMER2: Web scraping can go against usage policies so read them, understand them and abide by them. Also web scraping is notoriously flaky as small changes in the retrieved page can affect the location of the desired element(s).
We have already seen how to import data from Yahoo Finance and Coingecko, now we try to add Investing.com as source which unfortunately does not provide API, so we have to do some HTML scraping instead.
We would like to retrieve the current price of an ETF called JPNA. By looking at that page we can luckily identify a specific locator, which then allows us to do a couple string manipulation operations before getting the desired value:
function getInvestingData(path) { var result = UrlFetchApp.fetch("https://www.investing.com/etfs/" + path.toLowerCase()); var response = result.getContentText(); var start = response.indexOf(' data-test="instrument-price-last">') + 35; var end = response.indexOf('</div>', start) var out = response.substring(start, end); var strip = out.replace(",", ""); return Number(strip); }
19/10/2024
[Google Sheets] Import crypto data from Coingecko
"https://api.coingecko.com/api/v3/simple/price?ids=" + token + "&vs_currencies=usd&x_cg_demo_api_key="
function getCoingeckoData(path) { var result = UrlFetchApp.fetch("https://api.coingecko.com/api/v3/simple/price?ids=" + path + "&vs_currencies=usd&x_cg_demo_api_key=YOUR_API_KEY"); var response = result.getContentText(); var json = JSON.parse(response); return json[path]['usd']; }
04/10/2024
[Java] Get type of elements in collection using reflection
import java.lang.reflect.Field; import java.lang.reflect.ParameterizedType; //maybe you are looping over fields or have a field of type Field f ParameterizedType collectionType = (ParameterizedType) f.getGenericType(); Class<?> actualClassOfElementInCollection = (Class<?>) collectionType.getActualTypeArguments()[0];