Tim E

Results 11 comments of Tim E

Which lua do you have 5.1 or 5.2 On Feb 16, 2015 3:48 PM, "richard bucker" [email protected] wrote: > --deadCodeElim:on resulted in > > could not import: luaL_loadbuffer > >...

Old examples may not work depending on the API changes

@rbucker some compatibility functions are in there, `luaL_loadbuffer`, left as templates because it was tedious to figure out what types they should be, also some of them would conflict with...

an oversight I'm working on fixing. The lua and luaL prefix need to be removed and the template should be a proc On Feb 18, 2015 7:38 PM, "sid-code" [email protected]...

In 2023 the best source for info about POSTGRES_SEEDS is still searching through the issues in github

turns out those dont work on windows, it just raises the exception and goes along, can be fixed with `findExe("nakefile")`, we can expect there to not be another nakefile.exe on...

ok so I had this mostly working then I discovered why findExe("nake") wasnt working, in my nimble/bin the exes don't have exe in them, just `.cmd` launchers

`os.findExe` doesnt look like it would be easy to fix, it relies on a const that says what an "exe" is for a platform and it only considers there to...

I'd prefer something like this, only difference is slightly less string ops (we can delay adding the path until the file is found) ``` nim proc findFile(filename: string, extensions: openarray[string]...