Skip to content

Instantly share code, notes, and snippets.

@sennah911
sennah911 / config.json
Created November 22, 2025 15:04
My config for timer tool.
{
"timersDirectory": "~/Documents/Obsidian Vault/timers",
"custom_properties": ["project: Client A", "billable: true"],
"placeholder_notes": "## Notes\\n- Add details here",
"custom_buttons": [
{
"title": "List Tasks",
"command": "clickup --show-ids",
"placement": "stopped"
},
@sennah911
sennah911 / HorizontalCardStack.swift
Created November 16, 2025 15:29
SwiftUI Horizontal card stack
import SwiftUI
struct Card: View {
let width: CGFloat
let height: CGFloat
var body: some View {
if #available(iOS 16.0, *) {
RoundedRectangle(cornerRadius: 15)
.fill(.blue.gradient)
@sennah911
sennah911 / track-time.sh
Created November 16, 2025 13:37
Interactive script to track time on ClickUp tasks with file selection
#!/bin/bash
# track-time.sh - Interactive script to track time on ClickUp tasks with files
# Usage: ./track-time.sh [directory]
set -e
# Color codes for better UI
RED='\033[0;31m'
GREEN='\033[0;32m'
@sennah911
sennah911 / .phoenix.js
Last active August 19, 2019 19:46
My config file for Phoenix (https://github.com/sdegutis/Phoenix)
// This is my attempt at making Phoenix as vim-like as possible. A good chunk
// of the code comes from https://gist.github.com/teetrinkers/9435065
//
// Command mode is activated with shift-ctrl-alt-command-space
// When we are in command mode, we can do things like:
// "h" to move current window to the left side of the screen
// "mh" to move the current window a nudge
// "mH" moves the window all the way to the left
// "34m" moves the window to the imaginary grid position 3:4
// "10mh" to move the current window 10 nudges