This file has been truncated, but you can view the full file.
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
| {"version":3,"term":{"cols":216,"rows":69,"type":"xterm-256color","version":"Konsole 25.12.3","theme":{"fg":"#b2b2b2","bg":"#000000","palette":"#000000:#b21818:#18b218:#b26818:#1818b2:#b218b2:#18b2b2:#b2b2b2:#686868:#ff5454:#54ff54:#ffff54:#5454ff:#ff54ff:#54ffff:#ffffff"}},"timestamp":1780303882,"env":{"SHELL":"/bin/bash"}} | |
| [0.181, "o", "\u001b]0;lefou:~/work/opensource/mill ± \u0007"] | |
| [0.001, "o", "\u001b[?2004h\u001b[1m\u001b[30m10:51:22\u001b(B\u001b[m θ\u001b[1m\u001b[31m82°\u001b(B\u001b[m \u001b[1m\u001b[32mlefou\u001b(B\u001b[m\u001b[32m:\u001b(B\u001b[m\u001b[1m\u001b[34m~\u001b(B\u001b[m\u001b[90m/\u001b[1m\u001b[34mwork\u001b(B\u001b[m\u001b[90m/\u001b[1m\u001b[34mopensource\u001b(B\u001b[m\u001b[90m/\u001b(B\u001b[m\u001b[1mmill\u001b(B\u001b[m\u001b[1m\u001b[32m└2\u001b(B\u001b[m \u001b[32mmain\u001b[33m+\u001b[31m*\u001b(B\u001b[m \u001b[1m±\u001b(B\u001b[m \r\u001b[1m\u001b[30m10:51:22\u001b(B\u001b[m θ\u001b[1m\u001b[31m82°\u001b(B\u001b[m \u001b[1m\u001b[32mlefou\u001b(B\u001b[m\u001b[32m:\u0 |
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
| //| mill-version: 1.0.6 | |
| package build | |
| import mill.* | |
| import mill.api.* | |
| import scala.annotation.targetName | |
| case class Args (value: Seq[ArgGroup]) derives upickle.ReadWriter { | |
| def toStringSeq: Seq[String] = value.map(_.toString) |
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 someorg.aspects; | |
| import de.tototec.utils.functional.Try; | |
| import jakarta.persistence.EntityManager; | |
| import jakarta.persistence.PersistenceContext; | |
| import org.aspectj.lang.Aspects; | |
| import org.aspectj.lang.ProceedingJoinPoint; | |
| import org.aspectj.lang.annotation.Around; | |
| import org.aspectj.lang.annotation.Aspect; |
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 scala.collection.immutable.Seq | |
| import mill.scalalib._ | |
| /** | |
| * Defines an Archive file (ZIP, ...) than can be downloaded from a given URL. | |
| * The bundle must be location inside the archive with the schematic name `${artifactId}_${version}.jar`. | |
| * Source bundles must have the schematic name `${artifactId}.source_${version}.jar`. | |
| * | |
| * @param url |
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
| #!/usr/bin/env sh | |
| if [ "x$@" = "x" ] ; then | |
| gitk --all `git stash list '--pretty=format:%gd'` & | |
| else | |
| gitk "$@" & | |
| fi |
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
| <?xml version='1.0' encoding='UTF-8' standalone='yes' ?> | |
| <gpx version="1.1" creator="OsmAnd~ 3.7.4" xmlns="http://www.topografix.com/GPX/1/1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd"> | |
| <metadata> | |
| <name>2020-09-12_07-02_Sat</name> | |
| </metadata> | |
| <trk> | |
| <trkseg> | |
| <trkpt lat="51.0655571" lon="13.7425885"> | |
| <ele>101.007</ele> | |
| <time>2020-09-12T05:02:10Z</time> |
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
| #!/usr/bin/env bash | |
| basedir= | |
| dirname= | |
| found=0 | |
| # traverses directory structure from process work directory to filesystem root | |
| # first directory with .mvn subdirectory is considered project base directory | |
| find_maven_basedir() { |
example of several maven pom.xml profiles that congiure scala.js library and runtime projects
see http://stackoverflow.com/questions/26512750/how-to-use-scala-js-from-maven
NewerOlder