Skip to content

Instantly share code, notes, and snippets.

View jedesah's full-sized avatar
💭
Debugging my digestion

Jean-Rémi Desjardins jedesah

💭
Debugging my digestion
View GitHub Profile
@wemrysi
wemrysi / auditing.scala
Last active December 14, 2015 17:48
Auditing Ideas
type Timestamp = Long
type Nanos = Long
sealed trait Clock[A]
final case class CurrentMillis extends Clock[Timestamp]
final case class CurrentNanos extends Clock[Nanos]
final case class EntryId(val asString: String) extends AnyVal
sealed trait Audit[A]

Git DMZ Flow

I've been asked a few times over the last few months to put together a full write-up of the Git workflow we use at RichRelevance (and at Precog before), since I have referenced it in passing quite a few times in tweets and in person. The workflow is appreciably different from GitFlow and its derivatives, and thus it brings with it a different set of tradeoffs and optimizations. To that end, it would probably be helpful to go over exactly what workflow benefits I find to be beneficial or even necessary.

  • Two developers working on independent features must never be blocked by each other
    • No code freeze! Ever! For any reason!
  • A developer must be able to base derivative work on another developer's work, without waiting for any third party
  • Two developers working on inter-dependent features (or even the same feature) must be able to do so without interference from (or interfering with) any other parties
  • Developers must be able to work on multiple features simultaneously, or at lea
@gangstead
gangstead / Day 1.md
Last active December 20, 2015 15:21
PNW Scala Nodes

Friday 11/14/14

notes by Steven Gangstead

Rapture Art of One-liner - Jon Pretty @propensive

rapture.io -collection of libraries for scala

jawn json parser. Quicker than Jackson, and I guess Jackson must normally be considered the quickest.

My thoughts: Awesome talk. Look into rapture, looks useful. Jon is smart.