From 634a896106e21ac16a9eff858ad600ea7d330a9a Mon Sep 17 00:00:00 2001 From: Marcos Benevides Date: Fri, 11 Oct 2024 18:11:02 -0300 Subject: [PATCH] more notes --- config.toml | 3 + content-org/content.org | 34 +++++--- layouts/_default/baseof.html | 2 - layouts/_default/taxonomy.html | 12 +++ layouts/partials/graph.html | 2 +- layouts/partials/libs.html | 2 + notes/20211104221056-history_of_logic.org | 2 +- .../20211107141903-the_effective_manager.org | 4 +- ...1100120-managing_a_programming_project.org | 4 +- notes/20240706213027-programming_erlang.org | 48 ----------- ...20240715225258-type_driven_development.org | 8 +- notes/20240924122449-sequential_erlang.org | 34 ++++++++ notes/20240930224229-concurrent_erlang.org | 84 ++++++++++++++++++- ...0241001192402-error_handling_in_erlang.org | 41 ++++++++- notes/20241008121957-haskell.org | 11 +++ notes/20241009092203-dializer.org | 42 ++++++++++ notes/20241009203936-management.org | 4 +- notes/20241009215607-relational_theory.org | 16 +++- notes/20241010093430-erlang_ets.org | 10 +++ notes/20241010094109-gen_server.org | 10 +++ notes/20241010155009-relational_algebra.org | 6 ++ .../20241011135148-functional_programming.org | 18 ++++ notes/20241011135759-dependent_types.org | 5 ++ static/graph.json | 2 +- .../img/notes/erlang_error_exit_signals.png | 3 + static/img/notes/erlang_error_trapping.png | 3 + static/img/notes/erlang_selective.png | 3 + static/img/notes/erlang_send.png | 3 + static/img/notes/erlang_spawn.png | 3 + static/img/notes/erlang_timeout.png | 3 + 30 files changed, 345 insertions(+), 77 deletions(-) create mode 100644 layouts/_default/taxonomy.html delete mode 100644 notes/20240706213027-programming_erlang.org create mode 100644 notes/20241010093430-erlang_ets.org create mode 100644 notes/20241010094109-gen_server.org create mode 100644 notes/20241010155009-relational_algebra.org create mode 100644 notes/20241011135148-functional_programming.org create mode 100644 notes/20241011135759-dependent_types.org create mode 100644 static/img/notes/erlang_error_exit_signals.png create mode 100644 static/img/notes/erlang_error_trapping.png create mode 100644 static/img/notes/erlang_selective.png create mode 100644 static/img/notes/erlang_send.png create mode 100644 static/img/notes/erlang_spawn.png create mode 100644 static/img/notes/erlang_timeout.png diff --git a/config.toml b/config.toml index a0143cb..bbf8b22 100644 --- a/config.toml +++ b/config.toml @@ -18,6 +18,9 @@ assetDir = "static" blog = "/blog/:year/:slug/" notes = "/notes/:year/:slug/" +[taxonomies] + category = 'categories' + tag = 'tags' [mediaTypes."application/atom+xml"] suffixes = ["xml"] diff --git a/content-org/content.org b/content-org/content.org index c77d67f..e2c2d62 100644 --- a/content-org/content.org +++ b/content-org/content.org @@ -120,6 +120,28 @@ This is the place where I dump my [[https://www.orgroam.com/][Org ROAM]] notes. #+RESULTS: export-notes +** Gen Server +:PROPERTIES: +:EXPORT_FILE_NAME: gen-server +:EXPORT_DATE: 2024-10-10 +:EXPORT_HUGO_CUSTOM_FRONT_MATTER: :slug gen-server +:CUSTOM_ID: gen-server +:END: + +#+INCLUDE: "../notes/20241010094109-gen_server.org" + + +** Erlang Ets +:PROPERTIES: +:EXPORT_FILE_NAME: erlang-ets +:EXPORT_DATE: 2024-10-10 +:EXPORT_HUGO_CUSTOM_FRONT_MATTER: :slug erlang-ets +:CUSTOM_ID: erlang-ets +:END: + +#+INCLUDE: "../notes/20241010093430-erlang_ets.org" + + ** Relational Theory :PROPERTIES: :EXPORT_FILE_NAME: relational-theory @@ -516,17 +538,6 @@ This is the place where I dump my [[https://www.orgroam.com/][Org ROAM]] notes. #+INCLUDE: "../notes/20240709110323-designing_for_scalability_with_erlang.org" -** Programming Erlang -:PROPERTIES: -:EXPORT_FILE_NAME: programming-erlang -:EXPORT_DATE: 2024-07-06 -:EXPORT_HUGO_CUSTOM_FRONT_MATTER: :slug programming-erlang -:CUSTOM_ID: programming-erlang -:END: - -#+INCLUDE: "../notes/20240706213027-programming_erlang.org" - - ** Monad :PROPERTIES: :EXPORT_FILE_NAME: monad @@ -812,4 +823,3 @@ This is the place where I dump my [[https://www.orgroam.com/][Org ROAM]] notes. #+INCLUDE: "../notes/20211012215602-kubernetes.org" - diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index d9f0014..cdbc2ec 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -14,8 +14,6 @@ {{ if .Param "libs" }} {{ partialCached "libs.html" . }} {{ end }} - - {{- partial "nav.html" -}} diff --git a/layouts/_default/taxonomy.html b/layouts/_default/taxonomy.html new file mode 100644 index 0000000..e7323df --- /dev/null +++ b/layouts/_default/taxonomy.html @@ -0,0 +1,12 @@ +{{ define "main" }} +

{{ .Title }}

+ {{ .Content }} + {{ range .Data.Terms.Alphabetical }} +

{{ .Page.LinkTitle }} ({{ .Count }})

+ + {{ end }} +{{ end }} diff --git a/layouts/partials/graph.html b/layouts/partials/graph.html index 3d2659f..4e14800 100644 --- a/layouts/partials/graph.html +++ b/layouts/partials/graph.html @@ -1,6 +1,6 @@ + +