Skip to content

Instantly share code, notes, and snippets.

View Nocsaron's full-sized avatar

N R Callahan Nocsaron

  • Raytheon Technologies
View GitHub Profile
@Nocsaron
Nocsaron / Card.java
Created January 30, 2014 03:09
Card.java
package poker;
public class Card implements Comparable<Card> {
private Rank card_rank;
private Suit card_suit;
public Card(Rank card_rank, Suit card_suit) {
this.card_rank = card_rank;
this.card_suit = card_suit;
}
CmdUtils.CreateCommand({
name: "Goto",
takes: {"search_string": noun_arb_text},
description: "Goes to a webpage",
author: { name: "Nicholas Callahan", email: "scubcallahan@aim.com"},
homepage: "http://www.myspace.com/scubacallahan/",
license: "Public domain",
CmdUtils.CreateCommand({
name: "multi-search",
takes: {"search_string": noun_arb_text},
description: "Open a new page with the URL you requested.",
author: { name: "Nicholas Callahan", email: "scubacallahan@aim.com"},
homepage: "http://www.myspace.com/scubacallahan",
license: "Public domain",