Skip to content

Instantly share code, notes, and snippets.

View THEFIG06's full-sized avatar

THEFIG06

  • Customdata.io
  • Tampa, FL
View GitHub Profile
@THEFIG06
THEFIG06 / animated-3d-weather-widget.markdown
Last active November 5, 2025 08:30
Animated 3D Weather Widget

Animated 3D Weather Widget

Interactive weather widget with 3D clouds that rain on click. Tech: HTML, Tailwind CSS, JavaScript, Three.js, WebGL.

A Pen by Puneet | Techartist on CodePen.

License.

@THEFIG06
THEFIG06 / card-beam-animation.markdown
Created November 4, 2025 01:27
Card Beam Animation

Card Beam Animation

An experimental animation where cards slide through a glowing beam and transform into code. Inspired by the awesome Evervault visuals ✨

A Pen by BL/S® Studio on CodePen.

License.

@THEFIG06
THEFIG06 / index.html
Created June 19, 2024 18:34
Windows XP
<canvas id="canvas"></canvas>
<textarea id="codeEditor" class="editor" spellcheck="false" autocorrect="off" autocapitalize="off" translate="no" oninput="render()"></textarea>
<pre id="error"></pre>
<div id="indicator"></div>
<div id="controls">
<div class="controls">
<input id="btnToggleView" class="icon" type="checkbox" name="toggleView" onclick="toggleView()">
<input id="btnToggleResolution" class="icon" type="checkbox" name="toggleResolution" onchange="toggleResolution()">
<input id="btnReset" class="icon" type="checkbox" name="reset" onclick="reset()">
</div>
@THEFIG06
THEFIG06 / download.py
Created March 8, 2024 19:03 — forked from bamoo456/download.py
pdf free books
# -*- coding: utf-8 -*-
import re
import urllib
from multiprocessing import Pool
import requests
import progressbar
CHUNK_SIZE = 1024 * 1024 # 1MB
def download(i):