Skip to content

Instantly share code, notes, and snippets.

View JacobYZ's full-sized avatar
🔆

Jacob (Yu) Zhang JacobYZ

🔆
View GitHub Profile

From Zero to OpenClaw on Proxmox LXC (Debian 13): A Real-World Build Log

I wanted a self-hosted OpenClaw deployment on Proxmox, reachable on my LAN, with:

  • Gemini API key support
  • Gemini CLI OAuth (Google AI Pro)
  • Telegram bot integration
  • Brave Search API integration
  • Browser tool support in an LXC
  • OpenRouter free model option (without Gemini CLI install)
@JacobYZ
JacobYZ / main.dart
Last active November 7, 2022 07:14
crimson-eucalyptus-7759
import 'dart:core';
import 'dart:math';
class TriangularDistribution {
double lowerLimit; //a
double upperLimit; //b
double mode; //c
TriangularDistribution(
{required this.lowerLimit, required this.mode, required this.upperLimit});