2
0
mirror of https://github.com/narkoz/hacker-scripts synced 2025-08-22 18:37:10 +00:00

Implement Scala version of the fucking-coffee script using Ammonite shell

This commit is contained in:
Amir Karimi 2015-12-07 13:31:01 +03:30
parent c300bc5996
commit 7d11758390

View File

@ -0,0 +1,43 @@
/*******************************************
*
* Get and run Ammonite (http://lihaoyi.github.io/Ammonite/#Ammonite-Shell):
* $ mkdir ~/.ammonite; curl -L -o ~/.ammonite/predef.scala http://git.io/vR04f
* $ curl -L -o amm http://git.io/vR08A; chmod +x amm; ./amm
*
* Run script:
* @ load.exec("fucking-coffee.scala")
*
*******************************************/
import java.net._
import java.io._
import ammonite.ops._
val coffeeMachineIP = "10.10.42.42"
val password = "1234"
val passwordPrompt = "Password: "
val delayBeforeBrew = 17
val delay = 24
if ((%%who "-q").out.string.contains(sys.props("user.name"))) {
val telnet = new Socket(coffeeMachineIP, 23)
val out = new PrintWriter(telnet.getOutputStream, true)
val in = new BufferedReader(new InputStreamReader(telnet.getInputStream))
Thread.sleep(delayBeforeBrew * 1000);
if(in.readLine == passwordPrompt){
out.println(password)
out.println("sys brew")
Thread.sleep(delay * 1000)
out.println("sys pour")
}
out.close()
in.close()
telnet.close()
}