Skip to content

Instantly share code, notes, and snippets.

View Shadowzzh's full-sized avatar
🌴
On vacation

Zane Shadowzzh

🌴
On vacation
View GitHub Profile
@Shadowzzh
Shadowzzh / example_prd.txt
Created April 2, 2025 07:46 — forked from hellokaton/example_prd.txt
示例 PRD 文件及提问方式
<context>
# Overview
[Provide a high-level overview of your product here. Explain what problem it solves, who it's for, and why it's valuable.]
# Core Features
[List and describe the main features of your product. For each feature, include:
- What it does
- Why it's important
- How it works at a high level]
@Shadowzzh
Shadowzzh / index.ts
Created May 6, 2024 06:00
first gist fragment
/** 扁平化创建 Promise */
export const createPromise = <T extends unknown>() => {
let resolve: unknown = undefined
let reject: unknown = undefined
const promise = new Promise<T>((r, j) => ((resolve = r), (reject = j)))
return [
promise,
resolve as unknown as (value: T | PromiseLike<T>) => void,