INFO-LINK




The Science of Complexity


Oct02: The Science of Complexity

David is a member of the Mathematical Finance Group at Oxford University and can be reached at lamper@maths.ox.ac.uk. Neil is a theoretical physicist running a research group in the Physics Department and a faculty member at Oxford University. Neil can be reached at n.johnson@physics.ox.ac.uk.


You are leaving work for the commute home and want to get there as quickly as possible. There are two possible routes, Route 0 and Route 1. Which should you choose? When it is 3:00am and streets are empty, one is as fast as the other. But at 6:00pm, hundreds of other people are trying to do exactly the same thing. Since all commuters remember which route was least crowded on the previous few nights, each one tries to second-guess the others, hoping to find the least crowded route. However, if too many people choose the same route, that choice becomes the worst to make.

Sound familiar? It should. Although everyone knows which route was crowded on previous nights, the reason we don't all make the same decision is that we're free agents. Therefore, we tend to analyze the same information in different ways and come up with different conclusions.

Such situations represent a game in which the players (agents) use limited information about past outcomes to choose between two options. Unlike the two-player games made famous by John Forbes Nash, Jr. in A Beautiful Mind, however, there are many players. In addition, the game is repeated and the players try to learn from their mistakes. There is no possibility of coordinating a compromise solution by phoning around—information is limited and global—and there is no local communication channel available.

Such problems typify concepts inherent in so-called "complex systems" and the general topic of complexity. We now realize that complexity is of great importance across a wide range of applications, where the issue of reliable control of the overall system is of utmost importance. A crash in the stock market, for example, or jam in a computer network or on a road can arise as a by- product of the complexity within the system itself—feedback effects at the microscopic level give rise to macroscopic, collective effects that are generated inadvertently. Hence, collective behavior arises even though no one actually programmed it into the system. It is a crowd effect.

Complexity also represents a new science. As opposed to much of 20th century scientific thinking, which was reductionist (that is, geared toward breaking objects apart to understand them), the idea offered by complexity is that more is different. In the framework of our commuter, representing a "two's company, but three's a crowd" scenario, new collective phenomena (such as stock market crashes) emerge as the number of components/players increases. These collective phenomena cannot be understood by analyzing the individual components/players themselves (one car or trader, for instance). Complexity is, therefore, of great interest across a wide range of disciplines—anywhere where there is a limited resource to be distributed, and lots of objects (people, data-packets, processes, cells, and the like) clamoring to win that resource.

So how should complex systems managers—say, financial regulatory bodies in the case of a market—manage complex systems to reduce the occurrence of large changes (extreme events) and/or limit their potentially catastrophic consequences? Too much intervention could prove costly in terms of the monitoring resources that are required; too little, and the system can be brought to its knees while no one is looking. So what works best? This is a fundamental question facing next-generation information technologies and society in general. It also lies at the heart of the quest to understand complexity.

In this article, we'll describe a general computer model (game) that provides a paradigm for complex systems. The source code that implements a multiagent simulation of this system is available electronically; see "Resource Center," page 5. The model includes the crucial properties of competition, frustration, feedback and adaptability, and also generates extreme events in an apparently spontaneous way.

Let the Games Begin

Since our game is expressed in terms of binary digits, it is easy to understand using concepts from information theory and computation. (This binary feature sets these simulations apart from previous microsimulation techniques, and from mathematical models where the characteristics of a population are averaged together.) Figure 1 summarizes a game in which a population of N agents compete for a limited resource such as road space. Each agent is equipped with a limited number of strategies and can choose between them adaptively. A strategy is a forecasting rule that generates a prediction of the next winning outcome based on knowledge of the recent history of winning choices.

At timestep t, each agent (market trader) decides whether to enter a game where the choices are options 0 or 1. Agents only play if they are sufficiently confident of winning. Each agent exhibits bounded rationality: He identifies the optimal strategy from within his own limited set as being the one that has performed best in the past. Because of the limited global resource, a maximum of L(t) agents can win at each timestep. For example, there is an opportunity in the market for L(t) possible buyers, capacity in a data network for L(t) data-packets, or room on a computer system for L(t) users. If the number choosing option 1, n1(t), is less than or equal to L(t), then 1 is deemed to be the winning choice (to be a buyer in the market). Changing L(t) affects the system's quasiequilibrium; hence, the resource level can be used to mimic a changing external environment (a macroeconomic effect in the case of a financial market). The excess demand D(t)=n1-n0 (which mimics price-change in a market) and number V(t)=n1+n0 of active agents (which mimics the volume of market orders) represent output variables. These two quantities fluctuate with time and can be combined to construct other global quantities of interest for the complex system of interest (summing the price changes gives the current price).

The resulting time-series appears random, yet contains subtle temporal correlations. In moments of crisis, the temporal correlations can be strong enough to produce a crash. If 0 denotes sell, then a sequence of outcomes with a high percentage of 0s corresponds to a price movement that is mostly down—a financial market crash as in Figure 2. This is a purely collective effect since it is neither engineered nor initiated by any one particular agent.

Down to Details

The system divides itself into a number of objects:

  • Strategies, which generate a prediction from the record of winning outcomes.

  • Agents, adaptive players endowed with q strategies.

  • Games, which contain a number of agents, record agent predictions, and determine the winning outcome based on a given rule.

Each agent randomly picks q strategies at the beginning of the game, with repetitions allowed. The agents are heterogeneous since they have different strategy sets in general. Each agent has knowledge (memory) of the past m winning outcomes. Since each outcome is 0 or 1, there are P=2m possible history bit strings. Consider m=2, where the four possible history bit strings are 00, 01, 10, and 11, with the least-significant digit representing the winning choice at the last timestep. This can be represented in decimal form =(0,1,...P-1) and is constructed from the history of winning outcomes w(t), as in Example 1(a). As each new winning outcome is announced, the dynamics corresponding to the transitions between these history bit strings can be represented on a De Bruijn graph (Figure 3).

Strategy

An agent decides which option to choose based on the prediction of a strategy, which consists of a response to the history (t). At each timestep, an agent looks at his set of q strategies and chooses the strategy that performed best in the recent past. With m=2, each strategy can be represented by a string of P=4 bits [ijkl], with i,j,k,l=0 or 1 corresponding to the decisions based on the histories 00,01,10, and 11, respectively. For example, strategy [0000] always corresponds to picking option 0 irrespective of the m=2 bit string, while [1111] corresponds to always picking option 1. [1010] corresponds to picking option 1 given the histories 11 or 01, but picking option 0 given the histories 10 or 00.

Each strategy is created at the beginning of the game by randomly filling a bit array of length P with 1s or 0s.

for(i=0;i<P;i++)

if(random()>0.5)

strategy->SetBit(i);

where random() generates a random number between 0 and 1. A strategy prediction is obtained by indexing the bit appropriate for the current history ; for instance, strategy_prediction= strategy->GetBit(mu).

The recent success of a strategy can be measured by the number of correct predictions made over a rolling window of length T. After each turn, the points for a strategy are updated, with one point awarded for a correct prediction, and zero for an incorrect prediction. The total point score S(t) is given by Example 1(b), where a(i)=strategy prediction, and lies in the range 0<S(t)<T. The points scored by a strategy during this period are stored in the bit array baS and can be updated where S is the total point score and Si is the score increment; see Listing One. Agents use the number of points of their strategies to determine if they are sufficiently confident to play at a given timestep and, if they do play, which of their q strategies to use.

Agent

Agents are of limited, yet similar, capabilities. Each agent is assigned a memory m—the length of the past history bit string that agents can use when making their next decision. At the beginning of the game, each agent randomly picks q(>1) strategies, making agents heterogeneous in their strategy sets. Agents are only adaptive if they have more than one strategy to play with. This initial strategy assignment is fixed from the outset of each simulation and provides a systematic disorder that is built into each run.

Each agent has a threshold probability level , which mimics a confidence level. Only strategies having r points are used, where r=T. We call these "active strategies." Agents with no active strategies within their set of q strategies do not play at that timestep and become temporarily inactive. Agents with one or more active strategies use the one with the highest point score; any ties between active strategies are resolved using a coin toss. Listing Two shows the process of determining an agent's best strategy, where pStrat is an array of pointers to the agent's strategies. This function returns the number of the agent's best strategy: between 0 and q-1, or -1 if the agent is inactive at that timestep (does not have sufficient confidence to take part).

Bringing It All Together

At each timestep, a common bit string of the m most-recent outcomes is made available to the agents by the game object. This is represented in decimal form by and is the only information agents can use to decide which option to choose at the current timestep. Agents then submit their individual predictions of the winning outcome to the game object. This object aggregates the agents' predictions, calculating n0 and n1, and determines the winning outcome using the rule:

w(t)=H[L(t)-n1(t)]

where L(t) is the resource level and H[...] is the Heaviside function. If L(t)=n1(t), indicating no clear winning option, this value is replaced with a random coin toss. The global information m(t) is updated by dropping the first bit and concatenating the latest outcome to the end of the history bit string.

A game can be specified with just five parameters: m, N, q, a time horizon T over which strategy points are collected, a threshold probability level to play at a given timestep, and a resource level L(t). This resource level is typically some fraction of the number of players; L(t)V(t), for instance. To start the simulation, you have to seed the initial history with m random winning outcomes. To ensure that you remove any transient effects due to this initial history and the initial adjustment of strategy scores, you discard a period of time at the beginning of the simulation.

Reducing the Strategy Space

Because of the feedback in the game, any particular strategy's success is short lived. If all agents begin to use similar strategies and make the same decisions, such a strategy ceases to be profitable. The game can be broadly classified into three regimes where the number of strategies in play is:

  • Much greater than the total number available in the strategy space. Groups of traders play using the same strategy and crowd effects dominate the game.

  • Much less than the total available. Grouping behavior is minimal.

  • Comparable to the total number available. This represents a transition regime and is of most interest, since it produces seemingly random dynamics with occasional extreme events.

In total, there are Q=2P possible strategies that define the decisions in response to all possible m history bit strings. Figure 4 is referred to as the "full strategy space" (FSS).

If the number of strategies in use amongst the agents Nq is greater than Q, it is advisable to consider just one central strategy space. This can be updated globally, making the game implementation more efficient and removing the likely duplication of strategies at the agent level. In the case of a FSS, we define one 2D bit array of dimension P×Q containing all the possible strategies, which can be populated using a binary counting algorithm. Agents now randomly pick q integers in the range 0 to Q-1 to decide their strategies. However, for large values of m, FSS implementation is not possible, and the strategies must be generated on a per-agent basis.

Interestingly, the principal features of the FSS can be reproduced in a smaller "reduced strategy space" (RSS) of Q=2m+1 strategies, wherein any two strategies are either uncorrelated or anticorrelated (for more information, see "On the Minority Game: Analytical and Numerical Studies," by D. Challet and Y.C. Zhang at http://xxx.lanl.gov/abs/cond-mat/9805084). This provides us with a method of increasing the value of m, while limiting the explosive growth in size of the FSS. A RSS can be generated using Listing Three.

It is clear from this example that each strategy has an anti-correlated pair in the strategy space—a strategy that produces the opposite prediction for every possible history. Recording information from the anticorrelated strategies is redundant, since their predictions and strategy scores can be recovered from the anticorrelated partner. In Listing Four, anticorr returns the index of the anticorrelated strategy. This depends on the ordering of the strategies within the strategy space, as in the case of the RSS example; see Listing Five.

You can thus reproduce the dynamics using a space of just P strategies. Reducing the size of the strategy space is advantageous because it reduces memory requirements during simulation and also increases the speed of the simulation.

Applications and Extensions

There is no unique model for such agent-based complex systems, and there are many ways to construct a simulation that exhibits nontrivial dynamics. Typically, such models share the following common elements:

  • Population of heterogeneous agents with bounded rationality.

  • History-based strategies upon which agents base their actions.

  • A method of aggregating agent behavior into a global outcome, thus introducing feedback into the system.

We have described a model incorporating these features, but it can be easily extended to include:

  • Different strategies or scoring functions.
  • Exponentially weighted scoring windows.

  • Agents with differing values of m, T, and so on, within a single game.

  • More sophisticated agents; for example, evolutionary agents that can discover (learn) new strategies during the course of the game.
  • A market marker who clears the agents' trades at each timestep, producing more realistic market dynamics; see "From Market Games to Real-World Markets," by P. Jefferies, M.L. Hart, P.M. Hui, and N.F. Johnson at http://xxx.lanl.gov/abs/cond-mat/0008387.

It turns out that one of the hardest issues facing complex-system science is the empirical validation of theoretical concepts against real-world data. Complex systems are, by definition, complex—they change in time, making it difficult to know whether one has a representative dataset, and whether it is sufficiently large. Hence, there is a great desire to study a complex system (or candidate complex system), which has associated with it a reliable and very long dataset. In this respect, financial markets are wonderful examples. Their movements are continually being recorded, not only by regulatory bodies but also by private data-supply companies. In short, they represent arguably the longest-running, most accurately recorded, and largest-scale human interaction study in the history of civilization.

Of course, the Holy Grail in financial markets is to identify some kind of warning signal associated with upcoming large changes. Such large changes represent successive timesteps of movements in one direction—most famously, down! Using multiagent simulations of the type described here, we replaced the simulated series of outcomes (price movements) with a real series that had been converted into a binary sequence corresponding to up/down movements. These then became the history of winning outcomes w(t), and the strategies were scored accordingly. We then compared a fraction of the best performing agents with the actual series. At each timestep, a survey of the next winning outcome was taken amongst the agents that had successfully identified the previous market movements. Their net prediction was used to form our best guess of whether the market would rise or fall at the next timestep.

Figure 5 shows the result of our studies, in terms of profit attained, for the foreign exchange market of U.S. Dollar versus Japanese Yen over the period 1991-93. A simple trading strategy was employed each hour: Buy Yen if the game predicts the rate to be favorable and sell at the end of each hour, banking any profit. The performance from the model is superior to just holding a long or short Yen position for the entire period. While the patterns picked up by the multiagent population are real, transaction costs in the actual market may prevent this profit from being achieved. Nonetheless, this remarkable result has motivated us to start looking at predictions over several timesteps, using the infrastructure of the Oxford Centre for Computational Finance (http://www.occf.ox.ac.uk/). The research for the Holy Grail is, therefore, well and truly underway.

DDJ

Listing One

if(win==strategy_prediction)
    Si=1;
else
    Si=0;
S += Si - baS->GetBit(iSindex); //# strategy points
if(Si==1);
    baS->SetBit(iSindex);
else
    baS->ClearBit(iSindex);
if( ++iSindex == T)            //update index
    iSindex = 0;

Back to Article

Listing Two

nas=0;      //number of active strategies (<=q)
max=0;      //maximum number of strategy points
for(i=0;i<q;i++) {
    S=pStrats[i]->points();     //# points 
    if(S>=r) {                  //determine if strategy is active
        if(S>max) {             //check if it's the best
            nas=1;
            max=S;
            work[0]=i;          //temp array to record strategy
        }
        else if(S==max) {       //we have a tied situation
            work[nas]=i;
            nas++;
        }
    }
}
if(nas==0)                     //no active strategy
    return -1; 
else if(nas==1)                //a distinct active strategy
    return work[0];
else {                         //tie-break situation
    i=(int)(nas*random());
    return work[i];
}

Back to Article

Listing Three

m_iQ = (int)pow(2,m_iM+1);
d = 1;
//m_SSpace[history bit]->[strategy number]
m_SSpace = new CBitArray*[m_iP];
for(i=0;i<m_iP;i++)
    m_SSpace[i] = new CBitArray(m_iQ);
m_SSpace[1]->SetBit(1);
for(i=1;i<m_iM;i++) {
    d *= 2;
    for(j=0;j<d;j++) {
        for(k=0;k<d;k++) {
            if(m_SSpace[j]->GetBit(k)==1) {
                m_SSpace[j+d]->SetBit(k);
                m_SSpace[j+d]->SetBit(k+d);
            }
            else 
            m_SSpace[j]->SetBit(k+d);
        }
    }
}
d *= 2;
for(i=0;i<d;i++)        //and mirror into bottom half
    for(j=0;j<d;j++)
        if(m_SSpace[i]->GetBit(j)==0)
            m_SSpace[i]->SetBit(j+d);

Back to Article

Listing Four

if(i<P) {
    strat_prediction = m_SSpace[mu]->GetBit(i);
    strat_points = S[i]; }
else { 
    i = anticorr(i);
    strat_prediction = 1 - m_SSpace[mu]->GetBit(i);
    strat_points = T - S[i]; }

Back to Article

Listing Five

int anticorr(int i) {
    return 2*P - 1 - i;
    }

Back to Article


Around the Web

An Events Based Algorithm for Distributing Concurrent Tasks on Multi-Core Architectures

Here's a programming model which enables scalable parallel performance on multi-core shared memory architectures.

Quick Read

Swarm: A True Distributed Programming Language

The Swarm prototype is a simple stack-based language, akin to a primitive version of the Java bytecode interpreter.

Quick Read

Key Software Development Trends

Several trends are emerging within the area of software development. Here are some of the most important trends S. Somasegar has been thinking about recently.

Quick Read

Understanding Parallel Performance

Understanding parallel performance. How do you know when good is good enough?

Quick Read

Short and Tweet: Experiments on Recommending Content from Information Streams

The authors used 12 algorithms to study the URL recommendation on Twitter as a means of better directing attention in information streams.

Quick Read



Video

Forty finalists will gather in Washington, D.C. from March 11-16 to compete for $630,000 in awards.; DDJ; Intel; science; Dr. Dobb's talks with Commonsware's Mark Murphy about what's involved in developing software for the Android operating system; Android; apple; DDJ; tablet development; The new method uses analytics technology developed by the Mayo and IBM collaboration, Medical Imaging Informatics Innovation Center, and has proven a 95 percent accuracy rate in detecting aneurysm.; Algorithm; DDJ; diagnostics; ibm; imaging; T-Mobile USA is enabling phone calls to Haiti without charges for international long distance through January 31 and retroactive to the earthquake on January 12; DDJ; mobile; wireless; Al Williams gives you a demor of One-Der: The One Instruction CPU; DDJ; At the 2010 International Consumer Electronics Show, the auto industry's first working smartphone application was unveiled; DDJ; mobile; The Bluetooth Special Interest Group (SIG) has announced the adoption of BLUETOOTH low energy wireless technology.; bluetooth; DDJ; wireless; IBM has unveiled its list of five innovations that have the potential to change how people live, work and play in cities around the world over the next five to ten years; DDJ; ibm; TeliaSonera's LTE mobile broadband commercial network in Stockholm is now the fastest and largest in the world.; broadband; DDJ; ericsson; mobile; Google has introduced, google Goggles, a visual search application on Android devices that allows users to search for objects using images rather than words; Android; DDJ; google; mobile; Visual Search Applications; Dr. Dobb's talks with David Intersimone, Vice President of Developer Relations and Chief Evangelist at Embarcadero Technologies, about RAD Studio 2010, SQL optimization and his reflections on the software industry.; database programming; DDJ; sql; Researchers from Intel Labs have created an experimental, 48-core Intel processor or "single-chip cloud computer."; cloud computing; DDJ; Intel; multicore; parallelism; The Large Hadron Collider will produce roughly 15 million gigabytes of data annually, to be accessed by a distributed computing and data storage infrastructure called the LHC Computing Grid.; CERN; DDJ; grid computing; physics; A mobile handheld device designed to let users can point, shoot and listen to printed text.; DDJ; Intel; mobile; Ericsson has become the first vendor to prove end to end interoperability in TD-LTE, another standard of 4G radio technologies designed to increase the capacity and speed of mobile telephone networks.; DDJ; ericsson; mobile; TD-LTE; According to a recent study, 80 percent of US respondents feel there are unspoken rules about mobile technology usage, and approximately 69 percent agreed that violations of these unspoken mobile manners are unacceptable.; DDJ; Intel; mobile; IBM and Canonical will introduce a software package for netbooks and other thin client devices in Africa. This is the first cloud- and premise-based Linux netbook software package offered by IBM and Canonical.; cloud computing; DDJ; ibm; His unprecedented ability to manipulate individual atoms signaled a quantum leap forward in in nanoscience experimentation and heralded in the age of nanotechnology.; DDJ; ibm; nanotechnology; IBM honored for its invention of the Blue Gene family of supercomputers. Adobe founders also recognized.; adobe; DDJ; ibm; Former U.S. President Bill Clinton addressed thousands of online entrepreneurs from around the world gathered for the third APEC Business Advisory Council SME Summit in Hangzhou, China.; DDJ; e-business; With free cooling for several months a year, Sweden is an ideal location for cost-efficient data centers.; data centers; DDJ; PNC Bank introduces a new mobile App for the iPhone and iPod touch that provides Virtual Wallet customers with a high-def view of their money while on the go.; DDJ; iphone; The Swedish LTE site will be part of a commercial network scheduled to go live in 2010, bringing data rates far above what is possible in today's mobile broadband networks.; DDJ; ericsson; mobile broadband; Nanotechnology advancement could lead to smaller, faster, more energy efficient computer chips.; circuit boards; DDJ; nanotech; semiconductor; Dr Dobbs talks with with Claudia Backus, Senior Director of Ecosystem Programs at Motorola, regarding the company's recently released MotoDEV Studio for their Android-powered phones.; Android; DDJ; mobile; motodev; The Extremadura Regional Government of Spain and IBM have launched an electronic prescription system in 680 pharmacies in western Spain.; DDJ; ibm; Ericsson to Acquire Majority of Nortel's North American Wireless Business; DDJ; ericsson; mobile; telecom; Nintendo's Wii Sports Resort is an immersive, expansive active-play game that includes a dozen resort-themed activities.; DDJ; nintendo; video games; OnStar can remotely send a signal to the electronic system in the subscriber's stolen vehicle and the vehicle will not be able to be re-started.; cellular; DDJ; wireless; In celebration of the historic Apollo Moon landing, Google has released Moon in Google Earth.; DDJ; google; Ericsson has been awarded contracts with the three telecom operators in China to provide fixed broadband access.; broadband; DDJ; mobile; tv; wireless; Dr. Dobb's talks with Adobe's Adam Lehman about the upcoming release of ColdFusion specifically optimized for Flash and Adobe AIR platform delivery.; adobe; ColdFusion; DDJ; eclipse; Companies team to develop computing device and chipset architectures that will combine the performance of powerful computers with high-bandwidth mobile broadband communications and ubiquitous Internet connectivity.; broadband; DDJ; Intel; mobile; nokia; Adobe Systems and HTC recently announced that the new HTC Hero will be the first Android phone to ship with support for Adobe Flash Platform technology.; adobe; Android; cell phones; DDJ; flash; mobile; mobility; 3.2 million Euros awarded across eight prize categorie recognizing world-class scientific research and artistic creation.; DDJ; A parody of Paul Simon's "50 Ways to Leave Your Lover," but for software security nerds.; DDJ; sql; Dr. Dobb's Mike Riley talks with Jim Manias of Advanced Systems Concepts.  In this conversation, Jim discusses the new ActiveBatch 7 and how it can provide significant productivity gains for application developers and business process owners alike.; ActiveBatch; DDJ; Sun cofounder Scott McNealy and Oracle CEO Larry Ellison discussed Java's role in computing. Sun has also released OpenSolaris 2009.06.; DDJ; java; opensolaris; oracle; sun; Spotlight on NATO's centre of excellence on cyber defense in Tallinn, Estonia.; cyber defense; DDJ; nework security; security; Create Data Access Layers in ASP.NET; DDJ; In this demonstration you will learn how to layout a WPF application. We will explore the major layout panels that come with WPF, contrasting them with each other and describing when to use each.; DDJ; web development; windows; wpf; The Intel Foundation has announced the top winners of the Intel International Science and Engineering Fair; DDJ; Intel; News; science; Matt Hester demonstrates Internet Explorer’s 8 new feature Selectors API for utilizing CSS selectors for quick and easy element lookups.; DDJ; IE8; microsoft; windows; The NATO Virtual Silk Highway provides affordable, high-speed Internet access via satellite to the academic communities of the Caucasus and Central Asia.; DDJ; On a Windows Mobile device, applications are typically not closed down, but they stay in the background. Maarten Struys shows you a simple way to preserve battery power inside your own applications.; DDJ; microsoft; power consumption; windows; Windows Mobile Devices; Cadillac is now offering wireless Internet access with its CTS sedan.; DDJ; wireless broadband; By default, Windows Mobile Standard (Smartphone) applications launched from Visual Studio are not accessible on the device/emulator once they are minimized. In this video, Jim Wilson demonstrates two simple techniques to solve the problem.; DDJ; microsoft; smartphone; VIsual Studio; Mike Riley talks with the brass from Everypoint, creators of the NEMO mobile application development platform.; DDJ; Developers; development environments; mobile applications; Symmetric and asymmetric encryption algorithms, the SHA256 hash encryption algorithms, and how to implement in a simple application using Microsoft's Azure Services Platform.; Azure; DDJ; encryption; microsoft; security; windows; T-Mobile has introduced the Sidekick LX, which features enhanced video capability.; DDJ; Mobile Smartphone; Bluetooth 3.0 offers speedier transmission of large amounts of video, music and photos between devices wirelessly.; bluetooth; DDJ; mobile networks; wireless broadband; Cities around the world are battling with stressed transportation networks, so IBM has announced plans for three new smart rail projects in China, Taiwan and The Netherlands.; DDJ; ibm; ILOG; CASMOBOT is a Nintendo Wii remote controlled slope lawn mower.; DDJ; Denmark; nintendo wii; research; robotics; Project ensures documents, images, video and other Internet-based data growing at over 100 terabytes per month will live on for future generations; data storage; DDJ; history; Intenet; research; Sun Microsystems; Dr. Dobb's talks with Dave McAllister, Director of Standards and Open Source for Adobe, about the Open Screen Project.; adobe; DDJ; Open Screen Project; open source; The Facebook Connect SDK provides the code to let third-party developers embed hooks into their applications so users can connect to their Facebook accounts and exchange information using iPhone apps.; apple; cocoa; DDJ; Facebook; iphone; Mars in Google Earth Updated; DDJ; google; google earth; Google mars; red planet; The Sun Cloud is built on the Sun Open Cloud Platform that leverages the best in world-class open source technologies. The Sun Open Cloud Platform brings together Java, MySQL, OpenSolaris and OpenStorage.; cloud computing; DDJ; java; open solaris; sun; DDJ; High School; Intel; science; ILOG Elixir is a suite of professional user interface controls that gives developers a rich collection of innovative and interactive data display components for Adobe Flex and Adobe Air.; adobe; air; DDJ; elixir; flash; flex; ILOG; The inaugural San Diego Science Festival being held this month is touted as one of the largest multicultural, multigenerational, multidisciplinary celebrations of science ever seen on the West Coast; DDJ; lockheed; News; science; IBM has announced Innov8 version 2, a new version of its serious game that helps students and professionals hone their business and technology skills in a compelling, familiar video game format.; DDJ; ibm; serious games; Swiss Automobile Visionary Frank M. Rinderknecht builds a concept car with adaptive energy concept and iPhone controls.; apple; Concept Car; DDJ; iphone; j; siemens; Two-Year Plan to Focus on 32 Nanometer Manufacturing Technology; 32 nanometer technology; chip; cpu; DDJ; gpu; Intel; manufacturing; Nehalem; Westmere; New version features ocean layer, historical imagery, and more.; DDJ; google; Dr. Dobb's talks with Marty Alchin, author of "Pro Django" about his book and the deep internals of the Django framework.; DDJ; Django; A new content-authoring solution for learning professionals; adobe; DDJ; toolkits; web authoring; In a Second Life setting, Danny Coward discusses Java FX with Dr. Dobb's Jon Erickson.; DDJ; java; JavaFX; sun; The Core i7 processor is the first member of a new family of Nehalem processor designs with new technologies that boost performance on demand.; chip; DDJ; Intel; processors; Dan Diephouse, creator of XFire, a high-performance open-source SOAP framework (which became the Apache CXF project), shares the five common mistakes in SOA governance and insight about the Apache CXF and Mule RESTpack development environments.; apache; Apache CXF; DDJ; mule; open source; soa; soap; Xfire; Adrian Kaehler and Gary Bradski discuss the Open Computer Vision Library (sourceforge.net/projects/opencvlibrary/) and their book "Learning OpenCV".; DDJ; Open Computer Vision Library; OpenCV; In the first part of this two-part interview, Stephen Wolfram reflects on the 20-year anniversary of Wolfram Research.; DDJ; Mathematica; Mathematics; science; In the second part of this two-part interview, Stephen Wolfram discusses his book "A New Kind of Science."; DDJ; Mathematica; Mathematics; science; Nick Hodges talks about Delphi 2009, a RAD tool for Windows, and Delphi Prism, a database engine for Windows, Mac OS X, and Linux.; DDJ; delphi; RAD; windows; Dr. Dobb's talks with Tony Lombardo, lead Technical Evangelist at Infragistics, about all new UI tools for Windows and .NET.; .net; DDJ; silverlight; ui; windows; wpf; Dr. Dobb's talks with Eric Schulz about his International Mathematica User's Conference 2008 presentation on the Mathematica Essentials Palette and the future digital educational material; DDJ; Mathematica; Mathematics; Dr. Dobb's talks with ActiveState's Trent Mick about the recently released Komodo IDE 5.0.; DDJ; ide; open source; Dr. Dobb's talks with Continuity Logic's Kris Carlson about "Why We Die: Simulation of the Evolution of Senescence" and why he programs with Mathematica's functional programming language.; DDJ; functional programming; Mathematica; simulation; Ericsson collaborates with Intel; DDJ; ericsson; Intel; Mobile technology; Dr. Dobb's talks with Schoeller Porter about the grid and cloud versions of Mathematica; clouds; DDJ; Grid; Mathematica; Dr Dobb's interviews Yehuda Katz, maintainer of the Merb project, about the advantages this highly optimized Ruby on Rails alternative offers to web application developers.; DDJ; Ruby on Rails; Dr. Dobb's talks with Thomas Roman, Professor of Mathematics at Central Connecticut State University, about "Mathematica Visualization in a Theoretical Physics Problem - Negative Energy in an Unusual Quantum State."; DDJ; Mathematica; physics; quantum; science; The Forbidden City: Beyond Space & Time is a fully immersive, three-dimensional virtual world that recreates a visceral sense of space and time.; Blade Server; China; DDJ; ibm; linux; mac; online; virtual world; windows; Dr. Dobb's interviews open source luminary Miguel de Icaza about his latest milestone of achieving Microsoft .NET 2.0 Framework compatibility with the Mono Project .; DDJ; Dr. Dobb/s interviews Paul Kimmel, author of "LINQ Unleashed for C#", about Microsoft's new query technology that lets developers poll any information from any data source regardless of location or structure. I; C#; DDJ; Dr. Dobb's; LINQ; microsoft; It takes a supercomputer to build a super car. ; DDJ; HPC; simulation; Dr. Dobb's shows how to install and execute cross-platform scripting languages on the Windows Mobile platform. In this installment, Mike Riley examines Perl for Windows Mobile devices.; DDJ; mobile devices; perl; windows; Dr. Dobb's shows how to install and execute cross-platform scripting languages on the Windows Mobile platform. In this installment, Mike Riley examines Python CE which is optimized for Windows Mobile devices.; DDJ; mobile devices; python; windows; Dr. Dobb's shows how to install and execute cross-platform scripting languages on the Windows Mobile platform. In this installment, Mike Riley examines Ruby for Windows Mobile devices.; DDJ; mobile devices; ruby; windows; Young participants at ITU TELECOM ASIA 2008 in Bangkok, Thailand received free laptops as part of ITU’s initiative to promote affordable devices to increase access to information and communication technologies.; communication; DDJ; itu; Currently technical strategist to Microsoft's Chief Software Architect, Rebecca Norlander has had a tremendous impact on Excel, Internet Explorer, Windows XP SP2, and Windows Vista Security. ; DDJ; microsoft; Contributing authors to the book "Beautiful Code" got together at Dr. Dobb's SD West Conference in March, 2008. Part 1 of 3.; DDJ; programming; software development; Contributing authors to the book "Beautiful Code" got together at Dr. Dobb's SD West Conference in March, 2008. Part 2 of 3.; DDJ; programming; software development; Contributing authors to the book "Beautiful Code" got together at Dr. Dobb's SD West Conference in March, 2008. Part 3 of 3.; DDJ; programming; software development; Anders Hejlsberg discusses C#, Turbo Pascal, and what it means to design a programming language. ; C#; DDJ; microsoft; Turbo Pascal; Solar powered laptops given to youths at ITU Asia 2008.; DDJ; News; telecommunications; IBM breakthrough stands to impact future direction of information technology.; DDJ; Mike Riley spoke to ActiveState's Jeff Hobbes about the new features in Tcl Dev Kit and Perl Dev Kit including the code coverage and hot-spot analysis tool and Mac OSX support.; DDJ; Tim O'Reilly addressed the OSCON convention in his Wednesday keynote titled "Degrees of Freedom, Open Source in the Wed 2.0 Era.; DDJ;


Enabling People and Organizations to Harness the Transformative Power of Technology