Discord自动聊天机器人,撸白名单必备!保姆级教程!
我用的是firefox浏览器。相较chrome,我也更推荐firefox浏览器,隐私至上,更安全。安装python3.9. https://www.python.org/学习一点python知识,知道怎么看懂脚本、改简单的脚本、跑脚本。 https://www.w3school.com.cn/python/index.asp打开以下链接,复制代码。https://gist.github.com/danielgxm/4116672ea57350fd46c708fb5cdd897b 将代码保存为 discord_bot.py 文件。然后打开本地代码文件开始配置参数。这个方法里的值是随机发言的内容,可以按照格式自己修改:import requests, random def gen_context(): context_list = [ "hello bro", "let's go !", "to the moon!", "nice", "project", "have a good day", "good", "luck", "how's going", "so do i", "ye...
discord自动打卡机器人。刷等级必备。保姆级教程!
脚本的功能很简单,就是在指定的discord频道里自动发gm、gn打卡。 只要把脚本运行起来就不用管了。如果是18点以前就发gm,18点以后发gn,每6小时运行一次。需要更好地逻辑,可以自己改一下代码。 我用的是firefox浏览器。相较chrome,我也更推荐firefox浏览器,隐私至上,更安全。安装python3.9. https://www.python.org/学习一点python知识,知道怎么看懂脚本、改简单的脚本、跑脚本。 https://www.w3school.com.cn/python/index.asp打开以下链接,复制代码。将代码保存为 discord_gm_bot.py 文件。然后打开本地代码文件开始配置参数。 https://gist.github.com/danielgxm/284ca373c7066b958fdb6ee11fde1770打开网页版discord获取需要配置的参数:chanel_list = ['891977019544457260'] #配置chanelId,891977019544457260是研习社chain...
Discord自动聊天机器人,撸白名单必备!保姆级教程!
我用的是firefox浏览器。相较chrome,我也更推荐firefox浏览器,隐私至上,更安全。安装python3.9. https://www.python.org/学习一点python知识,知道怎么看懂脚本、改简单的脚本、跑脚本。 https://www.w3school.com.cn/python/index.asp打开以下链接,复制代码。https://gist.github.com/danielgxm/4116672ea57350fd46c708fb5cdd897b 将代码保存为 discord_bot.py 文件。然后打开本地代码文件开始配置参数。这个方法里的值是随机发言的内容,可以按照格式自己修改:import requests, random def gen_context(): context_list = [ "hello bro", "let's go !", "to the moon!", "nice", "project", "have a good day", "good", "luck", "how's going", "so do i", "ye...
discord自动打卡机器人。刷等级必备。保姆级教程!
脚本的功能很简单,就是在指定的discord频道里自动发gm、gn打卡。 只要把脚本运行起来就不用管了。如果是18点以前就发gm,18点以后发gn,每6小时运行一次。需要更好地逻辑,可以自己改一下代码。 我用的是firefox浏览器。相较chrome,我也更推荐firefox浏览器,隐私至上,更安全。安装python3.9. https://www.python.org/学习一点python知识,知道怎么看懂脚本、改简单的脚本、跑脚本。 https://www.w3school.com.cn/python/index.asp打开以下链接,复制代码。将代码保存为 discord_gm_bot.py 文件。然后打开本地代码文件开始配置参数。 https://gist.github.com/danielgxm/284ca373c7066b958fdb6ee11fde1770打开网页版discord获取需要配置的参数:chanel_list = ['891977019544457260'] #配置chanelId,891977019544457260是研习社chain...

Subscribe to 高同学Daniel

Subscribe to 高同学Daniel
Share Dialog
Share Dialog
<100 subscribers
<100 subscribers
git config --global credential.helper store
将访问凭据保存到本地。
不过默认是明文保存在磁盘上。
Git Credential Manager (GCM) is another way to store your credentials securely and connect to GitHub over HTTPS. With GCM, you don't have to manually create and store a PAT, as GCM manages authentication on your behalf, including 2FA (two-factor authentication).
For Linux, install Git and GCM, then configure Git to use GCM.
Install Git from your distro's packaging system. Instructions will vary depending on the flavor of Linux you run.
Install GCM. See the instructions in the GCM repo, as they'll vary depending on the flavor of Linux you run.
Configure Git to use GCM. There are several backing stores that you may choose from, so see the GCM docs to complete your setup. For more information, see "GCM Linux."
The next time you clone an HTTPS URL that requires authentication, Git will prompt you to log in using a browser window. You may first be asked to authorize an OAuth app. If your account or organization requires two-factor auth, you'll also need to complete the 2FA challenge.
Once you've authenticated successfully, your credentials are stored on your system and will be used every time you clone an HTTPS URL. Git will not require you to type your credentials in the command line again unless you change your credentials.
For more options for storing your credentials on Linux, see Credential Storage in Pro Git.
git config --global credential.helper store
将访问凭据保存到本地。
不过默认是明文保存在磁盘上。
Git Credential Manager (GCM) is another way to store your credentials securely and connect to GitHub over HTTPS. With GCM, you don't have to manually create and store a PAT, as GCM manages authentication on your behalf, including 2FA (two-factor authentication).
For Linux, install Git and GCM, then configure Git to use GCM.
Install Git from your distro's packaging system. Instructions will vary depending on the flavor of Linux you run.
Install GCM. See the instructions in the GCM repo, as they'll vary depending on the flavor of Linux you run.
Configure Git to use GCM. There are several backing stores that you may choose from, so see the GCM docs to complete your setup. For more information, see "GCM Linux."
The next time you clone an HTTPS URL that requires authentication, Git will prompt you to log in using a browser window. You may first be asked to authorize an OAuth app. If your account or organization requires two-factor auth, you'll also need to complete the 2FA challenge.
Once you've authenticated successfully, your credentials are stored on your system and will be used every time you clone an HTTPS URL. Git will not require you to type your credentials in the command line again unless you change your credentials.
For more options for storing your credentials on Linux, see Credential Storage in Pro Git.
No activity yet