This file contains 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
cask_args appdir: "/Applications" | |
tap "homebrew/cask-fonts" | |
brew "mas" | |
mas "1Blocker", id: 1107421413 | |
mas "Day One", id: 1055511498 | |
mas "Deliveries", id: 924726344 | |
mas "Due", id: 524373870 | |
mas "Fantastical", id: 435003921 |
This file contains 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
Copied from http://arstechnica.com/civis/viewtopic.php?f=19&t=1197911 (via http://www.libertypages.com/clarktech/?p=349) | |
----------------------------------------------- | |
MarkLT1 | |
Ars Scholae Palatinae | |
et Subscriptor | |
Tribus: Where the women are strong, the men are good looking, and all the children are above average. | |
Registered: Nov 11, 2002 | |
Posts: 924 | |
----------------------------------------------- |
This file contains 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
/** Reads queue of new users to index */ | |
class NewUserQueue extends Actor with ActorLogging { ... } | |
// Define our messages for the NewUserQueue | |
object NewUserQueue { | |
case class Listen(ref: ActorRef) | |
case class StopListen(ref: ActorRef) | |
case class NewUsers(users: Seq[User]) | |
} |