Skip to content

Instantly share code, notes, and snippets.

@hugeblank
hugeblank / tiktok.sh
Last active December 31, 2023 23:09
Tiktok speech to text parser
#!/bin/zsh
# Tiktok speech to text parser
# by hugeblank, April 2022
# API endpoint & oneshot reading and playing discovered by @scanlime
# https://twitter.com/scanlime/status/1512288857596653568
# First argument - string of text to read
# Second argument - voice to use
# Usage examples:
@jonringer
jonringer / configuration.nix
Created November 27, 2018 21:29
Hyper-V nixos instance
# configuration.nix for work hyper-v instance
{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
];
@jcefoli
jcefoli / guid.ps1
Created February 17, 2016 14:45
Create GUID in Powershell (Uppecase String)
[guid]::NewGuid().toString().ToUpper()