Create self-signed cert
New-SelfSignedCertificate -Subject "SomeWebApi"Get cert thumbprint
Get-ChildItem -path cert:\LocalMachine\My| [CmdletBinding()] | |
| param ( | |
| [Parameter()] | |
| [string] | |
| $user = "mika76" | |
| ) | |
| $URL = "https://api.github.com/users/$user/starred" | |
| $PAGE = 0 |
| <table> | |
| <thead> | |
| <tr> | |
| <th>Payment</th> | |
| <th>Issue Date</th> | |
| <th>Amount</th> | |
| <th>Period</th> | |
| </tr> | |
| </thead> | |
| <tbody> |
| $('body').click(function(event) { | |
| var el, rfs; | |
| if ($('body').hasClass('fullscreen')) { | |
| el = document; | |
| rfs = el.cancelFullScreen || el.webkitCancelFullScreen || el.mozCancelFullScreen; | |
| $('body').removeClass('fullscreen'); | |
| } else { | |
| el = document.documentElement; | |
| rfs = el.requestFullScreen || el.webkitRequestFullScreen || el.mozRequestFullScreen; |
| // Polyfill for rAF | |
| window.requestAnimFrame = (function() { | |
| return window.requestAnimationFrame || | |
| window.webkitRequestAnimationFrame || | |
| window.mozRequestAnimationFrame || | |
| function(callback) { | |
| window.setTimeout(callback, 1000 / 60); | |
| }; | |
| })(); |
| (function() { | |
| var throttle = function(type, name, obj) { | |
| obj = obj || window; | |
| var running = false; | |
| var func = function() { | |
| if (running) { return; } | |
| running = true; | |
| requestAnimationFrame(function() { | |
| obj.dispatchEvent(new CustomEvent(name)); | |
| running = false; |
Create self-signed cert
New-SelfSignedCertificate -Subject "SomeWebApi"Get cert thumbprint
Get-ChildItem -path cert:\LocalMachine\My| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using Serilog; | |
| using Serilog.Core; | |
| using Serilog.Events; | |
| using Serilog.Formatting.Json; |
| # Set environment variables for Visual Studio Command Prompt | |
| # Based on: http://stackoverflow.com/questions/2124753/how-i-can-use-powershell-with-the-visual-studio-2010-command-prompt | |
| $version=14 | |
| pushd "c:\Program Files (x86)\Microsoft Visual Studio ${version}.0\Common7\Tools" | |
| cmd /c "vsvars32.bat&set" | | |
| foreach { | |
| if ($_ -match "=") { | |
| $v = $_.split("=") | |
| set-item -force -path "ENV:\$($v[0])" -value "$($v[1])" | |
| } |
| ------------------------------------------------------------------------------- | |
| Base64 and related binary to 'printable' ASCII encoding. | |
| ------------------------------------------------------------------------------- | |
| Base64... | |
| Encodes a binary string into a printable form using a set of 64 characters | |
| such that 3 binary charcaters become 4 printable characters | |
| A-Z a-z 0-9 + / |
| --Created by Tanner Gower (triggdev) | |
| local colormatrix = {} | |
| local function getBackgroundColorMatrix(colors, pw, pt) | |
| local matrix = {} | |
| local t = 0 | |
| local d = 0 | |
| for i = 1, 3, 1 do |