├── .editorconfig ├── .github ├── labels.yml └── workflows │ └── label-syncer.yml ├── .gitignore └── README.md /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | charset = utf-8 7 | end_of_line = lf 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | [*.{diff,md}] 12 | trim_trailing_whitespace = false 13 | 14 | [{Makefile,*.mk}] 15 | indent_style = tab 16 | -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- 1 | - color: fef2c0 2 | description: Author 可申请锁住当前讨论 3 | name: Locked 4 | - color: 8D0C0E 5 | description: "" 6 | name: Alpine 7 | - color: C5DEF5 8 | description: "" 9 | name: Apple App Store 10 | - color: 7623FA 11 | description: "" 12 | name: benchmark 13 | - color: "010501" 14 | description: "" 15 | name: CLI 16 | - color: 7169D2 17 | description: "" 18 | name: Debian 19 | - color: 3246A9 20 | description: "" 21 | name: Editor 22 | - color: 4A325C 23 | description: "" 24 | name: Elixir 25 | - color: "630406" 26 | description: "" 27 | name: Git 28 | - color: BFD4F2 29 | description: "" 30 | name: Github 31 | - color: "591111" 32 | description: "" 33 | name: Gitlab 34 | - color: 0052CC 35 | description: "" 36 | name: Golang 37 | - color: 006b75 38 | description: "" 39 | name: IDE 40 | - color: E9B83F 41 | description: "" 42 | name: Java 43 | - color: FBCA04 44 | description: "" 45 | name: JavaScript 46 | - color: 4C4A27 47 | description: "" 48 | name: Linux 49 | - color: AF9736 50 | description: "" 51 | name: Lua 52 | - color: C5DEF5 53 | description: "" 54 | name: MacOS 55 | - color: 2F6C1C 56 | description: "" 57 | name: NodeJS 58 | - color: 9F4324 59 | description: "" 60 | name: Podcast 61 | - color: 1D76DB 62 | description: "" 63 | name: Python 64 | - color: 2D3B8B 65 | description: "" 66 | name: Racket 67 | - color: "290303" 68 | description: "" 69 | name: Ruby 70 | - color: F6CA54 71 | description: "" 72 | name: Rust 73 | - color: 2F393C 74 | description: "" 75 | name: Shell 76 | - color: B1C494 77 | description: "" 78 | name: Talks用户指南 79 | - color: 0052CC 80 | description: "" 81 | name: TypeScript 82 | - color: 102F4C 83 | description: "" 84 | name: Ubuntu 85 | - color: 7195A3 86 | description: "" 87 | name: WASM 88 | - color: 0052CC 89 | description: "" 90 | name: Windows 91 | - color: E4A340 92 | description: "" 93 | name: Zig 94 | - color: "008672" 95 | description: "" 96 | name: 前端 97 | - color: 079A59 98 | description: "" 99 | name: 大数据 100 | - color: 1D76DB 101 | description: "" 102 | name: 容器 103 | - color: 53D1C6 104 | description: 争议已和解 105 | name: 已和解 106 | - color: 4321F7 107 | description: "" 108 | name: 数据库 109 | - color: C74443 110 | description: 此话题有争执,请以包容开放的心态去理解 111 | name: 有争执 112 | - color: 599DD6 113 | description: 游戏开发相关 114 | name: 游戏 115 | - color: 13FA32 116 | description: "" 117 | name: 算法 118 | - color: 568C7C 119 | description: "" 120 | name: 绘图 121 | - color: 3AA06A 122 | description: "" 123 | name: 网络工具 124 | - color: D4CBCC 125 | description: "" 126 | name: 翻译 127 | -------------------------------------------------------------------------------- /.github/workflows/label-syncer.yml: -------------------------------------------------------------------------------- 1 | name: Sync labels 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | paths: 8 | - .github/labels.yml 9 | 10 | jobs: 11 | build: 12 | name: Sync labels 13 | runs-on: ubuntu-latest 14 | steps: 15 | - uses: actions/checkout@v2 16 | - uses: micnncim/action-label-syncer@v1 17 | env: 18 | GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} 19 | with: 20 | manifest: .github/labels.yml 21 | prune: false 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /makefile-utils/* 2 | !/makefile-utils/*.mk 3 | 4 | ### macOS ### 5 | *.DS_Store 6 | .AppleDouble 7 | .LSOverride 8 | 9 | # Icon must end with two \r 10 | Icon 11 | 12 | # Thumbnails 13 | ._* 14 | 15 | # Files that might appear in the root of a volume 16 | .DocumentRevisions-V100 17 | .fseventsd 18 | .Spotlight-V100 19 | .TemporaryItems 20 | .Trashes 21 | .VolumeIcon.icns 22 | .com.apple.timemachine.donotpresent 23 | 24 | # Directories potentially created on remote AFP share 25 | .AppleDB 26 | .AppleDesktop 27 | Network Trash Folder 28 | Temporary Items 29 | .apdisk 30 | 31 | ### Node ### 32 | # Logs 33 | logs 34 | *.log 35 | npm-debug.log* 36 | yarn-debug.log* 37 | yarn-error.log* 38 | 39 | # Runtime data 40 | pids 41 | *.pid 42 | *.seed 43 | *.pid.lock 44 | 45 | # Directory for instrumented libs generated by jscoverage/JSCover 46 | lib-cov 47 | 48 | # Coverage directory used by tools like istanbul 49 | coverage 50 | 51 | # nyc test coverage 52 | .nyc_output 53 | 54 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 55 | .grunt 56 | 57 | # Bower dependency directory (https://bower.io/) 58 | bower_components 59 | 60 | # node-waf configuration 61 | .lock-wscript 62 | 63 | # Compiled binary addons (http://nodejs.org/api/addons.html) 64 | build/Release 65 | 66 | # Dependency directories 67 | node_modules/ 68 | jspm_packages/ 69 | 70 | # Typescript v1 declaration files 71 | typings/ 72 | 73 | # Optional npm cache directory 74 | .npm 75 | 76 | # Optional eslint cache 77 | .eslintcache 78 | 79 | # Optional REPL history 80 | .node_repl_history 81 | 82 | # Output of 'npm pack' 83 | *.tgz 84 | 85 | # Yarn Integrity file 86 | .yarn-integrity 87 | 88 | # dotenv environment variables file 89 | .env 90 | 91 | 92 | ### Vim ### 93 | # swap 94 | [._]*.s[a-v][a-z] 95 | [._]*.sw[a-p] 96 | [._]s[a-v][a-z] 97 | [._]sw[a-p] 98 | # session 99 | Session.vim 100 | # temporary 101 | .netrwhist 102 | *~ 103 | # auto-generated tag files 104 | tags 105 | 106 | # End of https://www.gitignore.io/api/node,macos,vim 107 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![banner.png](https://media.githubusercontent.com/media/adoyle-h/_imgs/master/github/tech-talks/banner.png) 2 | 3 | 不闲聊的技术论坛。基于 Github Discussions 搭建。由 Github 社区成员共同参与并维护。 4 | 5 | ## TOC 6 | 7 | 8 | 9 | - [愿景](#愿景) 10 | - [特点](#特点) 11 | - [版块目录](#版块目录) 12 | - [使用方法](#使用方法) 13 | - [参与讨论](#参与讨论) 14 | - [创建讨论](#创建讨论) 15 | - [搜索讨论](#搜索讨论) 16 | - [订阅讨论](#订阅讨论) 17 | - [提问](#提问) 18 | - [回答与评论](#回答与评论) 19 | - [投诉](#投诉) 20 | - [其他](#其他) 21 | - [用户守则](#用户守则) 22 | - [管理员列表](#管理员列表) 23 | - [版权声明](#版权声明) 24 | - [项目许可](#项目许可) 25 | - [知识产权](#知识产权) 26 | - [免责声明](#免责声明) 27 | 28 | 29 | 30 | ## 愿景 31 | 32 | 在这个论坛我们只围绕技术话题进行分享、讨论、提问、解答。 33 | 34 | 这里没有人生感言,没有政治立场,没有职场八卦,没有招聘信息,没有二手交易。 35 | 36 | 希望在这里,我们能够分享有趣的事物,交流想法,获得灵感,结识朋友,提升自己。 37 | 38 | ## 特点 39 | 40 | 1. 不闲聊。只聊技术。中文论坛。 41 | 2. 基于 Github Discussions 搭建。由 Github 社区成员共同参与并维护。 42 | 3. 用户可以[订阅自己关心的话题](#订阅讨论),不会被不相关的讨论打扰。 43 | 4. 支持[邮件通知,GitHub 通知](https://docs.github.com/zh/account-and-profile/managing-subscriptions-and-notifications-on-github/setting-up-notifications/about-notifications)。无需主动刷论坛网页,看一眼邮箱或者通知列表就行啦。 44 | 5. 支持[全局搜索,版块搜索](#搜索讨论)。 45 | 6. 支持贴图,GIF 动图,[上传视频](https://github.blog/2021-05-13-video-uploads-available-github/),外链。 46 | 7. 支持 [GitHub Flavored Markdown 语法](https://docs.github.com/zh/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax)。 47 | 8. 支持 [RSS 订阅](https://github.com/just-talks/tech-talks/discussions/59)。 48 | 49 | ## 版块目录 50 | 51 | - [RSS](https://github.com/just-talks/tech-talks/discussions.atom) | [Tech Talks 主版块](https://github.com/just-talks/tech-talks/discussions): 面向程序员的大众话题。 52 | - [RSS](https://github.com/just-talks/frontend/discussions.atom) | [前端](https://github.com/just-talks/frontend/discussions): HTML、CSS、JS 等话题 53 | - [RSS](https://github.com/just-talks/container/discussions.atom) | [容器](https://github.com/just-talks/container/discussions): Docker,LXC,Podman 等容器技术 54 | - [RSS](https://github.com/just-talks/devops/discussions.atom) | [DevOps](https://github.com/just-talks/devops/discussions): 系统运维,网络知识,K8S 55 | - [RSS](https://github.com/just-talks/hardware/discussions.atom) | [硬件](https://github.com/just-talks/hardware/discussions): 嵌入式,智能硬件,树莓派,arduino,路由器,交换机,GPU,DPU,各种芯片模块和开发板 56 | - [RSS](https://github.com/just-talks/device/discussions.atom) | [数码设备](https://github.com/just-talks/device/discussions): 手机、台式机、笔记本电脑、打印机、摄像机、照相机、家用电器等 57 | - [RSS](https://github.com/just-talks/service/discussions.atom) | [Service](https://github.com/just-talks/service/discussions): SaaS,PaaS,aPaaS,IaaS,Cloud Service 等数字服务 58 | - [RSS](https://github.com/just-talks/database/discussions.atom) | [数据库](https://github.com/just-talks/database/discussions) 59 | - [RSS](https://github.com/just-talks/linux/discussions.atom) | [Linux](https://github.com/just-talks/linux/discussions): Unix/Linux/BSD 系统相关 60 | - [RSS](https://github.com/just-talks/shell/discussions.atom) | [Shell](https://github.com/just-talks/shell/discussions): 终端、Shell 脚本相关 61 | - [RSS](https://github.com/just-talks/editor/discussions.atom) | [编辑器](https://github.com/just-talks/editor/discussions): Vim、Neovim、Emacs、VS Code、Sublime、Eclipse 等编辑器、IDE 相关话题 62 | - [RSS](https://github.com/just-talks/algorithm/discussions.atom) | [算法](https://github.com/just-talks/algorithm/discussions) 63 | - [RSS](https://github.com/just-talks/ML/discussions.atom) | [机器学习](https://github.com/just-talks/ML/discussions): 人工智能,深度学习,NLP,AIGC 64 | - [RSS](https://github.com/just-talks/game-dev/discussions.atom) | [游戏开发](https://github.com/just-talks/game-dev/discussions) 65 | - [RSS](https://github.com/just-talks/ios/discussions.atom) | [iOS](https://github.com/just-talks/ios/discussions) 66 | - [RSS](https://github.com/just-talks/android/discussions.atom) | [Android](https://github.com/just-talks/android/discussions) 67 | - [RSS](https://github.com/just-talks/web3/discussions.atom) | [Web3](https://github.com/just-talks/web3/discussions): 区块链,以太坊,加密货币,Dapp 68 | - [RSS](https://github.com/just-talks/security/discussions.atom) | [安全](https://github.com/just-talks/security/discussions): 密码学,网络、软件、硬件方面的安全攻防。渗透工具。Kali Linux。CVE。 69 | - [RSS](https://github.com/just-talks/apple/discussions.atom) | [Apple](https://github.com/just-talks/apple/discussions): 苹果相关的硬件和软件产品:Mac App, iOS App, MacOS, iPhone, MacBook, iOS, iPad, iWatch, Xcode, WWDC 等 70 | - [RSS](https://github.com/just-talks/microsoft/discussions.atom) | [微软](https://github.com/just-talks/microsoft/discussions): 微软相关的硬件和软件产品:Windows, Surface, Bing, Office, Xbox, Github 等 71 | - [RSS](https://github.com/just-talks/math/discussions.atom) | [数学](https://github.com/just-talks/math/discussions): MATLAB,Mathematica,R 语言,统计学,数学分析 72 | - [RSS](https://github.com/just-talks/logic/discussions.atom) | [逻辑学](https://github.com/just-talks/logic/discussions): 逻辑编程,Prolog,逻辑证明,推理 73 | - [RSS](https://github.com/just-talks/writing/discussions.atom) | [写作](https://github.com/just-talks/writing/discussions): 写作,翻译,RFC 74 | - [RSS](https://github.com/just-talks/design-talks/discussions.atom) | [设计](https://github.com/just-talks/design-talks/discussions): 建筑设计、平面设计、排版、字体等设计话题。并非架构设计。 75 | - 编程语言 76 | - [RSS](https://github.com/just-talks/c/discussions.atom) | [C/C++](https://github.com/just-talks/c/discussions) 77 | - [RSS](https://github.com/just-talks/lua/discussions.atom) | [Lua](https://github.com/just-talks/lua/discussions) 78 | - [RSS](https://github.com/just-talks/nodejs/discussions.atom) | [NodeJS](https://github.com/just-talks/nodejs/discussions): NodeJS、JavaScript、Typescript 79 | - [RSS](https://github.com/just-talks/rust/discussions.atom) | [Rust](https://github.com/just-talks/rust/discussions) 80 | - [RSS](https://github.com/just-talks/golang/discussions.atom) | [Golang](https://github.com/just-talks/golang/discussions) 81 | - [RSS](https://github.com/just-talks/zig/discussions.atom) | [Zig](https://github.com/just-talks/zig/discussions) 82 | - [RSS](https://github.com/just-talks/python/discussions.atom) | [Python](https://github.com/just-talks/python/discussions) 83 | - [RSS](https://github.com/just-talks/java/discussions.atom) | [Java](https://github.com/just-talks/java/discussions) 84 | - [RSS](https://github.com/just-talks/ruby/discussions.atom) | [Ruby](https://github.com/just-talks/ruby/discussions) 85 | - [RSS](https://github.com/just-talks/haskell/discussions.atom) | [Haskell](https://github.com/just-talks/haskell/discussions) 86 | - [RSS](https://github.com/just-talks/racket/discussions.atom) | [Racket](https://github.com/just-talks/racket/discussions) 87 | - [RSS](https://github.com/just-talks/chat/discussions.atom) | [闲聊][闲聊版块]: 唯一可以聊非技术话题的版块。在这里释放你的闲聊欲望。 88 | - [RSS](https://github.com/just-talks/affairs/discussions.atom) | [论坛事务][]: 论坛建议,投诉 89 | 90 | 若无对应版块,请到[论坛事务][]请求创建新版块。 91 | 92 | 所有版块都属于 [Just Talks 组织的子项目](https://github.com/orgs/just-talks/repositories?type=source)。 93 | (注意,Follow Just-Talks 组织并不等同于[订阅讨论](#订阅讨论)) 94 | 95 | ## 使用方法 96 | 97 | ### 参与讨论 98 | 99 | - 请在对应版块的 Github Discussions 参与讨论。不要创建 Pull Request。 100 | - 不要发信息量很低的评论。比如 “+1”,“支持”,“哈哈”,“顶帖”,“沙发”,“前排”,“路过”,“不明觉厉”。 101 | - 建议用 [Github Emoji 标签][]表达个人态度。比如 ❤️ 表达喜欢,👍 表达认同,👎 表达不认同,👀 表达关注。 102 | 103 | ### 创建讨论 104 | 105 | - 创建讨论前请先搜索,避免创建重复讨论。 106 | - 请在对应的版块里创建讨论。若无对应版块,请到[论坛事务][]请求创建新版块。 107 | - [如何判断应该在哪个版块发帖?](https://github.com/just-talks/tech-talks/discussions/13) 108 | - [如果同一个话题想发到多个版块怎么办?](https://github.com/just-talks/tech-talks/discussions/13#discussioncomment-5165716) 109 | - 请在对应的讨论分类 (Categories) 下创建讨论。若无对应分类,可以发到「General」分类下。 110 | - 标题应当言简意赅。不要把内容都写在标题。 111 | 112 | ### 搜索讨论 113 | 114 | - 版块搜索:在 Discussions 页面的搜索框输入搜索词即可。 115 | - 全局搜索:在最上方 Github 搜索框输入 `org:just-talks 搜索词` 可搜索所有版块的讨论。比如搜[算法](https://github.com/search?q=org%3Ajust-talks+%E7%AE%97%E6%B3%95&type=discussions)。 116 | 117 | ### 订阅讨论 118 | 119 | - 你无需主动刷论坛网页,看一眼邮箱或者通知列表就行啦。 120 | - 对于你感兴趣的版块,点击项目的 `Watch` 按钮来订阅消息。具体用法请看 [Github - 查看订阅](https://docs.github.com/zh/account-and-profile/managing-subscriptions-and-notifications-on-github/managing-subscriptions-for-activity-on-github/viewing-your-subscriptions)。 121 | 点击 Watch Custom 订阅 Discussion 122 | - 你也可以只订阅某个讨论。进入某个讨论,点击右边 Notifications 的 `Subscribe` 按钮。 123 | - Follow Just-Talks 组织不会收到讨论通知,你的主页消息流也不会显示新讨论。 124 | - 如果你使用 RSS 客户端,可以订阅 Discussion RSS。具体看[这个帖子](https://github.com/just-talks/tech-talks/discussions/59)。 125 | 126 | ### 提问 127 | 128 | - 统一在「Q&A」分类下提问,因为这个分类下的讨论可以确认答案 (Answers enabled)。 129 | - 提问前需了解并遵守「[提问的智慧](https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way)」「[如何有效地报告 Bug](http://www.chiark.greenend.org.uk/~sgtatham/bugs-cn.html) ([链接备份](https://web.archive.org/web/20230221005113/https://www.chiark.greenend.org.uk/~sgtatham/bugs-cn.html))」「[How to create a Minimal, Complete, and Verifiable example](http://stackoverflow.com/help/mcve)」。 130 | - 提问前先问问 Google,ChatGPT,new Bing。 131 | - 不必羞怯于暴露自己的无知,我们不会指责你。但偷懒不行,我们会给你点 👎。提问不是索取,不是只写一个标题就等别人把答案喂给你。 132 | - 提问是一种交换。你给别人出示具体问题、期望目标以及你的失败尝试,别人才愿意给予你指引。 133 | - 很多时候,解决问题的人是提问者自己。因为把问题描述清楚了,通往答案的路就会变得明显。 134 | - 如果你提出一个好问题,会有人愿意与你一起寻找宝藏。 135 | 136 | ### 回答与评论 137 | 138 | - 先理解对方的观点,再表达自己的观点。 139 | - 多给予他人肯定与支持,或者帮助他人解决问题。少表达不满、嘲笑、指责和愤怒,这些表达既没指出问题所在,对解决问题也没任何帮助。 140 | - 保持宽容与耐心。不要只回复 RTFM 或者 STFW。起码加上一个文档链接,让人知道去哪找答案。 141 | - 允许直接使用 ChatGPT,new Bing 这类 AI 的回答。前提是你确认 AI 说的正确,AI 的回答就等同于你的回答。 142 | 143 | ### 投诉 144 | 145 | - 请到[论坛事务][]发帖描述需求。不要在其他版块发帖。 146 | - 如果有人攻击你,你别急着反击输出,先 @[管理员](#管理员列表)。如果他违反了用户守则,管理员会处理的。 147 | 148 | ### 其他 149 | 150 | - [关于如何基于 Github Discussion 做论坛](https://github.com/just-talks/tech-talks/discussions/14) 151 | - 让我们专注于技术问题,而不是人本身的问题。人比技术复杂太多。对于陌生网友,我们更是知之甚少。 152 | - **请大家多参与分享与交流。帮忙推广本论坛,分享转发给需要的人。给项目加一颗 Star。感谢。** 153 | - 标签 (Label) 由管理员统一管理和添加到讨论。用户无法主动添加标签。 154 | 155 | ## 用户守则 156 | 157 | 0. 只讨论技术。禁止发布与技术无关的帖子和评论。([闲聊版块][]除外) 158 | 1. 保持友善。多赞赏,少贬低。 159 | 2. 请用中文交流。这是中文技术论坛。如果你不懂中文,建议使用翻译器。(Please communicate in Chinese. This is a Chinese language technical forum. If you don't understand Chinese, we recommend to use a translator.) 160 | 3. 禁止阴阳怪气、嘲讽、辱骂、威胁、暴露他人隐私等行为。 161 | 4. 禁止谈论政治、宗教、信仰。 162 | 5. 禁止发布求职或招聘信息。 163 | 6. 禁止发布无信息量的评论,比如 “+1”,“顶”,“沙发”,“前排”,“留名”,“路过”,“不明觉厉”。 164 | 7. 禁止发布任何有关盗版的任何信息。 165 | 8. 禁止全文转载文章。请发文章链接,最好再补上备份链接。如何制作备份链接请看[这篇文章](https://adoyle.me/Today-I-Learned/others/archive-webpage.html) ([链接备份](https://web.archive.org/web/20230227102341/https://adoyle.me/Today-I-Learned/others/archive-webpage.html))。 166 | 9. 禁止发布有关歧视、色情、性暗示、擦边球的图片、视音频、文字、外链等信息,包括 AI 生成的此类信息。 167 | 168 | 违反用户守则的言论会被删除。当你在网上发帖时,需要考虑是否违反你所在地区的法律法规。 169 | **请大家遵守规则**。 170 | 171 | ## 管理员列表 172 | 173 | - 所有版块:@adoyle-h 174 | - 闲聊版块:[招募中](https://github.com/just-talks/chat/discussions/1) 175 | 176 | ## 版权声明 177 | 178 | ### 项目许可 179 | 180 | [![CC BY-NC-SA 4.0][cc-by-shield]][cc-by] 181 | 182 | Tech Talks 采用[知识共享 署名-非商业性使用-相同方式共享 4.0 国际 许可协议][cc-by]进行许可。 183 | 184 | [cc-by]: http://creativecommons.org/licenses/by-nc-sa/4.0/ 185 | [cc-by-shield]: https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg 186 | 187 | ### 知识产权 188 | 189 | 1. 发布在本论坛的原创文章、评论、图片等内容的知识产权均归用户本人所有。 190 | 191 | 2. 用户通过转载、复制、截图等方式获取他人内容,并发布在本论坛的,相关内容的知识产权属于内容的权利人。用户不得侵犯他人知识产权及其他合法权利。因用户发布内容引发知识产权纠纷的,用户须自行承担相应后果,若因此造成本论坛损失的,本论坛有权依照法律规定维护合法权益。 192 | 193 | 3. 本论坛展示的标识、版面设计、排版方式、文本、图片、图形等受著作权法、商标法、专利法及其他法律保护的部分,未经论坛所有者书面同意,不得进行任何形式的发布、改编、修改,或其他商业及非商业性使用。 194 | 195 | 4. 本论坛不对用户发布内容的知识产权权属进行保证,并且尊重权利人的知识产权及其他合法权益。若权利人认为用户发布的内容侵犯自身的知识产权或其他合法权益,可向论坛管理员请求帮助。 196 | 197 | ### 免责声明 198 | 199 | 1. 用户发布的一切内容仅代表用户个人观点,不视为论坛所有者和管理员知晓其内容之存在、赞同其内容之观点或证明其内容的真实性。作为内容的发布者,需对所发布内容负责,因所发布内容引发的一切纠纷,由该内容的发布者承担全部法律责任。在法律允许的范围内,本论坛所有者和管理员对上述内容予以免责。 200 | 201 | 2. 本论坛使用 Github 为用户发布内容提供空间,本论坛不对论坛内容、服务功能、可靠性、可用性做任何承诺。 202 | 203 | 3. 用户在发布侵犯他人知识产权、名誉权或其他合法权益的内容,或发布损害国家利益、违背现行法律法规及相关政策、违背公序良俗的相关内容时,论坛管理员有权对相应内容采取屏蔽、删除等处理措施。 204 | 205 | 206 | 207 | 208 | [闲聊版块]: https://github.com/just-talks/chat/discussions 209 | [论坛事务]: https://github.com/just-talks/affairs/discussions 210 | [Github Emoji 标签]: https://github.blog/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/ 211 | --------------------------------------------------------------------------------