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 () { | |
$('#login').submit(function (e) { | |
e.preventDefault(); | |
var formData = { | |
'grant_type': 'password', | |
'username': $('#username').val(), | |
'password': $('#password').val(), | |
'client_id': 'unknown', | |
'client_secret': 'unknown' |
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
Import-Module SMLets | |
$IRClass = Get-SCSMClass -Name System.WorkItem.Incident | |
$ASClass = Get-SCSMRelationshipClass -Name System.WorkItemAssignedToUser$ | |
$AFClass = Get-SCSMRelationshipClass -Name System.WorkItemAffectedUser$ | |
$IR = Get-SCSMObject -Class $IRClass | Select -Property ` | |
@{Label="Queue";Expression={$_.TierQueue.displayname}}, ` | |
Id, ` | |
Title, ` |
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
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Net; | |
using System.Text; | |
using System.Xml; | |
namespace JahnDigital.Net.WebDAV | |
{ | |
/// <summary> |
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
/// <summary> | |
/// Parse a single line in CSV format. | |
/// | |
/// This method uses a character looping in lieu of String.Split for performance. You could | |
/// squeeze more performance out of it by using .NET 4 MemoryMappedFiles for large reads and | |
/// possibly pointer arithmatic instead of native C# looping. Using LinkedList may also help | |
/// for really large lines. | |
/// </summary> | |
/// <param name="line">The line to parse.</param> | |
/// <param name="delimiter">The delimiter that separates each value. Usually a comma.</param> |
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
#!/bin/bash | |
# | |
# TechnicLauncher | |
# Launches the TechnicLauncher.jar using Java 6. | |
# Get the current script directory. | |
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
# Set the Java version to 1.6 otherwise Minecraft will crash when launched with Technic | |
export JAVA_HOME=/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/ |
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
# Dot source the GitHub for Windows shell variables | |
. (Join-Path $env:USERPROFILE "AppData\Local\GitHub\shell.ps1") | |
# Load posh-git module from current directory | |
Import-Module (Join-Path $env:github_posh_git "posh-git.psm1") | |
# Set up a simple prompt, adding the git prompt parts inside git repos | |
function prompt { | |
$realLASTEXITCODE = $LASTEXITCODE |
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
Get-ADUser -Filter * -Properties MemberOf | select @{n="Username";e={$_.Name}},@{n="SID";e={$_.SID}},@{n="Security Groups";e={($_.MemberOf | Where-Object {($_ | get-adgroup).GroupCategory -eq "Security"} | Foreach-Object { ($_ | get-adgroup).Name}) -join "; "}},@{n="Distribution Groups";e={($_.MemberOf | Where-Object {($_ | get-adgroup).GroupCategory -eq "Distribution"} | Foreach-Object { ($_ | get-adgroup).Name}) -join "; "}} | Export-Csv -NoTypeInformation C:\Users\jjahn\Documents\users.csv |
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
#!/usr/bin/env perl | |
use strict; | |
use IO::Socket; | |
# | |
# Check to see if an element is in a given array. | |
# | |
# @param string $strNeedle The string to search for. | |
# @param array @arrHaystack The array to look in. Defaults to @ARGV. |
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
#!/usr/bin/env perl -w | |
use strict; | |
use Getopt::Long; | |
use Pod::Usage; | |
# Configuration | |
my %config = ( | |
'name' => undef, | |
'externalIp' => undef, |