Skip to content

Instantly share code, notes, and snippets.

View Sythelux's full-sized avatar
🐻
Always Beary ready

Sythelux Rikd Sythelux

🐻
Always Beary ready
View GitHub Profile
@ssokolow
ssokolow / update_flatpak_cli.py
Last active April 25, 2024 06:40
Utility for making Flatpak-installed apps available in the terminal through their normal command names
#!/usr/bin/env python3
"""Flatpak CLI Shortcut Generator
A simple no-argument tool that generates launchers with traditional non-flatpak
command names for your installed Flatpak applications in ~/.local/bin/flatpak.
Does full collision detection and warns you if you forgot to add its output
directory to your PATH. Also overrules the command-line specified in the
``.desktop`` file if the Flatpak maintainer didn't include support for
command-line arguments.
@RobTranquillo
RobTranquillo / AudioCapture.cs
Last active June 29, 2020 11:57
Unity AudioCapture using a ConcurrentQueue (to a PCM Wav file)
using System;
using System.IO;
using System.Collections;
using System.Collections.Concurrent;
using UnityEngine;
/// <summary>
/// Recording 5 seconds from the first microphone in Microphone.devices
/// to a PCM Wav file using a ConcurrentQueue.
///
@jesuino
jesuino / GifSequenceWriter.java
Created January 23, 2015 02:13
An utility class to write animated gifs using Java. Created by Elliot Kroo on 2009-04-25
//
// GifSequenceWriter.java
//
// Created by Elliot Kroo on 2009-04-25.
//
// This work is licensed under the Creative Commons Attribution 3.0 Unported
// License. To view a copy of this license, visit
// http://creativecommons.org/licenses/by/3.0/ or send a letter to Creative
// Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA.