=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
BrainFuck Programming Tutorial by: Katie
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
| class Program | |
| { | |
| public static void Main(string[] args) | |
| { | |
| Console.WriteLine("What's your name?"); | |
| var name = Console.ReadLine(); | |
| Console.WriteLine(string.Format("Hello {0}!!", name)); | |
| } | |
| [Test] |
I've sniffed most of the Tinder API to see how it works. You can use this to create bots (etc) very trivially. Some example python bot code is here -> https://gist.github.com/rtt/5a2e0cfa638c938cca59 (horribly quick and dirty, you've been warned!)
| module Serialization.Binary | |
| exception EncodingError | |
| exception NoEncoding of System.Type with | |
| override this.ToString() = | |
| sprintf "Failed to derive a binary encoding for type: %O" this.Data0 | |
| type E = (string -> int) -> System.IO.BinaryWriter -> obj -> unit | |
| type D = (int -> string) -> System.IO.BinaryReader -> obj |