Skip to content

Instantly share code, notes, and snippets.

View tn-py's full-sized avatar

tn-py tn-py

View GitHub Profile
@tn-py
tn-py / settings.json
Last active October 5, 2025 15:23
Gemini CLI MCP settings.json - GitHub, Shopify, Supabase
{
"ide": {
"hasSeenNudge": true
},
"mcpServers": {
"supabase": {
"command": "npx",
"args": [
"-y",
"@supabase/mcp-server-supabase@latest",
@tn-py
tn-py / .config
Created March 11, 2025 22:58
Ghostty Config - Catpuccin Inspired
font-family = BerkeleyMono Nerd Font
#font-family = Iosevka Nerd Font
#font-family = SFMono Nerd Font
font-size = 20
theme = GruvboxDarkHard
shell-integration-features = no-cursor,sudo,no-title
cursor-style = block
adjust-cell-height = 35%
@tn-py
tn-py / gist:33daf89971be8025ed80997660f89078
Created January 26, 2025 22:50
Shopify Dummy User Data Generator - Google Apps Script
function onOpen() {
var ui = SpreadsheetApp.getUi();
// Create the custom menu
ui.createMenu('Custom Functions')
.addItem('Generate Sample Data', 'generateSampleData') // Add an item to run the function
.addToUi();
}
function generateSampleData() {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();