Skip to content

Instantly share code, notes, and snippets.

View alexrrouse's full-sized avatar

Alex Rouse alexrrouse

  • indigo-ag
  • Boston
View GitHub Profile
@alexrrouse
alexrrouse / FilesSnapshot.xml
Created November 15, 2016 16:08
miktex v2.9.6161.01 - Passed - Package Tests Results
<?xml version="1.0" encoding="utf-8"?>
<fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<files>
<file path="C:\ProgramData\chocolatey\lib\miktex\miktex.nupkg" checksum="BE87BB79EB10038132A39D3CF6FD5B08" />
<file path="C:\ProgramData\chocolatey\lib\miktex\miktex.nuspec" checksum="AEE125E43E714C34FEC5091A9EE1E799" />
<file path="C:\ProgramData\chocolatey\lib\miktex\tools\chocolateyInstall.ps1" checksum="D227999AF9882E80632A375938CA41A0" />
</files>
</fileSnapshot>
@alexrrouse
alexrrouse / FilesSnapshot.xml
Created November 15, 2016 16:08
miktex v2.9.6161.01 - Passed - Package Tests Results
<?xml version="1.0" encoding="utf-8"?>
<fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<files>
<file path="C:\ProgramData\chocolatey\lib\miktex\miktex.nupkg" checksum="BE87BB79EB10038132A39D3CF6FD5B08" />
<file path="C:\ProgramData\chocolatey\lib\miktex\miktex.nuspec" checksum="AEE125E43E714C34FEC5091A9EE1E799" />
<file path="C:\ProgramData\chocolatey\lib\miktex\tools\chocolateyInstall.ps1" checksum="D227999AF9882E80632A375938CA41A0" />
</files>
</fileSnapshot>
@alexrrouse
alexrrouse / 0_reuse_code.js
Created November 8, 2016 16:52
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@alexrrouse
alexrrouse / AVPlayerItemAccessLogEvent+Extensions.swift
Created August 12, 2016 18:12
Extension for AVPlayerItemAccessLogEvent Description Printing
extension AVPlayerItemAccessLogEvent {
func printDescription() {
var output = [String: AnyObject]()
output["numberOfMediaRequests"] = numberOfMediaRequests
output["playbackStartDate"] = playbackStartDate?.description ?? ""
output["URI"] = URI ?? ""
output["serverAddress"] = serverAddress ?? ""
output["numberOfServerAddressChanges"] = numberOfServerAddressChanges
@alexrrouse
alexrrouse / RZSafariKeychain.h
Last active August 29, 2015 14:08
RZSafariKeychain is a lightweight object useful in abstracting some of the lower level libraries required to use Safari Keychain. Although the functions used to create its methods have much more capability than is provided through this class, it is intended to hit the general use case.
//
// RZSafariKeychain.h
// Raizlabs
//
// Created by alex.rouse on 9/17/14.
// Copyright (c) 2014 Raizlabs. All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
@alexrrouse
alexrrouse / NSAttributedString+RZExtensions.h
Last active August 29, 2015 13:56
An Extension on NSAttributedString to allow for easier creation.
//
// NSAttributedString+RZExtensions.h
// Raizlabs
//
// Created by Alex Rouse on 12/13/13.
// Copyright 2014 Raizlabs and other contributors
// http://raizlabs.com/
//
// Permission is hereby granted, free of charge, to any person obtaining