Skip to content

Commit 7325f99

Browse files
author
Your Name
committed
DD
1 parent c03ce39 commit 7325f99

27 files changed

+3001
-0
lines changed

.gitignore

Lines changed: 295 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,295 @@
1+
# Dependencies
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
package-lock.json
7+
yarn.lock
8+
9+
# Generated document pages (optional - uncomment if you don't want to track generated files)
10+
# documents/
11+
12+
# Build outputs
13+
dist/
14+
build/
15+
out/
16+
17+
# Environment variables
18+
.env
19+
.env.local
20+
.env.development.local
21+
.env.test.local
22+
.env.production.local
23+
24+
# IDE and editor files
25+
.vscode/
26+
.idea/
27+
*.swp
28+
*.swo
29+
*~
30+
.DS_Store
31+
Thumbs.db
32+
33+
# Logs
34+
logs/
35+
*.log
36+
37+
# Runtime data
38+
pids/
39+
*.pid
40+
*.seed
41+
*.pid.lock
42+
43+
# Coverage directory used by tools like istanbul
44+
coverage/
45+
*.lcov
46+
47+
# nyc test coverage
48+
.nyc_output/
49+
50+
# Dependency directories
51+
jspm_packages/
52+
53+
# Optional npm cache directory
54+
.npm
55+
56+
# Optional eslint cache
57+
.eslintcache
58+
59+
# Microbundle cache
60+
.rpt2_cache/
61+
.rts2_cache_cjs/
62+
.rts2_cache_es/
63+
.rts2_cache_umd/
64+
65+
# Optional REPL history
66+
.node_repl_history
67+
68+
# Output of 'npm pack'
69+
*.tgz
70+
71+
# Yarn Integrity file
72+
.yarn-integrity
73+
74+
# parcel-bundler cache (https://parceljs.org/)
75+
.cache
76+
.parcel-cache
77+
78+
# Next.js build output
79+
.next
80+
81+
# Nuxt.js build / generate output
82+
.nuxt
83+
84+
# Gatsby files
85+
.cache/
86+
public
87+
88+
# Storybook build outputs
89+
.out
90+
.storybook-out
91+
92+
# Temporary folders
93+
tmp/
94+
temp/
95+
96+
# OS generated files
97+
.DS_Store
98+
.DS_Store?
99+
._*
100+
.Spotlight-V100
101+
.Trashes
102+
ehthumbs.db
103+
Thumbs.db
104+
105+
# Windows
106+
*.lnk
107+
108+
# Linux
109+
*~
110+
111+
# Local development
112+
.local/
113+
local/
114+
115+
# Backup files
116+
*.bak
117+
*.backup
118+
*.old
119+
120+
# Test files
121+
test-results/
122+
coverage/
123+
124+
# Documentation build
125+
docs-build/
126+
site/
127+
128+
# Jekyll (if you decide to use it later)
129+
_site/
130+
.jekyll-cache/
131+
.jekyll-metadata
132+
133+
# Ruby (if you decide to use Jekyll later)
134+
.bundle/
135+
vendor/
136+
Gemfile.lock
137+
138+
# Python (if you add Python tools later)
139+
__pycache__/
140+
*.py[cod]
141+
*$py.class
142+
*.so
143+
.Python
144+
env/
145+
venv/
146+
ENV/
147+
env.bak/
148+
venv.bak/
149+
150+
# Java (if you add Java tools later)
151+
*.class
152+
*.jar
153+
*.war
154+
*.ear
155+
*.zip
156+
*.tar.gz
157+
*.rar
158+
hs_err_pid*
159+
160+
# Node.js specific
161+
node_modules/
162+
npm-debug.log*
163+
yarn-debug.log*
164+
yarn-error.log*
165+
.npm
166+
.yarn-integrity
167+
168+
# Generated files that might be large
169+
*.pdf.bak
170+
*.doc.bak
171+
*.docx.bak
172+
173+
# Security and sensitive files
174+
*.key
175+
*.pem
176+
*.p12
177+
*.pfx
178+
*.crt
179+
*.csr
180+
secrets/
181+
secrets.json
182+
config/secrets.json
183+
184+
# Local configuration overrides
185+
config.local.js
186+
settings.local.json
187+
188+
# Cache directories
189+
.cache/
190+
.parcel-cache/
191+
.next/
192+
.nuxt/
193+
dist/
194+
build/
195+
196+
# Temporary files
197+
*.tmp
198+
*.temp
199+
temp/
200+
tmp/
201+
202+
# Archive files (if you have large archives)
203+
*.7z
204+
*.rar
205+
*.tar
206+
*.tar.gz
207+
*.zip
208+
209+
# Large media files (if you add videos/images later)
210+
*.mp4
211+
*.avi
212+
*.mov
213+
*.wmv
214+
*.flv
215+
*.webm
216+
*.mkv
217+
*.m4v
218+
*.3gp
219+
*.mp3
220+
*.wav
221+
*.flac
222+
*.aac
223+
*.ogg
224+
*.wma
225+
226+
# High-resolution images (if you add them later)
227+
*.tiff
228+
*.tif
229+
*.bmp
230+
*.psd
231+
*.ai
232+
*.eps
233+
*.svg
234+
235+
# Database files (if you add databases later)
236+
*.db
237+
*.sqlite
238+
*.sqlite3
239+
*.mdb
240+
*.accdb
241+
242+
# Backup and archive files
243+
backups/
244+
archives/
245+
*.backup
246+
*.bak
247+
*.old
248+
*.orig
249+
250+
# System files
251+
.DS_Store
252+
.DS_Store?
253+
._*
254+
.Spotlight-V100
255+
.Trashes
256+
ehthumbs.db
257+
Thumbs.db
258+
desktop.ini
259+
260+
# IDE specific files
261+
.vscode/
262+
.idea/
263+
*.swp
264+
*.swo
265+
*~
266+
.project
267+
.classpath
268+
.settings/
269+
270+
# Logs and debugging
271+
*.log
272+
logs/
273+
debug/
274+
debug.log
275+
276+
# Performance monitoring
277+
.nyc_output/
278+
coverage/
279+
*.lcov
280+
281+
# Local development overrides
282+
.env.local
283+
.env.development.local
284+
.env.test.local
285+
.env.production.local
286+
287+
# Package manager files
288+
package-lock.json
289+
yarn.lock
290+
pnpm-lock.yaml
291+
292+
# Optional: Uncomment if you don't want to track generated document pages
293+
# documents/
294+
# !documents/index.html
295+
# !documents/document-styles.css

4G/1716833547474.pdf

1.91 MB
Binary file not shown.

5G/5G CYBERSECURITY.pdf

472 KB
Binary file not shown.
5.47 MB
Binary file not shown.
Binary file not shown.
2.04 MB
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)