Skip to content

Instantly share code, notes, and snippets.

@vmarquez
vmarquez / BombGame.scala
Created September 12, 2012 00:05
Simple multiplayer, concurrent 'game' written in scala trying to minimize mutability
import java.util.concurrent.ConcurrentHashMap
import java.util.concurrent.CountDownLatch
import akka.actor.Actor
import akka.dispatch.Future
import akka.actor.ActorSystem
import akka.actor._
import scala.collection.JavaConversions._
import scala.collection.JavaConversions
import akka.pattern._
import akka.util.Timeout
@ElvisLives
ElvisLives / GoogleAdwordsAdhocReportingv201109Example.cs
Created October 14, 2011 18:42
An Example of calling the AdHoc reporting of the Google Adwords API v201109
using System;
using System.IO;
using System.Net;
using System.Text;
using System.Web;
/// <summary>
/// Here is an example of calling the AdHoc reporting of the Google Adwords API v201109
/// </summary>
public void GoogleAdwordsv201109_Adhoc_reports_CSharp_Example()