This file contains 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.Collections.Generic; | |
using System.Dynamic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace statsd.net.shared | |
{ | |
public class BetterExpando : DynamicObject |
This file contains 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
/** | |
* Linked Lists. | |
* @author Luke Venediger | |
* @source https://gist.github.com/lukevenediger/8488862 | |
* Read more here: http://lukevenediger.me/algorithms/linked_lists.html | |
*/ |
This file contains 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
package app | |
import android.content.Context; | |
import android.media.MediaPlayer; | |
import org.androidannotations.annotations.EBean; | |
import org.androidannotations.annotations.RootContext; | |
import java.io.IOException; | |
import java.util.Arrays; |