Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
soicode
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Timon Stampfli
soicode
Commits
0e175b9f
Commit
0e175b9f
authored
Nov 06, 2020
by
Timon Stampfli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
collecting soicode workspaces across generations
parent
cd5f25f1
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
86 additions
and
5 deletions
+86
-5
.vscodeignore
.vscodeignore
+1
-0
data/workspace_0_8_0_nixos/example.cpp
data/workspace_0_8_0_nixos/example.cpp
+9
-0
data/workspace_0_8_0_nixos/example.soitask
data/workspace_0_8_0_nixos/example.soitask
+19
-0
data/workspace_0_8_0_nixos/soiworkspace.json
data/workspace_0_8_0_nixos/soiworkspace.json
+11
-0
data/workspace_0_8_30_nixos/.vscode/settings.json
data/workspace_0_8_30_nixos/.vscode/settings.json
+3
-0
data/workspace_0_8_30_nixos/example.cpp
data/workspace_0_8_30_nixos/example.cpp
+9
-0
data/workspace_0_8_30_nixos/example.soitask
data/workspace_0_8_30_nixos/example.soitask
+19
-0
data/workspace_0_8_30_nixos/soiworkspace.json
data/workspace_0_8_30_nixos/soiworkspace.json
+13
-0
tsconfig.json
tsconfig.json
+2
-5
No files found.
.vscodeignore
View file @
0e175b9f
...
...
@@ -10,3 +10,4 @@ tslint.json
helper/**
out
node_modules
data
\ No newline at end of file
data/workspace_0_8_0_nixos/example.cpp
0 → 100644
View file @
0e175b9f
#include <soi>
signed
main
()
{
int
a
=
read_int
();
int
b
=
read_int
();
int
answer
=
a
+
b
;
print
(
answer
);
}
data/workspace_0_8_0_nixos/example.soitask
0 → 100644
View file @
0e175b9f
[sample.01]
input="""
2
3
"""
output="""
5
"""
[sample.02]
input="""
700000000000000000
300000000000000000
"""
output="""
1000000000000000000
"""
data/workspace_0_8_0_nixos/soiworkspace.json
0 → 100644
View file @
0e175b9f
{
"workspace"
:
{
"templateVersion"
:
"0.8.0"
},
"settings"
:
{
"compilerPath"
:
"/home/timon/.nix-profile/bin/g++"
,
"debuggerPath"
:
"/home/timon/.nix-profile/bin/gdb"
,
"cppHeaderPath"
:
""
,
"soiHeaderPath"
:
"/home/timon/.config/VSCodium/User/globalStorage/swissolyinfo.soicode/bundle/soiheaders/bundle/soiheader"
,
"flags"
:
"-Wall -Wextra -std=c++17 -g3 -ggdb3 -fsanitize=address,undefined -D_GLIBCXX_DEBUG"
,
"useBundledSoiHeaders"
:
true
}
}
data/workspace_0_8_30_nixos/.vscode/settings.json
0 → 100644
View file @
0e175b9f
{
"C_Cpp.default.configurationProvider"
:
"swissolyinfo.soicode"
}
\ No newline at end of file
data/workspace_0_8_30_nixos/example.cpp
0 → 100644
View file @
0e175b9f
#include <soi>
signed
main
()
{
int
a
=
read_int
();
int
b
=
read_int
();
int
answer
=
a
+
b
;
print
(
answer
);
}
data/workspace_0_8_30_nixos/example.soitask
0 → 100644
View file @
0e175b9f
[sample.01]
input="""
2
3
"""
output="""
5
"""
[sample.02]
input="""
700000000000000000
300000000000000000
"""
output="""
1000000000000000000
"""
data/workspace_0_8_30_nixos/soiworkspace.json
0 → 100644
View file @
0e175b9f
{
"workspace"
:
{
"templateVersion"
:
"0.8.0"
},
"settings"
:
{
"compilerPath"
:
"/nix/store/8madhhcxhxlf0rrc5hdsk65l206r3cc6-gcc-wrapper-9.3.0/bin/g++"
,
"debuggerPath"
:
"/home/timon/.nix-profile/bin/gdb"
,
"cppHeaderPath"
:
[],
"soiHeaderPath"
:
"/home/timon/.config/VSCodium/User/globalStorage/swissolyinfo.soicode/bundle/soiheaders/bundle/soiheader"
,
"flags"
:
"-Wall -Wextra -std=c++17 -g3 -ggdb3 -fsanitize=address,undefined -D_GLIBCXX_DEBUG"
,
"useBundledSoiHeaders"
:
true
}
}
\ No newline at end of file
tsconfig.json
View file @
0e175b9f
...
...
@@ -14,8 +14,5 @@
//
"noFallthroughCasesInSwitch"
:
true
,
/*
Report
errors
for
fallthrough
cases
in
switch
statement.
*/
//
"noUnusedParameters"
:
true
,
/*
Report
errors
on
unused
parameters.
*/
},
"exclude"
:
[
"node_modules"
,
".vscode-test"
]
}
\ No newline at end of file
"exclude"
:
[
"node_modules"
,
".vscode-test"
,
"data"
]
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment