- 5 years old: Mum knows everything!
- 7 years old: Mum knows.
- 10 years old: Maybe Mum doesn’t know?!
- 12 years old: Mum doesn’t know.
- 14 years old: Mum's gone crazy!
- 16 years old: Can’t take Mum seriously.
- 18 years old: What does Mum know?!
- 22 years old: Mum's talking rubbish!
- 24 years old: I know more than Mum!
- 26 years old: Mum seems to know some things after all.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Quake III algorithm - Fast inverse square root using binary pattern matching | |
| ```elixir | |
| Mix.install([ | |
| {:kino, "~> 0.17.0"} | |
| ]) | |
| ``` | |
| ## Section |
Complete setup guide for building ZMK firmware for the Cornix split ergonomic keyboard on Arch Linux.
# Core development tools and dependencies
sudo pacman -S base-devel git cmake ninja dtc python python-pip wget xz dfu-util
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| IO.puts("Using .iex.exs file loaded from #{__DIR__}/.iex.exs") | |
| defmodule Util do | |
| def iex(n), do: IEx.Helpers.v(n) | |
| def atom_status do | |
| limit = :erlang.system_info(:atom_limit) | |
| count = :erlang.system_info(:atom_count) | |
| IO.puts("Currently using #{count} / #{limit} atoms") | |
| end |
A simple .NET Core 8 sample running on Linux to show AES GCM encryption...
using System.Security.Cryptography;
using System.Text;
// https://learn.microsoft.com/en-us/dotnet/standard/security/cross-platform-cryptography#authenticated-encryption
Console.Out.WriteLine($"Is supported: {AesGcm.IsSupported}");NewerOlder