See also https://www.publicdns.xyz
1.1.1.1
1.0.0.1
#! /usr/bin/env python3 | |
import subprocess | |
from sys import argv | |
def main(): | |
if len(argv) < 2: | |
print('Usage: {} <shell command>'.format(argv[0])) | |
exit(1) |
See also https://www.publicdns.xyz
1.1.1.1
1.0.0.1
#lang racket | |
(require net/http-client) | |
(require net/uri-codec) | |
(require json) | |
(define (ping url) | |
(define-values (status headers port) | |
(http-sendrecv "feedburner-pinger.herokuapp.com" | |
"/" |
A curated List of useful or interesting libraries and tools for Scala programming. See also the Scala Toolbox.
Name | Description | URL |
---|---|---|
Akka HTTP | The Akka HTTP modules implement a full server- and client-side HTTP stack on top of akka-actor and akka-stream. | https://doc.akka.io/docs/akka-http/current |
Akka Stream | The purpose is to offer an intuitive and safe way to formulate stream processing setups such that we can then execute them efficiently and with bounded resource usage—no more OutOfMemoryErrors. | https://doc.akka.io/docs/akka/current/stream |
A curated List of useful or interesting libraries for Java programming.
Name | Description | URL |
---|---|---|
Akka | Akka is a toolkit for building highly concurrent, distributed, and resilient message-driven applications for Java and Scala. | https://akka.io |
Akka HTTP | The Akka HTTP modules implement a full server- and client-side HTTP stack on top of akka-actor and akka-stream. | https://doc.akka.io/docs/akka-http/current |
Akka Stream | The purpose is to offer an intuitive and safe way to formulate stream processing setups such that we can then execute them efficiently and with bounded resource usage—no more OutOfMemoryErrors. | https://doc.akka.io/docs/akka/current/stream |
Alpakka | The Alpakka project is an open source initiative to implement stream-aware and reactive integration pipelines for Java and Scala. | https://doc.akka.io/docs/alpakka/current |
Name | Description |
---|---|
akka/akka-quickstart-scala.g8 | A minimal seed template for an Akka with Scala build |
clementi/cats-effect-seed.g8 | Scala SBT project with Cats and Cats-Effect |
devinsideyou/scala3-seed.g8 | A Giter8 template for a fully configured Scala3 SBT single but multibuild ready project. It is configured in a slightly opinionated but mostly dependency free fashion. |
http4s/http4s.g8 | Scala SBT project with http4s |
scala/scala-seed.g8 | Barebones Scala SBT project |
scala/scala3-cross.g8 | Scala 3 and Scala 2 cross-compiled sbt template |
set runtimepath^=~/.vim runtimepath+=~/.vim/after | |
let &packpath=&runtimepath | |
source ~/.vim/vimrc |
data Expr = T | |
| F | |
| U | |
| Not Expr | |
| And Expr Expr | |
| Or Expr Expr | |
| Impl Expr Expr | |
| Equiv Expr Expr | |
deriving Show |
System.getenv("PATH") | |
.split(File.pathSeparator) | |
.each { println it } |
A curated List of useful or interesting sbt plugins. See also sbt's plugin repositories.
Name | Description | URL |
---|---|---|
sbt-assembly | Deploy fat JARs. Restart processes. (port of codahale/assembly-sbt) | https://github.com/sbt/sbt-assembly |
sbt-buildinfo | I know this because build.sbt knows this. | https://github.com/sbt/sbt-buildinfo |