This file contains 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
package com.hiya.h4b.cpas.futuretest | |
import akka.actor.ActorSystem | |
import scala.concurrent.{Await, Future} | |
import scala.concurrent.duration._ | |
object FutureTestApp extends App { | |
private val sys = ActorSystem.apply("future-test-app") | |
implicit private val ec = sys.dispatcher |
This file contains 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
package com.hunorkovacs.catsi | |
import cats.effect.Sync | |
import cats.Applicative | |
import org.log4s.{getLogger, Logger => Log4sLogger} | |
trait Logger[F[_]] { | |
def trace(str: String): F[Unit] |
This file contains 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
{ | |
"name": "MyClass", | |
"type": "record", | |
"namespace": "", | |
"fields": [ | |
{ | |
"name": "name", | |
"namespace": "name", | |
"type": "string" | |
} |
This file contains 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
implicit val awsConfigReader: ConfigReader[AWSConfig] = ConfigReader.fromCursor[AWSConfig] { cur => | |
for { | |
objCur <- cur.asObjectCursor | |
maxConnections <- objCur.atKey("max-connections") | |
maxConnectionsInt <- maxConnections.asInt | |
maxErrorRetry <- objCur.atKey("max-error-retry") | |
maxErrorRetryInt <- maxErrorRetry.asInt | |
endpoint <- objCur.atKey("endpoint") | |
endpointStr <- endpoint.asString | |
region <- objCur.atKey("region") |
This file contains 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
# Appends a new line with a - to every frame of movie subtitles to shift | |
# the overall position up when the tv cuts down the bottom. | |
# | |
# ruby subtitles-shift-up.rb Titanic.srt | |
# or | |
# ruby subtitles-shift-up.rb Titanic.srt UTF-8 | |
# | |
# result: Titanic-shifted.srt | |
def addEmptyLine(inFile, outFile) |
This file contains 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
package com.hiya.h4b.cpas.service | |
import java.time.Instant | |
import java.time.Instant.now | |
import akka.http.scaladsl.model.StatusCode | |
import akka.http.scaladsl.model.StatusCodes.{Created, NotFound, OK} | |
object Typeclasses extends App { |
This file contains 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
package main | |
import ( | |
"fmt" | |
"math/rand" | |
"os" | |
"time" | |
"golang.org/x/crypto/scrypt" | |
) |
This file contains 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
Don't let me Google that for you | |
Just ctrl-f this file | |
# The Git reference: | |
git checkout --help | |
# Pushing | |
# Recommended pushing method | |
git push <remote> sourceBranch | |
git push origin master |
This file contains 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
package main | |
import ( | |
"fmt" | |
"time" | |
) | |
func main() { | |
q := make(chan string, 1) |
This file contains 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
Intel i7 5820K 33126 MIPS ~ 2^15 MIPS (million instructions per second) = 2^35 IPS | |
Intel i7 6700K 25475 MIPS ~ roughly rounding up kind-of gives you the same |
NewerOlder