Eric Wieser
Eric Wieser
Perhaps something simple like: ```lua sentinel = {} yield = function(...) coroutine.yield(sentinel, ...) end wrap = function(coro) native_wrap = coroutine.wrap(coro) return function(...) args = pack(...) while true do ret =...
The idea behind the pseudocode above is to distinguish our yields from theirs, and propagate theirs when they occur. It's definitely not correct as written, I forget how varargs work.
Yep, should be: ``` -- Easy Installer for computercraft-github by Eric Wieser -- https://github.com/eric-wieser/computercraft-github local tree = select(1,...) or 'master' local url = ('https://raw.githubusercontent.com/eric-wieser/computercraft-github/%s'):format(tree) local response = http.get(url..'/bootstrap.lua').readAll() setfenv(loadstring(response, 'bootstrap.lua'),...
@aaronmallen; [Attempt 2 - `4avPU6Cz`](http://pastebin.com/4avPU6Cz)
@aaronmallen: How about now?
The pastebin didn't change? I think you got unlucky, and the http request failed
Yeah, I didn't really want to have to do that, but I guess I ought to. I just updated it with an assertion. It sounds like the `http` api is...
Then yes, I'd say go ahead with trying to make auth work!
Ah, I didn't think to look at the bottom of the conversion log. I guess either the newunicodechar or the csquotes stuff is to blame for the large-scale breakage
> and have to port it forward 700+ commits now. I'd be surprised if you have to change much at all, other than perhaps makefiles for the example project. Does...