A common and reliable pattern in service unit files is thus:
NoNewPrivileges=yes
PrivateTmp=yes
PrivateDevices=yes
DevicePolicy=closed
ProtectSystem=strict
| silly gist hack, why do we need you? :( |
| # -*- coding: utf-8 -*- | |
| """ | |
| Python Script to download the Chrome Extensions (CRX) file directly from the google chrome web store. | |
| Referred from http://chrome-extension-downloader.com/how-does-it-work.php | |
| """ | |
| from __future__ import division | |
| import argparse | |
| import requests |
| worker_processes 1; | |
| events { | |
| worker_connections 1024; | |
| } | |
| http { | |
| include mime.types; |
| <?php | |
| namespace Acme\DemoBundle\Features\Context; | |
| use Behat\BehatBundle\Context\BehatContext, | |
| Behat\Behat\Context\TranslatedContextInterface, | |
| Behat\Behat\Exception\PendingException; | |
| use Behat\Gherkin\Node\PyStringNode, | |
| Behat\Gherkin\Node\TableNode; |
| var el = ( function () { | |
| var doc = document; | |
| var directProperties = { | |
| 'class': 'className', | |
| className: 'className', | |
| defaultValue: 'defaultValue', | |
| 'for': 'htmlFor', | |
| html: 'innerHTML', |
| #!/bin/bash | |
| set -u | |
| set -e | |
| declare -A categorys | |
| categorys[daemons]=2 | |
| categorys[devel]=3 | |
| categorys[editors]=4 | |
| categorys[emulators]=5 |