Skip to content

Commit 0ba90ff

Browse files
Initial Commit
1 parent 3137c7a commit 0ba90ff

Some content is hidden

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

94 files changed

+4379
-27
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ko_fi: herpderpinstine

.gitignore

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

0 commit comments

Comments
 (0)