Skip to content

Instantly share code, notes, and snippets.

@claw0ry
claw0ry / MicrosoftGraphAuth.ps1
Last active December 18, 2019 12:29
Basic Microsoft Graph Authentication in Powershell
[CmdletBinding()]
param (
[Parameter(Mandatory=$True)]
[string]
$TenantName,
[Parameter(Mandatory=$True)]
[string]
$AppId,
@claw0ry
claw0ry / SlowView.ps1
Created September 1, 2016 11:37
Slow down Powershell output
Function SlowView {
process { $_; Start-Sleep -Milliseconds 500 }
}
@claw0ry
claw0ry / CLI.class.php
Created December 2, 2013 13:17
Simple IO class for php CLI.
/*
* Description: Simple IO class for php CLI
* Author: Mads Aune
*/
if(!defined("STDIN")) { define('STDIN', fopen('php://stdin', 'r')); }
class CLI {
public static function getLine($prompt = '') {
echo $prompt . "> ";