Skip to content

Instantly share code, notes, and snippets.

@dpvpro
dpvpro / backup_jenkins.sh
Last active August 3, 2021 15:32
Backup Jenkins on Linux
#!/bin/bash
#set -x
COUNT_OLD_TAR=10
# example name backup_20170404_1553.tar.gz
TIME=$(date +%Y%m%d_%H%M%S)
FILENAME=backup_$TIME.tar.gz
SRCDIR=/var/lib/jenkins
#DESTDIR=~/jenkins_backup
#cd $DESTDIR
@dpvpro
dpvpro / perl: warning: setting locale failed.
Last active September 27, 2018 15:50
perl: warning: setting locale failed.
locale-gen en_US.UTF-8
export LC_ALL="en_US.UTF-8"
sudo dpkg-reconfigure locales
sudo update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8
@dpvpro
dpvpro / crontab_exemple_with_variable.sh
Last active January 9, 2019 12:18
crontab_exemple_with_variable
TIME="date +%Y%m%d_%H%M"
2 6 * * * rsync -av --delete ~/Code /home/backup/ > /home/backup/backup_log_$($TIME) 2>&1
9 9 * * 1-6 cd /home/dp/Code/mashtab/veil-repo/devops/veil-vagrantfile; vagrant box update
@dpvpro
dpvpro / lebedev_download.py
Last active May 26, 2021 11:29
Скачать все mp3 с сайта https://www.artlebedev.ru/dj/
This file has been truncated, but you can view the full file.
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# В консоли браузера находим переменную "alsdj"
# Далее берем инфу из этой переменной:
# alsdj.PersonService.persons
# copy(alsdj.PersonService.persons)
#
dj_data = [
@dpvpro
dpvpro / i3_config
Created July 1, 2021 14:44
~/.config/i3/config
# This file has been auto-generated by i3-config-wizard(1).
# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout some time, delete
# this file and re-run i3-config-wizard(1).
#
# i3 config file (v4)
#
# Please see https://i3wm.org/docs/userguide.html for a complete reference!
@dpvpro
dpvpro / aws_route53_delete.sh
Last active September 7, 2021 21:23 — forked from earljon/aws_route53_delete.sh
Delete a Route 53 Record Set in AWS CLI
#!/bin/sh
# NOTE:
# Make sure that the value of Name, Type, TTL are the same with your DNS Record Set
HOSTED_ZONE_ID="ZCOKAAJ9UMS0T"
DNS_NAME="\\\\052.dev1.danwerspb.devops.rebrain.srwx.net"
RECORD_TYPE="A"
TTL=300
RESOURCE_VALUE="92.53.91.116"