Skip to content

Instantly share code, notes, and snippets.

View SethTisue's full-sized avatar

Seth Tisue SethTisue

View GitHub Profile
@SethTisue
SethTisue / scalawags-24.md
Last active August 29, 2015 14:11
Scalawags #24: Here's the News

Scalawags #24: Here's the News

YouTube link: https://www.youtube.com/watch?v=_11zUvQkncg

your hosts this episode: Josh Suereth, Dick Wall, Heather Miller, Seth Tisue

Intro (0:00)

  • Electric Light Orchestra, anyone?
  • Josh makes everyone say their name in a comedy accent
@SethTisue
SethTisue / scalawags-25.md
Last active August 29, 2015 14:11
Scalawags #25: Martin Odersky

Scalawags #25: Interview with Martin Odersky

YouTube link: https://www.youtube.com/watch?v=uP-m8j8ZN-Q

Your hosts this episode: Daniel Spiewak, Heather Miller, Seth Tisue.

Daniel returns to the show, puts on his enterprise hat, and confesses his dark fetish!

Our guest is Martin Odersky, creator of Scala.

@SethTisue
SethTisue / nescala-2015-speakers.md
Last active August 29, 2015 14:11
Northeast Scala Symposium 2015 – day 1 speakers

envelope please

congratulations to the top vote-getters! (listed alphabetically by surname)

thanks to everyone brave enough to submit a proposal. if your proposal didn't make the cut for day 1, please consider presenting or leading a session at the day 2 unconference instead.

medium (45 minutes)

@SethTisue
SethTisue / scalawags-26.md
Last active August 29, 2015 14:13
Scalawags #26

Scalawags #26: The 16th Day of Christmas

YouTube link: https://www.youtube.com/watch?v=dvMtSgsjB0Q

Your “Scalawags Classic” lineup is: Josh Suereth, Dick Wall, Daniel Spiewak. They are not returnable for a refund.

Intro (0:00)

  • sick Dick’s sporting sick Yuletide gear
  • Daniel's smoking a green-tipped electronic cigarette with his ear
@SethTisue
SethTisue / scalawags-27.md
Last active August 29, 2015 14:15
Scalawags #27: Ask the Scalawags
@SethTisue
SethTisue / scalawags-28.md
Last active August 29, 2015 14:17
Scalawags #28: News on the March

Scalawags #28: News on the March

YouTube link: https://www.youtube.com/watch?v=6WulXJayA3I

Featuring the classic, "all original members" lineup of: Josh Suereth, Dick Wall, Daniel Spiewak. It's just like old times. Even Daniel's cat is back.

Seth was in Myanmar, where the internet is pigeons and ponies speed. Heather is presumed to have been on an epic bender.

@SethTisue
SethTisue / scalawags-29.md
Last active August 29, 2015 14:19
Scalawags #29: Scala Days and news

Scalawags #29: Scala Days recap and news

YouTube link: https://www.youtube.com/watch?v=r-QSTPOKyDM

Your hosts: Josh Suereth, Dick Wall, Daniel Spiewak, Seth Tisue.

Yup, we're Heatherless again. We promise you Heather next episode.

Join us during (and between) episodes for web-based Scalawags chat on Gitter.

Scalawags #31: What we want from Scaladoc

YouTube link: https://www.youtube.com/watch?v=cY3wGduNukI

Your hosts: Josh Suereth, Dick Wall, Heather Miller, Daniel Spiewak

As usual, we took live audience questions and comments during broadcast through Google Hangouts Q&A. Also join us during and between episodes for web-based Scalawags chat on Gitter.

scala> class Outer { class Inner; val i = new Inner }
defined class Outer
scala> class Outer { class Inner; val i = new Inner; type I2 = (Inner, Inner) }
defined class Outer
scala> def foo(i: Outer#I2) = ()
foo: (i: (_7.Inner, _7.Inner) forSome { val _7: Outer })Unit
scala> val o1, o2 = new Outer