Reilly O'Donnellblog.reilly.dev·Mar 12, 2024Send iMessage to a loved one from the terminal!mkdir ~/bin Now let's go to it: cd ~/bin and create a file text.sh #!/bin/bash MESSAGE=$1 # Replace with their number (be sure to include the +1) PHONE_NUMBER=+11234567 if [ "$#" -ne 1 ]; then echo "Usage: $0 MESSAGE" exit 1 fi osascript...DiscussBash
Amitajot.hashnode.dev·Jul 20, 2023My first ChatGPT app - Google Drive + LangChain + PythonI recently built my very first app using ChatGPT's API. https://twitter.com/amit/status/1682086918995976192?s=20 The thing about ChatGPT is that It's trained on information from the internet, but what if you want it to answer questions using your c...Discuss·70 readschatgpt
Amitajot.hashnode.dev·Jul 12, 2023Export todos from Things app using AppleScriptHere's the AppleScript you can use to export all todos from a specific list in the Things app using AppleScript. Context: I had a bunch of todos in the Things app that I wanted to move to my notes. Manually copying them from the app does not grab the...Discussapplescript
Charles DraniProcdrani.dev·May 21, 2023Present Spotify Data in Tmux with ApplescriptTLDR: This article demonstrates how to use AppleScript to control Spotify and display song information in a tmux status bar. Tmux is a terminal multiplexer: it enables several terminals to be created, accessed, and controlled from a single screen. T...Discuss·135 readsLearn with MeSpotify
Lorenze Jay Hernandezlorenzejay.hashnode.dev·Sep 21, 2022Automate opening zoom links when they start so you're never late for a meetingFirst why even? I'm usually in a state of flow before my standup meetings. I typically never wait for them to start so I wanted to figure out a way to automate opening my upcoming zoom calls for me so I would never have to cram trying to open up my c...Discuss·1 like·351 readsmacOS
Lorenze Jay Hernandezlorenzejay.hashnode.dev·Sep 14, 2022FeaturedHow I automated my macbook to help me get ready for work.I recently started playing around with applescript. Applescript is macos's native scripting language enabling you to control things from opening applications to changing songs that play on Spotify. There are a lot of cool things you can programatical...Priti Solanki and 10 others are discussing this11 people are discussing thisDiscuss·91 likes·4.4K readsautomationHighly suggest checking out scriptkit. This tool can help you automate a lot! 5