Mirror of the sourcecode for my blog, original repo: https://github.com/NobbZ/blog-nobbz-dev

Merge pull request #416 from NobbZ/add-talks

authored by Norbert Melzer and committed by GitHub 442cfbb3 0feff370

Changed files
+18 -6
src
content
authors
schemas
styles
+13 -2
src/content/authors/nobbz.mdx
··· 11 funding: 12 amazon: https://www.amazon.de/hz/wishlist/ls/1GZRUIT9EP93R?ref_=wl_share 13 github: "NobbZ" 14 - kofi: "nobbz" 15 patreon: "nobbz_dev" 16 polar: "NobbZ" 17 social: 18 github: "NobbZ" 19 gitlab: "NobbZ" 20 - linkedin: "norbert-melzer-a175829a" 21 twitter: "NobbZ1981" 22 web: 23 homepage: "https://blog.nobbz.dev/" ··· 63 64 In 2022 he finally was able to find a job where he was able to use Elixir 65 professionally, and is now working as a backend developer. 66 67 Besides of doing software development, he is also a passionate user of [NixOS]. 68 He currently maintains a few packages in the official repository, and is
··· 11 funding: 12 amazon: https://www.amazon.de/hz/wishlist/ls/1GZRUIT9EP93R?ref_=wl_share 13 github: "NobbZ" 14 patreon: "nobbz_dev" 15 polar: "NobbZ" 16 social: 17 + bsky: "nobbz.dev" 18 github: "NobbZ" 19 gitlab: "NobbZ" 20 + linkedin: "norbert-melzer" 21 twitter: "NobbZ1981" 22 web: 23 homepage: "https://blog.nobbz.dev/" ··· 63 64 In 2022 he finally was able to find a job where he was able to use Elixir 65 professionally, and is now working as a backend developer. 66 + 67 + After about one and a half year, he found a place where he wasn't only able to 68 + build elixir applications, but also to have some impact at the environment, as 69 + his new employer had a mission to give used bicycles a second home. Here he uses 70 + Elixir "fullstack" through LiveView for an inhouse application. 71 + 72 + In 2024, he gave a talk at CodeBEAM EU titled "[Reproducible deployments on the 73 + BEAM with nix][talk-1]", where he shared his experiences and insights on using nix to 74 + achieve reliable and consistent deployments for BEAM-based applications. 75 + 76 + [talk-1]: https://youtu.be/HbtbdLolHeM?si=_6y70Wpl39Z593rl 77 78 Besides of doing software development, he is also a passionate user of [NixOS]. 79 He currently maintains a few packages in the official repository, and is
+1
src/content/schemas/authors.ts
··· 26 27 const social = z 28 .object({ 29 github: z.string(), 30 gitlab: z.string(), 31 linkedin: z.string(),
··· 26 27 const social = z 28 .object({ 29 + bsky: z.string(), 30 github: z.string(), 31 gitlab: z.string(), 32 linkedin: z.string(),
+4 -4
src/styles/base.css
··· 7 @import "@catppuccin/tailwindcss/mocha.css"; 8 9 * { 10 - --text-color: rgb(var(--ctp-text)); 11 - --highlight-color: rgb(var(--ctp-rosewater)); 12 } 13 14 body { ··· 19 h1 { 20 @apply text-4xl; 21 @apply font-extrabold; 22 - @apply text-[--text-color]; 23 } 24 h2 { 25 @apply text-3xl; ··· 52 } 53 54 a { 55 - @apply text-[rgb(var(--ctp-blue))]; 56 } 57 58 pre {
··· 7 @import "@catppuccin/tailwindcss/mocha.css"; 8 9 * { 10 + --text-color: var(--catppuccin-color-text); 11 + --highlight-color: var(--catppuccin-color-rosewater); 12 } 13 14 body { ··· 19 h1 { 20 @apply text-4xl; 21 @apply font-extrabold; 22 + @apply text-(--text-color); 23 } 24 h2 { 25 @apply text-3xl; ··· 52 } 53 54 a { 55 + @apply text-(--catppuccin-color-blue); 56 } 57 58 pre {