Skip to content

Instantly share code, notes, and snippets.

@iros
iros / API.md
Created August 22, 2012 14:42
Documenting your REST API

Title

<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>

  • URL

    <The URL Structure (path only, no root url)>

  • Method:

@neilt6
neilt6 / AVAudioEngineOut.cs
Created February 18, 2020 17:06
NAudio Driver for Xamarin.iOS
using AVFoundation;
using Foundation;
using NAudio.Wave;
using System;
using System.Threading;
namespace NAudio.Wave
{
/// <summary>
/// Represents an iOS wave player implemented using <see cref="AVAudioEngine"/>.