This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- author: [email protected] | |
-- 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while true | |
do | |
osascript -e 'tell application "Messages" to send "'"hello world"'" to buddy "'"Teddy Ni"'"' | |
done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_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": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@layer base { | |
:root { | |
--background: 0 0% 100%; | |
--foreground: 20 14.3% 4.1%; | |
--card: 0 0% 100%; | |
--card-foreground: 20 14.3% 4.1%; | |
--popover: 0 0% 100%; | |
--popover-foreground: 20 14.3% 4.1%; | |
--primary: 47.9 95.8% 53.1%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"compilerOptions": { | |
// Keep your targets & libs the same | |
"target": "ES2020", | |
"useDefineForClassFields": true, | |
"lib": ["ES2020", "DOM", "DOM.Iterable"], | |
"module": "ESNext", | |
// Bundler mode (same as before) | |
"moduleResolution": "bundler", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const baseballAthletes = [ | |
{ | |
id: 1, | |
name: "Michael Rodriguez", | |
camp: "Spring Training", | |
position: "Pitcher", | |
sport: "Baseball", | |
age: 23, | |
height: "6'3\"", | |
weight: "205 lbs", |