Posted on 11-11-2009
Filed Under (Google Engineering Educational, documentation) by Linux Poweruser Programmer

Google Tech Talks
October 30, 2009

ABSTRACT

Presented by Rob Pike

What is Go?

YouTube Preview Image

Go is a new experimental systems programming language intended to make software development fast. Our goal is that a major Google binary should be buildable in a few seconds on a single machine. The language is concurrent, garbage-collected, and requires explicit declaration of dependencies. Simple syntax and a clean type system support a number of programming styles.

For more on Go including FAQs, source code, libraries, and tutorials, please see:

http://golang.org

Sphere: Related Content

(0) Comments    Read More   
Posted on 12-09-2009
Filed Under (Google Engineering Educational, documentation) by Linux Poweruser Programmer

Generating Trading Agent Strategies
Google engEDU
52 min – Jan 17, 2006

Google TechTalks
January 17, 2006

Daniel M. Reeves

Daniel Reeves recently completed his PhD in Computer Science at the University of Michigan as a student of Michael Wellman and is now (temporarily) a lecturer at Michigan, teaching Knowledge-Based Systems (Lisp, Prolog, and Mathematica for AI Programming). His most active area of research is the application of game-theoretic and computational techniques to strategic behavior in games, particularly for eCommerce-inspired market mechanisms. He is one of the creators of and top competitors in the international Trading Agent Competition. Dr Reeves is also one of the top ultra-marathon inline skaters in the US and climbs stairs competitively.

ABSTRACT
A Strategy Generation Engine is a system that reads a description of a game or market mechanism and outputs strategies for participants. Ideally, this means a game solver—an algorithm to compute Nash equilibria. This is a well-studied problem and very general solutions exist, but they can only be applied to small, finite games. I will present methods for finding or approximating Nash equilibria for infinite games, and for intractably large finite games.
video
http://video.google.com/videoplay?docid=5301380251515556722


September 10, 2009 EDIT

Its rather interesting to study the co-notation of Dr Daniel Reeves’ game theory with Poker. Here is a list of expected value for poker hands I found on Google.

Sphere: Related Content

(0) Comments    Read More   
Posted on 23-08-2008
Filed Under (Apache) by Linux Poweruser Programmer

Rapid Development with Python, Django, and Google App Engine Guido van Rossum (Google) Learn how to create great web applications quickly on Google App Engine using the Django web framework and the Python language. Google App Engine lets you host complete, scalable web applications written in Python with minimal fuss. This tutorial assumes basic familiarity with Python but definitely no advanced Python knowlege; Django experience is optional. You will learn how to use the Django web framework with the datastore API provided by Google App Engine, and how to get the most mileage out of the combination. You will also see how to use Django best practices like unit testing when developing for Google App Engine.

YouTube Preview Image

Providing the complexity of web applications that can be developed with Django and Google App Engine, the need for Desktops remains present but we can question the need for virtual solutions in common applications such as Virtual Bridges.

Comments are open!

Sphere: Related Content

(0) Comments    Read More   
Posted on 01-03-2008
Filed Under (documentation) by Linux Poweruser Programmer

Salesforce.com AppExchange Overview and Q&A
Google engEDU
1 hr 3 min – Aug 15, 2007

Google Tech Talks
August 18, 2007

ABSTRACT

Wondering why developers are talking about Salesforce.com and Appexchange?

What’s the big deal? Software for sales teams? Big whoop?

Salesforce.com has pioneered a business application development and delivery model and they have proven it to the tune of thousands of business customers of all sizes who swear by them.

And why do developers care?

Because Salesforce has opened up their infrastructure for developers to leverage in building their own applications. Bang! Instant scalability and reliability!

Wow! So developers save thousands by not having to build their own data center?

Ah, but there’s more! Salesforce has created a revolutionary platform for developers to market, sell, and distribute their applications!

All On-Demand, no infrastructure required!

Now that is a big deal!

Come hear the Salesforce developer relations team talk about how it all works…

Their pioneering distribution platform: the Appexchange Their On-Demand developer platform: Apex Their developer network: Apexdeveloper network Read the rest of this entry »

Sphere: Related Content

(0) Comments    Read More   
Posted on 01-03-2008
Filed Under (documentation) by Linux Poweruser Programmer

Ruby Sig: How To Design A Domain Specific Language
Google engEDU
1 hr 3 min – Oct 5, 2006

Google Tech Talks
October 5, 2006

David Pollak has been developing commercial software for 28 years. He founded Athena Design and wrote Mesa, the first real-time spreadsheet. David wrote Integer, the first online, collaborative spreadsheet. Since 2000, David has been developing domain specific languages for security and general web development.

ABSTRACT
David will describe a framework for developing DSLs which includes:

* Identifying the constituents in a development project;
* Determining the costs and benefits of a DSL for a particular constituency vs. hand-coding functionality for that constituency based on interviews and specs;
* Identifying the ‘thought leader’ in a given constituency and interviewing him or her to determine the semantics of the domain;
* Determining syntax of the DSL;
* Mocking up the DSL and ‘test driving’ it with the thought leader;
* Finding appropriate integration points for the DSL into the application;
* Defining the process by with the Domain Experts will update code in the DSL (e.g., they have a web page where they can change tax calculation rules vs. they make a change to particular Ruby files as part of a development/staging/production cycle.); and
* Iterate over the semantics, syntax, and process to fully integrate Domain Experts into the development process. Read the rest of this entry »

Sphere: Related Content

(0) Comments    Read More