Last active
December 20, 2015 18:19
-
-
Save ahoward/6174948 to your computer and use it in GitHub Desktop.
today's coding quiz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# it's not critical for understanding | |
# but here is the associated server-side action | |
# | |
def version | |
@program = load_program! | |
@version = @program.versions.find(params[:version_id]) | |
if stale?(:last_modified => @version.updated_at, :etag => @version.cache_key) | |
render | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// today's quiz is simple: | |
// | |
// fork this code and explain, in english, what it does. | |
// | |
// suggest simpler alternatives. | |
// | |
if(state != 'complete'){ | |
var get = function(){ | |
jq.ajax({ | |
'type' : 'GET', | |
'url' : url, | |
'cache' : false, | |
'success' : function(html){ | |
version.replaceWith(html); | |
} | |
}); | |
}; | |
var head = function(callback){ | |
jq.ajax({ | |
'type' : 'HEAD', | |
'url' : url, | |
'success' : function(res, code, xhr){ | |
var server_last_modified = xhr.getResponseHeader("Last-Modified"); | |
if(Date.parse(server_last_modified) > Date.parse(last_modified)){ | |
callback(); | |
}; | |
} | |
}); | |
}; | |
head(get); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment