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
#$files = Get-ChildItem 'Z:\Camera Uploads' -Recurse | where {!$_.PsIsContainer} | |
$files = Get-ChildItem 'Z:\Camera Uploads' | where {!$_.PsIsContainer} | |
# List Files which will be moved | |
$files | |
# Target Filder where files should be moved to. The script will automatically create a folder for the year and month. | |
$targetPath = 'Z:\Camera Uploads\Albums' | |
foreach ($file in $files) |
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
text1 = ['Зачем вы меня разбудили...', | |
'Инициирую поиск *пидора дня*...', | |
'Итак... кто же сегодня *пидор дня*?', | |
'Кто сегодня счастливчик?', | |
'Опять в эти ваши игрульки играете? Ну ладно...', | |
'Осторожно! *Пидор дня* активирован!', | |
'Сейчас *поколдуем*...', | |
'Система взломана. Нанесён урон. Запущено планирование контрмер.', | |
'Эй, зачем разбудили...', | |
'*### RUNNING ''TYPIDOR.SH''...*', |
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
#!/usr/bin/env bash | |
SLEEP_DURATION=${SLEEP_DURATION:=1} # default to 1 second, use to speed up tests | |
progress-bar() { | |
local duration | |
local columns | |
local space_available | |
local fit_to_screen | |
local space_reserved |
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
Windows Registry Editor Version 5.00 | |
; Per-user Telegram Link mapping | |
[HKEY_CURRENT_USER\Software\Classes\tg] | |
@="URL:Telegram Link" | |
"URL Protocol"="D:\\Prog\\Telegram Desktop\\Telegram.exe" | |
[HKEY_CURRENT_USER\Software\Classes\tg\DefaultIcon] | |
@="D:\\Prog\\Telegram Desktop\\Telegram.exe,1" |