This file contains 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
class OpenTemplateHandler(tornado.web.RequestHandler): | |
def get_current_user(self): | |
return json.loads(self.get_secure_cookie("myapp-user")) | |
def get(self, path): | |
self.render(path+'.html') | |
class ApiHandler(BaseHandler): | |
@tornado.gen.coroutine | |
def get(self, path): |
This file contains 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
static PyObject * | |
internal_rename(PyObject *args, PyObject *kwargs, int is_replace) | |
{ | |
char *function_name = is_replace ? "replace" : "rename"; | |
path_t src; | |
path_t dst; | |
int src_dir_fd = DEFAULT_DIR_FD; | |
int dst_dir_fd = DEFAULT_DIR_FD; | |
int dir_fd_specified; | |
PyObject *return_value = NULL; |
This file contains 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
Promise.all( | |
['module1', 'module2', 'module3'] | |
.map(x => System.import(x))) | |
.then(([module1, module2, module3]) => { | |
// Use module1, module2, module3 | |
}); |
This file contains 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
'use strict'; | |
/** | |
* Created by Alexander Litvinov | |
* Email: [email protected] | |
* May be freely distributed under the MIT license | |
*/ | |
let singleton = Symbol(); | |
let singletonEnforcer = Symbol(); |
This file contains 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
<style> | |
.header { | |
background-image: url(http://local.dev/wp-content/uploads/2016/04/image-300x151.png) | |
} | |
@media only screen and (min-width: 300px) {.header { | |
background-image: url(http://local.dev/wp-content/uploads/2016/04/image-768x386.png) | |
}} | |
@media only screen and (min-width: 768px) {.header { | |
background-image: url(http://local.dev/wp-content/uploads/2016/04/image-1024x515.png) | |
}} |
This file contains 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
# An example tornado request handler that handles both JSON POST request | |
# bodies and x-www-form-urlencoded POST bodies. | |
# | |
# The benefit of JSON request bodies are more complicated and potentially | |
# nested dict and list data types. | |
# | |
# One drawback to JSON request bodies is that arguments can come in | |
# different types, so handlers will need to perform additional checks. | |
# With x-www-form-urlencoded fields, all argument values are strings, if | |
# they exist. |