Chris Zetter

94 Followers
51 Following
100 Posts
I'd love to know if there is a reason the date search on Github's commit view goes back 200 years to 1825. Can you even create a git commit dated before 1970?
People here might appreciate today’s Connections puzzle - https://www.nytimes.com/games/connections
Connections - Group words that share a common thread

Group words that share a common thread. A new puzzle is available each day.

If you work on a Rails app, you should check to see if there are calls `prepend_view_path` or `append_view_path` within a request. Found it's been a known problem for a while and was causing big memory leaks our app. More at https://makandracards.com/makandra/515345-rails-fixing-the-memory-leak-performance-issues-in-prepend_view_path
Rails: Fixing the memory leak / performance issues in prepend_view_path

Recently we detected a memory leak in one of our applications. Hunting it down, we found that the memory leak was located in Rails' #prepend_view_path. It occurs when the instance method prepend_view_path is called in each request, which is a common thing in a multi-tenant application. On top of ...