This file contains hidden or 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
/* | |
If you want to use Android studio ever, go and download + install that! (Huge but reliable!) | |
Min req: | |
- brew installed | |
- java installed: | |
brew cask install caskroom/versions/java8 | |
The steps below sometimes requires user interaction (like accepting licenses)! | |
*/ |
This file contains hidden or 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
object ResponseTimeLoggerActor { | |
case object LogMeasures | |
} | |
trait ResponseTimeLoggerActor { | |
x: Actor => | |
implicit val executionContext: ExecutionContextExecutor |
This file contains hidden or 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
import akka.actor.ActorSystem | |
import akka.stream._ | |
import akka.stream.scaladsl.{Flow, GraphDSL, Keep, RunnableGraph, Sink, Source} | |
import akka.stream.stage.{GraphStage, GraphStageLogic, InHandler, OutHandler} | |
import akka.testkit.TestKit | |
import org.scalatest.{BeforeAndAfterAll, Matchers, WordSpecLike} | |
import scala.concurrent.Await | |
class CombineLatest[A, B] |
This file contains hidden or 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
C:\adb\src | |
λ adb shell dumpsys | grep Width | |
requiresSmallestWidthDp=0 compatibleWidthLimitDp=0 largestWidthLimitDp=0 | |
requiresSmallestWidthDp=0 compatibleWidthLimitDp=0 largestWidthLimitDp=0 | |
requiresSmallestWidthDp=0 compatibleWidthLimitDp=0 largestWidthLimitDp=0 | |
requiresSmallestWidthDp=0 compatibleWidthLimitDp=0 largestWidthLimitDp=0 | |
requiresSmallestWidthDp=0 compatibleWidthLimitDp=0 largestWidthLimitDp=0 | |
options=Bundle[{appWidgetMaxHeight=492, appWidgetCategory=1, appWidgetMaxWidth=492, appWidgetMinHeight=306, appWidgetMinWidth=336}] | |
options=Bundle[{appWidgetMaxHeight=111, appWidgetCategory=1, appWidgetMaxWidth=492, appWidgetMinHeight=64, appWidgetMinWidth=336}] | |
options=Bundle[{appWidgetMaxHeight=492, appWidgetCategory=1, appWidgetMaxWidth=492, appWidgetMinHeight=306, appWidgetMinWidth=336}] |
NewerOlder