Skip to content

Instantly share code, notes, and snippets.

@vertex
vertex / index.js
Last active May 14, 2024 00:06
Safeway Clip Coupon
//bookmarklet_title: Safeway Clip Coupon
//bookmarklet_about: Go to https://www.safeway.com/foru/coupons-deals.html , clip, and enjoy
console.log('test');
@vertex
vertex / fresh20.sh
Last active December 16, 2022 17:55
Automatically downloads fresh20 meal plans and organizes them into folders organized by type, then date
#!/bin/bash
# Automatically downloads fresh20 meal plans and organizes them into folders organized by type, then date
# Requires environment variables:
# FRESH_USER=${THEFRESH20.COM USERNAME}
# FRESH_PASSWORD=${THEFRESH20.COM PASSWORD}
# From there, pass arguements to the command
# $1 is the type of meal plan
# $2 is the start date in YYYY/MM/DD format, must be a FRIDAY -- default is the friday two weeks ago
# $3 is the end day in YYYY/MM/DD format -- default is last friday
{
"basics": {
"name": "Bryon Keck",
"label": "software engineer — visualizer of data — experience — photographer",
"picture": "",
"email": "[email protected]",
"phone": "(951) 313-9760",
"website": "https://bryonkeck.com",
"summary": "Bryon is a passionate, forward thinking <em>software engineer</em> with a keen eye for user experience, service <strong>observability</strong>, and lots of modern technology using traditional software engineering processes.",
using System.Collections.Generic;
using UnityEngine;
using BestHTTP;
using System;
using Newtonsoft.Json;
public class Point
{
public int x;
public int y;

Keybase proof

I hereby claim:

  • I am vertex on github.
  • I am vertex (https://keybase.io/vertex) on keybase.
  • I have a public key ASAg-4KyuySe53dnAP9vIXmOW0as7YC4PKITUbnsWSWy4wo

To claim this, I am signing this object:

@vertex
vertex / schedule.js
Last active July 5, 2018 17:23
PayPal Credit 6 months interest schedule
// NOTE: This is totally unofficial
// See what your "no interest" payment schedule appears to be. This is to be run as a script / from your console.
// Use from this page: https://www.paypal.com/myaccount/credit/
var dates = {};
var n = Array.prototype.slice.call(document.getElementsByClassName("paymentPlans")).map(function(n){
var amount = parseFloat(n.getElementsByClassName("sigAmount").item(0).innerText.substr(1).replace(",", ""));
var d = n.getElementsByClassName("creditPlanType").item(0).children[1].innerText.substr(-12);
if(d === " in 6 months") {
d = new Date();
@vertex
vertex / .gitignore
Created May 18, 2012 16:32 — forked from redoPop/.gitignore
Template .gitignore file for WordPress projects
# This is a template .gitignore file for git-managed WordPress projects.
#
# Fact: you don't want WordPress core files, or your server-specific
# configuration files etc., in your project's repository. You just don't.
#
# Solution: stick this file up your repository root (which it assumes is
# also the WordPress root directory) and add exceptions for any plugins,
# themes, and other directories that should be under version control.
#
# See the comments below for more info on how to add exceptions for your