This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | |
/// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// 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. |