Skip to content

Instantly share code, notes, and snippets.

View phobos-dthorga's full-sized avatar
💭
Happy

Phobos A. D'thorga phobos-dthorga

💭
Happy
View GitHub Profile
@dend
dend / toast.ps1
Last active April 2, 2024 14:50
Toast Notification in PowerShell
function Show-Notification {
[cmdletbinding()]
Param (
[string]
$ToastTitle,
[string]
[parameter(ValueFromPipeline)]
$ToastText
)
@peteristhegreat
peteristhegreat / qt_wav_to_ogg_encoder_example.cpp
Last active August 10, 2021 17:36
Qt sample 16 bit Stereo Wav to Ogg Vorbis Encoder - Convert Wav to Ogg
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2007 *
* by the Xiph.Org Foundation http://www.xiph.org/ *
* *