Skip to content

Commit 5c0d883

Browse files
committed
add CS106 project
1 parent 01be352 commit 5c0d883

Some content is hidden

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

44 files changed

+2794
-0
lines changed

CS106_2022_Fall/.gitignore

Lines changed: 333 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,333 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/node,yarn,macos,windows,webstorm
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=node,yarn,macos,windows,webstorm
3+
4+
### macOS ###
5+
# General
6+
.DS_Store
7+
.AppleDouble
8+
.LSOverride
9+
10+
# Icon must end with two \r
11+
Icon
12+
13+
14+
# Thumbnails
15+
._*
16+
17+
# Files that might appear in the root of a volume
18+
.DocumentRevisions-V100
19+
.fseventsd
20+
.Spotlight-V100
21+
.TemporaryItems
22+
.Trashes
23+
.VolumeIcon.icns
24+
.com.apple.timemachine.donotpresent
25+
26+
# Directories potentially created on remote AFP share
27+
.AppleDB
28+
.AppleDesktop
29+
Network Trash Folder
30+
Temporary Items
31+
.apdisk
32+
33+
### macOS Patch ###
34+
# iCloud generated files
35+
*.icloud
36+
37+
### Node ###
38+
# Logs
39+
logs
40+
*.log
41+
npm-debug.log*
42+
yarn-debug.log*
43+
yarn-error.log*
44+
lerna-debug.log*
45+
.pnpm-debug.log*
46+
47+
# Diagnostic reports (https://nodejs.org/api/report.html)
48+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
49+
50+
# Runtime data
51+
pids
52+
*.pid
53+
*.seed
54+
*.pid.lock
55+
56+
# Directory for instrumented libs generated by jscoverage/JSCover
57+
lib-cov
58+
59+
# Coverage directory used by tools like istanbul
60+
coverage
61+
*.lcov
62+
63+
# nyc test coverage
64+
.nyc_output
65+
66+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
67+
.grunt
68+
69+
# Bower dependency directory (https://bower.io/)
70+
bower_components
71+
72+
# node-waf configuration
73+
.lock-wscript
74+
75+
# Compiled binary addons (https://nodejs.org/api/addons.html)
76+
build/Release
77+
78+
# Dependency directories
79+
node_modules/
80+
jspm_packages/
81+
82+
# Snowpack dependency directory (https://snowpack.dev/)
83+
web_modules/
84+
85+
# TypeScript cache
86+
*.tsbuildinfo
87+
88+
# Optional npm cache directory
89+
.npm
90+
91+
# Optional eslint cache
92+
.eslintcache
93+
94+
# Optional stylelint cache
95+
.stylelintcache
96+
97+
# Microbundle cache
98+
.rpt2_cache/
99+
.rts2_cache_cjs/
100+
.rts2_cache_es/
101+
.rts2_cache_umd/
102+
103+
# Optional REPL history
104+
.node_repl_history
105+
106+
# Output of 'npm pack'
107+
*.tgz
108+
109+
# Yarn Integrity file
110+
.yarn-integrity
111+
112+
# dotenv environment variable files
113+
.env
114+
.env.development.local
115+
.env.test.local
116+
.env.production.local
117+
.env.local
118+
119+
# parcel-bundler cache (https://parceljs.org/)
120+
.cache
121+
.parcel-cache
122+
123+
# Next.js build output
124+
.next
125+
out
126+
127+
# Nuxt.js build / generate output
128+
.nuxt
129+
dist
130+
131+
# Gatsby files
132+
.cache/
133+
# Comment in the public line in if your project uses Gatsby and not Next.js
134+
# https://nextjs.org/blog/next-9-1#public-directory-support
135+
# public
136+
137+
# vuepress build output
138+
.vuepress/dist
139+
140+
# vuepress v2.x temp and cache directory
141+
.temp
142+
143+
# Docusaurus cache and generated files
144+
.docusaurus
145+
146+
# Serverless directories
147+
.serverless/
148+
149+
# FuseBox cache
150+
.fusebox/
151+
152+
# DynamoDB Local files
153+
.dynamodb/
154+
155+
# TernJS port file
156+
.tern-port
157+
158+
# Stores VSCode versions used for testing VSCode extensions
159+
.vscode-test
160+
161+
# yarn v2
162+
.yarn/cache
163+
.yarn/unplugged
164+
.yarn/build-state.yml
165+
.yarn/install-state.gz
166+
.pnp.*
167+
168+
### Node Patch ###
169+
# Serverless Webpack directories
170+
.webpack/
171+
172+
# Optional stylelint cache
173+
174+
# SvelteKit build / generate output
175+
.svelte-kit
176+
177+
### WebStorm ###
178+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
179+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
180+
181+
# User-specific stuff
182+
.idea/**/workspace.xml
183+
.idea/**/tasks.xml
184+
.idea/**/usage.statistics.xml
185+
.idea/**/dictionaries
186+
.idea/**/shelf
187+
188+
# AWS User-specific
189+
.idea/**/aws.xml
190+
191+
# Generated files
192+
.idea/**/contentModel.xml
193+
194+
# Sensitive or high-churn files
195+
.idea/**/dataSources/
196+
.idea/**/dataSources.ids
197+
.idea/**/dataSources.local.xml
198+
.idea/**/sqlDataSources.xml
199+
.idea/**/dynamic.xml
200+
.idea/**/uiDesigner.xml
201+
.idea/**/dbnavigator.xml
202+
203+
# Gradle
204+
.idea/**/gradle.xml
205+
.idea/**/libraries
206+
207+
# Gradle and Maven with auto-import
208+
# When using Gradle or Maven with auto-import, you should exclude module files,
209+
# since they will be recreated, and may cause churn. Uncomment if using
210+
# auto-import.
211+
# .idea/artifacts
212+
# .idea/compiler.xml
213+
# .idea/jarRepositories.xml
214+
# .idea/modules.xml
215+
# .idea/*.iml
216+
# .idea/modules
217+
# *.iml
218+
# *.ipr
219+
220+
# CMake
221+
cmake-build-*/
222+
223+
# Mongo Explorer plugin
224+
.idea/**/mongoSettings.xml
225+
226+
# File-based project format
227+
*.iws
228+
229+
# IntelliJ
230+
out/
231+
232+
# mpeltonen/sbt-idea plugin
233+
.idea_modules/
234+
235+
# JIRA plugin
236+
atlassian-ide-plugin.xml
237+
238+
# Cursive Clojure plugin
239+
.idea/replstate.xml
240+
241+
# SonarLint plugin
242+
.idea/sonarlint/
243+
244+
# Crashlytics plugin (for Android Studio and IntelliJ)
245+
com_crashlytics_export_strings.xml
246+
crashlytics.properties
247+
crashlytics-build.properties
248+
fabric.properties
249+
250+
# Editor-based Rest Client
251+
.idea/httpRequests
252+
253+
# Android studio 3.1+ serialized cache file
254+
.idea/caches/build_file_checksums.ser
255+
256+
### WebStorm Patch ###
257+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
258+
259+
# *.iml
260+
# modules.xml
261+
# .idea/misc.xml
262+
# *.ipr
263+
264+
# Sonarlint plugin
265+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
266+
.idea/**/sonarlint/
267+
268+
# SonarQube Plugin
269+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
270+
.idea/**/sonarIssues.xml
271+
272+
# Markdown Navigator plugin
273+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
274+
.idea/**/markdown-navigator.xml
275+
.idea/**/markdown-navigator-enh.xml
276+
.idea/**/markdown-navigator/
277+
278+
# Cache file creation bug
279+
# See https://youtrack.jetbrains.com/issue/JBR-2257
280+
.idea/$CACHE_FILE$
281+
282+
# CodeStream plugin
283+
# https://plugins.jetbrains.com/plugin/12206-codestream
284+
.idea/codestream.xml
285+
286+
# Azure Toolkit for IntelliJ plugin
287+
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
288+
.idea/**/azureSettings.xml
289+
290+
### Windows ###
291+
# Windows thumbnail cache files
292+
Thumbs.db
293+
Thumbs.db:encryptable
294+
ehthumbs.db
295+
ehthumbs_vista.db
296+
297+
# Dump file
298+
*.stackdump
299+
300+
# Folder config file
301+
[Dd]esktop.ini
302+
303+
# Recycle Bin used on file shares
304+
$RECYCLE.BIN/
305+
306+
# Windows Installer files
307+
*.cab
308+
*.msi
309+
*.msix
310+
*.msm
311+
*.msp
312+
313+
# Windows shortcuts
314+
*.lnk
315+
316+
### yarn ###
317+
# https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
318+
319+
.yarn/*
320+
!.yarn/releases
321+
!.yarn/patches
322+
!.yarn/plugins
323+
!.yarn/sdks
324+
!.yarn/versions
325+
326+
# if you are NOT using Zero-installs, then:
327+
# comment the following lines
328+
!.yarn/cache
329+
330+
# and uncomment the following lines
331+
# .pnp.*
332+
333+
# End of https://www.toptal.com/developers/gitignore/api/node,yarn,macos,windows,webstorm

CS106_2022_Fall/.idea/.gitignore

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CS106_2022_Fall/.idea/.name

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CS106_2022_Fall/.idea/cogproj.iml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CS106_2022_Fall/.idea/inspectionProfiles/Project_Default.xml

Lines changed: 24 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CS106_2022_Fall/.idea/misc.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CS106_2022_Fall/.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)