I hereby claim:
- I am landonepps on github.
- I am landonepps (https://keybase.io/landonepps) on keybase.
- I have a public key ASAMlU25GQP7JVqFzft30ri4v2E710u5_slIFeFBXvTiAwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| // | |
| // UnfairLock.swift | |
| // Created by Epps, Landon on 6/28/22. | |
| // | |
| import Foundation | |
| final class UnfairLock: NSLocking { | |
| enum Ownership: Equatable, Hashable { |
| import SwiftUI | |
| import Observation | |
| class User { | |
| var id: Int { | |
| get { | |
| access(keyPath: \.id) | |
| return _id | |
| } |
| import csv | |
| doc = Document.getCurrentDocument() | |
| path = Document.askFile("Symbols CSV file", None, False) | |
| if path is not None: | |
| with open(path) as csvfile: | |
| csvreader = csv.reader(csvfile, delimiter=",", quotechar="\"") | |
| for i, parts in enumerate(csvreader): | |
| if len(parts) > 2: |
| // ==UserScript== | |
| // @name Amazon Subscribe & Save Canceller | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description Add a button to cancel all Amazon Subscribe & Save subscriptions | |
| // @author - | |
| // @match https://www.amazon.com/auto-deliveries/* | |
| // @grant none | |
| // ==/UserScript== |
This document contains analysis comments for key functions within the AttributeGraph framework, based on a macOS binary with image base 0x1B16F2000 as reported by IDA Pro. Offsets are relative to this base.
Mangled Name: __ZN2AG16LayoutDescriptor7CompareclEPKhS3_S3_mmj
Relative Offset: 0x1C2C8
Overall Purpose: Compares two data buffers based on a layout command stream. This is the core comparison engine.