Compare commits
2 Commits
33750a9c6e
...
e624023a23
| Author | SHA1 | Date | |
|---|---|---|---|
| e624023a23 | |||
| 1b25d6dd3d |
7
.gitignore
vendored
7
.gitignore
vendored
@@ -2,15 +2,18 @@
|
|||||||
*.svg
|
*.svg
|
||||||
*.png
|
*.png
|
||||||
*.jpg
|
*.jpg
|
||||||
|
*.rnote
|
||||||
|
|
||||||
# Documents
|
# Documents
|
||||||
*.pdf
|
*.pdf
|
||||||
|
|
||||||
# Builds
|
# Builds
|
||||||
|
.venv
|
||||||
|
build
|
||||||
target
|
target
|
||||||
node_modules
|
node_modules
|
||||||
build
|
|
||||||
.venv
|
# Deprecated lua for now
|
||||||
.luarocks
|
.luarocks
|
||||||
luarocks
|
luarocks
|
||||||
lua
|
lua
|
||||||
|
|||||||
9
justfile
9
justfile
@@ -1,12 +1,15 @@
|
|||||||
neville:
|
neville:
|
||||||
julia -i "./neville-algo-ml.jl"
|
julia -i ./src/neville-algo-ml.jl
|
||||||
|
|
||||||
doc:
|
doc:
|
||||||
typst compile ./docs.typ
|
typst compile ./src/ocs.typ
|
||||||
|
|
||||||
test_langs:
|
test_langs:
|
||||||
# Test all languages and tools in this project
|
# Test all languages and tools in this project
|
||||||
cargo run
|
cargo run
|
||||||
uv run python ./main.py
|
uv run python ./main.py
|
||||||
julia ./main.jl
|
julia ./src/main.jl
|
||||||
nix flake info
|
nix flake info
|
||||||
|
bun run ./index.ts
|
||||||
|
go mod graph
|
||||||
|
go run ./src/main.go
|
||||||
|
|||||||
@@ -1,25 +0,0 @@
|
|||||||
package = "minis"
|
|
||||||
version = "dev-1"
|
|
||||||
source = {
|
|
||||||
url = "git+ssh://git@git.ascyii.de/jonas/minis"
|
|
||||||
}
|
|
||||||
description = {
|
|
||||||
detailed = [[
|
|
||||||
This is the home for all kinds of projects in various languages that
|
|
||||||
profit from beeing versionized with `git`.]],
|
|
||||||
homepage = "*** please enter a project homepage ***",
|
|
||||||
license = "*** please specify a license ***"
|
|
||||||
}
|
|
||||||
dependencies = {
|
|
||||||
queries = {}
|
|
||||||
}
|
|
||||||
build_dependencies = {
|
|
||||||
queries = {}
|
|
||||||
}
|
|
||||||
build = {
|
|
||||||
type = "builtin",
|
|
||||||
modules = {}
|
|
||||||
}
|
|
||||||
test_dependencies = {
|
|
||||||
queries = {}
|
|
||||||
}
|
|
||||||
7
src/main.go
Normal file
7
src/main.go
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import "fmt"
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
fmt.Println("Hello from go!")
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user