This is RoastedChestnut(GES233).
defmodule Sigil do # ~FUZZYD[...] means "approximate/fuzzy date" def sigil_FUZZYD(date_string, _opts), do: {:approx, date_string} end import Sigil defmodule RoastedChestnut do @moduledoc """ > *Que le temps ne vaut que du jour où il nous est compté* > > --Indila, Parle à ta tête """ @maybe_called_tag? ["It doesn't metter."] def education, do: [ # ALL in agriculture university {"Animal Science", "QAU", {2019, 2023}, "Bachelor of Science in Agriculture"}, {"Public Management", "CAU", {2023, 2025}, "Bachelor of Management"} ] def skills, do: %{ :"post focused on" => ~w(Logisim Python Flask/Quart Sanic Julia), mainly: ~w(Elixir Phoenix), little: ~w(TailwindCSS LaTeX Typst), newbie: ~w(JavaScript Svelte Rust Scala), anticipation: ~w(MinecraftModDev ESP32 Scheme) ++ ["become Vocaloid producer"] } # Timeline of things I tried to build or experiences @experiences %{ pbb: {~FUZZYD[2015-??-??], ~FUZZYD[2017-??-??], "PBB project", "DIY-CPU at VERY EARLY stage by using Minecraft RedStone/Logisim. Only some `.cric` file saved."}, qy: {~FUZZYD[2017-??-??], :maybe_future, # Until today, and maybe re-activated in future "QyProject", """ Layered Generate Specification/Protocol. Inspired by a brainstorm with SVS in highschool. Deprecated codebase(bio poc): GES233/LivestockMonitor WIP codebase(legacy editor): GES233/EquinoxEditor """}, meowcave: {~W[2022年02月21日], ~D[2024年03月01日], "MeowCave", """ I was removed from a small group, so I wanted to build my own site to become a site owner. Now repos are all in private. """}, code_pv: {~FUZZYD[2019-03-??], :maybe_future, "PV, but in Code", """ Learning JS and relational programming. See GES233/MortalDrinksElixir (WIP for a long time) """}, cau_urp: {~D[2023年11月16日], ~FUZZYD[2024年11月20日], "Participate in Research on La Maison Verte(Françoise Dolto)", "See <https://ges233.github.io/2024/10/After-URP/> ."} } def projects(id) do case @experiences[id] do {start_date, end_date, name, desc} -> """ #{inspect(start_date)} to #{inspect(end_date)} **#{name}**: #{desc} """ nil -> :future_or_nil end end def bio, do: [ blog: "https://ges233.github.io", mail: "███████.█████@outlook.com" |> String.replace("█████", "roasted") |> String.replace("roasted██", "chestnut") ] def bibliography, do: [ {:article, doi: "10.16431/j.cnki.1671-7236.2022年08月02日1", role: "ONLY participated in, NOT mainly author"}, # <Maybe append in the future> ] def git_metrics, do: GitHubUserMetrics.query(30802664, content: :all, theme: :terminal) end