Malcolm Yoke Hean Low

Web page of Malcolm Yoke Hean Low, School of Computer Engineering, NTU




View Malcolm Low's profile on LinkedIn

Malcolm Low

Create Your Badge

The State and Future of JavaScript


Posted on Wednesday, February 24, 2010 at 10:07 AM by Malcolm

Douglas Crockford talks on the history of JavaScript unveiling some of the struggles the Ecma Technical Committee has had in advancing the language over the years, concluding with lessons learned: if one has a great idea he should not tell it to a standardization body but rather do it, a change to a widely used standard is an act of violence, standards are hard, and one cannot please everyone


Posted in General (RSS) , Tech (RSS)

Happy New Year 2010


Posted on Friday, January 01, 2010 at 12:03 PM by Malcolm

Happy New Year 2010 Comments and Graphics for MySpace, Tagged, Facebook

Edited on: Friday, January 01, 2010 2:19 PM

Posted in General (RSS)

What Should We Teach New Software Developers? Why? - CACM article by Bjarne Stroustrup


Posted on Tuesday, December 22, 2009 at 11:58 PM by Malcolm

What Should We Teach New Software Developers? Why?
Bjarne Stroustrup in CACM viewpoint, "Fundamental changes to computer science education are required to better address the needs of industry. Computer science must be at the center of software systems development. If it is not, we must rely on individual experience and rules of thumb, ending up with less capable, less reliable systems, developed and maintained at unnecessarily high cost. We need changes in education to allow for improvements of industrial practice."



Posted in General (RSS) , Teaching (RSS)

Software Engineering Method and Theory: Call for Action Statement


Posted on Wednesday, December 16, 2009 at 8:12 AM by Malcolm

The Software Engineering Method And Theory (SEMAT) Community Call for Action Statement:


Software engineering is gravely hampered today by immature practices. Specific problems include:
  • The prevalence of fads more typical of fashion industry than of an engineering discipline.
  • The lack of a sound, widely accepted theoretical basis.
  • The huge number of methods and method variants, with differences little understood and artificially magnified.
  • The lack of credible experimental evaluation and validation.
  • The split between industry practice and academic research.
We support a process to refound software engineering based on a solid theory, proven principles, and best practices that:
  • Includes a kernel of widely-agreed elements, extensible for specific uses.
  • Addresses both technology and people issues.
  • Is supported by industry, academia, researchers and users.
  • Supports extension in the face of changing requirements and technology.

You can become a supporter of the community by signing up at the site: www.semat.org.

Edited on: Wednesday, December 16, 2009 9:01 AM

Posted in General (RSS)

Compilers and More: OpenCL Promises and Potential


Posted on Saturday, September 12, 2009 at 12:49 PM by Malcolm

In this article, Michael Wolfe from PGI discusses different aspects of OpenCL. Given all the hype, what can we expect from OpenCL? Is it really simple? Is it portable? Will it replace other parallel programming models?


Posted in HPC (RSS)

Ebook: HPC for Dummies


Posted on Thursday, September 10, 2009 at 12:37 AM by Malcolm

Ebook: HPC for Dummies

This special edition eBook from Sun and AMD shares details on real-world uses of HPC, explains the different types of HPC, guides you on how to choose between different suppliers, and provides benchmarks and guidelines you can use to get your system up and running. Get it here.
Edited on: Thursday, September 10, 2009 12:57 AM

Posted in General (RSS) , HPC (RSS)

Software Engineering: An Idea Whose Time Has Come and Gone?


Posted on Thursday, July 16, 2009 at 12:35 AM by Malcolm

An interesting article by Tom DeMarco, author of the 1979 book "Structured Analysis and System Specification" and inventor of the data flow diagram.
Edited on: Thursday, July 16, 2009 12:42 AM

Posted in General (RSS)

An Introduction to Parallel Programming - Module 1: Performance Tuning


Posted on Monday, July 06, 2009 at 1:57 PM by Malcolm

A seven part series from Sun on the introduction to parallel programming. Part 1 is on performance tuning. Edited on: Monday, July 06, 2009 3:52 PM

Posted in HPC (RSS)

Project Natal


Posted on Tuesday, June 02, 2009 at 1:11 PM by Malcolm

Microsoft has unveiled its new control system for the Xbox 360. Project Natal is a fully hands-free control system that will use face recognition and motion sensors to allow users to play games.

Edited on: Monday, July 06, 2009 1:59 PM

Posted in (RSS)

The Read Green Initiative


Posted on Tuesday, May 12, 2009 at 5:26 PM by Malcolm

The Read Green Initiative offers millions of people FREE access to an alternative, environmentally friendly way of enjoying favorite magazines, books and other publications. Simply select your free one-year digital subscription to any featured magazine and read it with Zinio's interactive reader.



Edited on: Friday, May 22, 2009 3:25 PM

Posted in General (RSS) , Research (RSS)

parallel_invoke() - Running Multiple Functions in Parallel using Intel Thread Building Block


Posted on Monday, April 06, 2009 at 4:46 PM by Malcolm

From this article, running multiple functions together with Intel Thread Building block is as simple as the following:

void Function1();
void Function2();
void Function3();

void RunFunctions() {
tbb::parallel_invoke(Function1, Function2, Function3);
}
Edited on: Monday, April 06, 2009 4:49 PM

Posted in HPC (RSS)

NTU supports Earth Hour


Posted on Monday, March 23, 2009 at 3:45 PM by Malcolm

Edited on: Monday, March 30, 2009 9:25 AM

Posted in General (RSS)

Cloud Computing for Dummy


Posted on Wednesday, February 04, 2009 at 10:53 PM by Malcolm

This video in YouTube gives an easy to understand explanation of what Cloud Computing is.

Edited on: Monday, February 09, 2009 9:00 AM

Posted in HPC (RSS)

Free Wireless Broadband Access to NTU Wifi Network via SMS Registration


Posted on Thursday, January 22, 2009 at 9:07 AM by Malcolm

(Source) Visitors to NTU campus with mobile phone can now enjoy free, campus-wide seamless wireless broadband access with speed of up to 54Mbps.

To register for the free wireless access day account, simply SMS the keyword 'register' to the phone number 98635582. The visitor will receive via SMS the account username in the format ASSOC\ and a password for access to the NTUwireless network.

Edited on: Thursday, January 22, 2009 9:19 AM

Posted in General (RSS)

Leap Year Bug in Microsoft Zune Player


Posted on Tuesday, January 06, 2009 at 12:45 PM by Malcolm

On December 31, 2008, every Zune 30 device freezes due to a leap year bug in a driver from Freescale Semiconductor in a "while loop". Obviously a leap year test case is not carried out on the driver. See this article for details. Edited on: Tuesday, January 06, 2009 3:20 PM

Posted in General (RSS) , Teaching (RSS)

Four Paths to HPC using Java


Posted on Friday, December 19, 2008 at 1:19 AM by Malcolm

This article from JDJ gives a high-level description of four approaches using fork/join framework, Pervasive DataRush, Terracotta, and Hadoop for writing parallel applications in Java.

Edited on: Tuesday, December 23, 2008 7:18 PM

Posted in HPC (RSS)

Parallel Programming: Three Things You Must Teach


Posted on Friday, December 19, 2008 at 12:53 AM by Malcolm

From Intel Software College, this series of three lectures provides an introduction to parallel programming.

Module 1. Recognizing Potential Parallelism



Module 2. Shared Memory and Threads

Part 1



Part 2



Module 3. Programming with OpenMP

Part 1



Part 2

Edited on: Monday, March 30, 2009 9:37 AM

Posted in HPC (RSS)

Google Code University - Introduction to Parallel Programming and MapReduce


Posted on Friday, December 19, 2008 at 12:40 AM by Malcolm

This tutorial from the Google Code University covers the basics of parallel programming and the MapReduce programming model. The pre-requisites are significant programming experience with a language such as C++ or Java, and data structures & algorithms.




Posted in General (RSS) , HPC (RSS) , Research (RSS)

Obama Wins Historic US Election


Posted on Wednesday, November 05, 2008 at 11:09 PM by Malcolm

Obama Wins US Election

Edited on: Wednesday, December 10, 2008 11:31 PM

Posted in General (RSS)

Understanding Parallel Performance - How do we know we've succeeded?


Posted on Monday, November 03, 2008 at 1:22 PM by Malcolm

In this article, Microsoft software architect Herb Sutter discusses some key issues to keep in mind for accurately analyzing the real performance of parallel code. The article uses simple example code to point out basic considerations and common costs in developing parallel programs.

Edited on: Monday, November 03, 2008 9:33 PM

Posted in (RSS)