Skip to content

Instantly share code, notes, and snippets.

View ghcpuman902's full-sized avatar

MangleKuo ghcpuman902

View GitHub Profile
@KristofferEriksson
KristofferEriksson / useLocalStorage.ts
Last active July 25, 2024 19:33
An easy-to-use API for storing and retrieving data from Local Storage in React, with built-in real-time synchronization
import { useEffect, useState } from "react";
function useLocalStorage() {
const [loadingStates, setLoadingStates] = useState<Map<string, boolean>>(
new Map()
);
const setStorageValue = <T>(key: string, value: T) => {
try {
window.localStorage.setItem(key, JSON.stringify(value));
@patw0929
patw0929 / gist:9167f911223b0c30bd76
Last active April 15, 2023 15:47
Mac OSX 開發環境安裝

Mac OSX 開發環境安裝

推薦安裝的應用程式

  • iTerm2 - 比內建的終端機漂亮且強大
  • VSCode
  • BetterTouchTool - 拖拉視窗最大化、增加特定程式的滑鼠手勢
  • Magnet - 快速切換視窗位置(免費替代:VEEER
  • MacDown - 寫 Markdown 筆記方便,可以先寫好再貼到 GitHub、gist 作筆記。