Articles
159
Tags
23
Categories
4
Home
Tags
Ferry's blog
Failed to connect to github.com port 443 after 21193 ms: Timed out
Search
Home
Tags
Failed to connect to github.com port 443 after 21193 ms: Timed out
Created
2023-03-20
|
Updated
2023-04-13
|
Post Views:
这种连接不上github的问题也不是第一次见了,一直被这种问题困扰。
解决方法:
修改DNS:
114.114.114.114
or 其他
git
Previous
Tkinter
IntroductionThe foundational element of a Tkinter GUI is the window. Windows are the containers in which all other GUI elements live. These other GUI elements, such as text boxes, labels, and buttons, are known as widgets. windowThe first thing you need to do is import the Python GUI Tkinter module: 1import tkinter as tk A window is an instance of Tkinter’s Tk class. Go ahead and create a new window and assign it to the variable window: 1window = tk.Tk() widgetsUse the tk.Label class to...
Next
python comprehensions
List ComprehensionList comprehension offers a shorter syntax when you want to create a new list based on the values of an existing list. The Syntaxnewlist = [expression for item in iterable if condition == True] The return value is a new list, leaving the old list unchanged. ConditionThe condition is like a filter that only accepts the items that valuate to True. IterableThe iterable can be any iterable object, like a list, tuple, set etc. ExpressionThe expression is the...
Related Articles
2020-03-27
git ugage
What is Git?Git is a popular version control system. It is used for: Tracking code changes Tracking who made changes Coding collaboration Git Getting StartedGit InstallYou can download Git for free from the following website: https://www.git-scm.com/ Configure GitNow let Git know who you are. This is important for version control systems, as each Git commit uses this information: 12git config --global user.name ""git config --global user.email "" Initialize Git123mkdir...
FerryChan
Articles
159
Tags
23
Categories
4
Follow Me
Recent Posts
js tutorial
2025-07-18
JS逆向
2025-07-08
正则表达式
2025-07-08
python模拟ajax请求
2025-07-02
A Django Project
2025-06-16
Search
Loading Database