Interesting Things
- nginx may write temporary files to local disk, especially for large files (>64K). You should make sure that
proxy_temp_pathis writable. You can also control the size when this happens by adjustingproxy_temp_file_write_size. The more interesting thing is that if the directory is not writable, you won't see an error message in the logs, butstraceis still your friend.
Helps
"Should I include
Gemfile.lockin a repository for a gem?"
- Yes, but don't include it in the gemspec, that way it won't be distributed with the gem.
- Bundler doesn't look at lock files in dependent gems anyway.
- It makes less sense for a gem since you wouldn't want to lock down the environment for all of your gem's users.
"What library should I use for GUIDs?"
- uuidtools
- universally unique identifiers may have trouble in other universes, please use caution when crossing these boundaries ;-)
Ask for Help
"Our demo site is running on nginx and protected by basic auth. Flash doesn't do basic auth. What do do?"
"Any suggestions for using ActiveResource to access nested resources?" One team was trying to use ActiveResource to access a nested restful web service and found the documentation lacking.
Interesting Things
- RSOC (Ruby Summer of Code) is looking for mentors. Pivotal is a sponsor and in addition will be providing desk space for some RSOC participants.
- Neo4j meetup at Twitter HQ tonight! Details on the neo4j blog
