Skip to content

Instantly share code, notes, and snippets.

View hoitomt's full-sized avatar
🏠
Working from home

Michael Hoitomt hoitomt

🏠
Working from home
View GitHub Profile
@hoitomt
hoitomt / overview.md
Last active December 30, 2015 09:29
A ruby script runner combined with a phantomjs script that will pull attributes from a specified network request and compare the attributes. Specifically used for auto-tagging

Overview - Autotag Comparer

Status

Work In Progress

Usage

Put the ruby file (url_runner.rb) and the phantom file (resource_sniffer.js) into the same directory. Run the ruby file for fun and profit:

ruby url_runner.rb
@hoitomt
hoitomt / gist:5798684
Last active December 18, 2015 14:39 — forked from colinrymer/gist:5798469

Product management has come up with the idea of allowing website users to leave reviews and ratings for listings. This feedback will be entered similar to how leads are submitted, but the user must enter the following information:

  • name
  • email address
  • phone number
  • rating from 1 to 5
  • optional review

In addition to the above information, a CAPTCHA presenting three different apartment complexes (only one of which is correct) is used in conjunction with the user’s name and phone number to determine whether or not the user actually lived at the listing. After validating and verifying the information, the user gets redirected to a thank you page. After a review is successfully submitted, it will show up as the first entry in the reviews for the listing. Pre-existing “certified resident” reviews will be integrated along with reviews that are submitted through the site. On the search results page, users can sort on rating type or filter on review type and rating. A link on each listing will take the us

@hoitomt
hoitomt / gist:5798628
Last active December 18, 2015 14:39
Cucumber Tests for Meeting
Feature: Ratings and Reviews
As a User,
In order to rate a listing
I should be able to leave a review for a listing
Scenario: Successfully submit the review
Given a Ratings and Review form for a Listing
When the form is submitted with valid information
Then the browser should be redirected to the R&R Thank You page
And the ratings count should be incremented by 1 for the listing
@hoitomt
hoitomt / signup-form.js
Created April 26, 2012 21:09
tutorial - inline validation
$(function() {
hideAllHelpers();
$('#person_first_name').focus(function() {
$('#person_first_name_helper').show(200);
});
$('#person_first_name').blur(function() {
$('#person_first_name_helper').hide(200);
});