This file contains hidden or 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
@echo off | |
pause | |
echo --- %date% - %time%: WinSCP Sync startup | |
echo option batch continue > "C:\var\scpsync-photo.tmp" | |
echo option confirm off >> "C:\var\scpsync-photo.tmp" | |
echo open michael@ds01 >> "C:\var\scpsync-photo.tmp" | |
echo synchronize local "C:\Users\Michael\Pictures" "/home/photo" -delete >> "C:\var\scpsync-photo.tmp" | |
echo keepuptodate "C:\Users\Michael\Pictures" "/home/photo" -delete >> "C:\var\scpsync-photo.tmp" | |
"C:\Program Files (x86)\WinSCP\WinSCP.com" /script="C:\var\scpsync-photo.tmp" | |
echo --- %date% - %time%: WinSCP shutdown |
This file contains hidden or 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 | |
# cloudflareddns.sh - dynamic dns updater module for Synology | |
# | |
# Author: | |
# Michael Wildman (http://mwild.me) | |
# | |
# Version: | |
# 0.2 | |
# |
This file contains hidden or 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
@echo off | |
title michael@pumbaa | |
echo _____ ______ ___ __ ___ ___ ________ _____ ______ ________ ________ | |
echo ^|^\ _ \ _ \^|^\ \ ^|^\ \^|^\ \^|^\ \ ^|^\ ___ \^|^\ _ \ _ \^|^\ __ \^|^\ ___ \ | |
echo \ \ \\\__\ \ \ \ \ \ \ \ \ \ \ \ \ \ \_^|^\ \ \ \\\__\ \ \ \ \^|^\ \ \ \\ \ \ | |
echo \ \ \\^|__^| ^\ \ \ \ __\ \ \ \ \ \ \ \ \ \ \\ \ \ \\^|__^| ^\ \ \ __ \ \ \\ \ \ | |
echo \ \ \ \ \ \ \ \^|^\__\_\ \ \ \ \ \____\ \ \_\\ \ \ \ \ \ \ \ \ \ \ \ \\ \ \ | |
echo \ \__\ \ \__\ \____________\ \__\ \_______\ \_______\ \__\ \ \__\ \__\ \__\ \__\\ \__\ | |
echo \^|__^| ^\^|__^|^\^|____________^|^\^|__^|^\^|_______^|^\^|_______^|^\^|__^| ^\^|__^|^\^|__^|^\^|__^|^\^|__^| ^\^|__^| | |
echo. |
This file contains hidden or 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
; mwil.ahk | |
; Userful functions for AHK using an Apple keyboard | |
; | |
; @author Michael Wildman [email protected] | |
; Launchy | |
;#Space::Send ^!{Space} | |
; (Win + Down) Minimize active window | |
#Down::WinMinimize, A |
This file contains hidden or 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
@echo off | |
echo ^>--- FFmpeg webm --- | |
echo. | |
set /P ffinput=">Input file: " | |
set /P ffbitrate=">Bitrate (e.g. 500k): " | |
set /P ffss=">Start time (hh:mm:ss): " | |
set /P ffduration=">Duration (ss): " | |
set /P fffps=">FPS: " | |
echo. | |
echo ^>ffmpeg -i %ffinput% -c:v libvpx -b:v %ffbitrate% -ss %ffss% -t %ffduration% -quality good -cpu-used 0 -r %fffps% -auto-alt-ref 1 -lag-in-frames 16 -vf scale=-1:720 -an -pass 1 -f webm null |
This file contains hidden or 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
@echo off | |
echo ___ __ ___ ________ ________ ________ ___ __ ________ ________ | |
echo ^|^\ \ ^|^\ \^|^\ \^|^\ ___ \^|^\ ___ \^|^\ __ \^|^\ \ ^|^\ \^|^\ ____\ ^|^\_____ \ | |
echo \ \ \ \ \ \ \ \ \ \\ \ \ \ \_^|^\ \ \ \^|^\ \ \ \ \ \ \ \ \___^|_ \^|___/ /^| | |
echo \ \ \ __\ \ \ \ \ \ \\ \ \ \ \ \\ \ \ \\\ \ \ \ __\ \ \ \_____ \ / / / | |
echo \ \ \^|^\__\_\ \ \ \ \ \\ \ \ \ \_\\ \ \ \\\ \ \ \^|^\__\_\ \^|____^|^\ \ / / / | |
echo \ \____________\ \__\ \__\\ \__\ \_______\ \_______\ \____________\____\_\ \/__/ / | |
echo \^|____________^|^\^|__^|^\^|__^| ^\^|__^|^\^|_______^|^\^|_______^|^\^|____________^|^\_________^|__^|/ | |
echo \^|_________^| | |
echo ________ ___ _________ ________ ___ ___ _______ ________ |
This file contains hidden or 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
/// | |
/// main.cpp | |
/// SDL 2 + OpenGL 2.1 | |
/// Template | |
/// | |
/// Created by Michael Wildman on 16/08/14. | |
/// Copyright (c) 2014 Michael Wildman. All rights reserved. | |
/// | |
#include <iostream> |
This file contains hidden or 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
function New-SqlDatabase ($server, $database, $path) { | |
$sw = Start-Timer | |
Write-Host "Creating database '$($database)'" | |
Write-Host "SQL Instance: $($server)" | |
if (!(Test-Path $path)) { New-Item -ItemType Directory -Path $path | Out-Null } | |
$query = "CREATE DATABASE [$($database)] | |
ON PRIMARY ( NAME = '$($database)', FILENAME = '$($path)\$($database).mdf' ) | |
LOG ON ( NAME = '$($database)_log', FILENAME = '$($path)\$($database)_log.ldf' );" |
This file contains hidden or 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
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: counter | |
spec: | |
containers: | |
- name: count | |
image: busybox | |
args: [/bin/sh, -c, 'i=0; while true; do echo "$i: $(date)"; i=$((i+1)); sleep 1; done'] | |
resources: {} |
This file contains hidden or 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
ls ` | |
| select -property @{Name='DateTimeOriginal'; Expression={(exiftool -datetimeoriginal $_).substring(34)}}, fullname ` | |
| where {$_.DateTimeOriginal -like '2017*'} ` | |
| %{& exiftool -datetimeoriginal="$_.DateTimeOriginal.Replace('2017','2018')" $_.fullname} | |
ls | select-object -property @{Name='DateTimeOriginal'; Expression={(exiftool -datetimeoriginal $_)}}, fullname | where {$_.DateTimeOriginal -like '*2017*'} | %{& exiftool -AllDates"+=1:0:0 0" $_.fullname} |
OlderNewer