Skip to content

Instantly share code, notes, and snippets.

View phenomen's full-sized avatar
💚
Frontend, QA, Translator, Roleplayer

Aleksandr Vasilenko phenomen

💚
Frontend, QA, Translator, Roleplayer
View GitHub Profile
@phenomen
phenomen / shadcn-flexoki.css
Created October 8, 2023 06:30
Flexoki theme for shadcn/ui and shadcn-svelte
@layer base {
:root {
--flexoki-bg: 48 100% 97%;
--flexoki-bg-2: 51 33% 92%;
--flexoki-ui: 51 21% 88%;
--flexoki-ui-2: 50 14% 83%;
--flexoki-ui-3: 55 10% 79%;
--flexoki-tx: 0 3% 6%;
@phenomen
phenomen / STL_to_Levels3D.py
Last active January 3, 2024 06:18
Blender Script - STL to Foundry VTT Levels 3D
# Generally those values are the same for each collection from the same author
# SCALE. 1 square in Levels 3D = 1 square in Blender
var_scale = 0.05
# ROTATION. In degrees. Model should face Y axis.
var_rotation_x = 90
var_rotation_y = 0
var_rotation_z = 180
@phenomen
phenomen / flc.json
Created February 10, 2023 22:38
flc.json
{
"version": "1.0.0",
"notes": "NEW: Auto-updater",
"pub_date": "2023-02-10T12:00:00Z",
"platforms": {
"windows-x86_64": {
"signature": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDVEM0E0Q0VBNDJGMDI2RTEKUldUaEp2QkM2a3c2WFNNTUpNbDJxVjJIZXdXUnh1MmhuOTdTNDM3Tk1DeFEza3JHRHJzVVlIb2QK",
"url": "https://github.com/"
}
}
@phenomen
phenomen / Gallery.astro
Created January 26, 2023 18:29
NoJS Astro + TailwindCSS Gallery with Lightbox Zoom
@phenomen
phenomen / MP4toWEBM.bat
Last active August 25, 2022 21:40
Drag-and-Drop MP4 to WEBM batch script
set quality=30
set input=%1
set output=%input:.mp4=%
ffmpeg -i %input% -c:v libvpx -crf %quality% -b:v 1M -c:a libvorbis %output%.webm