Skip to content

Instantly share code, notes, and snippets.

View sergeykuzmich's full-sized avatar
🎱
To be or not to be...

Sergey Kuzmich sergeykuzmich

🎱
To be or not to be...
View GitHub Profile
@sergeykuzmich
sergeykuzmich / cfg.txt
Created August 30, 2025 13:38
GEPRC Vapor-D5 HD O4 Pro PNP with GPS - BF Configuration BACKUP
defaults nosave
# version
# Betaflight / STM32F7X2 (S7X2) 4.5.1 May 27 2025 / 00:11:08 (77d01ba3b) MSP API: 1.46
# config rev: 5947a7a
# start the command batch
batch start
@sergeykuzmich
sergeykuzmich / cfg.txt
Last active August 30, 2025 13:39
BetaFPV Meteor65 Pro O4 - BF Configuration BACKUP
defaults nosave
# version
# Betaflight / STM32G47X (SG47) 4.5.1 Dec 6 2024 / 06:48:51 (77d01ba3b) MSP API: 1.46
# config rev: 283a21f
# start the command batch
batch start
@sergeykuzmich
sergeykuzmich / query.sql
Last active November 28, 2022 14:40
Cursored Query Previous Page
SELECT uid, title, content, datetime
FROM news
WHERE (datetime, uid) > ((SELECT datetime FROM news WHERE uid = :uid), :uid)
ORDER BY (datetime, uid) ASC
LIMIT :per_page;
@sergeykuzmich
sergeykuzmich / wp-config.php
Last active November 28, 2022 13:59
WordPress Configuration
<?php
define( 'DISALLOW_FILE_MODS', true );
@sergeykuzmich
sergeykuzmich / wp-config.php
Last active November 28, 2022 13:59
WordPress Configuration
<?php
define( 'DISALLOW_FILE_EDIT', true );
@sergeykuzmich
sergeykuzmich / wp-config.php
Last active November 28, 2022 13:59
WordPress Configuration
<?php
define( 'WP_HTTP_BLOCK_EXTERNAL', true );
define( 'WP_ACCESSIBLE_HOSTS', 'api.wordpress.org, *.github.com, www.trusteddomain.com' );
@sergeykuzmich
sergeykuzmich / wp-config.php
Last active November 28, 2022 13:59
WordPress Configuration
<?php
define( 'AUTOMATIC_UPDATER_DISABLED', false );
define( 'WP_AUTO_UPDATE_CORE', 'minor' );
@sergeykuzmich
sergeykuzmich / wp-config.php
Last active November 28, 2022 13:59
WordPress Configuration
<?php
define( 'DISALLOW_UNFILTERED_HTML', true );
define( 'ALLOW_UNFILTERED_UPLOADS', false );
@sergeykuzmich
sergeykuzmich / wp-config.php
Last active November 28, 2022 13:59
WordPress Configuration
<?php
define ( 'WP_ALLOW_REPAIR', false );
@sergeykuzmich
sergeykuzmich / wp-config.php
Last active November 28, 2022 13:59
WordPress Configuration
<?php
define('WP_SITEURL', 'https://www.mydomain.com');
define('WP_HOME', 'https://www.mydomain.com');
define( 'FORCE_SSL_ADMIN', true );
define( 'FORCE_SSL_LOGIN',true );