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
# SPDX-FileCopyrightText: 2021 Philip Howard | |
# | |
# SPDX-License-Identifier: MIT | |
# This example gives you eight toggle and eight "mutex" key bindings for OBS studio | |
# | |
# MUTEX | |
# Use the top eight buttons (nearest the USB connector) to bind your scenes. | |
# The light on these is mutually exclusive- the one you last pressed should light up, | |
# and this is the scene you should be broadcasting. |
Vagrant.configure("2") do |config| | |
config.vm.network "private_network", type: "dhcp" | |
(1..3).each do |i| | |
config.vm.define "node-#{i}" do |node| | |
node.vm.box = "ubuntu/focal64" | |
node.vm.provision "shell", | |
inline: "echo hello from node #{i}" | |
end |
import json | |
import shutil | |
import string | |
import re | |
import os | |
import glob | |
with open("albums.json", "r") as read_file: | |
data = json.load(read_file) |
#!/usr/bin/env bash | |
# Script to upload http-trace.log to ES Cluster | |
# Requires MINIO_HTTP_TRACE env var to be enabled (-e "MINIO_HTTP_TRACE=/data/http-trace.log") | |
# | |
# Usage: | |
# upload_minio_logs.sh <http_log_file> <run_id> | |
# | |
# Environment variables: | |
# ES_HOST, ES_PORT, ES_USERNAME, ES_PASSWORD - target ES cluster |
#!/usr/bin/env bash | |
# Script to upload http-trace.log to ES Cluster | |
# Requires MINIO_HTTP_TRACE env var to be enabled (-e "MINIO_HTTP_TRACE=/data/http-trace.log") | |
# | |
# Usage: | |
# upload_minio_logs.sh <http_log_file> <run_id> | |
# | |
# Environment variables: | |
# ES_HOST, ES_PORT, ES_USERNAME, ES_PASSWORD - target ES cluster |
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
127.0.0.1 api.taboola.com | |
127.0.0.1 www.api.taboola.com | |
127.0.0.1 c2.taboola.com | |
127.0.0.1 www.c2.taboola.com | |
127.0.0.1 cdn.taboola.com | |
127.0.0.1 www.cdn.taboola.com | |
127.0.0.1 urc.taboolasyndication.com | |
127.0.0.1 www.urc.taboolasyndication.com | |
127.0.0.1 taboola.com.edgekey.net | |
127.0.0.1 www.taboola.com.edgekey.net |
I hereby claim:
To claim this, I am signing this object:
// Grab all profile fields from users in id cache for later use - similar to the poster cache | |
if ($config['user_blog_custom_profile_enable']) | |
{ | |
if (!class_exists('custom_profile')) | |
{ | |
include($phpbb_root_path . 'includes/functions_profile_fields.' . $phpEx); | |
$cp = new custom_profile(); | |
$profile_fields_cache = $cp->generate_profile_fields_template('grab', $users_to_query); | |
} | |
} |