- 49 swims × 2.5 km
- 12 swims × 1 km
Saturday, November 9, 2024
Summer of 2024 swimming
Thursday, November 7, 2024
Quoting email body text
Occasionally, I need to quote text in an email that I originally received through another channel. For instance, imagine you have an online form submission that gets recorded in a spreadsheet, and you want to reply to the submission via email. In a case like this, you’d copy the text from the spreadsheet, paste it into your email client, and prepare your response. To make the reply look 'natural', you might want to quote the original text with the '>' character and perhaps wrap the lines at around 50 characters for readability. Here’s a Bash one-liner that accomplishes this:
cat noquotes.txt | fold -s -w 50 | sed 's/^/> /'
You're welcome!
How to remove credit card from LinkedIn
You can remove your credit cards at the following URL:
https://www.linkedin.com/manage/purchases-payments/payment-methods
Not sure if there is a link to that page from your LinkedIn profile or it's settings.
You're welcome!
Wednesday, October 30, 2024
Najpopularnija eCommerce platforma [2024]
Koju eCommerce platformu koristite?
Postavio sam isto pitanje na Facebook grupi "eCommerce Hrvatska" (53 glasa) i r/ecommerce subredditu (202 glasa).
Prema rezultatima ankete, dvije vodeće platforme su Shopify i WooCommerce, dok Wix nije toliko zastupljen. Suprotno tome, BuiltWith Wix stavlja na drugo mjesto - kako globalno, tako i za Hrvatsku (u ovom slučaju se gledaju samo .hr domene). U oba slučaja, prema BuiltWith-u, Wix drži 3% više tržišta od WooCommerce-a.
Zanimljivo je kako u Hrvatskoj Shopify i WooCommerce drže obrnuta mjesta u odnosu na globalni poredak. Kao glavne razloge preferiranja WooCommerce-a kod nas navode se:
- neizbježna mjesečna naknada kod Shopify-a
- manji broj developera upoznatih sa tom platformom
- agresivno reklamiranje Shopify-a na razvijenim tržištima
Rezultati ankete |
BuiltWith - distribucija eCommerce platformi na .hr domenama |
BuiltWith - distribucija eCommerce platformi na cijelom internetu |
Tuesday, October 22, 2024
Listing directories and their sizes on Windows
All credits go to superuser answer.
Get-ChildItem | Where-Object { $_.PSIsContainer } | ForEach-Object { $_.Name + ": " + "{0:N2}" -f ((Get-ChildItem $_ -Recurse | Measure-Object Length -Sum -ErrorAction SilentlyContinue).Sum / 1MB) + " MB" }
Thursday, October 17, 2024
Time Tracker for Android
Time Tracker for Android is another app I made for my own use. I released it on December 4, 2010, and the last update was 5 years ago. I had pretty much forgotten about it until I started receiving constant warnings from Google Play that my app would be removed from their store. Instead of abandoning it, I decided to update it.
At that time, the app had 22 installs and exactly 0 monthly active users. AdMob was reporting lifetime earnings of $79 USD — another financial success of mine.
The first step was to move the code repository from CVS (anyone remember that one?) to GitHub. Android Studio couldn't even build the code when I opened it.
The app launcher icon, before and after the redesign |
Sample screenshot, before and after the redesign |
Time Tracker for Android has been redesigned using Material Design 3 with Dynamic Colors. Check out the short video demo here: Time Tracker for Android video demo.
To sum it up, I invested a few hours, and Time Tracker is back on track! I've also been thinking about the future of this app and my other projects. Once I finish getting my other apps through the F-Droid pipeline, I plan to open-source Time Tracker as well. This will give other developers the opportunity to contribute or fork it for their own purposes.
In the meantime, if you want to try out the updated version, you can download it directly from Google Play: Time Tracker on Google Play.