Skip to content

Instantly share code, notes, and snippets.

View aelxxs's full-sized avatar
🎵
Last played: Jenevieve - Midnight Charm

Alexis Vielma aelxxs

🎵
Last played: Jenevieve - Midnight Charm
View GitHub Profile
(function(){"use strict";var tt=Array.isArray,Lr=Array.prototype.indexOf,rt=Array.from,Pr=Object.defineProperty,De=Object.getOwnPropertyDescriptor,Or=Object.prototype,Rr=Array.prototype,zr=Object.getPrototypeOf,It=Object.isExtensible;function Vr(e){for(var t=0;t<e.length;t++)e[t]()}function Nt(){var e,t,r=new Promise((n,a)=>{e=n,t=a});return{promise:r,resolve:e,reject:t}}const D=2,nt=4,at=8,$=16,ee=32,ue=64,Ue=128,Y=512,A=1024,q=2048,te=4096,L=8192,de=16384,ot=32768,me=65536,Mt=1<<17,Ht=1<<18,ge=1<<19,Fr=1<<20,Ae=32768,ct=1<<21,st=1<<22,oe=1<<23,Ie=Symbol("$state"),_e=new class extends Error{name="StaleReactionError";message="The reaction that called `getAbortSignal()` was re-run or destroyed"};function Ur(e){throw new Error("https://svelte.dev/e/lifecycle_outside_component")}function Yr(){throw new Error("https://svelte.dev/e/async_derived_orphan")}function Gr(e){throw new Error("https://svelte.dev/e/effect_in_teardown")}function Kr(){throw new Error("https://svelte.dev/e/effect_in_unowned_derived")}function
@aelxxs
aelxxs / actual.user.css
Last active November 28, 2025 22:23
Actual Budget Catppuccin Theme
/* ==UserStyle==
@name budget.alexis.lol/budget
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Actual — Catppuccin Theme
@author Alexis Vielma (https://alexis.lol)
@preprocessor stylus
@var select theme "Theme" {
"Mocha": "Mocha",
@aelxxs
aelxxs / resume.tex
Created January 23, 2024 16:56
Resume template based off Reddit post
%------------------------
% Author : Alexis Vielma
% GitHub : https://github.com/aelxxs
% Website : https://alexis.lol
%------------------------
\documentclass[letter,11pt]{article}
\pagestyle{empty}
\usepackage{titlesec}
@aelxxs
aelxxs / battery.ps1
Created July 1, 2022 00:03
[Windows]: Battery status for Lanyard
# REPLACE :id with your Discord ID
# REPLACE :key with your Lanyard API Key
# TASK: run every minute
$endpoint = "https://api.lanyard.rest/v1/users/:id/kv/battery"
function Get-ChargingStatus {
return (Get-WmiObject -Class BatteryStatus -Namespace root\wmi).Charging
}
@aelxxs
aelxxs / tatsu.js
Created February 13, 2022 15:26
Tatsu's rank card skeleton recreated using canvas-constructor.
import { Canvas } from 'canvas-constructor/skia';
// ? Tatsumaki Rank Card Skeleton (760x260)
new Canvas(760, 260)
// * Background
.setColor('#D3D3D3')
.printRoundedRectangle(0, 0, 760, 260, 30)
// * Avatar Panel
.setColor('#FFFFFF')
.printRectangle(28, 0, 165, 260)