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
package com.fidesmo.logging | |
import cats.effect.IO | |
import org.typelevel.log4cats.slf4j.Slf4jLogger | |
import com.fidesmo.dto.RequestId | |
trait Logging { | |
import Logging._ | |
private val logger = Slf4jLogger.getLoggerFromClass[IO](getClass()) |
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
#!/bin/bash | |
# Uses Gource (http://gource.io) to generate a lossless PPM and a high quality MP4 visualizing the history of a Git repo. | |
# By Jayden Seric: https://gist.github.com/jaydenseric/df3263eb3c33856c11ce | |
# Install Gource and FFmpeg with Homebrew: | |
# brew install gource | |
# brew install ffmpeg |