Skip to content
This repository has been archived by the owner on Aug 24, 2024. It is now read-only.

Commit

Permalink
updates for ipynb
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfliegner committed May 20, 2024
1 parent a5eae47 commit d2dbf08
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 5 deletions.
38 changes: 33 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,43 @@
{
"julia.executablePath": "~/julia/bin",
"workbench.iconTheme": "theia-file-icons",
"redhat.telemetry.enabled": true,
"git.autofetch": true,
"gitpod.openInStable.neverPrompt": true,
"nixEnvSelector.nixFile": "default.nix",
"workbench.startupEditor": "none",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"terminal.integrated.commandsToSkipShell": [
"language-julia.interrupt"
],
"terminal.integrated.scrollback": 50000,
"julia.executablePath": "~/julia/bin/julia",
"julia.symbolCacheDownload": true,
"julia.enableTelemetry": true,
"settingsSync.ignoredExtensions": [
"vscode.julia"
],
"vscode-postgres.defaultConnection": "postgres",
"vscode-postgres.defaultDatabase": "postgres",
"julia.enableCrashReporter": true,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": true
},
"sqltools.connections": [
{
"previewLimit": 50,
"server": "localhost",
"port": 5432,
"driver": "PostgreSQL",
"name": "postgres",
"database": "postgres",
"username": "gitpod",
"password": ""
"name": "gitpod",
"database": "postgres"
}
]
],
"julia.NumThreads": 0,
"workbench.editor.empty.hint": "hidden"
}
28 changes: 28 additions & 0 deletions test.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"include(\"testCreteContract.jl\")"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Julia 1.8.2",
"language": "julia",
"name": "julia-1.8"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "1.10.3"
}
},
"nbformat": 4,
"nbformat_minor": 2
}

0 comments on commit d2dbf08

Please sign in to comment.