Skip to content

Instantly share code, notes, and snippets.

@amca01
amca01 / solera.ipynb
Created December 12, 2023 00:44
Solera jupyter notebook
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
execve("/usr/bin/julia", ["julia"], 0x7ffc2d124680 /* 73 vars */) = 0
brk(NULL) = 0x559b54c32000
arch_prctl(0x3001 /* ARCH_??? */, 0x7fffa3aa64c0) = -1 EINVAL (Invalid argument)
readlink("/proc/self/exe", "/usr/bin/julia", 4096) = 14
access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/bin/../lib/tls/haswell/x86_64/libjulia.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/usr/bin/../lib/tls/haswell/x86_64", 0x7fffa3aa5700) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/bin/../lib/tls/haswell/libjulia.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/usr/bin/../lib/tls/haswell", 0x7fffa3aa5700) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/bin/../lib/tls/x86_64/libjulia.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
@amca01
amca01 / docker-compose010918.yml
Last active April 9, 2020 08:36
traefik and docker files
version: "3"
networks:
proxy:
external: true
internal:
external: false
services:
@amca01
amca01 / Galois.hs
Last active January 23, 2018 06:28
Small experimental Haskell library for computations on finite fields
-- this is file Galois.hs
-- Load it into GHCi
module Galois
(addGF
, subGF
, scaleGF
, shiftGF
, mulGF
, expGF