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:
//bookmarklet_title: Safeway Clip Coupon | |
//bookmarklet_about: Go to https://www.safeway.com/foru/coupons-deals.html , clip, and enjoy | |
console.log('test'); |
#!/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; |
I hereby claim:
To claim this, I am signing this object:
// 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(); |
# 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 |