Skip to content

Instantly share code, notes, and snippets.

@karthicraghupathi
karthicraghupathi / readme.md
Last active June 11, 2025 06:50
Installing ansible ansible-galaxy ansible-lint and molecule on macOS using pipx

Here is how to use pipx to install ansible and related tools.

pipx install --include-deps ansible

pipx inject --include-apps ansible ansible-lint

pipx inject --include-apps ansible molecule

pipx inject ansible 'molecule-plugins[podman,vagrant]'
@guest271314
guest271314 / piper-web-speech-api.md
Created July 14, 2024 19:48
Adding piper module and voices to Speech Dispatcher for Web Speech API

An option for using piper and onnx voices in the browser is through Speech Dispatcher, which Chromium-based browsers (Chrome, Brave, Opera, Edge) and Firefox use for Web Speech API.

I have added the piper module to Speech Dispatcher following the instructions here module request: piper #866.

Tested on Chromium Version 128.0.6586.0 (Developer Build) (64-bit) and Firefox Nightly 130.0a1. Chromium works. Firefox does not load the piper voices.

In pertinent part.

Download the piper executable from releases, extract the contents and save to ~/.local/opt/piper.

@slim-bean
slim-bean / notes.md
Created June 9, 2022 12:49
Loki Essential Config Settings 2022/06/09
@r15ch13
r15ch13 / convert-aax-to-m4a.cmd
Last active December 18, 2023 18:45
Convert aax to m4a
@echo off
setlocal enableextensions
chcp 65001
set input=%1
set device=%2
set loglevel=quiet
for %%i in ("%~f1") do set dirname=%%~dpi
for %%i in ("%~f1") do set extension=%%~xi
set tempfile=%dirname%%RANDOM%-temp.m4a