Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
58 authored and 58 committed Jun 28, 2024
0 parents commit d0d2e39
Show file tree
Hide file tree
Showing 17 changed files with 775 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
name: Bug report
about: Create a report to help us improve
title: "# 问题标题:简洁且具有描述性的问题标题"
labels: bug
assignees: JaveleyQAQ

---
# 🙋提问智力得分表
| 智力得分|提问方式
| -------| ------
| 100分 | 我在xxx遇到了一个问题,在翻阅文档和视频后,这里是报错截图,我参考了百度或谷歌中xxx文章进行解决,但仍不能解决!
| 90分 | 我遇到了xxx问题,我翻阅了文档和视频,没有找到解决方案,完整的报错截图如下。。。。。。
| 60分 | 这里是完整的报错截图,请问应该怎么解决
| 10分 | 这咋回事啊(手机拍屏幕)
| 0分 | 这怎么办啊(不完整的报错截图)
| sb | 大神求带、这怎么不能用了我打不开了、你们这个正常吗、文件在哪啊、怎么学啊我是小白能帮我吗


## 问题描述
- 请在这里提供问题的详细描述,包括您遇到的具体问题和任何相关的背景信息。

## 环境信息
- **操作系统及版本**:例如 Windows 10, macOS Big Sur 11.1
- **编程语言和版本**:例如 Python 3.8.5
- **相关库或框架及版本**:例如 Django 3.1.7
- **GitHub 仓库名称和问题相关的代码分支**:如果有的话,提供仓库链接和分支信息。

## 复现步骤
1. 步骤一:描述第一步操作。
2. 步骤二:描述第二步操作。
3. 以此类推,直到步骤 N。

## 预期结果
- 描述您期望的结果或行为。

## 实际结果
- 描述实际发生的结果或行为。
- 如果有错误信息,请提供完整的错误日志或截图。

## 其他信息
- 提供任何可能有助于解决问题的其他信息,例如您尝试过的解决方案或相关工作的链接。

## 附加文件
- 如果需要附加文件,请确保它们是必要的,并且不会泄露任何敏感信息。可以使用 GitHub 的上传功能或提供文件的下载链接。

---

请在提交问题之前,检查您的描述是否清晰、准确,并且提供了足够的信息以便他人理解您的问题。感谢您的合作!
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
frida-example
.DS_Store
__pycache__
37 changes: 37 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"recommendations": [
// my extensions, ofc :P
"antfu.browse-lite",
"antfu.iconify",
"antfu.slidev",
"antfu.unocss",
"antfu.vite",
"antfu.where-am-i",
"antfu.open-in-github-button",
"lokalise.i18n-ally",

// themes & icons
"antfu.icons-carbon",
"antfu.theme-vitesse",
"file-icons.file-icons",
"sainnhe.gruvbox-material",

// life savers!
"dbaeumer.vscode-eslint",
"Vue.volar",
"GitHub.copilot",
"usernamehw.errorlens",
"streetsidesoftware.code-spell-checker",

// up to you
"eamodio.gitlens",
"EditorConfig.EditorConfig",
"github.vscode-github-actions",
"GitHub.vscode-pull-request-github",
"johnsoncodehk.vscode-tsconfig-helper",
"mpontus.tab-cycle",
"naumovs.color-highlight",
"WakaTime.vscode-wakatime",
"znck.grammarly"
]
}
93 changes: 93 additions & 0 deletions .vscode/global.code-snippets
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
{
"import": {
"scope": "javascript,typescript",
"prefix": "im",
"body": [
"import { $1 } from '$2';"
],
"description": "Import a module"
},
"export-all": {
"scope": "javascript,typescript",
"prefix": "ex",
"body": [
"export * from '$2';"
],
"description": "Export a module"
},
"vue-script-setup": {
"scope": "vue",
"prefix": "<sc",
"body": [
"<script setup lang=\"ts\">",
"const props = defineProps<{",
" modelValue?: boolean,",
"}>()",
"$1",
"</script>",
"",
"<template>",
" <div>",
" <slot/>",
" </div>",
"</template>",
]
},
"vue-template-ref": {
"scope": "javascript,typescript,vue",
"prefix": "tref",
"body": [
"const ${1:el} = shallowRef<HTMLDivElement>()",
]
},
"vue-computed": {
"scope": "javascript,typescript,vue",
"prefix": "com",
"body": [
"computed(() => { $1 })"
]
},
"vue-watch-effect": {
"scope": "javascript,typescript,vue",
"prefix": "watchE",
"body": [
"watchEffect(() => {",
" $1",
"})"
]
},
"if-vitest": {
"scope": "javascript,typescript",
"prefix": "ifv",
"body": [
"if (import.meta.vitest) {",
" const { describe, it, expect } = import.meta.vitest",
" ${1}",
"}"
]
},
"markdown-api-table": {
"scope": "markdown",
"prefix": "table",
"body": [
"<table>",
"<tr>",
"<td width=\"400px\" valign=\"top\">",
"",
"### API",
"",
"Description",
"",
"</td>",
"<td width=\"600px\"><br>",
"",
"```ts",
"// code block",
"```",
"",
"</td>",
"</tr>",
"</table>",
],
}
}
Loading

0 comments on commit d0d2e39

Please sign in to comment.