Skip to content

Instantly share code, notes, and snippets.

@deepakmahakale
deepakmahakale / toggle_scroll.sh
Created October 18, 2022 17:32
Bash Script | Apple Script to toggle scroll direction
#!/bin/bash
osascript <<EOD
tell application "System Preferences"
(run)
set current pane to pane "com.apple.preference.trackpad"
end tell
tell application "System Events"
tell process "System Preferences"
delay 0.6
click radio button "Scroll & Zoom" of tab group 1 of window "Trackpad"
@deepakmahakale
deepakmahakale / Bookmarklet.md
Created April 18, 2024 07:38
Turn relative time to actual time strings on GitHub

Add new Bookmark

Screenshot 2024-04-18 at 13 02 23

Add the code in URL Input

javascript: (() => { Array.from(document.getElementsByTagName("relative-time")).forEach((d) => d.shadowRoot.textContent = d.title) })();
@deepakmahakale
deepakmahakale / README.md
Created May 3, 2024 11:24
Generating OpenGraph Images for a jekyll based blog

Generating OpenGraph Images for a jekyll based blog

  1. Add a js script to generate an opengraph image

The script takes:

-t, --title <title> The title of the article
-d, --date <date> The publish date of the article
-a, --author <author> The author of the article