View log.txt
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
tail local.sbt project/local.sbt | |
==> local.sbt <== | |
TaskKey[Unit]("printBillOfMaterials") := (Def.taskDyn { | |
val proj = thisProject.value | |
val filter = ScopeFilter(inProjects(proj.aggregate: _*)) | |
Def.task { | |
(updateSbtClassifiers.value :: update.all(filter).value.toList).flatMap(_.configurations).flatMap(_.modules).flatMap(_.artifacts).flatMap(_._1.url).distinct.foreach(println) | |
() | |
} | |
}).value |
View Kayo.bsstrategy
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
BSStrategy = { | |
version: 1, | |
displayName: "Kayo", | |
accepts: { | |
method: "predicateOnTab", | |
format: "%K LIKE[c] '*kayosports.com.au/*/*'", | |
args: ["URL"] | |
}, | |
toggle: function () { console.log("toggle"); document.querySelector('[aria-label="Toggle play/pause"]').click(); }, | |
pause: function () { console.log("pause") }, |
View 0.test.scala
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
class covariant extends scala.annotation.StaticAnnotation with scala.annotation.TypeConstraint | |
object SetFactory { | |
def empty[K]: Set[K @covariant] = Set.empty[K @covariant] | |
} | |
class Client { | |
val x = if (true) Set("") else SetFactory.empty | |
} |
View IteratorLinter.scala
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 demo.compat | |
import scala.collection.{GenIterableLike, mutable} | |
import scala.tools.nsc.plugins.{Plugin, PluginComponent} | |
import scala.tools.nsc.{Global, Phase, Settings} | |
object IteratorLinter { | |
def main(args: Array[String]): Unit = { | |
println("go!") | |
val g = new Global(new Settings) { |
View gh-markdown-api.sh
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
curl --silent --fail https://raw.githubusercontent.com/sindresorhus/github-markdown-css/gh-pages/github-markdown.css > /tmp/gh.css && ( | |
echo '<html><head><link rel="stylesheet" href="/tmp/gh.css"/><style>@page { size: A4 landscape; }</style> | |
</head><body><div class="markdown-body">' && \ | |
gh api repos/lightbend/scala-team/issues/188 -t '{{.body}}' | | |
gh api --field text=@- /markdown && \ | |
echo '</div></body></html>' \ | |
) > /tmp/out.html | |
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --disable-gpu --headless --print-to-pdf-no-header --print-to-pdf=/tmp/out.pdf /tmp/out.html | |
View M.scala
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
class M { | |
type AnyIterableOps[+A, Repr] = collection.IterableOps[A, Any, Repr] | |
def richMap[K, V, CC <: collection.MapOps[K, V, AnyIterableOps, CC]] = () | |
def foo(m: scala.collection.immutable.Map[String, String]): AnyIterableOps[(String, String), scala.collection.immutable.Map[String, String]] = m | |
richMap[Int, String, scala.collection.immutable.Map[Int, String]] | |
} |
View find.scala
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
object FindCollectionReturningHofs extends App { | |
import scala.tools.nsc._ | |
val global = new Global(new Settings) | |
import global._ | |
import global.settings | |
settings.usejavacp.value = true | |
settings.embeddedDefaults(getClass.getClassLoader) |
View scala-compiler.jar-META-INF-MANIFEST.MF
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
+++ MANIFEST.MF | |
Manifest-Version: 1.0 | |
Automatic-Module-Name: scala.tools.nsc | |
Bundle-ManifestVersion: 2 | |
Bundle-Name: Scala Compiler | |
Bundle-RequiredExecutionEnvironment: JavaSE-1.8 | |
Bundle-SymbolicName: org.scala-lang.scala-compiler | |
Bundle-Version: 2.12.15.v20210703-050957-52d9dbd | |
Class-Path: scala-reflect.jar scala-library.jar |
View result.json
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
[ | |
{ | |
"jmhVersion" : "1.29", | |
"benchmark" : "org.sample.Jdk11PerfRegressionBenchmark.setPhase", | |
"mode" : "avgt", | |
"threads" : 1, | |
"forks" : 2, | |
"jvm" : "/Users/jz/.jabba/jdk/adopt@1.8.0-272/Contents/Home/bin/java", | |
"jvmArgs" : [ | |
], |
View gist:2e285db92cc4f967d68c70b532010c80
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
after boxUnbox | |
// access flags 0x1000001 | |
public crash()V | |
L0 | |
LINENUMBER 5 L0 | |
L1 | |
LINENUMBER 6 L1 | |
ICONST_0 | |
ISTORE 2 |
NewerOlder