This set of instructions goes with this presentation deck.
yum install postgis24_10
import type { | |
CollectionBeforeOperationHook, | |
FileData, | |
Plugin, | |
UploadCollectionSlug, | |
} from 'payload' | |
type AspectRatios = Record<string, number> | |
type Collections = Partial<Record<UploadCollectionSlug, AspectRatios>> |
import argparse | |
import json | |
import logging | |
import os | |
import re | |
import shutil | |
from concurrent.futures import ProcessPoolExecutor, as_completed | |
from dataclasses import dataclass | |
from datetime import datetime | |
from typing import Any, Callable, Dict, List, Literal, Optional, Tuple |
''' | |
https://arxiv.org/abs/2312.00858 | |
1. put this file in ComfyUI/custom_nodes | |
2. load node from <loaders> | |
start_step, end_step: apply this method when the timestep is between start_step and end_step | |
cache_interval: interval of caching (1 means no caching) | |
cache_depth: depth of caching | |
''' |
CREATE TABLE dict_english ( | |
word varchar NOT NULL | |
); | |
CREATE UNIQUE INDEX dict_english_word_idx ON dict_english (word); |
This set of instructions goes with this presentation deck.
yum install postgis24_10
# IMPORTANT! | |
# This gist has been transformed into a github repo | |
# You can find the most recent version there: | |
# https://github.com/Neo23x0/auditd | |
# ___ ___ __ __ | |
# / | __ ______/ (_) /_____/ / | |
# / /| |/ / / / __ / / __/ __ / | |
# / ___ / /_/ / /_/ / / /_/ /_/ / | |
# /_/ |_\__,_/\__,_/_/\__/\__,_/ |
So HAProxy is primalery a load balancer an proxy for TCP and HTTP. But it may act as a traffic regulator. It may also be used as a protection against DDoS and service abuse, by maintening a wide variety of statistics (IP, URL, cookie) and when abuse is happening, action as denying, redirecting to other backend may undertaken ([haproxy ddos config], [haproxy ddos])
function custom_pre_get_posts_query( $q ) { | |
$tax_query = (array) $q->get( 'tax_query' ); | |
$tax_query[] = array( | |
'taxonomy' => 'product_cat', | |
'field' => 'slug', | |
'terms' => array( 'clothing' ), // Don't display products in the clothing category on the shop page. | |
'operator' => 'NOT IN' | |
); |
#!/opt/bin/bash | |
# Script for blocking IPs which have been reported to www.badips.com | |
# Usage: Just execute by e.g. cron every day | |
# --------------------------- | |
_ipt=/sbin/iptables # Location of iptables (might be correct) | |
_input=badips.db # Name of database (will be downloaded with this name) | |
_pub_if=eth0 # Device which is connected to the internet (ex. $ifconfig for that) | |
_droplist=badip-droplist # Name of chain in iptables (Only change this if you have already a chain with this name) | |
_level=4 # Blog level: not so bad/false report (0) over confirmed bad (3) to quite aggressive (5) (see www.badips.com for that) |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# Written as part of https://www.scrapehero.com/how-to-scrape-amazon-product-reviews-using-python/ | |
from lxml import html | |
import json | |
import requests | |
import json,re | |
from dateutil import parser as dateparser | |
from time import sleep |