View on GitHub

Controll

Easy Remote Controlling though .NET, iOS, Android and the web

download .ZIPdownload .TGZ

Hosting Your Own Server

To host your own stand alone server of Controll:

NuGet Install-Package Controll.Hosting -pre

Feeds Required:

namespace ControllServer
{
    using Controll.Hosting;
    public class Program
    {
        const string Url = "http://*:10244/";
        public static void Main(string[] args)
        {
            var host = new ControllStandAloneServer(Url);
            using(host.Start())
            {
                System.Console.WriteLine("Listening on {0}", Url);
                System.Console.ReadLine();
            }
        }
    }
}

Client Binaries

SimpleConsoleZombie
SimpleConsoleClient

To get going in 5 minutes, download the SimpleConsoleZombie and connect to http://controll.apphb.com/. Dont forget to create an account there too (using your browser), it requires no activation. If you want you can create an account using the SimpleConsoleClient.

Rather Drive Stick?

If you prefer to not use the automatic generator, push a branch named gh-pages to your repository to create a page manually. In addition to supporting regular HTML content, GitHub Pages support Jekyll, a simple, blog aware static site generator written by our own Tom Preston-Werner. Jekyll makes it easy to create site-wide headers and footers without having to copy them across every page. It also offers intelligent blog support and other advanced templating features.

Authors and Contributors

You can @mention a GitHub username to generate a link to their profile. The resulting <a> element will link to the contributor's GitHub Profile. For example: In 2007, Chris Wanstrath (@defunkt), PJ Hyett (@pjhyett), and Tom Preston-Werner (@mojombo) founded GitHub.

Support or Contact

Having trouble with Pages? Check out the documentation at http://help.github.com/pages or contact support@github.com and we’ll help you sort it out.