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 raptorclientapi | |
| import io.circe.Encoder | |
| import io.circe.parser.parse | |
| import sangria.schema.{Schema, SchemaChange} | |
| import scalaj.http.{Http => SJHttp} | |
| import sangria.marshalling.circe.CirceInputUnmarshaller | |
| import io.circe._ | |
| import io.circe.generic.semiauto._ |
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.raptorintelligence | |
| import akka.http.specs2.RouteTestSpecs2 | |
| import org.specs2.concurrent.ExecutionEnv | |
| import org.specs2.mutable.Specification | |
| class ConnectotMicroserviceTest extends Specification with RouteTestSpecs2 { | |
| "routes are tested" >> { implicit ee: ExecutionEnv => | |
| Get("/test") ~> ConnectorMicroservice.route ~> checkEntity must equalTo("this is test").await |
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
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <style> | |
| .bar { | |
| fill: steelblue; | |
| } | |
| .x.axis path { | |
| fill: none; |
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
| // ==UserScript== | |
| // @name JIRA2Git | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://ceai-io.atlassian.net/browse/* | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { |
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
| .tooltip { | |
| background: #eee; | |
| box-shadow: 0 0 5px #999999; | |
| color: #333; | |
| display: none; | |
| font-size: 12px; | |
| left: 130px; | |
| padding: 10px; | |
| position: absolute; | |
| text-align: center; |
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 typeclasses | |
| import json._ | |
| trait Expression[A] { | |
| def value(expression: A): Int | |
| } | |
| case class Number(value: Int) |
NewerOlder