Josh Wolfe
Josh Wolfe
discussed with @SpexGuy and @andrewrk . The concrete proposal is: * If every `return` statement in a function refers to the same named variable, then that variable's address is the...
It still surprises me that Git's default configuration is to give you the wrong bytes on windows. Can you clarify which client you're using? is it provided by GitHub? by...
I changed hosting providers and lost the ability to host non-static content. I don't have any concrete plan to continue work on this project soon, but I'd like to return...
there should also be good defaults, like everything minning at 0, especially skills.
I'm thinking we should use a database separate from the main definitions. We should be able to paste the trait list tables on page 297 into a computer program that...
Another problem is how to find the installation of acrobat reader. Here's a pseudocode [strategy](http://social.msdn.microsoft.com/Forums/en/netfxbcl/thread/630ed1d9-73f1-4cc0-bc84-04f29cffc13b) using the registry to find the handler of the .pdf file extension: ``` string registryCommandName...
my recent experience is that breaking a door triggers a bug in mineflayer where the bot doesn't know the door is gone. the common theme seems to indicate that there's...
that's about what I did. I'll see if I can get a more controlled scenario to reproduce the problem.
if you model `a = a + b` as this function: ```zig fn add(left: *const u32, right: *const u32, result: *u32) void { ... } add(&a, &b, &a); ``` then...
If you eliminate the runtime stack, you have to replace it with some other allocator. The proponents of functional languages would probably advocate storing bound variables on the heap, which...