- The competition begins every Friday promptly at beer o'clock (once at least one person has opened a beer and it is 4:00pm or later).
- Anyone in the office at the time of the competition can participate.
- No practice shots can be taken once the competition begins.
- Each participant gets to take one shot after paying the $1 entry fee. All fees must be paid
prior to the first shot.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"rankerType": "naiveranker", | |
"retrieverType": "mongokeywordindexretriever", | |
"useTfIdf": true, | |
"concurrent": true, | |
"persistResults": false, | |
"targetCorpusTags": [ | |
"wordpress.com", | |
"wordpress.org" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Person(val name: String) { | |
def greeting = "I am Person %s".format(name) | |
override def equals(that: Any): Boolean = that match { | |
case p: Person if p.name == this.name => true | |
case _ => false | |
} | |
override def hashCode = 11 | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.salattest | |
import com.mongodb.casbah.Imports._ | |
import com.novus.salat._ | |
import com.novus.salat.global._ | |
import com.novus.salat.dao._ | |
case class Data ( | |
_id: String, |
NewerOlder