Last updated: July 22, 2025
| Endpoint Name | path |
|---|
Last updated: July 22, 2025
| Endpoint Name | path |
|---|
| # Configuration for Alacritty, the GPU enhanced terminal emulator. | |
| # Import additional configuration files | |
| # | |
| # Imports are loaded in order, skipping all missing files, with the importing | |
| # file being loaded last. If a field is already present in a previous import, it | |
| # will be replaced. | |
| # | |
| # All imports must either be absolute paths starting with `/`, or paths relative | |
| # to the user's home directory starting with `~/`. |
| export const h=(t,p,...c)=>({t,p,c,k:p&&p.key}) | |
| export const render=(e,d,t=d.t||(d.t={}),p,r,c,m,y)=> | |
| // arrays | |
| e.map?e.map((e,p)=>render(e,d,t.o&&t.o[p])): | |
| // components | |
| e.t.call?(e.i=render((render.c=e).t(Object.assign({children:e.c},e.p),e.s=t.s||{},t=> | |
| render(Object.assign(e.s,t)&&e,d,e)),t.i||d,t&&t.i||{}),d.t=t=e):( | |
| // create notes | |
| m=t.d||(e.t?document.createElement(e.t):new Text(e.p)), | |
| // diff props |
flex your skills and go off the grid, try coding a layout with float.<main> thing the <main> thing.| # website folder structure | |
| personal-website | |
| |-- Dockerfile | |
| |-- package.json | |
| |-- public/ | |
| |-- index.html |
Hello World, how is it going?
| # Zathura configuration file | |
| # See man `man zathurarc' | |
| # Open document in fit-width mode by default | |
| set adjust-open "best-fit" | |
| # One page per row by default | |
| set pages-per-row 1 | |
| #stop at page boundries |
| # Check if Running as Admin | |
| $IsAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator") | |
| if (-not $IsAdmin) | |
| { | |
| if ($MyInvocation.ScriptName -ne "") | |
| { | |
| try | |
| { | |
| Write-Host "Relanuching Script as Admin" |