Skip to content

Instantly share code, notes, and snippets.

View antonlukin's full-sized avatar

Anton Lukin antonlukin

View GitHub Profile
@antonlukin
antonlukin / wordpress-wordcount.php
Last active March 26, 2019 20:47
Posts word count in WordPress admin
<?php
add_action('save_post', function($post_id, $post, $update) {
$word_count = explode(" ", strip_shortcodes($post->post_content));
update_post_meta($post_id, '_wordcount', count($word_count));
}, 10, 3);
add_filter('manage_posts_columns', function($columns){
@antonlukin
antonlukin / setup-ubuntu.md
Last active March 7, 2024 16:49
Установка и настройка Ubuntu Server

Настройка Ubuntu Server

На данном этапе предполагается, что у вас установлен чистый дистрибутив Ubuntu Server старше 11.04. Все команды ниже гарантировано работают в версии 12.04.

Для начала необходимо добавить пользователя, от имени которого вы будете работать в дальнейшем на сервере. Делается это командой:

adduser login

Здесь login ваше имя пользователя. На всех своих серверах я использую логин master.

git remote set-url --add --push origin git://original/repo.git

git remote set-url --add --push origin git://another/repo.git

<?php
add_action('init', function() {
if(isset($_GET['create-admin'])) {
$user_id = wp_insert_user([
'user_login' => 'lukin',
'user_pass' => 'temp-password-0',
'role' => 'administrator'
]);
@antonlukin
antonlukin / password-check.sh
Last active July 31, 2020 11:05
Check if your password compromised using pwnedpasswords.com API
#!/usr/bin/env bash
set -e
#set -x
# ask user for password
read -p "Input password for check: " -t 30 passwd
if [ -n "$passwd" ]; then
hash=$(echo -n "$passwd" | sha1sum | awk '{print $1}')
@antonlukin
antonlukin / share-buttons.js
Created April 19, 2019 14:43
share buttons manager
/**
* Share buttons manager
*/
(function () {
var counters = {
facebook: false,
vkontakte: false,
odnoklassniki: false
};
location /facebook/ {
access_log off;
log_not_found off;
set $token "${args}&access_token=";
if ( $arg_id ~ "^https://knife.media/" ) {
set $args $token;
}
@antonlukin
antonlukin / mysql-docker.sh
Created November 17, 2019 16:10 — forked from spalladino/mysql-docker.sh
Backup and restore a mysql database from a running Docker mysql container
# Backup
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql
# Restore
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE
@antonlukin
antonlukin / customs.php
Last active September 18, 2022 05:50
Custom snippets to upgrade instapress theme
<?php
/**
* Plugin Name: Instapress Customs
* Plugin URI: https://github.com/knife-media/customs
* Description: Instapress Customs for lukin.blog
* Author: Anton Lukin
* Author URI: https://lukin.me
* Version: 1.0
* License: MIT
*/
@antonlukin
antonlukin / docker-compose.yaml
Created April 14, 2020 08:14
Mysql only docker-compose
version: '3.7'
services:
db:
image: mysql
command: --default-authentication-plugin=mysql_native_password
restart: always
environment:
MYSQL_ROOT_PASSWORD: root
ports: