Skip to content

Instantly share code, notes, and snippets.

View proweb's full-sized avatar

Sergey Mochalov proweb

View GitHub Profile
@proweb
proweb / wp-update.sh
Created September 23, 2024 15:32
WordPress Update All with wp-cli
wp core update && wp plugin update --all && wp core language update
@proweb
proweb / yii2-video-js-widget.php
Last active March 18, 2025 13:44
Yii2 videojs config
<?php
echo VideoJsWidget::widget( [
'options' => [
'id' => 'main-video',
'class' => 'video-js',
'controls' => true,
'preload' => 'auto',
'width' => '800',
'height' => '400'
],
@proweb
proweb / main.less
Created March 25, 2025 09:26
UIkit3 media queries
/*
* Применить если ширина экрана меньше чем...
*/
/* Phone portrait and smaller */
@media (max-width: @breakpoint-xsmall-max) {
}
@proweb
proweb / list.txt
Created April 6, 2025 14:09
Sites list for Censor Traker
youtu.be
youtube.com
ggpht.com
ytimg.com
googlevideo.com
notion.so
chatgpt.com
coursera.org
trae.ai
groq.com
@proweb
proweb / blueprint.json
Created November 11, 2025 20:29
BlueprintWP1
{
"$schema": "https://playground.wordpress.net/blueprint-schema.json",
"landingPage": "/wp-admin/edit.php",
"features": {
"networking": true
},
"preferredVersions": {
"php": "latest",
"wp": "latest"
},