Skip to content

Instantly share code, notes, and snippets.

View corytodd's full-sized avatar

Cory Todd corytodd

View GitHub Profile
@corytodd
corytodd / csharp_gdi_print.cs
Created June 13, 2018 02:59
GDI Printing Example for C#
#region Win32 GDI
private void btnTextDrawCenter_Click(object sender, RoutedEventArgs e)
{
var doc = new PrintDocument()
{
PrintController = new StandardPrintController(),
};
doc.OriginAtMargins = false;
doc.PrinterSettings.PrinterName = CurrentPrinter;
doc.PrintPage += (s, args) =>
@corytodd
corytodd / dism.sh
Created November 2, 2023 19:41
GDB disassmbly helper
#!/bin/bash -eu
TOOLCHAIN=${TOOLCHAIN-arm-none-eabi-}
OBJDUMP=${TOOLCHAIN}objdump
GDB=${TOOLCHAIN}gdb
function usage()
{
cat <<EOF
Usage: dism.sh -f|function -b|--binary --no-source
using System;
using System.IO.Ports;
class PortDataReceived
{
public static void Main()
{
SerialPort portA = new SerialPort("COM7");
@corytodd
corytodd / bitbucket_team_repos.py
Created August 9, 2015 17:56
Python Bitbucket helper
from rauth import OAuth1Service
import BaseHTTPServer
import threading,time
import webbrowser
import urlparse
class Config(object):
def __init__(self):
# Create a new consumer at https://bitbucket.org/account/user/{username}/api
self.consumer_key = <YOUR_KEY>
@corytodd
corytodd / fixed_minispy.inf
Created November 24, 2019 17:42
The latest Windows 10 build, 1903-1909, rejects the minifilter INI samples shown in the DDK Github. This modified version allows the driver to at least load and function. I don't know if it is 100% correct though.
;;;
;;; Minispy
;;;
;;;
;;; Copyright (c) 2001, Microsoft Corporation
;;;
[Version]
Signature = "$Windows NT$"
Class = "ActivityMonitor" ;This is determined by the work this filter driver does
@corytodd
corytodd / run_reconnection_test.cs
Created August 30, 2018 16:13
PTIRelianceLib Reconnection Test Loop
// Call out from some place else...
private static void RunReconnectionTest()
{
while (true)
{
using (var printer = new ReliancePrinter())
{
var start = DateTime.Now;
@corytodd
corytodd / ptireliancelib_ping_status.cs
Last active August 30, 2018 14:15
Shows how to use a timer to await a print completion before checking status
using PTIRelianceLib;
using System;
using System.Drawing;
using System.Drawing.Printing;
using System.Threading;
namespace RelianceCLI
{
internal class Program
{
@corytodd
corytodd / Thermal_Paper_Roll_Length_Calculator.ipynb
Created June 13, 2018 02:59
Thermal Paper Roll Length Calculator
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@corytodd
corytodd / sign_published.py
Last active June 13, 2018 02:58
ClickOnce SHA256 Signing outside of Visual Studio
from xml.dom import minidom
from subprocess import check_output
#Set this to the Visual Studio output directory, no trailing \
path = 'X:\absolute\path\tp\publish\directory'
#Typically found as MyApp.application in the publish directory
app = "MyApp"
#Path to Mage.exe. Notice the delimented \v
mage = '"C:\Program Files (x86)\Microsoft SDKs\Windows\\v7.0A\Bin\mage.exe"'
@corytodd
corytodd / TwoSidedImagePane.Java
Created June 13, 2018 02:58
JavaFX two-sided image widget
import javafx.animation.KeyFrame;
import javafx.animation.KeyValue;
import javafx.animation.Timeline;
import javafx.geometry.Point3D;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.StackPane;
import javafx.scene.transform.Rotate;
import javafx.util.Duration;