Test with
$ sbt run
And then,
$ curl localhost:8080/mars/hi
$ curl localhost:8080/jupiter/hi
Test with
$ sbt run
And then,
$ curl localhost:8080/mars/hi
$ curl localhost:8080/jupiter/hi
This terminal command increases the minimum Apple Bitpool setting - which improves overall sound, and removes crackling and stuttering.
defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Min (editable)" 45
Source:http://bencollier.net/2011/04/improve-compressed-bluetooth-audio-on-mac/
/** | |
* The examples provided by Facebook are for non-commercial testing and | |
* evaluation purposes only. | |
* | |
* Facebook reserves all rights not expressly granted. | |
* | |
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | |
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
* FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL | |
* FACEBOOK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN |
<br /><br /> | |
# React Native: Animated | |
ReactEurope 2015, Paris - Spencer Ahrens - Facebook | |
<br /><br /> | |
## Fluid Interactions | |
- People expect smooth, delightful experiences |
package com.dvMENTALmadness | |
import akka.actor.ActorSystem | |
import slick.driver.PostgresDriver.api._ | |
import scala.collection.immutable.Stream._ | |
import scala.concurrent.duration._ | |
import scala.concurrent.{Future, Await} | |
import akka.stream._ | |
import akka.stream.scaladsl._ |
package com.timmeh.openhr.openholidays.model | |
import slick.driver.H2Driver.api._ | |
import slick.collection.heterogeneous._ | |
import syntax._ | |
//// This file demonstrates how to map more than 22 columns to a nested case class using a HList | |
class LargeTableExample3(tag: Tag) | |
extends Table[LargeUnnestedTableRow](tag, "LARGE_TABLE") { | |
def id = column[Int]("ID", O.PrimaryKey) |
import React, { | |
Component, | |
} from 'react'; | |
import { | |
StyleSheet, | |
Text, | |
View, | |
Animated, | |
Easing, |
This procedure explains how to install MySQL using Homebrew on macOS Sierra 10.12
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
At this time of writing, Homebrew has MySQL version 5.7.15 as default formulae in its main repository :
This is my attempt to give Scala newcomers a quick-and-easy rundown to the prerequisite steps they need to a) try Scala, and b) get a standard project up and running on their machine. I'm not going to talk about the language at all; there are plenty of better resources a google search away. This is just focused on the prerequisite tooling and machine setup. I will not be assuming you have any background in JVM languages. So if you're coming from Python, Ruby, JavaScript, Haskell, or anywhere… I hope to present the information you need without assuming anything.
Disclaimer It has been over a decade since I was new to Scala, and when I was new to Scala, I was coming from a Java and Ruby background. This has probably caused me to unknowingly make some assumptions. Please feel free to call me out in comments/tweets!
One assumption I'm knowingly making is that you're on a Unix-like platform. Sorry, Windows users.