- Process of hiding the origin of illegally gained money to make it appear legitimate.
- Linked to predicate offences like fraud, human trafficking, tax evasion, etc.
- Terrorist financing uses legal or illegal funds to support terrorism.
- Create indexes on frequently filtered columns: Ensure you have indexes on columns used in
WHERE,JOIN, andORDER BYclauses (e.g.,deleted_at IS NULL,created_at). - Use conditional indexes: If you’re often filtering by a condition (e.g.,
deleted_at IS NULL), create a partial index. - Use
CONCURRENTLYwhen creating indexes in production: This prevents locking the table during the index creation. - Remove duplicate indexes: Multiple identical or overlapping indexes slow down writes without providing extra benefits.
- Enable parallel execution: Make sure PostgreSQL is configured to utilize parallelism for large queries by adjusting parameters like
max_parallel_workers_per_gatherandmax_parallel_workers. - Use
enable_parallel_appendfor UNION queries: For UNION queries across multiple tables, enabling parallel append can optimize performance.
#What do you need to run this workflow?
Model: ReV Animated v1.2.2-EOL - (folder: /ComfyUI/models/checkpoints)
https://civitai.com/api/download/models/46846
LoRA: 3DMM_V12 - (folder: /ComfyUI/models/loras)
sudo apt install apt-transport-https ca-certificates curl software-properties-common curl gnupg lsb-release
sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu sb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt update
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get update | |
| sudo apt-get upgrade | |
| sudo apt-get install ca-certificates curl gnupg lsb-release | |
| # Add docker’s GPG key | |
| sudo mkdir -p /etc/apt/keyrings | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. Check if your Ubuntu is ready for your GPU card. In my case RTX4090 | |
| ``` | |
| nvidia-smi | |
| # If you have an error like "Failed to initialize NVML: Driver/library version mismatch. NVML library version: 535.161" | |
| ubuntu-drivers devices | |
| sudo ubuntu-drivers autoinstall | |
| ## Or as alternative if you want to do it manually | |
| sudo apt-get install nvidia-driver-535 |
To run the code:
-
Setup:
-
Install Go if you haven't already. You can get it from Go's official website.
-
Ensure your
GOPATHis set. Typically it's~/go, but you might want to check or configure it according to your needs.
-
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
- Install the "php-open-source-saver/jwt-auth" package: Use the following command to install it:
composer require php-open-source-saver/jwt-auth
- Copy the package config file: Use the following command to copy the package config file to the config directory:
php artisan vendor:publish --provider="PHPOpenSourceSaver\JWTAuth\Providers\LaravelServiceProvider"
Table of Contents generated with DocToc
NewerOlder