This file provides comprehensive guidance to Claude Code when working with Python code in this repository.
Follow the PEP 8 style guide.
| [build-system] | |
| requires = ["hatchling"] | |
| build-backend = "hatchling.build" | |
| [project] | |
| name = "" | |
| version = "0.1.0" | |
| description = "" | |
| readme = "README.md" | |
| requires-python = ">=3.12" |
| def main(): | |
| print("hello world") |
| NVDA | ||
|---|---|---|
| SOXL | ||
| MSFT | ||
| GOOG | ||
| QQQ | ||
| TQQQ | ||
| CRWD | ||
| NET | ||
| NVDL | ||
| NET |
| import logging as log | |
| logging = log.getLogger(__name__) | |
| logging.setLevel(log.INFO) | |
| formatter = log.Formatter( | |
| "%(asctime)s[%(levelname)s][%(filename)s][ln:%(lineno)s] %(message)s", | |
| datefmt="[%a %Y-%m-%d %H:%M:%S %Z]", | |
| ) | |
| file_handler = log.FileHandler("logs/app.log", "a") |
| # ~/.ticker.yaml | |
| show-summary: true | |
| show-tags: true | |
| show-fundamentals: true | |
| show-separator: true | |
| show-holdings: true | |
| interval: 5 # seconds | |
| currency: USD | |
| currency-summary-only: false |
| // Place your key bindings in this file to override the defaultsauto[] | |
| [ | |
| { | |
| "key": "ctrl+shift+g s", | |
| "command": "git.stage" | |
| }, | |
| { | |
| "key": "ctrl+shift+g c", | |
| "command": "git.commit" | |
| }, |
| From ab7279f3ca179b1ee4b40fef54b1b90a97dc430e Mon Sep 17 00:00:00 2001 | |
| From: Xavier <collantes.xavier@gmail.com> | |
| Date: Fri, 16 Feb 2024 02:06:18 -0800 | |
| Subject: [PATCH] Squash commits | |
| --- | |
| java-tutorial/BUILD | 29 +- | |
| java-tutorial/MODULE.bazel | 13 + | |
| java-tutorial/MODULE.bazel.lock | 2862 +++++++++++++++++ | |
| java-tutorial/WORKSPACE | 7 + |
| ext="webp" ; for f in * ; do if [[ $f =~ $ext ]] ; then mv "$f" "./$RANDOM.$ext" ; fi ; done |