Skip to content

Instantly share code, notes, and snippets.

View ariccio's full-sized avatar
💭
fartin

Alexander Riccio ariccio

💭
fartin
View GitHub Profile
# Claude Code CLI Environment Variables
# This file lists all environment variables used in cli.js with explanations
process.env.__CFB - Internal Node.js buffer flag
process.env.__MINIMATCH_TESTING_PLATFORM__ - Testing flag for minimatch library platform detection
process.env.ALACRITTY_LOG - Alacritty terminal emulator log level configuration
process.env.ALIYUN_REGION_ID - Alibaba Cloud region identifier for Chinese cloud services
process.env.ANTHROPIC_API_KEY - Primary API key for authenticating with Anthropic's Claude API
process.env.ANTHROPIC_AUTH_TOKEN - Alternative authentication token for Anthropic services
process.env.ANTHROPIC_BASE_URL - Custom base URL for Anthropic API endpoints
@malkia
malkia / fileinfo.c
Created December 16, 2011 18:54
Win32: Reading directory in one kernel call
// Not sure whether it's faster than FindFirstFile, etc. - but it does it in one kernel call
#include <windows.h>
#include <stdio.h>
// to compile:
// cl fileinfo.c setargv.obj
void fileinfo(const char*name);
int main( int argc, const char* argv[] )