Skip to content

Instantly share code, notes, and snippets.

View alexzhang1030's full-sized avatar
🎯
Focusing

Alex alexzhang1030

🎯
Focusing
View GitHub Profile
@Eptagone
Eptagone / README.md
Last active July 15, 2025 09:56
TailwindCSS v4 Polyfill with LightningCSS

TailwindCSS v4 Polyfill with LightningCSS

This is a custom polyfill created with LightningCSS to use TailwindCSS V4 with older browsers.

This solution is not perfect yet and still have some issues.

What does this do?

This polyfill provides custom lightningcss transformers to do the following:

@jlia0
jlia0 / agent loop
Last active August 25, 2025 16:48
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
@0beqz
0beqz / BoxProjectedEnvMapHelper.js
Last active September 21, 2024 05:34
Updated code to box-project env-maps in three.js (r137) - credits go to codercat (https://codercat.tk) for the box-projecting code
import * as THREE from "three"
// credits for the box-projecting shader code go to codercat (https://codercat.tk)
const worldposReplace = /* glsl */`
#if defined( USE_ENVMAP ) || defined( DISTANCE ) || defined ( USE_SHADOWMAP )
vec4 worldPosition = modelMatrix * vec4( transformed, 1.0 );
#ifdef BOX_PROJECTED_ENV_MAP
vWorldPosition = worldPosition.xyz;
@n1snt
n1snt / Oh my ZSH with zsh-autosuggestions zsh-syntax-highlighting zsh-fast-syntax-highlighting and zsh-autocomplete.md
Last active August 26, 2025 10:40
Oh my ZSH with zsh-autosuggestions zsh-syntax-highlighting zsh-fast-syntax-highlighting and zsh-autocomplete.md

Oh my zsh.

Oh My Zsh

Install ZSH.

sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh

Install Oh my ZSH.

@opchaves
opchaves / install-nvim.appimage.md
Created February 20, 2021 14:15
How to install the latest release of NeoVim in your Ubuntu system (it also works if you're using WSL 2)

Remove neovim if you have it in your system

sudo apt remove --purge neovim
sudo apt autoremove

Download nvim.appimage

@eyecatchup
eyecatchup / git-commit-log-stats.md
Last active August 25, 2025 13:42
Some commands to get git commit log statistics for a repository on the command line.

git commit stats

Commands to get commit statistics for a Git repository from the command line -
using git log, git shortlog and friends.