Create self-signed cert
New-SelfSignedCertificate -Subject "SomeWebApi"
Get cert thumbprint
Get-ChildItem -path cert:\LocalMachine\My
------------------------------------------------------------------------------- | |
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 + / |
# 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])" | |
} |
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; |
Create self-signed cert
New-SelfSignedCertificate -Subject "SomeWebApi"
Get cert thumbprint
Get-ChildItem -path cert:\LocalMachine\My
(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; |
// Polyfill for rAF | |
window.requestAnimFrame = (function() { | |
return window.requestAnimationFrame || | |
window.webkitRequestAnimationFrame || | |
window.mozRequestAnimationFrame || | |
function(callback) { | |
window.setTimeout(callback, 1000 / 60); | |
}; | |
})(); |
$('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; |
<table> | |
<thead> | |
<tr> | |
<th>Payment</th> | |
<th>Issue Date</th> | |
<th>Amount</th> | |
<th>Period</th> | |
</tr> | |
</thead> | |
<tbody> |
[CmdletBinding()] | |
param ( | |
[Parameter()] | |
[string] | |
$user = "mika76" | |
) | |
$URL = "https://api.github.com/users/$user/starred" | |
$PAGE = 0 |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Collections; | |
using System.Collections.Specialized; | |
namespace AUtility | |
{ | |
// From http://stackoverflow.com/questions/1770297/how-does-mef-determine-the-order-of-its-imports |