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:
// ==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== |
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: |
import SwiftUI | |
import Observation | |
class User { | |
var id: Int { | |
get { | |
access(keyPath: \.id) | |
return _id | |
} |
// | |
// UnfairLock.swift | |
// Created by Epps, Landon on 6/28/22. | |
// | |
import Foundation | |
final class UnfairLock: NSLocking { | |
enum Ownership: Equatable, Hashable { |
I hereby claim:
To claim this, I am signing this object: