davidm (David Manura)

Name
David Manura
Website/Blog
http://lua-users.org/wiki/DavidManura
Member Since
Sep 02, 2008 (about 1 year)

Following 2 githubbers and watching 3 repositories view all →

Public Repositories (3)

  • luacom

    Microsoft Component Object Model (COM) binding for Lua

    legend

    Last updated Thu Dec 03 07:26:30 -0800 2009

  • lua2c

    convert Lua source code into an equivalent C source code written in terms of Lua C API calls

    legend

    Last updated Fri May 01 16:52:55 -0700 2009

  • lua-patch

    Pure Lua implementation of the Unix patch utility (unified diff only)

    legend

    Last updated Thu Nov 06 20:44:34 -0800 2008

Public Activity feed

davidm updated gist: 233503 Thu Nov 12 17:53:56 -0800 2009
function printf(s, ...) print(s:format(...)) end
davidm created gist: 233516 Thu Nov 12 17:53:34 -0800 2009
function readfile(filename) local fh, err = io.open(filename, 'rb') if not fh then return nil...
davidm created gist: 233503 Thu Nov 12 17:39:24 -0800 2009
function printf(s, ...) print(s:format(...)) end
davidm forked gist: 233498 Thu Nov 12 17:30:22 -0800 2009
require 'luarocks.require' require 'mercury' require 'haml'
davidm commented on davidm/luacom Wed Sep 30 19:09:28 -0700 2009
Comment on src/library/tLuaCOMTypeHandler.cpp L27 in 630f4e6:

That's likely correct. The change was made to allow compilation under gcc, which doesn't have compiler COM support, and it's been a while since I've worked with that. Of the recent changes, this was the one I was most unsure about.