Skip to content

Instantly share code, notes, and snippets.

View kzu's full-sized avatar
💚
Attempt #3 at OSS sustainability, with OSMF now🫰

Daniel Cazzulino kzu

💚
Attempt #3 at OSS sustainability, with OSMF now🫰
View GitHub Profile
@kzu
kzu / SpaceX.md
Created June 8, 2026 13:37
SpaceX Engineering Employees

SpaceX Engineering Employees

Years of Tenure Typical Accumulated Shares/Options (Vested Portion) Est. Current Paper Value (at ~$400/share) Notes / IPO Upside Potential
0–2 years 5,000–15,000 (partial vesting, ~20–40%) $100K – $500K+ Newer grants at higher strikes. Modest vested value; strong future refreshes. IPO adds meaningful but not transformative gains yet.
3–5 years 10,000–30,000+ (50–80%+ vested, multiple grants) $500K – $2M+ Balanced low + recent strikes. Common for solid mid-level performers. IPO often pushes to $1M–$5M+ range.
5–10 years 20,000–50,000+ (high vesting, promotions) $2M – $10M+ Significant low-
[SpaceX Engineering Employees](https://grok.com/share/c2hhcmQtNA_9e80163e-3619-4449-a060-77128e48bdcc)
| Years of Tenure | Typical Accumulated Shares/Options (Vested Portion) | Est. Current Paper Value (at \~$400/share) | Notes / IPO Upside Potential |
|---------------------|-----------------------------------------------------|-------------------------------------------|------------------------------|
| 0–2 years | 5,000–15,000 (partial vesting, \~20–40%) | $100K – $500K+ | Newer grants at higher strikes. Modest vested value; strong future refreshes. IPO adds meaningful but not transformative gains yet. |
| 3–5 years | 10,000–30,000+ (50–80%+ vested, multiple grants) | $500K – $2M+ | Balanced low + recent strikes. Common for solid mid-level performers. IPO often pushes to $1M–$5M+ range. |
| 5–10 years | 20,000–50,000+ (high vesting, promotions) | $2M – $10M+ | Significant low-
@kzu
kzu / windom.cs
Last active December 17, 2025 18:13
Dumps an app's UIA tree as JSON
#:property TargetFramework=net10.0-windows
#:property Nullable=enable
#:property ImplicitUsings=true
#:property UseWPF=true
#:property PublishAot=false
using System.Diagnostics;
using System.Text.Json;
using System.Windows.Automation;
@kzu
kzu / ai.toml
Created October 24, 2025 01:32
AIContextConfig
[ai.clients.grok]
endpoint = "https://api.x.ai/v1"
modelid = "grok-4-fast-non-reasoning"
[ai.agents.notes]
description = 'General note-taking agent'
instructions = """\
You are an AI agent specialized in taking and organizing notes for users. \
Your primary goals are to accurately capture user input, structure notes \
in a clear and organized manner, and provide easy retrieval of information \
@kzu
kzu / program.cs
Last active August 28, 2025 23:45
Hello World from dnx gist!
#:package Spectre.Console@*
using Spectre.Console;
AnsiConsole.MarkupLine($"Hello world from [green]dnx[/] [yellow]gist[/] :rocket: [bold italic]{string.Join(' ', args)}[/]");
@kzu
kzu / whatsapp.css
Last active July 6, 2025 23:17
WhatsApp full width replies
/* side bar */
header.xa1v5g2 {
background-color: grey;
display: none;
}
/* whatsapp text, new convo */
._aigw header {
display: none;
}
@kzu
kzu / ChatClientTypedExtensions.cs
Created October 9, 2024 21:12
Typed extension for ChatClient
// <auto-generated />
#region License
// MIT License
//
// Copyright (c) Daniel Cazzulino
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
@kzu
kzu / gh-graphql.css
Created April 11, 2024 15:16
GitHub GraphQL API Explorer Full Screen
[data-container=nav] {
display: none !important;
}
footer {
display: none !important;
}
#main-content .container-xl {
max-width: unset;
@kzu
kzu / throwing
Created September 24, 2023 22:39
Try to inspect variables when the exception is thrown
using Spectre.Console;
Console.WriteLine("Hello, World!");
for (int i = 0; i < 50; i++)
{
var result = await AnsiConsole.Status().StartAsync("Processing", async c =>
{
await Task.Delay(i);
if (i == 2)
@kzu
kzu / ComponentAttribute.cs
Created October 20, 2022 15:08
A sample code generator that emits export + export metadata annotations
[MetadataAttribute]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property, AllowMultiple = true, Inherited = false)]
public abstract class ComponentAttribute : ExportAttribute
{
protected ComponentAttribute() { }
protected ComponentAttribute(Type contractType) : base(contractType) { }
protected ComponentAttribute(string contractName) : base(contractName) { }