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
// Antivirus Performance Test | |
// | |
// This query generates a tiny (2KB) DLL and times how long it takes to load. | |
// | |
// Normal results on a healthy computer: | |
// - 1 millisecond or less with antivirus software disabled | |
// - 30 milliseconds or less with antivirus software enabled | |
using System.Diagnostics; |
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
/* | |
* Available context bindings: | |
* COLUMNS List<DataColumn> | |
* ROWS Iterable<DataRow> | |
* OUT { append() } | |
* FORMATTER { format(row, col); formatValue(Object, col); getTypeName(Object, col); isStringLiteral(Object, col); } | |
* TRANSPOSED Boolean | |
* plus ALL_COLUMNS, TABLE, DIALECT | |
* | |
* where: |
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 debian:latest as builder | |
WORKDIR /app | |
RUN apt-get update \ | |
&& apt-get --no-install-recommends --yes install \ | |
ca-certificates curl wget build-essential tar pkg-config \ | |
alsa-utils lame libmp3lame-dev libpulse-dev libjack-jackd2-dev \ | |
libaudio-dev libasound2-dev libshout3-dev libmp3lame-dev |
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
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} |
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
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 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 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 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 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 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 wildsimulation@gmail.com | |
; Launchy | |
;#Space::Send ^!{Space} | |
; (Win + Down) Minimize active window | |
#Down::WinMinimize, A |
NewerOlder