Skip to content

Instantly share code, notes, and snippets.

View lpenaud's full-sized avatar
💻
Working

Loïc Penaud lpenaud

💻
Working
View GitHub Profile
@lpenaud
lpenaud / mediainfo.md
Created March 7, 2025 18:54
Mediainfo

Mediainfo

Mediainfo comes in handy for printing information from media files; however, some features, like --Output, are poorly documented or unclear.

Human readable tracklist

mediainfo --Output="General;%Track/Position%. %Title% - %Duration/String%\n" *.flac
@lpenaud
lpenaud / gnu-linux.md
Created February 25, 2025 08:55
GNU / Linux

Gnu / Linux

Lsof

Lsof est un programme qui permet de lister les flux d'entrée / sortie comme l'ouverture d'un fichier, d'un socket ou l'écoute d'un port...

Exemple

Lister les processus qui écoute un port en particulier

@lpenaud
lpenaud / backup-jellyfin.sh
Created January 23, 2025 00:25
Jellyfin backup
#!/bin/bash
# Usage: ./backup-jellyfin.sh
declare -r tar_name="${HOME}/jellyfin.tar"
sudo systemctl stop jellyfin.service
echo "tar -cf "${tar_name}" /var/lib/jellyfin"
sudo tar -cf "${tar_name}" /var/lib/jellyfin
sudo chown -v "${USER}:${USER}" "${tar_name}"
sudo systemctl start jellyfin.service
@lpenaud
lpenaud / xml.ts
Last active January 22, 2025 17:42
XmlTransformStream
export interface TreeXmlNode {
name: string;
content: string;
children: TreeXmlNode[];
}
export interface XmlMark {
name: string;
content: string;
type: symbol;
@lpenaud
lpenaud / AllOfFutureHelpers.md
Last active December 4, 2024 14:18
AllOfFuturesHelpers

All of futures

Create futures from list and function.

Usage

final var list = List.of('A', 'B', 'C');
AllOfFutureHelpers.<> builder()
 .function(e -&gt; someIOFunction(e))
@lpenaud
lpenaud / ArrayMatcherAnswer.java
Created November 14, 2024 13:42
Multi-Answer Mockito
import java.util.LinkedList;
import java.util.List;
import org.mockito.ArgumentMatcher;
import org.mockito.invocation.InvocationOnMock;
import org.mockito.stubbing.Answer;
import lombok.AllArgsConstructor;
import lombok.Setter;
@lpenaud
lpenaud / HashMap.md
Created October 15, 2024 13:52
HashMap number mapping

From number of mapping

Java 19 add newHashMap(int) to HashMap and LinkedHashMap.

See: Java doc HashMap

Calculate capacity from load factory

private static final short DEFAULT_LOAD_FACTOR = .75;
@lpenaud
lpenaud / Split-cue.md
Created October 8, 2024 19:18
Split cue file

Split cue file to flac tracks

Dependencies

  • flac
  • shnsplit
  • file

Optional dependencies

@lpenaud
lpenaud / rsync-english.md
Last active February 25, 2025 09:00
Backup files

Backup files with rsync

Incremental backup

rsync -a --delete -Pau INDIR [INDIRS...] OUTDIR
  • -a: Archive mode copy the access rights.
  • --delete: Remove files if there aren't in the source directory anymore.
@lpenaud
lpenaud / header.html
Last active January 18, 2025 05:00 — forked from killercup/pandoc.css
Add style to pandoc HTML render.
<script type="module">
import mermaid from 'https://cdn.jsdelivr.net/npm/[email protected]/dist/mermaid.esm.min.mjs';
mermaid.initialize({ startOnLoad: false });
await mermaid.run({
nodes: document.querySelectorAll('pre.mermaid > code:first-child'),
});
function findMermaidSvg(child) {
if (child.tagName === "A" || child.tagName === "BUTTON") {
return null;