- find the foreign-language release. if it does not exist, you should add that first
- source some reasonably-accepted / official english title translations / transliterations
- click "add a release" in the same release group as the original
- select "pseudo-release" in the "status" drop-down
- select the original in the "release duplicates" tab (this will fill in some stuff for you)
- set the titles and artist credits to the translated names (in the "artist" field, and the tracklist) (make sure you're still linking to the real artist, just with the transl{iter,}ated name)
- don't fill in any of the rest of the info (release date, country, label etc)
- submit (your edit note should probably say where you got the translations, or if you did them yourself say that)
This file contains 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
@nix { "action": "setPhase", "phase": "unpackPhase" } | |
Running phase: unpackPhase | |
unpacking source archive /nix/store/na02pxyriabpnz65k88h7as8lm0hh7sa-go1.21.5.src.tar.gz | |
source root is go | |
setting SOURCE_DATE_EPOCH to timestamp 1701292906 of file go/test/zerosize.go | |
@nix { "action": "setPhase", "phase": "patchPhase" } | |
Running phase: patchPhase | |
applying patch /nix/store/dnjqgkg38mq2w4p9kch75ijhgbcwk6wi-iana-etc-1.17.patch | |
patching file src/net/lookup_unix.go | |
Hunk #1 succeeded at 18 (offset -3 lines). |
This file contains 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
# nix eval -f day01.nix "part1" | |
# nix eval -f day01.nix "part2" | |
let | |
pkgs = import <nixpkgs> {}; | |
in rec { | |
inherit (pkgs) lib; | |
# input :: string | |
input = builtins.readFile ~/.aoc/2023/day01.txt; |
This file contains 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 | |
# A script to extract many kinds of archive | |
# Code licence: MPL-2.0 (https://www.mozilla.org/en-US/MPL/2.0/) | |
if [ -f "$1" ]; then | |
case $1 in | |
*.tar*) tar xvf "$1" ;; | |
*.bz2) bunzip2 "$1" ;; |
This file contains 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 | |
# A script to interactively find a file, and open it in an editor | |
# Code licence: MPL-2.0 (https://www.mozilla.org/en-US/MPL/2.0/) | |
EDITOR="nvim" | |
filename=$(fzf) |
This file contains 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 | |
# A script to sync my music library from my server to my desktop PC, using tailscale and rsync. | |
# Code licence: MPL-2.0 (https://www.mozilla.org/en-US/MPL/2.0/) | |
SRC_HOSTNAME="atlas" | |
DEST_HOSTNAME="chronos" | |
SRC_LIBRARY_DIR="/storage-pool/media/Music/" |
This file contains 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
import itertools | |
import os | |
import subprocess | |
import sys | |
def flatten(list_of_lists): | |
return list(itertools.chain.from_iterable(list_of_lists)) | |
This file contains 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
diff --git a/src/theme/default_theme.rs b/src/theme/default_theme.rs | |
index b4269b7..c60a720 100644 | |
--- a/src/theme/default_theme.rs | |
+++ b/src/theme/default_theme.rs | |
@@ -12,32 +12,32 @@ impl UiStyles { | |
filekinds: FileKinds { | |
normal: Style::default(), | |
- directory: Blue.bold(), | |
- symlink: Cyan.normal(), |
This file contains 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
{ pkgs ? import <nixpkgs> { } }: | |
with pkgs; stdenv.mkDerivation { | |
pname = "savilerow"; | |
version = "1.9.1"; | |
src = | |
if stdenv.isDarwin | |
then | |
fetchTarball | |
{ |
This file contains 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
let | |
# Pinned on <date> at <time> UTC, to <channel> | |
nixpkgs_url = "<nixpkgs commit url, see https://status.nixos.org/>"; | |
# aliases in shellHooks don't work with zsh-nix-shell. See https://github.com/chisui/zsh-nix-shell/issues/6 | |
zdotdir_url = "https://gist.githubusercontent.com/chisui/bba90fccc930f614743dc259fbadae6d/raw/4108222addc1d646c1b0a6d12130083e2219ad28/zdotdir.nix"; | |
shell_hooks = '' | |
alias stack="stack --nix" | |
''; | |
in | |
{ pkgs ? import (fetchTarball nixpkgs_url) { } |
NewerOlder