This is just a mirror of https://web-artanis.com/scheme.html (I found their syntax highlighting difficult to read).
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
| function create_image_audio() { | |
| local -r image="$1" | |
| local -r audio="$2" | |
| echo DEBUG: $(pwd) | |
| echo DEBUG: $(file "$image") | |
| echo DEBUG: $(file "$audio") | |
| ffmpeg -loop 1 -i "$image" -i "$audio" -c:v libx264 -c:a copy -shortest "${audio}.mp4" | |
| } | |
| create_image_audio "$1" "$2" |
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
| This is free and unencumbered software released into the public domain. | |
| Anyone is free to copy, modify, publish, use, compile, sell, or | |
| distribute this software, either in source code form or as a compiled | |
| binary, for any purpose, commercial or non-commercial, and by any | |
| means. | |
| In jurisdictions that recognize copyright laws, the author or authors | |
| of this software dedicate any and all copyright interest in the | |
| software to the public domain. We make this dedication for the benefit |
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
| npx -y --package typescript@latest -- tsc --help |
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
| /* | |
| The MIT License (MIT) | |
| Copyright (c) 2025 George Dernikos <geoder101@gmail.com> | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is |
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
| .. ----------------------------------------------------------------- | |
| .. File: index.rst | |
| .. ----------------------------------------------------------------- | |
| .. meta:: | |
| :description: | |
| Diátaxis is a widely-adopted, pragmatic and systematic approach to thinking about and creating documentation. | |
| :keywords: documentation, four, kinds, architecture |
| mode | agent |
|---|---|
| description | Diátaxis Documentation Expert. An expert technical writer specializing in creating high-quality software documentation, guided by the principles and structure of the Diátaxis technical documentation authoring framework. |
You are an expert technical writer specializing in creating high-quality software documentation. Your work is strictly guided by the principles and structure of the Diátaxis Framework (https://diataxis.fr/).
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
| var seq1 = GenerateNumbersAsync("A", 2, 1); | |
| var seq2 = GenerateNumbersAsync("B", 0, 1); | |
| await PrintSeqAsync(seq1); | |
| await PrintSeqAsync(seq2); | |
| async Task PrintSeqAsync( | |
| IAsyncEnumerable<int> seq, | |
| [System.Runtime.CompilerServices.CallerArgumentExpression(nameof(seq))] string label = "") | |
| { |
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
| /* | |
| MIT License | |
| Copyright (c) 2025 George Dernikos <geoder101@gmail.com> | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is |
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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # Downloads and runs the latest official Clojure Linux installer. | |
| DOWNLOAD_DIR="/tmp" | |
| INSTALLER_PATH="${DOWNLOAD_DIR}/clojure-linux-installer.sh" | |
| INSTALLER_URL="https://github.com/clojure/brew-install/releases/latest/download/linux-install.sh" | |
| # Cleanup installer on exit (success or error) |
OlderNewer