Ubuntu 18.04 UFW settings, based on [1] Step 1
ens3.. primary physical ETH interface10.243.0.0/16.. ZT network
Describe how to change various HTTP request attributes that usually differs from one request to another:
| ; The Expression Problem and my sources: | |
| ; http://stackoverflow.com/questions/3596366/what-is-the-expression-problem | |
| ; http://blog.ontoillogical.com/blog/2014/10/18/solving-the-expression-problem-in-clojure/ | |
| ; http://eli.thegreenplace.net/2016/the-expression-problem-and-its-solutions/ | |
| ; http://www.ibm.com/developerworks/library/j-clojure-protocols/ | |
| ; To begin demonstrating the problem, we first need some | |
| ; "legacy code" with datastructures and functionality: |
| sudo apt-get remove --purge vim vim-runtime vim-gnome vim-tiny vim-common vim-gui-common | |
| sudo apt-get build-dep vim-gnome | |
| sudo apt-get install liblua5.1-dev luajit libluajit-5.1 python-dev ruby-dev libperl-dev mercurial libncurses5-dev libgnome2-dev libgnomeui-dev libgtk2.0-dev libatk1.0-dev libbonoboui2-dev libcairo2-dev libx11-dev libxpm-dev libxt-dev | |
| sudo rm -rf /usr/local/share/vim | |
| sudo rm /usr/bin/vim | |
| #!/usr/bin/python | |
| import datetime | |
| import logging | |
| import threading | |
| import weakref | |
| import tornado | |
| import tornado.gen | |
| import pika |
| #!/usr/bin/env python | |
| from __future__ import unicode_literals | |
| import pymongo | |
| import threading | |
| DB_NAME = 'events' | |
| COLLECTION_NAME = 'events' | |
| class Subscriber(threading.Thread): |
| Copyright (c) 2011 ZURB, http://www.zurb.com/ |
| #!/usr/bin/env python | |
| """This is a demonstration of sharing file descriptors across processes. | |
| It uses Tornado (need a recent post-2.0 version from github) and the | |
| multiprocessing module (from python 2.6+). To run it, start one copy | |
| of fdserver.py and one or more copies of testserver.py (in different | |
| terminals, or backgrounded, etc). Fetch http://localhost:8000 and | |
| you'll see the requests getting answered by different processes (it's | |
| normal for several requests to go to the same process under light | |
| load, but under heavier load it tends to even out). |