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
".playerDeckCard" #> cards.map ( card => | |
".card [data-keyname]" #> card.keyname.is & | |
".card [data-cardname]" #> card.name.is & | |
... | |
) |
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
package lib | |
import sys.process.{Process, stringToProcess} | |
class Shell { | |
var elems = Vector[String]() | |
var cwd = "/tmp" | |
def >(str: String) = elems :+= str | |
def run() = elems.map( cmd => { |
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
package myproject | |
package snippet | |
import net.liftweb._ | |
import common.Logger | |
import http._ | |
import js._ | |
import JsCmds._ | |
import JE._ |
NewerOlder