Skip to content

Instantly share code, notes, and snippets.

View YinnerC30's full-sized avatar
馃幆
Focusing

Yinner Chilito YinnerC30

馃幆
Focusing
View GitHub Profile
@YinnerC30
YinnerC30 / Caddyfile
Last active December 26, 2025 01:12
Config Caddy - OpenCloud
mi.example.cloud {
request_body {
max_size 10GB
}
route {
@webdav method MKCOL COPY MOVE PROPFIND PROPPATCH LOCK UNLOCK
reverse_proxy @webdav 127.0.0.1:9200 {
request_buffers 1
header_up Host {host}
header_up X-Real-IP {remote_host}
@YinnerC30
YinnerC30 / chart-utils.ts
Created August 31, 2024 15:09 — forked from Klerith/chart-utils.ts
Utilidades para gr谩ficas con ChartJS
import axios from 'axios';
import colorLib from '@kurkle/color';
interface ChartOptions {
height?: number;
width?: number;
}
export const chartJsToImage = async (
chartConfig: unknown,