life is too short for a diary




Weekly Logs from Nov Nov 18 to 24, 2024

Tags: diary letters

Author
Written by: Tushar Sharma
Featured image for Weekly Logs from Nov Nov 18 to 24, 2024

Dear Vishi, this is my weekly logs from Nov 18 to 24, 2024.

Snapshot of my habits

Activity Streak Count Logging



Sunday Musing

Scroll to Bottom of Google sheets

I despise having to scroll to bottom of the Google Sheet with large entries. Go to Extentions->Apps Script and add this to the Code.gs file

function onOpen() {
    let ss = SpreadsheetApp.getActiveSpreadsheet();
    let sheet = ss.getActiveSheet();
    sheet.setActiveRange(sheet.getRange(sheet.getLastRow(),1));
}

Bangladesh Hindus

This is what Donald Trump tweeted on Diwali before US elections

Bangladesh has seen a recent ousting of their prime minister Sheikh Hasina who fled to India. It's interesting that Kamala Harris tweeted no such thing on Bangladesh's Hindus. However, Tulsi Gabbard was more vocal on her tweet on Bangladesh

Movie Picks

Favourite Tracks

Thanks to this song, I learned that New York City was originally called New Amsterdam as it was a Dutch colony in 1624. New York was captured during the reign of King Charles II of England and renamed.


I saw video of this young girl getting emotional


This is the full song


Recently watching lot of Osho reels


This is the background music


Delete untracked files in Git

You can use git clean to remove untracked file in git repo. You can also provide options

Samosa trumps over jalebi

My friend asked if I wanted jalebi after work. I said, "Nah, not a fan." He looked at me like I was suddenly grown a into health freak. “Wow, so health-conscious!”

I let him bask in my glory for three seconds before I ruined it. "Let’s get samosas instead. I’m not healthy—I just like my diabetes deep-fried, not sugary."

Saturday Musing

Suppress stdout for commands in Makefile

Let's say I've a Makefile

build:
	./gradlew clean build

If I simply run, I can see commands executed by Makefile

$ make build
./gradlew clean build

However I can suppress command using

$ make -s build

Skipping test in JUnit

Skip a test during the build like

import org.junit.jupiter.api.Disabled;

@Disabled 
public class AppTest {

}

Thursday Musing

Enable 2FA for Chase

Default 2FA for Chase has only phone options. However if you are outside the U.S., you mostly rely on email for authentication. Go to Chase 2FA and select email

Chase 2FA

comments powered by Disqus