$ docker system df --verbose
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
| // controllers/LoginController.js | |
| module.exports = { | |
| index: function(req, res) { | |
| var email = req.param('email'); | |
| var password = req.param('password'); | |
| // delay everthing to prevent bruteforce, dos and timing attacks | |
| setTimeout(function() { |
| { | |
| "python.linting.pylintEnabled": false, | |
| "python.linting.flake8Enabled": true, | |
| "python.linting.flake8Args": ["--ignore=E24,W504", "--verbose"], | |
| "python.linting.enabled": true, | |
| "python.lintOnSave": true | |
| } |