Skip to content

Instantly share code, notes, and snippets.

View tkrisztian95's full-sized avatar

Tóth Krisztián Gyula tkrisztian95

View GitHub Profile
@tkrisztian95
tkrisztian95 / claude-usage
Created March 10, 2026 10:49 — forked from bdavidzhang/claude-usage
Claude Code Usage CLI - check your session, weekly, and extra usage limits from the terminal
#!/bin/bash
# Claude Code Usage CLI
# Fetches usage data from Anthropic API and displays it in a readable format
#
# Setup:
# 1. Make sure you're logged into Claude Code (credentials stored in macOS Keychain)
# 2. If you're behind a firewall, configure PROXY_PORT and SSH_HOST below
# 3. chmod +x claude-usage && ./claude-usage
#
@tkrisztian95
tkrisztian95 / wsl_install_node.md
Last active September 22, 2020 19:18 — forked from micahgodbolt/wsl_install_node.md
WSL install Node

The apt-get version of node is incredibly old, and installing a new copy is a bit of a runaround.

So here's how you can use NVM to quickly get a fresh copy of Node on your new Bash on Windows install

//switch to root
$ sudo su

//get NVM
$ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash