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
#Include Gdip.ahk | |
#Include CircleProgressClass.ahk | |
#SingleInstance, Force | |
SysGet, mon, MonitorWorkArea | |
thickness := 15 | |
spacing := thickness*2 | |
hrDiam := thickness+spacing | |
minDiam := hrDiam+spacing |
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
namespace PROJECTNAME.Migrations | |
{ | |
using System; | |
using System.Data.Entity; | |
using System.Data.Entity.Migrations; | |
using System.Linq; | |
public sealed class Configuration : DbMigrationsConfiguration<PROJECTNAME.CLASSNAME> | |
{ | |
public Configuration() |
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
devices={"Lefty","Logi","Rolly"} | |
lmc_assign_keyboard('Lefty'); | |
lmc_assign_keyboard('Logi'); | |
lmc_assign_keyboard('Rolly'); | |
-- Do not edit below this line | |
-- -------------------------------------------------- | |
clear(); | |
require "functions" |
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 sendCommand(direction) | |
print("in sendcommand") | |
if lastKeys~="" then | |
print("hit it: " .. lastKeys) | |
file = io.open("c:\\dev\\logs\\lua.txt", "w") | |
file:write(lastKeys) | |
file:close() | |
lastKey="" | |
lastKeys="" | |
ignoreUp=true |
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
Clear-Host | |
# Point to the makemkvcon.exe (https://www.makemkv.com/download/) | |
Set-Alias makemkv "C:\Program Files (x86)\MakeMKV\makemkvcon.exe" | |
# Point to the HandBrakeCLI.exe (https://handbrake.fr/downloads2.php) | |
Set-Alias handbrake "C:\Program Files\Handbrake\HandBrakeCLI.exe" | |
# Define where your Plex library is (final resting place) | |
$plex = "\\server\plex\movies" |
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
class Notification { | |
;Things to configure: | |
; Font,color,size title | |
; Font,color,size body | |
; duration | |
; pop in location/behavior | |
Title := "" | |
TitleSize := 30 | |
TitleColor := "7FA2CF" |
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
// ==UserScript== | |
// @name Outlook Space Liberation | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Gains that space back by annoying ads and upgrade prompts. | |
// @author fischgeek | |
// @match https://outlook.live.com/mail/* | |
// @grant none | |
// @require http://code.jquery.com/jquery-1.12.4.min.js | |
// ==/UserScript== |
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
open System | |
[<EntryPoint>] | |
let main argv = | |
let rec DoFib val1 val2 i = | |
if i > 0 then | |
let calc = val1 + val2 | |
if i = 1 then | |
Console.Write(calc.ToString()) |
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
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var iter = rl("Iterations:"); | |
var iterInt = Convert.ToInt32(iter); | |
long val1 = 0; | |
long val2 = 1; | |
for (int i = 1; i < iterInt; i++) { | |
long calc = val1 + val2; |
OlderNewer