Skip to content

Instantly share code, notes, and snippets.

@jakemauer
jakemauer / zillow.js
Created September 13, 2023 14:47 — forked from bryant988/zillow.js
Zillow Image Downloader
/**
* NOTE: this specifically works if the house is for sale since it renders differently.
* This will download the highest resolution available per image.
*/
/**
* STEP 1: Make sure to *SCROLL* through all images so they appear on DOM.
* No need to click any images.
@jakemauer
jakemauer / gist:3c67e85a11294337362a6469ffd3a0c5
Last active November 18, 2021 00:36 — forked from jonathanmoore/gist:c0e0e503aa732bf1c05b7a7be4230c61
Linked options helper methods for Shopify. See this: http://docs.shopify.com/manual/configuration/store-customization/advanced-navigation/linked-product-options - Updated to work with sectioned themes (tested with District)
<script>
// (c) Copyright 2016 Caroline Schnapp. All Rights Reserved. Contact: mllegeorgesand@gmail.com
// See https://docs.shopify.com/themes/customization/navigation/link-product-options-in-menus
// Modified by Jonathan Moore (Style Hatch) https://github.com/jonathanmoore
/*
Updated to work with sectioned themes
- Added required methods from the deprecated options_selection.js
- Triggers an initial variant change
- Hides sold out variants with only one option
@jakemauer
jakemauer / layout.kbd.json
Last active June 7, 2019 06:34 — forked from domanico/layout.kbd.json
Untitled Keyboard Layout
[
[
"~\n`",
"!\n1",
"@\n2",
"#\n3",
"$\n4",
"%\n5",
"^\n6",
"&\n7",
// By default the script will have hubot listen for sentences starting with "feedback" and submit
// whatever follows to prodpad as a feedback item. You can adjust the listen word on line 28.
// If you want to scope the listener to a single channel (room),
// set the feedbackRoomId env var. It can be found by looking at
// the end of the URL when you visit a slack channel in the browser.
var prodpadKey = process.env.PRODPAD_API_KEY,
feedbackRoomId = process.env.FEEDBACK_ROOM_ID, // e.g. C0PFAF5QRS
errorMessage = process.env.PRODSLACK_ERROR_MESSAGE,

Keybase proof

I hereby claim:

  • I am jakemauer on github.
  • I am jakemauer (https://keybase.io/jakemauer) on keybase.
  • I have a public key ASD90f4VwOxSLfURvllTJQOdZpP_xaHQM-jQPMrzU7d62wo

To claim this, I am signing this object:

@jakemauer
jakemauer / application.controller.js
Last active January 9, 2016 23:09
Json Iterator
import Ember from 'ember';
export default Ember.Controller.extend({
appName:'Ember Twiddle',
test: ['a','b','c'],
testModel: {
"id": '66',
"segment":"activites"

ALLOVUE, INC.

PRIVACY POLICY

Last Updated: June 12, 2015

At ALLOVUE, Inc. and its related companies (" Company"), we understand that privacy is important to users of our Balance platform and affiliated websites. This privacy policy (" Policy") describes how the Company collects, uses and shares personal information of consumer users of its _Balance _platform made available to your organization at the organization-specific link provided to you (the " Site"). This Policy also applies to any of our other websites that post this Policy. This Policy does not apply to websites that post different statements.

WHAT WE COLLECT

@jakemauer
jakemauer / terms-fo-use.md
Last active August 29, 2015 14:25
Allovue Terms of Use

Website Terms of Use

Version 1.0

Last revised on: June 12, 2015

The website(s) located at the Balance platform setup for your organization (the " Site") is a copyrighted work belonging to ALLOVUE, INC. (" Company", " us", " our", and " we"). Certain features of the Site may be subject to additional guidelines, terms, or rules, which will be posted on the Site in connection with such features. All such additional terms, guidelines, and rules are incorporated by reference into these Terms.

Balance-ember

This README outlines the details of collaborating on this Ember application. A short introduction of this app could easily go here.

Prerequisites

You will need the following things properly installed on your computer.

@jakemauer
jakemauer / install-phantomjs.sh
Created April 15, 2015 20:25
Install phantomJS for Debian/Wheezy
mkdir -p /srv/var && \
wget -q --no-check-certificate -O /tmp/phantomjs-$PHANTOMJS_VERSION-linux-x86_64.tar.bz2 https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-$PHANTOMJS_VERSION-linux-x86_64.tar.bz2 && \
tar -xjf /tmp/phantomjs-$PHANTOMJS_VERSION-linux-x86_64.tar.bz2 -C /tmp && \
rm -f /tmp/phantomjs-$PHANTOMJS_VERSION-linux-x86_64.tar.bz2 && \
mv /tmp/phantomjs-$PHANTOMJS_VERSION-linux-x86_64/ /srv/var/phantomjs && \
ln -s /srv/var/phantomjs/bin/phantomjs /usr/bin/phantomjs