tmilker
tmilker
In a 4-way movement roguelike, there are cases where there can be two movement directions that cost the same amount in the ```DijkstraMap```. This is a request to add a...
This pull request is in regards to the code in Chapter 9: Victory and Defeat. At least, it's where I discovered it. This fixes an issue with enemies being able...
You updated this file for URI.unescape() obsolescence to CGI.unescape() but didn't update the require. I believe you need to update lib/scorched/request.rb to require 'cgi' instead of require 'uri'. It took...
What do you think about extracting the private compile method in controller.rb to a public helper method? The reason I ask is that I need an "except" before filter that...
Atomic Data Manager incorrectly identifies packed images as missing when you open a blend. It's easy to just click okay since the default is to ignore but it's something a...
https://gist.github.com/2252997 Is there any way to fix schizo to prevent the infinite loop from happening in the gist above? I know I could just rename the method but I think...
If I have a `get /foo/:bar do |bar|` in the root controller and send it something like "test%2Bcall" then `bar` will correctly equal "test+call". However, if I have a `target`...