Skip to content

Instantly share code, notes, and snippets.

# URL: https://www.npmjs.com/package/@mantine/core
# Download Count: 231,755
# ------------
# URL: https://www.npmjs.com/package/shadcn-ui
# Download Count: 15,816
# ------------
# URL: https://www.npmjs.com/package/@chakra-ui/react
# Download Count: 464,656
# ------------
# URL: https://www.npmjs.com/package/radix-ui
{
"_id": {
"$oid": "6375f2d1d8fad1b6783bd6e0"
},
"name": "Left on Read",
"logoUrl": "https://storage.googleapis.com/tally-response-assets/rzxXme/762d3150-b270-466a-a134-c2faa6ac1143/Frame-3.png",
"vertical": "Creator economy",
"longDescription": "Left on Read provides powerful analytics and productivity tools to help you manage your conversations. Schedule messages, receive response reminders, and manage your inbox. We promise you've never seen your texts like this before.",
"shortDescription": "iMessage Analytics",
"features": [
while true
do
osascript -e 'tell application "Messages" to send "'"hello world"'" to buddy "'"Teddy Ni"'"'
done
@alexdanilowicz
alexdanilowicz / queries.sql
Last active March 15, 2023 01:49
sql queries to read chat.db file
-- author: alex.danilowicz@gmail.com
-- SQlite Queries to Read chat.db file
-- top 5 sent / receieved words, just pass is_from_me as param
WITH RECURSIVE split_text(guid, text, etc) AS
(
SELECT
m.guid, '', m.text || ' '
FROM message m
-- make sure the text isn't blank