MERN stack (and short Android) dev notes: Feb to Mar 2025 (includes Powershell scripts for copying and listing swdev project source code)
Last updated on 24 Mar. 2025 Quick note The (Windows) Powershell scripts I use mainly for copying and listing software development project source code folders and files are available on my public GitHub repo: https://github.com/ravisiyer/PS-Scripts . Detailed notes 26 Mar. 2025 To create a directory/folder hierarchy: New-Item -Path VSCode\HTML-CSS-JS\ -ItemType Directory -Force If they don't exist, creates VSCode folder and HTML-CSS-JS folder within it. ================= IDEA IntelliJ Increase font size: Alt + Shift + period ------------ Android related How to save and retrieve Date in SharedPreferences, https://stackoverflow.com/questions/12343014/how-to-save-and-retrieve-date-in-sharedpreferences https://docs.oracle.com/javase/8/docs/api/java/lang/System.html#currentTimeMillis-- https://developer.android.com/reference/android/content/SharedPreferences#getLong(java.lang.String,%20long) Based on above: long nowInMillis = System.currentTimeMillis() Date nowAsDate = new Date(n...