Skip to content

Instantly share code, notes, and snippets.

View wxul's full-sized avatar
🎯
Focusing

Albert.Wu wxul

🎯
Focusing
View GitHub Profile
@wxul
wxul / worker.js
Last active July 11, 2025 10:07
cloudflare image proxy worker
/**
* Welcome to Cloudflare Workers! This is your first worker.
*
* - Run "npm run dev" in your terminal to start a development server
* - Open a browser tab at http://localhost:8787/ to see your worker in action
* - Run "npm run deploy" to publish your worker
*
* Learn more at https://developers.cloudflare.com/workers/
*/
@wxul
wxul / .vimrc
Created January 13, 2020 16:21
set number
call plug#begin('~/.vim/plugged')
Plug 'preservim/nerdtree'
Plug 'luochen1990/rainbow'
" post install (yarn install | npm install)
Plug 'prettier/vim-prettier', { 'do': 'yarn install' }
call plug#end()
autocmd StdinReadPre * let s:std_in=1