This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/node | |
/*jshint esversion: 9*/ | |
/** | |
* Time-shift video subtitles in a .srt file. | |
* | |
* Usage: | |
* shiftsrt.js seconds input_file|- [output_file|-] | |
* | |
* Examples: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Download a file listed in a list file | |
# @author Dumitru Uzun (DUzun.Me) | |
# @version 1.0.1 | |
_me_="$(basename "$0")" | |
_start_time_=$(date +%s) | |
referer= | |
_cat_= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export REDISCLI_AUTH=my-supper-strong-password-4-redis-server | |
TTL=$(( 24 * 3600 )) | |
# cd "/var/sess" | |
for i in sess_*; do | |
ex=$(( $(date +%s) - $(stat -c %Y "$i") + $TTL )) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
fix_lib_links() { | |
local i j dir write | |
[ "$2" = "-w" ] && write="$2" | |
dir=${1:-$PWD} | |
( | |
cd "$dir" && \ | |
for i in *.so.*; do | |
if [ -f "$i" ]; then |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Keep your eyes safe on cron | |
# | |
# @author Dumitru Uzun (DUzun.Me) | |
# @web https://gist.github.com/duzun/99bd0d1cba6c8ad1b5bf321c2689a257 | |
# | |
_user=${USER:-$(whoami)} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Note: | |
// Whether $list contains a NULL value for $needle at some level, or there is no $needle at all, | |
// in both cases this function returns NULL. | |
// If you want to find non-NULL $needle only, replace `array_key_exists` with `isset` | |
function findByKey($list, $needle) { | |
$stack = [$list]; | |
while( !empty($stack) ) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM httpd:2.4-alpine | |
# SSHD ################################# | |
RUN apk update && \ | |
apk add openssh augeas && \ | |
mkdir -p ~root/.ssh /etc/authorized_keys && chmod 700 ~root/.ssh/ && \ | |
augtool 'set /files/etc/ssh/sshd_config/AuthorizedKeysFile ".ssh/authorized_keys /etc/authorized_keys/%u"' && \ | |
augtool 'set /files/etc/ssh/sshd_config/PermitRootLogin yes' && \ | |
augtool 'set /files/etc/ssh/sshd_config/PasswordAuthentication yes' && \ | |
augtool 'set /files/etc/ssh/sshd_config/Port 22' && \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# A script to enable TCP BBR on a Linux system. | |
# | |
# @author Dumitru Uzun (DUzun.Me) | |
# @version 1.0.0 | |
# @distro ArchLinux/Manjaro | |
# | |
old_cc=`sysctl net.ipv4.tcp_congestion_control | awk -F= '{print $2}' | sed -e s/\^\\s//` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
############################################# | |
# Process Memory consumption # | |
# # | |
# Usage: psmem <process_name> [<user_grep>] # | |
# psmem nginx # | |
# psmem php5-fpm www-data # | |
# # | |
# Author: Dumitru Uzun (DUzun.me) # |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Вы ранее привлекались за хранение данных в глобальных переменных? | |
Вы когда-нибудь делали .Net за деньги? | |
Сформулируйте зависимость времени исправления критического бага от seniority присутствующего менеджера | |
В своём резюме вы указали знание php. вам не стыдно? | |
Перед вами кисть, холст и мольберт. напишите компилятор |