Ranked by awesomeness:
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
using System; | |
using System.Collections.Generic; | |
public class SecureTokenGenerator : IDisposable | |
{ | |
private bool disposed = false; | |
private readonly CryptoRandom random; | |
private readonly string alphabet; | |
private readonly int size; |
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 python3 | |
import subprocess | |
from sys import argv | |
def main(): | |
if len(argv) < 2: | |
print('Usage: {} <shell command>'.format(argv[0])) | |
exit(1) |
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
set runtimepath^=~/.vim runtimepath+=~/.vim/after | |
let &packpath=&runtimepath | |
source ~/.vim/vimrc |
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
//> using scala "3.6.3" | |
//> using dep org.typelevel::cats-effect:3.5.7 | |
import cats.effect.ExitCode | |
import cats.effect.IO | |
import cats.effect.IOApp | |
import cats.implicits.* | |
import java.io.File | |
object Main extends IOApp: |
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 |
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 = "2.7.4" | |
align.preset = more | |
align.multiline = true | |
maxColumn = 100 |
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 |
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 |
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 |
NewerOlder