#command-line-tool

[ follow ]
fromMouse Vs Python
5 days ago

Announcing Squall: A TUI SQLite Editor - Mouse Vs Python

Squall is a SQLite viewer and editor that runs in your terminal. Written in Python and using the Textual package, Squall allows you to view and edit SQLite databases using SQL.
Python
fromMedium
5 months ago

How to Develop a Native macOS Command-Line Tool Using Scala 3

//> using dep com.softwaremill.sttp.client3::core:3.10.3 import sttp.client3.quick.* import sttp.model.Uri val url = Uri.parse(args(0)).toOption.get def go(): Unit = { val getResult = simpleHttpClient.send(quickRequest.get(url)) if (getResult.code.isSuccess) { println("Success") } else { println("Failure, continue to try...") Thread.sleep(3000) go() } } go() This Scala script checks the availability of an HTTP service by continuously sending requests until it receives a successful response from the specified URL.
Scala
[ Load more ]