about summary refs log tree commit diff homepage
path: root/_assets/scripts/generate_results.jl
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2021-03-09 09:33:17 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2021-03-09 09:33:17 +0700
commitb03c056bcfac360d0f8be1321c576e65d2466757 (patch)
tree9145a1359ac4be3a5b819289c05457e0d0839d52 /_assets/scripts/generate_results.jl
parent818a0bd6f1b3305351d482eeab4e9e64c2af3a18 (diff)
downloadsite-b03c056bcfac360d0f8be1321c576e65d2466757.tar.gz
Clean up styling, again
Diffstat (limited to '_assets/scripts/generate_results.jl')
-rw-r--r--_assets/scripts/generate_results.jl27
1 files changed, 0 insertions, 27 deletions
diff --git a/_assets/scripts/generate_results.jl b/_assets/scripts/generate_results.jl
deleted file mode 100644
index 8823354..0000000
--- a/_assets/scripts/generate_results.jl
+++ /dev/null
@@ -1,27 +0,0 @@
-# Parent file to run all scripts which may generate
-# some output that you want to display on the website.
-# this can be used as a tester to check that all the code
-# on your website runs properly.
-
-dir = @__DIR__
-
-"""
-    genplain(s)
-
-Small helper function to run some code and redirect the output (stdout) to a file.
-"""
-function genplain(s::String)
-    open(joinpath(dir, "output", "$(splitext(s)[1]).txt"), "w") do outf
-        redirect_stdout(outf) do
-            include(joinpath(dir, s))
-        end
-    end
-end
-
-# output
-
-genplain("script1.jl")
-
-# plots
-
-include("script2.jl")