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
[names] | |
uvi_Twin_doorway=enable | |
uvi_Twin_hammock=enable | |
uvi_Twin_bedroll=enable | |
uvi_inn_4_signpost=enable | |
uvi_Inn_4_banner=enable | |
uvi_Tinker_1_bigroot=enable | |
uvi_Tinker_bannerd=enable | |
uvi_Tinker_1_podbud_02=enable | |
uvi_Tinker_2_housepod_03=enable |
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
val pluginName = "catnip-intellij" | |
lazy val catnipIntellij = project.in(file(".")) | |
.enablePlugins(SbtIdeaPlugin) | |
.settings( | |
name := pluginName, | |
ThisBuild / version := "0.1", | |
ThisBuild / scalaVersion := "2.12.8", | |
ThisBuild / ideaPluginName := pluginName, | |
ThisBuild / ideaBuild := "191.6707.31", |
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 cats.Monad | |
import cats.data.StateT | |
import cats.effect._ | |
import cats.implicits._ | |
import cats.mtl._ | |
import cats.mtl.implicits._ | |
import shapeless._ | |
import scala.language.higherKinds | |
case class Health(num: Int) |
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 cats._ | |
import implicits._ | |
import shapeless._ | |
import tag._ | |
import scala.language.dynamics | |
import cats.effect.IO | |
trait Var[F[_], A] extends Dynamic { outer => |
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
// Untested after refactoring | |
function aliBulkCancel () { | |
const cancelBody = oid => { | |
const fd = new FormData() | |
fd.append(`_csrf_token`, document.querySelector('input[name*=csrf]').value) | |
fd.append(`action`, "cancelOrder/cancel_order_action") | |
fd.append(`event_submit_do_buyer_request`, "anything") | |
fd.append(`order_id`, oid) | |
fd.append("_fm.ca._0.r", "buyerCannotPayment") | |
return fd |
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 cats.SemigroupK | |
import cats._ | |
import cats.syntax.all._ | |
import cats.instances.option._ | |
import org.scalacheck.Arbitrary._ | |
import cats.laws.discipline.SemigroupKTests | |
implicit val semigroupByLongest = new SemigroupK[List] { | |
override def combineK[A](x: List[A], y: List[A]): List[A] = | |
x.map(_.some).zipAll(y.map(_.some), none[A], none[A]) |
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
/************************************************* | |
* FONT | |
* ----------------------------------------------- | |
* This bar was designed to use Cuprum font | |
* (imported from Google here). You can remove the | |
* import link and set it to some other font here | |
*************************************************/ | |
@import url(http://fonts.googleapis.com/css?family=Cuprum&subset=latin,latin-ext); |
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
#mal_control_strip {background-color: transparent !important;background-image: url('http://s017.radikal.ru/i425/1203/8e/8a32093af242.png') !important;position:fixed;top: 0;} | |
#mal_control_strip td {height: 24px !important; border-right-color: rgba(0,0,0,0.8) !important;} | |
#mal_control_strip div {display:inline} | |
#mal_cs_pic img {height: 24px !important; width: auto !important} | |
#mal_cs_listinfo {width: auto !important} | |
#mal_cs_listinfo div:first-of-type:before {content:'Logged in as '} | |
#mal_cs_listinfo div:last-of-type a {text-decoration: none} | |
#mal_cs_listinfo div:last-of-type a:hover {text-decoration: underline} | |
#mal_cs_listinfo div:last-of-type:before {font-weight:normal;content:'('} | |
#mal_cs_listinfo div:last-of-type:after {font-weight:normal;content:')'} |
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
body { | |
background-attachment:fixed; | |
background-color: #000; | |
background-repeat: no-repeat; | |
font-family: 'Segoe UI', 'Century Gothic', sans-serif; | |
font-size: 11px; | |
background-size: cover; | |
-moz-background-size: cover; | |
} |