Skip to content

Instantly share code, notes, and snippets.

View TheBestMoshe's full-sized avatar

Moshe Grunwald TheBestMoshe

View GitHub Profile
@TheBestMoshe
TheBestMoshe / README.md
Created January 1, 2026 04:22
Audio files to icon suggestions

Audio Transcription Guide

Overview

This document describes the process of transcribing audio files using whisper.cpp and generating icon suggestions for playlist creation.

Tools Required

  • ffmpeg - Audio format conversion
  • whisper.cpp (whisper-cli) - Speech-to-text transcription
@TheBestMoshe
TheBestMoshe / empty.xml
Last active December 19, 2023 20:29 — forked from pdulapalli/empty.xml
Empty RSS Feed
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:admin="http://webns.net/mvcb/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
@TheBestMoshe
TheBestMoshe / add-issue-to-project.md
Created December 8, 2021 17:26
Add Issue to Project

To add an existing issue to your board, press the Add Cards button, and drag the issue you want to add into one of the columns.

Screen Shot 2021-12-08 at 12 22 21 PM Screen Shot 2021-12-08 at 12 22 53 PM

@TheBestMoshe
TheBestMoshe / 99_rethink_welcome
Last active July 7, 2021 21:13
Rethink DB Setup
#!/bin/sh
myip=$(hostname -I | awk '{print$1}')
cat <<EOF
********************************************************************************
Welcome to RethinkDB!
RethinkDB shipped with Apache2.0 license without warranties.
Read our license https://github.com/rethinkdb/rethinkdb/blob/next/LICENSE.
Do NOT forget to configure your server before use! To secure RethinkDB follow
the instructions described at https://rethinkdb.com/docs/security/.
export type RetailerCredentials = {
email: string;
password: string;
};
export type WebhookTriggerEvent =
| "request_succeeded"
| "request_failed"