Skip to content

Commit d0d2e39

Browse files
5858
authored andcommitted
first commit
0 parents  commit d0d2e39

File tree

17 files changed

+775
-0
lines changed

17 files changed

+775
-0
lines changed
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "# 问题标题:简洁且具有描述性的问题标题"
5+
labels: bug
6+
assignees: JaveleyQAQ
7+
8+
---
9+
# 🙋提问智力得分表
10+
| 智力得分|提问方式
11+
| -------| ------
12+
| 100分 | 我在xxx遇到了一个问题,在翻阅文档和视频后,这里是报错截图,我参考了百度或谷歌中xxx文章进行解决,但仍不能解决!
13+
| 90分 | 我遇到了xxx问题,我翻阅了文档和视频,没有找到解决方案,完整的报错截图如下。。。。。。
14+
| 60分 | 这里是完整的报错截图,请问应该怎么解决
15+
| 10分 | 这咋回事啊(手机拍屏幕)
16+
| 0分 | 这怎么办啊(不完整的报错截图)
17+
| sb | 大神求带、这怎么不能用了我打不开了、你们这个正常吗、文件在哪啊、怎么学啊我是小白能帮我吗
18+
19+
20+
## 问题描述
21+
- 请在这里提供问题的详细描述,包括您遇到的具体问题和任何相关的背景信息。
22+
23+
## 环境信息
24+
- **操作系统及版本**:例如 Windows 10, macOS Big Sur 11.1
25+
- **编程语言和版本**:例如 Python 3.8.5
26+
- **相关库或框架及版本**:例如 Django 3.1.7
27+
- **GitHub 仓库名称和问题相关的代码分支**:如果有的话,提供仓库链接和分支信息。
28+
29+
## 复现步骤
30+
1. 步骤一:描述第一步操作。
31+
2. 步骤二:描述第二步操作。
32+
3. 以此类推,直到步骤 N。
33+
34+
## 预期结果
35+
- 描述您期望的结果或行为。
36+
37+
## 实际结果
38+
- 描述实际发生的结果或行为。
39+
- 如果有错误信息,请提供完整的错误日志或截图。
40+
41+
## 其他信息
42+
- 提供任何可能有助于解决问题的其他信息,例如您尝试过的解决方案或相关工作的链接。
43+
44+
## 附加文件
45+
- 如果需要附加文件,请确保它们是必要的,并且不会泄露任何敏感信息。可以使用 GitHub 的上传功能或提供文件的下载链接。
46+
47+
---
48+
49+
请在提交问题之前,检查您的描述是否清晰、准确,并且提供了足够的信息以便他人理解您的问题。感谢您的合作!

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
frida-example
2+
.DS_Store
3+
__pycache__

.vscode/extensions.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"recommendations": [
3+
// my extensions, ofc :P
4+
"antfu.browse-lite",
5+
"antfu.iconify",
6+
"antfu.slidev",
7+
"antfu.unocss",
8+
"antfu.vite",
9+
"antfu.where-am-i",
10+
"antfu.open-in-github-button",
11+
"lokalise.i18n-ally",
12+
13+
// themes & icons
14+
"antfu.icons-carbon",
15+
"antfu.theme-vitesse",
16+
"file-icons.file-icons",
17+
"sainnhe.gruvbox-material",
18+
19+
// life savers!
20+
"dbaeumer.vscode-eslint",
21+
"Vue.volar",
22+
"GitHub.copilot",
23+
"usernamehw.errorlens",
24+
"streetsidesoftware.code-spell-checker",
25+
26+
// up to you
27+
"eamodio.gitlens",
28+
"EditorConfig.EditorConfig",
29+
"github.vscode-github-actions",
30+
"GitHub.vscode-pull-request-github",
31+
"johnsoncodehk.vscode-tsconfig-helper",
32+
"mpontus.tab-cycle",
33+
"naumovs.color-highlight",
34+
"WakaTime.vscode-wakatime",
35+
"znck.grammarly"
36+
]
37+
}

.vscode/global.code-snippets

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
{
2+
"import": {
3+
"scope": "javascript,typescript",
4+
"prefix": "im",
5+
"body": [
6+
"import { $1 } from '$2';"
7+
],
8+
"description": "Import a module"
9+
},
10+
"export-all": {
11+
"scope": "javascript,typescript",
12+
"prefix": "ex",
13+
"body": [
14+
"export * from '$2';"
15+
],
16+
"description": "Export a module"
17+
},
18+
"vue-script-setup": {
19+
"scope": "vue",
20+
"prefix": "<sc",
21+
"body": [
22+
"<script setup lang=\"ts\">",
23+
"const props = defineProps<{",
24+
" modelValue?: boolean,",
25+
"}>()",
26+
"$1",
27+
"</script>",
28+
"",
29+
"<template>",
30+
" <div>",
31+
" <slot/>",
32+
" </div>",
33+
"</template>",
34+
]
35+
},
36+
"vue-template-ref": {
37+
"scope": "javascript,typescript,vue",
38+
"prefix": "tref",
39+
"body": [
40+
"const ${1:el} = shallowRef<HTMLDivElement>()",
41+
]
42+
},
43+
"vue-computed": {
44+
"scope": "javascript,typescript,vue",
45+
"prefix": "com",
46+
"body": [
47+
"computed(() => { $1 })"
48+
]
49+
},
50+
"vue-watch-effect": {
51+
"scope": "javascript,typescript,vue",
52+
"prefix": "watchE",
53+
"body": [
54+
"watchEffect(() => {",
55+
" $1",
56+
"})"
57+
]
58+
},
59+
"if-vitest": {
60+
"scope": "javascript,typescript",
61+
"prefix": "ifv",
62+
"body": [
63+
"if (import.meta.vitest) {",
64+
" const { describe, it, expect } = import.meta.vitest",
65+
" ${1}",
66+
"}"
67+
]
68+
},
69+
"markdown-api-table": {
70+
"scope": "markdown",
71+
"prefix": "table",
72+
"body": [
73+
"<table>",
74+
"<tr>",
75+
"<td width=\"400px\" valign=\"top\">",
76+
"",
77+
"### API",
78+
"",
79+
"Description",
80+
"",
81+
"</td>",
82+
"<td width=\"600px\"><br>",
83+
"",
84+
"```ts",
85+
"// code block",
86+
"```",
87+
"",
88+
"</td>",
89+
"</tr>",
90+
"</table>",
91+
],
92+
}
93+
}

0 commit comments

Comments
 (0)