Skip to content
This repository was archived by the owner on Aug 15, 2022. It is now read-only.

Commit

Permalink
Initial commits for vscode and Intellij Idea
Browse files Browse the repository at this point in the history
  • Loading branch information
neilbalch committed Jul 25, 2019
1 parent 864a9e6 commit 1a6d6c8
Show file tree
Hide file tree
Showing 10 changed files with 323 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

179 changes: 179 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"recommendations": [
"DavidAnson.vscode-markdownlint",
"robertohuertasm.vscode-icons",
"vscodevim.vim",
"HookyQR.beautify",
"geddski.macros",
"formulahendry.code-runner",
"donjayamanne.githistory",
"vscjava.vscode-java-pack"
]
}
75 changes: 75 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "CodeLens (Launch) - Runner",
"request": "launch",
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"stopOnEntry": false,
"mainClass": "Runner",
"args": ""
},
{
"type": "java",
"name": "Debug (Launch)",
"request": "launch",
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"stopOnEntry": false,
"mainClass": "",
"args": ""
},
{
"type": "java",
"name": "Debug (Launch)-Hello",
"request": "launch",
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"stopOnEntry": false,
"mainClass": "Hello",
"args": ""
},
{
"type": "java",
"name": "Debug (Launch)-Hello2",
"request": "launch",
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"stopOnEntry": false,
"mainClass": "Hello2",
"args": ""
},
{
"type": "java",
"name": "Debug (Launch)-Hello3",
"request": "launch",
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"stopOnEntry": false,
"mainClass": "Hello3",
"args": ""
},
{
"type": "java",
"name": "Debug (Launch)-Hello4",
"request": "launch",
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"stopOnEntry": false,
"mainClass": "Hello4",
"args": ""
},
{
"type": "java",
"name": "Debug (Attach)",
"request": "attach",
"hostName": "localhost",
"port": "<debug port of remote debuggee>"
}
]
}
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
8 changes: 8 additions & 0 deletions AdvCS.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"folders": [
{
"path": "."
}
],
"settings": {}
}
9 changes: 9 additions & 0 deletions AdvCS.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
# AdvCS

## WTF?

Java source code from Mountain View High School Advanced Computer Science course

## Repository Structure

- `.idea`: Intellij Idea configs
- `.vscode`
- `extensions.json`: Local repo extensions list
- `launch.json`: Local repo debugger configurations
- `settings.json`: Local repo settings for vscode
- `Labs`/`LAB NAME`: In-class labs
- [`Q1/Q2/Q3/Q4`]/`[MM][DD][YYYY]`: Class lessons with Java files inside
- `AdvCS.code-workspace`: vscode workspace for this repo
- `README.md`: Hey, You're here!

0 comments on commit 1a6d6c8

Please sign in to comment.