Skip to content

Instantly share code, notes, and snippets.

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace SuffixTreeAlgorithm
{
public class SuffixTree
{
@tupunco
tupunco / ConcurrentConsumerQueue.cs
Last active August 29, 2015 13:59
ConcurrentConsumerQueue 并行消费者队列
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace Tup.Utilities
{
/// <summary>
/// 并行消费者队列
@tupunco
tupunco / Netflix.js
Created January 5, 2012 09:19 — forked from rbartholomew/Netflix.js
Netflix Windows 8
(function () {
'use strict';
var clientKey = "XXXXXXXXXXXXXX";
var clientSecret = "XXXXXXXXXXXX";
var oauthToken;
var oauthSecret;
var userId;
var loginUrl;
var applicationName;