Skip to content

Instantly share code, notes, and snippets.

View zastrowm's full-sized avatar

Mackenzie Zastrow zastrowm

View GitHub Profile
@zastrowm
zastrowm / veracross-downloader.user.js
Last active October 5, 2025 13:47
ViolentMonkey user script to download images from veracross
// ==UserScript==
// @name veracross-downloader
// @description Adds buttons to download images from veracross; also enables the arrow keys in the gallery view
// @namespace programdotrun.com
// @match https://classes.veracross.com/aseds/course/*
// @match https://portals.veracross.com/aseds/parent/detail/gallery/*
// @downloadURL https://gist.githubusercontent.com/zastrowm/a66ce980f16eca44d8985265856dddee/raw/veracross-downloader.user.js
// @updateURL https://gist.githubusercontent.com/zastrowm/a66ce980f16eca44d8985265856dddee/raw/veracross-downloader.user.js
// @grant none
// @version 1.2
@zastrowm
zastrowm / SystemErrorCode.cs
Created January 3, 2014 22:17
Win32 SystemErrorCode in .NET enum form
namespace WindowsNative
{
public enum SystemErrorCode
{
///<summary>The operation completed successfully.</summary>
ERROR_ACCESS_DENIED = 5,
///<summary>Incorrect function.</summary>
ERROR_ADAP_HDW_ERR = 57,