The easiest way to get the ClamAV package is using Homebrew
$ brew install clamav
Before trying to start the clamd process, you'll need a copy of the ClamAV databases.
Create a freshclam.conf file and configure as so
| `````col | |
| ````col-md | |
| # 📜 Backlog | |
| ![[Tasks Base.base#Backlog]] | |
| ```` | |
| ````col-md | |
| # 📋 To Do | |
| ![[Tasks Base.base#To Do]] | |
| ```` |
| $ python3 search.py | |
| > ice cream | |
| Saturday Night Live | |
| San Miguel Beermen | |
| Android (operating system) | |
| Durham, North Carolina | |
| Pharrell Williams | |
| New England | |
| Guanajuato | |
| Lafayette, Louisiana |
The easiest way to get the ClamAV package is using Homebrew
$ brew install clamav
Before trying to start the clamd process, you'll need a copy of the ClamAV databases.
Create a freshclam.conf file and configure as so
This document details how I setup LE on my server. Firstly, install the client as described on http://letsencrypt.readthedocs.org/en/latest/using.html and make sure you can execute it. I put it in /root/letsencrypt.
As it is not possible to change the ports used for the standalone authenticator and I already have a nginx running on port 80/443, I opted to use the webroot method for each of my domains (note that LE does not issue wildcard certificates by design, so you probably want to get a cert for www.example.com and example.com).
For this, I placed config files into etc/letsencrypt/configs, named after <domain>.conf. The files are simple:
| #!/bin/bash | |
| # Given a collection of .png files, this function will resize the images | |
| # and organize them in a way that android studio expects. | |
| # | |
| # Usage: resize_drawables *.png | |
| # | |
| # Given a file, my_icon.png, the command: | |
| # | |
| # rezie_drawables my_icon.png |
| brew install macvim --HEAD --with-cscope --with-lua --override-system-vim --with-luajit --with-python |
| #!/usr/bin/env sh | |
| # take the current folder name as the app name | |
| APPNAME=${PWD##*/} | |
| # start a new persistent postgres container named appname_pg that listens on local port 5432 | |
| docker run -p 5432:5432 --name ${APPNAME}_pg postgres |
| nginx: https://gist.github.com/michiel/1064640 | |
| django: https://github.com/ottoyiu/django-cors-headers |