stopBefore(document, 'getElementById')
stopBefore('document.getElementById') // the same as the previous
stopBefore(Element.prototype, 'removeChild')
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
| class ReloaderEventHandler(FileSystemEventHandler): | |
| """ | |
| Listen for changes to modules within the Django project | |
| On change, reload the module in the Python Shell | |
| Custom logic required to reload django models.py modules | |
| Due to the singleton AppCache, which caches model references. | |
| For those models files, we must clear and repopulate the AppCache | |
| """ | |
| def __init__(self, *args, **kwargs): |
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
| [My initial list:] | |
| DRM | |
| speed for superhi-perf games | |
| app store placement | |
| source-code secrecy | |
| [list compiled from other people's twitter answers; thanks all!] | |
| pushing native notifications when they're not in the "app" (several people said this) |
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
| """ | |
| Tasks for managing a test server | |
| """ | |
| import os | |
| from fabric.api import cd, env, prefix, run, sudo, task | |
| from fabric.contrib.files import exists, sed | |
| from fabric.context_managers import hide | |
| from fabric.colors import green, red |
OlderNewer