Skip to content

Instantly share code, notes, and snippets.

View whitemike889's full-sized avatar

Michael T Hickman whitemike889

  • Truth Is Will
  • Owensboro,KY
View GitHub Profile
@whitemike889
whitemike889 / index.html
Created June 7, 2025 10:28 — forked from MircoBabin/index.html
Convert IIS web.config to Apache .htaccess
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>IIS web.config to Apache .htaccess rule translator</title>
<style>
#xmldoc {
width: 100%;
height: 200px;
diff --git a/Documentation/scheduler/sched-BFS.txt b/Documentation/scheduler/sched-BFS.txt
new file mode 100644
index 0000000..c10d956
--- /dev/null
+++ b/Documentation/scheduler/sched-BFS.txt
@@ -0,0 +1,347 @@
+BFS - The Brain Fuck Scheduler by Con Kolivas.
+
+Goals.
+
@whitemike889
whitemike889 / Windows Defender Exclusions VS 2017.ps1
Created October 7, 2024 23:51 — forked from dknoodle/Windows Defender Exclusions VS 2017.ps1
Adds Windows Defender exclusions for Visual Studio 2017
$userPath = $env:USERPROFILE
$pathExclusions = New-Object System.Collections.ArrayList
$processExclusions = New-Object System.Collections.ArrayList
$pathExclusions.Add('C:\Windows\Microsoft.NET') > $null
$pathExclusions.Add('C:\Windows\assembly') > $null
$pathExclusions.Add($userPath + '\AppData\Local\Microsoft\VisualStudio') > $null
$pathExclusions.Add('C:\ProgramData\Microsoft\VisualStudio\Packages') > $null
$pathExclusions.Add('C:\Program Files (x86)\MSBuild') > $null
$pathExclusions.Add('C:\Program Files (x86)\Microsoft Visual Studio 14.0') > $null
@whitemike889
whitemike889 / AdbCommands
Created December 4, 2021 03:40 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@whitemike889
whitemike889 / .bashrc
Created December 1, 2021 09:12 — forked from kachina/.bashrc
EC-CUBE on AWS (インストール編)
8 # User specific aliases and functions
9
10 export JAVA_HOME=/usr/lib/jvm/jre
11 export AWS_HOME=/opt/aws
12 export AWS_RDS_HOME=$AWS_HOME/apitools/rds
13 export AWS_CREDENTIAL_FILE=$AWS_HOME/credential-file-path
14 export EC2_REGION=ap-northeast-1
15 export PATH=$PATH:$HOME/bin:$JAVA_HOME/bin:$AWS_RDS_HOME/bin
@whitemike889
whitemike889 / ServiceSinkhole.java
Created June 20, 2021 23:32 — forked from kiruto/ServiceSinkhole.java
netguard VpnService
package eu.faircode.netguard;
/*
This file is part of NetGuard.
NetGuard is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
NetGuard is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
@whitemike889
whitemike889 / Dockerfile
Created June 9, 2021 22:50 — forked from andyshinn/Dockerfile
BusyBox cron container example
FROM gliderlabs/alpine:3.3
COPY myawesomescript /bin/myawesomescript
COPY root /var/spool/cron/crontabs/root
RUN chmod +x /bin/myawesomescript
CMD crond -l 2 -f
@whitemike889
whitemike889 / noncopyable.C
Created April 26, 2021 15:38 — forked from jwpeterson/noncopyable.C
Demonstrate usage of noncopyable class in std containers
// http://stackoverflow.com/questions/17603666/copy-move-requirements-for-the-key-value-types-in-a-stdmap
#include <map>
#include <vector>
struct foo
{
int i;
foo(int j) : i(j) {}
const int motor_AL = 4;
const int motor_AR = 5;
void setup() {
pinMode(motor_AL, OUTPUT);
pinMode(motor_AR, OUTPUT);
}
void loop() {
// Left