Skip to content

Commit b41dfc7

Browse files
author
quantumcore
committed
Update v.1
1 parent 930a396 commit b41dfc7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+162643
-10785
lines changed

.gitignore

+377-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,380 @@
1+
# Sometimes a file finds a way to slip through and make it through repo...
2+
3+
.vscode/*
4+
.vs/*
15
*.exe
6+
*.pyc
27
*.d
8+
*.o
9+
*.dll
10+
output.png
11+
passwords.txt
12+
downloads/*
13+
*.bmp
14+
*.jpg
15+
*.jpeg
16+
*.wav
17+
test.c
18+
test.cpp
19+
## Ignore Visual Studio temporary files, build results, and
20+
## files generated by popular Visual Studio add-ons.
21+
##
22+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
23+
24+
# User-specific files
25+
*.rsuser
26+
*.suo
27+
*.user
28+
*.userosscache
29+
*.sln.docstates
30+
31+
# User-specific files (MonoDevelop/Xamarin Studio)
32+
*.userprefs
33+
34+
# Mono auto generated files
35+
mono_crash.*
36+
37+
# Build results
38+
[Dd]ebug/
39+
[Dd]ebugPublic/
40+
[Rr]elease/
41+
[Rr]eleases/
42+
x64/
43+
x86/
44+
[Ww][Ii][Nn]32/
45+
[Aa][Rr][Mm]/
46+
[Aa][Rr][Mm]64/
47+
bld/
48+
[Bb]in/
49+
[Oo]bj/
50+
[Ll]og/
51+
[Ll]ogs/
52+
53+
# Visual Studio 2015/2017 cache/options directory
54+
.vs/
55+
# Uncomment if you have tasks that create the project's static files in wwwroot
56+
#wwwroot/
57+
58+
# Visual Studio 2017 auto generated files
59+
Generated\ Files/
60+
61+
# MSTest test Results
62+
[Tt]est[Rr]esult*/
63+
[Bb]uild[Ll]og.*
64+
65+
# NUnit
66+
*.VisualState.xml
67+
TestResult.xml
68+
nunit-*.xml
69+
70+
# Build Results of an ATL Project
71+
[Dd]ebugPS/
72+
[Rr]eleasePS/
73+
dlldata.c
74+
75+
# Benchmark Results
76+
BenchmarkDotNet.Artifacts/
77+
78+
# .NET Core
79+
project.lock.json
80+
project.fragment.lock.json
81+
artifacts/
82+
83+
# ASP.NET Scaffolding
84+
ScaffoldingReadMe.txt
85+
86+
# StyleCop
87+
StyleCopReport.xml
88+
89+
# Files built by Visual Studio
90+
*_i.c
91+
*_p.c
92+
*_h.h
93+
*.ilk
94+
*.meta
95+
*.obj
96+
*.iobj
97+
*.pch
98+
*.pdb
99+
*.ipdb
100+
*.pgc
101+
*.pgd
102+
*.rsp
103+
*.sbr
104+
*.tlb
105+
*.tli
106+
*.tlh
107+
*.tmp
108+
*.tmp_proj
109+
*_wpftmp.csproj
110+
*.log
111+
*.vspscc
112+
*.vssscc
113+
.builds
114+
*.pidb
115+
*.svclog
116+
*.scc
117+
118+
# Chutzpah Test files
119+
_Chutzpah*
120+
121+
# Visual C++ cache files
122+
ipch/
123+
*.aps
124+
*.ncb
125+
*.opendb
126+
*.opensdf
127+
*.sdf
128+
*.cachefile
129+
*.VC.db
130+
*.VC.VC.opendb
131+
132+
# Visual Studio profiler
133+
*.psess
134+
*.vsp
135+
*.vspx
136+
*.sap
137+
138+
# Visual Studio Trace Files
139+
*.e2e
140+
141+
# TFS 2012 Local Workspace
142+
$tf/
143+
144+
# Guidance Automation Toolkit
145+
*.gpState
146+
147+
# ReSharper is a .NET coding add-in
148+
_ReSharper*/
149+
*.[Rr]e[Ss]harper
150+
*.DotSettings.user
151+
152+
# TeamCity is a build add-in
153+
_TeamCity*
154+
155+
# DotCover is a Code Coverage Tool
156+
*.dotCover
157+
158+
# AxoCover is a Code Coverage Tool
159+
.axoCover/*
160+
!.axoCover/settings.json
161+
162+
# Coverlet is a free, cross platform Code Coverage Tool
163+
coverage*.json
164+
coverage*.xml
165+
coverage*.info
166+
167+
# Visual Studio code coverage results
168+
*.coverage
169+
*.coveragexml
170+
171+
# NCrunch
172+
_NCrunch_*
173+
.*crunch*.local.xml
174+
nCrunchTemp_*
175+
176+
# MightyMoose
177+
*.mm.*
178+
AutoTest.Net/
179+
180+
# Web workbench (sass)
181+
.sass-cache/
182+
183+
# Installshield output folder
184+
[Ee]xpress/
185+
186+
# DocProject is a documentation generator add-in
187+
DocProject/buildhelp/
188+
DocProject/Help/*.HxT
189+
DocProject/Help/*.HxC
190+
DocProject/Help/*.hhc
191+
DocProject/Help/*.hhk
192+
DocProject/Help/*.hhp
193+
DocProject/Help/Html2
194+
DocProject/Help/html
195+
196+
# Click-Once directory
197+
publish/
198+
199+
# Publish Web Output
200+
*.[Pp]ublish.xml
201+
*.azurePubxml
202+
# Note: Comment the next line if you want to checkin your web deploy settings,
203+
# but database connection strings (with potential passwords) will be unencrypted
204+
*.pubxml
205+
*.publishproj
206+
207+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
208+
# checkin your Azure Web App publish settings, but sensitive information contained
209+
# in these scripts will be unencrypted
210+
PublishScripts/
211+
212+
# NuGet Packages
213+
*.nupkg
214+
# NuGet Symbol Packages
215+
*.snupkg
216+
# The packages folder can be ignored because of Package Restore
217+
**/[Pp]ackages/*
218+
# except build/, which is used as an MSBuild target.
219+
!**/[Pp]ackages/build/
220+
# Uncomment if necessary however generally it will be regenerated when needed
221+
#!**/[Pp]ackages/repositories.config
222+
# NuGet v3's project.json files produces more ignorable files
223+
*.nuget.props
224+
*.nuget.targets
225+
226+
# Microsoft Azure Build Output
227+
csx/
228+
*.build.csdef
229+
230+
# Microsoft Azure Emulator
231+
ecf/
232+
rcf/
233+
234+
# Windows Store app package directories and files
235+
AppPackages/
236+
BundleArtifacts/
237+
Package.StoreAssociation.xml
238+
_pkginfo.txt
239+
*.appx
240+
*.appxbundle
241+
*.appxupload
242+
243+
# Visual Studio cache files
244+
# files ending in .cache can be ignored
245+
*.[Cc]ache
246+
# but keep track of directories ending in .cache
247+
!?*.[Cc]ache/
248+
249+
# Others
250+
ClientBin/
251+
~$*
252+
*~
253+
*.dbmdl
254+
*.dbproj.schemaview
255+
*.jfm
256+
*.pfx
257+
*.publishsettings
258+
orleans.codegen.cs
259+
260+
# Including strong name files can present a security risk
261+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
262+
#*.snk
263+
264+
# Since there are multiple workflows, uncomment next line to ignore bower_components
265+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
266+
#bower_components/
267+
268+
# RIA/Silverlight projects
269+
Generated_Code/
270+
271+
# Backup & report files from converting an old project file
272+
# to a newer Visual Studio version. Backup files are not needed,
273+
# because we have git ;-)
274+
_UpgradeReport_Files/
275+
Backup*/
276+
UpgradeLog*.XML
277+
UpgradeLog*.htm
278+
ServiceFabricBackup/
279+
*.rptproj.bak
280+
281+
# SQL Server files
282+
*.mdf
283+
*.ldf
284+
*.ndf
285+
286+
# Business Intelligence projects
287+
*.rdl.data
288+
*.bim.layout
289+
*.bim_*.settings
290+
*.rptproj.rsuser
291+
*- [Bb]ackup.rdl
292+
*- [Bb]ackup ([0-9]).rdl
293+
*- [Bb]ackup ([0-9][0-9]).rdl
294+
295+
# Microsoft Fakes
296+
FakesAssemblies/
297+
298+
# GhostDoc plugin setting file
299+
*.GhostDoc.xml
300+
301+
# Node.js Tools for Visual Studio
302+
.ntvs_analysis.dat
303+
node_modules/
304+
305+
# Visual Studio 6 build log
306+
*.plg
307+
308+
# Visual Studio 6 workspace options file
309+
*.opt
310+
311+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
312+
*.vbw
313+
314+
# Visual Studio LightSwitch build output
315+
**/*.HTMLClient/GeneratedArtifacts
316+
**/*.DesktopClient/GeneratedArtifacts
317+
**/*.DesktopClient/ModelManifest.xml
318+
**/*.Server/GeneratedArtifacts
319+
**/*.Server/ModelManifest.xml
320+
_Pvt_Extensions
321+
322+
# Paket dependency manager
323+
.paket/paket.exe
324+
paket-files/
325+
326+
# FAKE - F# Make
327+
.fake/
328+
329+
# CodeRush personal settings
330+
.cr/personal
331+
332+
# Python Tools for Visual Studio (PTVS)
333+
__pycache__/
3334
*.pyc
4-
__pycache__/*
5-
.vscode/*
6-
bots/*
7-
suspicious-logins/*
8-
found.iris
9-
/images/*
335+
336+
# Cake - Uncomment if you are using it
337+
# tools/**
338+
# !tools/packages.config
339+
340+
# Tabs Studio
341+
*.tss
342+
343+
# Telerik's JustMock configuration file
344+
*.jmconfig
345+
346+
# BizTalk build output
347+
*.btp.cs
348+
*.btm.cs
349+
*.odx.cs
350+
*.xsd.cs
351+
352+
# OpenCover UI analysis results
353+
OpenCover/
354+
355+
# Azure Stream Analytics local run output
356+
ASALocalRun/
357+
358+
# MSBuild Binary and Structured Log
359+
*.binlog
360+
361+
# NVidia Nsight GPU debugger configuration file
362+
*.nvuser
363+
364+
# MFractors (Xamarin productivity tool) working folder
365+
.mfractor/
366+
367+
# Local History for Visual Studio
368+
.localhistory/
369+
370+
# BeatPulse healthcheck temp database
371+
healthchecksdb
372+
373+
# Backup folder for Package Reference Convert tool in Visual Studio 2017
374+
MigrationBackup/
375+
376+
# Ionide (cross platform F# VS Code tools) working folder
377+
.ionide/
378+
379+
# Fody - auto-generated XML schema
380+
FodyWeavers.xsd

GeoLite2-City.mmdb

1.96 MB
Binary file not shown.

0 commit comments

Comments
 (0)