Skip to content

Commit 0bc5cab

Browse files
networking
0 parents  commit 0bc5cab

File tree

2 files changed

+254
-0
lines changed

2 files changed

+254
-0
lines changed

.gitignore

+254
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,254 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/macos,java,python,go,linux
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,java,python,go,linux
4+
5+
### Go ###
6+
# If you prefer the allow list template instead of the deny list, see community template:
7+
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
8+
#
9+
# Binaries for programs and plugins
10+
*.exe
11+
*.exe~
12+
*.dll
13+
*.so
14+
*.dylib
15+
16+
# Test binary, built with `go test -c`
17+
*.test
18+
19+
# Output of the go coverage tool, specifically when used with LiteIDE
20+
*.out
21+
22+
# Dependency directories (remove the comment below to include it)
23+
# vendor/
24+
25+
# Go workspace file
26+
go.work
27+
28+
### Go Patch ###
29+
/vendor/
30+
/Godeps/
31+
32+
### Java ###
33+
# Compiled class file
34+
*.class
35+
36+
# Log file
37+
*.log
38+
39+
# BlueJ files
40+
*.ctxt
41+
42+
# Mobile Tools for Java (J2ME)
43+
.mtj.tmp/
44+
45+
# Package Files #
46+
*.jar
47+
*.war
48+
*.nar
49+
*.ear
50+
*.zip
51+
*.tar.gz
52+
*.rar
53+
54+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
55+
hs_err_pid*
56+
replay_pid*
57+
58+
### Linux ###
59+
*~
60+
61+
# temporary files which can be created if a process still has a handle open of a deleted file
62+
.fuse_hidden*
63+
64+
# KDE directory preferences
65+
.directory
66+
67+
# Linux trash folder which might appear on any partition or disk
68+
.Trash-*
69+
70+
# .nfs files are created when an open file is removed but is still being accessed
71+
.nfs*
72+
73+
### macOS ###
74+
# General
75+
.DS_Store
76+
.AppleDouble
77+
.LSOverride
78+
79+
# Icon must end with two \r
80+
Icon
81+
82+
83+
# Thumbnails
84+
._*
85+
86+
# Files that might appear in the root of a volume
87+
.DocumentRevisions-V100
88+
.fseventsd
89+
.Spotlight-V100
90+
.TemporaryItems
91+
.Trashes
92+
.VolumeIcon.icns
93+
.com.apple.timemachine.donotpresent
94+
95+
# Directories potentially created on remote AFP share
96+
.AppleDB
97+
.AppleDesktop
98+
Network Trash Folder
99+
Temporary Items
100+
.apdisk
101+
102+
### Python ###
103+
# Byte-compiled / optimized / DLL files
104+
__pycache__/
105+
*.py[cod]
106+
*$py.class
107+
108+
# C extensions
109+
110+
# Distribution / packaging
111+
.Python
112+
build/
113+
develop-eggs/
114+
dist/
115+
downloads/
116+
eggs/
117+
.eggs/
118+
lib/
119+
lib64/
120+
parts/
121+
sdist/
122+
var/
123+
wheels/
124+
share/python-wheels/
125+
*.egg-info/
126+
.installed.cfg
127+
*.egg
128+
MANIFEST
129+
130+
# PyInstaller
131+
# Usually these files are written by a python script from a template
132+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
133+
*.manifest
134+
*.spec
135+
136+
# Installer logs
137+
pip-log.txt
138+
pip-delete-this-directory.txt
139+
140+
# Unit test / coverage reports
141+
htmlcov/
142+
.tox/
143+
.nox/
144+
.coverage
145+
.coverage.*
146+
.cache
147+
nosetests.xml
148+
coverage.xml
149+
*.cover
150+
*.py,cover
151+
.hypothesis/
152+
.pytest_cache/
153+
cover/
154+
155+
# Translations
156+
*.mo
157+
*.pot
158+
159+
# Django stuff:
160+
local_settings.py
161+
db.sqlite3
162+
db.sqlite3-journal
163+
164+
# Flask stuff:
165+
instance/
166+
.webassets-cache
167+
168+
# Scrapy stuff:
169+
.scrapy
170+
171+
# Sphinx documentation
172+
docs/_build/
173+
174+
# PyBuilder
175+
.pybuilder/
176+
target/
177+
178+
# Jupyter Notebook
179+
.ipynb_checkpoints
180+
181+
# IPython
182+
profile_default/
183+
ipython_config.py
184+
185+
# pyenv
186+
# For a library or package, you might want to ignore these files since the code is
187+
# intended to run in multiple environments; otherwise, check them in:
188+
# .python-version
189+
190+
# pipenv
191+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
192+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
193+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
194+
# install all needed dependencies.
195+
#Pipfile.lock
196+
197+
# poetry
198+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
199+
# This is especially recommended for binary packages to ensure reproducibility, and is more
200+
# commonly ignored for libraries.
201+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
202+
#poetry.lock
203+
204+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
205+
__pypackages__/
206+
207+
# Celery stuff
208+
celerybeat-schedule
209+
celerybeat.pid
210+
211+
# SageMath parsed files
212+
*.sage.py
213+
214+
# Environments
215+
.env
216+
.venv
217+
env/
218+
venv/
219+
ENV/
220+
env.bak/
221+
venv.bak/
222+
223+
# Spyder project settings
224+
.spyderproject
225+
.spyproject
226+
227+
# Rope project settings
228+
.ropeproject
229+
230+
# mkdocs documentation
231+
/site
232+
233+
# mypy
234+
.mypy_cache/
235+
.dmypy.json
236+
dmypy.json
237+
238+
# Pyre type checker
239+
.pyre/
240+
241+
# pytype static type analyzer
242+
.pytype/
243+
244+
# Cython debug symbols
245+
cython_debug/
246+
247+
# PyCharm
248+
# JetBrains specific template is maintainted in a separate JetBrains.gitignore that can
249+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
250+
# and can be added to the global gitignore or merged into this file. For a more nuclear
251+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
252+
#.idea/
253+
254+
# End of https://www.toptal.com/developers/gitignore/api/macos,java,python,go,linux

Networking.pdf

5.47 MB
Binary file not shown.

0 commit comments

Comments
 (0)