48
Scala Bot for Small Business yllan @ ScalaConf.jp March 2, 2013

Scala Bot for Small Business

Embed Size (px)

Citation preview

Page 1: Scala Bot for Small Business

Scala Bot for Small Businessyllan @ ScalaConf.jpMarch 2, 2013

Page 2: Scala Bot for Small Business

Who Am I?

藍永倫 @yllan

Working at Hypo (http://hypo.cc)

Scala 下忍(⾃自称)しもおし

Page 3: Scala Bot for Small Business

Why am I here?初心者

Page 4: Scala Bot for Small Business

Scala:Scalable Language

Page 5: Scala Bot for Small Business

Scala:Scalable Language

拡大縮小が可能なさま。拡張性があるさま。Able to be changed in size or scale.

Page 6: Scala Bot for Small Business

scale-UP & scale-OUT

Page 7: Scala Bot for Small Business

scale-down & scale-in?

Page 8: Scala Bot for Small Business

Scala is good at BIG.

Page 9: Scala Bot for Small Business

大 > 小BIG > small

Page 10: Scala Bot for Small Business

Scala is good at small?

Page 11: Scala Bot for Small Business

RUBY SCALA

Page 12: Scala Bot for Small Business
Page 13: Scala Bot for Small Business

A lot of small business!

Page 14: Scala Bot for Small Business
Page 15: Scala Bot for Small Business

Right Toolfor

Automation

Page 16: Scala Bot for Small Business

Scala for script? Hmm…

Page 17: Scala Bot for Small Business

Cons for scala scripting

Page 18: Scala Bot for Small Business

Cons for scala scripting

Slow compile

Page 19: Scala Bot for Small Business

Cons for scala scripting

Slow compile

scala -savecompiled script.scala

Page 20: Scala Bot for Small Business

Cons for scala scripting

Slow compile

scala -savecompiled script.scala

Hard to memorize classpath

Page 21: Scala Bot for Small Business

Cons for scala scripting

Slow compile

scala -savecompiled script.scala

Hard to memorize classpath

JVM boot overhead

Page 22: Scala Bot for Small Business

Cons for scala scripting

Slow compile

scala -savecompiled script.scala

Hard to memorize classpath

JVM boot overhead

nailgun? Hmmm

Page 23: Scala Bot for Small Business

Cons for scala scripting

Slow compile

scala -savecompiled script.scala

Hard to memorize classpath

JVM boot overhead

nailgun? Hmmm

Default I/O library

Page 24: Scala Bot for Small Business

Recommended lib

rapture.io (http://rapture.io)

File / "home" / "work" / "contents" > Socket("localhost", Services.Tcp.telnet)

dispatch (http://dispatch.databinder.net/)

val svc = url("http://hostip.info/country.php")val country = Http(svc OK as.String)

Page 25: Scala Bot for Small Business

TIPSScala REPL comes to rescue!:cp - add a jar/dir to classpath

:load - load a scala file

:shscala> :sh find . -name *.mres0: s.t.n.i.ProcessResult = `find . -name *.m` (23 lines, exit 0)scala> res0.exitCoderes1: Int = 0scala> res0.linesres2: List[String] = List(...)

import scala.sys.process._

Page 26: Scala Bot for Small Business

I ♡ scala REPL!

Page 27: Scala Bot for Small Business

For non-geek?

Page 28: Scala Bot for Small Business
Page 29: Scala Bot for Small Business
Page 30: Scala Bot for Small Business
Page 31: Scala Bot for Small Business

SHIT HAPPENS.

Page 32: Scala Bot for Small Business

DANGEROUS!

Page 33: Scala Bot for Small Business

Only permit trained people use the guns; or

Make your gun super safe.

Solutions

Page 34: Scala Bot for Small Business

Take our company as example…

Page 35: Scala Bot for Small Business
Page 36: Scala Bot for Small Business

“Make gun safe” strategy works?

Page 37: Scala Bot for Small Business
Page 38: Scala Bot for Small Business
Page 39: Scala Bot for Small Business

Too many system!

Page 40: Scala Bot for Small Business

Let the trained people do.

Page 41: Scala Bot for Small Business

COLLEAGUE MEIM RUN

SCRIPT

Page 42: Scala Bot for Small Business

COLLEAGUE BOTIM RUN

SCRIPT

Page 44: Scala Bot for Small Business

Command Parsing

Regex + extractor

Every command is a PartialFunction

Page 45: Scala Bot for Small Business
Page 46: Scala Bot for Small Business

Happy!

Page 47: Scala Bot for Small Business

That’s my little story about scala.

Page 48: Scala Bot for Small Business

Q & A