C0deH4cker

Results 29 comments of C0deH4cker

This sounds like the perfect use case for promises, since you don't yet have the response body but return a promise that you will create it later

I think it would be good for projects to need to opt-in to publishing by setting something like `DOCKER_PUBLISH := 1` in their `Build.mk` file. Then, `make docker-publish` or `make...

Did you remember to use `git clone --recurse-submodules https://github.com/C0deH4cker/FlappingBird.git` when cloning? Or at least `git submodule update --init --recursive` after cloning?

Hmm, it should be fine. Try deleting the whole repo, cloning it again, and cd into FlappingBird/SimpleGameEngine before running make. If it works, then try make in FlappingBird. If you...

Did libsge.a even build successfully? Can you show the contents of FlappingBird/SimpleGameEngine/build please?

Okay, I think that I may know what the issue is. In that folder, run `ar -t libsge.a` and look for an entry named `__.symdef`. If that doesn't exist, run...

That's really odd... What's the output of running `nm Window.o`? On Mar 9, 2014, at 3:19 PM, Bảo Khánh [email protected] wrote: > I ran ranlib libsge.a but that lib still...

Okay, run make clean again in all dirs (FlappingBird, SimpleGameEngine, glfw). Delete the Makefile from `glfw/`. Then, make the following change: On line 73 in the Makefile of SimpleGameEngine, change...

I personally prefer option 1 and believe it would be easiest to understand (since .. means concatenate in other parts of the language). I would also like to propose another...

I believe this comes from the code that tries to trim trailing whitespace in Mustache tag names, which doesn't check if there actually are any unicode scalars before using them:...