Skip to content

Instantly share code, notes, and snippets.

View Wxh16144's full-sized avatar
♥️
antd & React

Wxh16144

♥️
antd & React
View GitHub Profile
@Wxh16144
Wxh16144 / nginx.conf
Created July 26, 2024 06:19
Docker Nginx minimal configuration
# https://www.digitalocean.com/community/tools/nginx?global.app.lang=zhCN
server {
listen 80;
listen [::]:80;
root /usr/share/nginx/html;
location / {
index index.html index.htm;
"use client";
import { cache, unstable_postpone } from "react";
import { preload } from "react-dom";
const loadImage = cache((src: string) => {
return new Promise<void>((resolve, reject) => {
const img = new Image();
img.src = src;
@Wxh16144
Wxh16144 / .gitconfig
Last active January 3, 2023 07:54
oh-my-zsh
[user]
name = wuxh
email = wxh1220@gmail.com
signingkey = wuxh
[core]
excludesfile = /Users/wuxh/.gitignore_global
ignorecase = true
# ref: https://stackoverflow.com/a/36427485/11302760
# ref: https://code.visualstudio.com/docs/editor/versioncontrol#_vs-code-as-git-editor
editor = code --disable-extensions --wait
@Wxh16144
Wxh16144 / 📊 Weekly development breakdown
Last active April 25, 2022 00:58
📊 Weekly development breakdown
TypeScript 6 hrs 37 mins █████████▏░░░░░░░░░░░ 43.8%
JavaScript 2 hrs 37 mins ███▋░░░░░░░░░░░░░░░░░ 17.3%
YAML 1 hr 20 mins █▊░░░░░░░░░░░░░░░░░░░ 8.8%
Vue.js 53 mins █▏░░░░░░░░░░░░░░░░░░░ 5.9%
JSON 48 mins █░░░░░░░░░░░░░░░░░░░░ 5.3%