https://developers.cloudflare.com/r2/platform/pricing/
up to 10,000,000 read operations + $0.36 per 1,000,000 operations
$3.60 free
up to 1,000,000 write operations + $4.50 per 1,000,000 operations
Name | Input | Output | |
---|---|---|---|
Gemini 2.0 Flash-Lite | $0.075 | $0.30 | |
Mistral 3.1 Small | $0.10 | $0.30 | |
Gemini 2.0 Flash | $0.10 | $0.40 | |
ChatGPT 4.1-nano | $0.10 | $0.40 | |
DeepSeek v3 (old) | $0.14 | $0.28 | |
ChatGPT 4o-mini | $0.15 | $0.60 | |
Gemini 2.5 Flash | $0.15 | $0.60 | |
DeepSeek v3 | $0.27 | $1.10 | |
Grok 3-mini | $0.30 | $0.50 |
import { useQuery } from "@tanstack/react-query"; | |
type Action<TActionInput = unknown, TActionReturn = unknown> = ( | |
input: TActionInput, | |
) => Promise<TActionReturn>; | |
export type BundledAction<TAction extends Action> = { | |
key: string[]; | |
result: Awaited<ReturnType<TAction>>; | |
action: TAction; |
https://developers.cloudflare.com/r2/platform/pricing/
up to 10,000,000 read operations + $0.36 per 1,000,000 operations
$3.60 free
up to 1,000,000 write operations + $4.50 per 1,000,000 operations
Security Advisories / Bulletins / vendors Responses linked to Log4Shell (CVE-2021-44228)
document.querySelectorAll('button[aria-label*="Hide"]').forEach(function(el, index) { | |
if(el.closest('.job-card-list__entity-lockup').querySelector('.job-card-container__company-name').innerHTML.trim() == 'Toptal') { | |
el.click(); | |
} | |
}); |
blueprint: | |
name: Sonos Connect Sync | |
description: Sync volume and source control between Sonos Connect and the receiver it's connected to. | |
domain: automation | |
source_url: https://gist.github.com/Qonstrukt/ca1e761b2ec0a2d52fdb8c86490fbcbd | |
input: | |
sonos_connect: | |
name: Sonos | |
selector: | |
entity: |
Documentation on how to override or extend the default nginx config on Elastic Beanstalk running om Amazon Linux 2. Correct as of 2021-08-01. Also see the general documentation on how to extend linux servers.
All references to placing files refer to putting a file at this location in your application bundle. You should never modify a file directly at your Elastic Beanstalk server by ssh:ing to the server, since such a change will be wiped whenever your servers autoscale or if you rebuild your application completely.
The easiest extension is to add a new location block to the main server block. This can be done by placing a .conf
file with a server block in the folder .platform/nginx/conf.d/elasticbeanstalk
. Any such file is automatically included in the main server block.
Username | Description | ID | Invite |
---|---|---|---|
GearBoat#3958 | Used for moderation purposes, GearGoat is a custom instance of the public GearBot made by AEntherprise#4693 (106354106196570112) and used in Discord Townhall, Discord Developers, etc. Public instance can be found at: https://gearbot.rocks | 520953716610957312 | Invite |
Discord DevBot#9425 | This bot is used in Discord Developers server, answers to frequently asked questions and has some public commands. | 545364944258990091 | Invite |
Developers Role Bot#0397 | This bot is used in Discord Developers server to give out roles. | 976907566334484590 | Invite |
DBug#8485 | This bot is |
Create the following folder structure in your root project directory: .ebextensions/supervisor
Place the supervisor.config under .ebextensions/
Place the setup.sh under .ebextensions/supervisor/
Run "chmod +x .ebextensions/supervisor/setup.sh"
Place the supervisord.conf under .ebextensions/supervisor/
#!/usr/bin/env python3 | |
# Based on https://github.com/EraYaN/jellyfin-stats | |
# pip3 install requests tqdm | |
URL = "" | |
API_KEY = "" | |
from re import sub | |
import requests | |
from tqdm import tqdm |