Skip to content

Instantly share code, notes, and snippets.

@robbiethegeek
robbiethegeek / gist:63b40a626a1aa04846d1
Last active August 29, 2015 14:09
get count of you on waiting list at Meetup.com
var name = 'Robert Holmes'
var message = 'Woohoo, not on the waitlist';
$('#rsvp-list-waitlist li').each(function(index){
if ($('.member-name', this).text(),indexOf(name) !== 1){
message = "Hi there "+ name + " you are number: " + index +"on the waiting list";
});
alert(message);
@robbiethegeek
robbiethegeek / README.md
Last active August 29, 2015 14:26 — forked from jxson/README.md
README.md template

Synopsis

At the top of the file there should be a short introduction and/ or overview that explains what the project is. This description should match descriptions added for package managers (Gemspec, package.json, etc.)

Code Example

Show what the library does as concisely as possible, developers should be able to figure out how your project solves their problem by looking at the code example. Make sure the API you are showing off is obvious, and that your code is short and concise.

Motivation

Keybase proof

I hereby claim:

  • I am robbiethegeek on github.
  • I am robbiethegeek (https://keybase.io/robbiethegeek) on keybase.
  • I have a public key whose fingerprint is F5C0 9DE3 AF44 83CF 56D4 0CE9 3B81 1B8F 5C99 ED5A

To claim this, I am signing this object:

@robbiethegeek
robbiethegeek / New Feature Protocol.md
Created August 12, 2016 14:53
A protocol for how we add a new feature to the Vets.gov platform

New Feature Protocol

  • Check the decisions folder for a document for this feature
    • no decision document found
      • Check out other API teams codebase and see if the feature has been implemented
      • Feature is implemented
        • Yes
          • Does this implementation work for the new feature requirement?
          • Yes
  • Write up a decision document to describe the implementation and submit with the details including linking to the design document.