announcements

Project/library announcements ONLY - use threaded replies for discussions. Do not cross post here from other channels. Consider #events or #news-and-articles for other announcements.
robertfw 2021-03-05T02:13:46.240300Z

I have googled "tar.gz decompress args" for the last time, thanks to my little babashka script bunpack . If anyone else is tired of using google/their mind attic to remember how to unpack various file formats, it is available at https://github.com/robertfw/bunpack

8
šŸš€ 1
bartuka 2021-03-05T12:03:46.244Z

https://github.com/moonpyk/dtrx is one of the first packages I install on clean linux distros. Nice to have a clj option now šŸ™‚

felipebarros 2021-03-05T22:03:15.248900Z

I've used atool for a long time to do that, but there is another tool that has vastly improved my command line happiness in general and also addresses this case: tldr pages. tldr tar would give you a curated little list of the most common commands. I love it.

robertfw 2021-03-05T23:22:49.249700Z

@iagwanderson dtrx looks like a good source for more features/formats to support, thanks for sharing that

šŸš€ 1
Ben Sless 2021-03-05T07:36:19.242Z

Just when I finally remember the correct args?

mike_ananev 2021-03-05T21:30:27.247800Z

I just released a new application template. https://github.com/redstarssystems/rssysapp ThisĀ `Application template`Ā helps you to quick start new application project usingĀ https://clojure.org/guides/getting_startedĀ andĀ https://github.com/seancorfield/clj-new. ThisĀ `Application template`Ā provides: ā€¢ project control viaĀ `Justfile`Ā (seeĀ https://github.com/casey/just) and scripting usingĀ https://github.com/babashka/babashka; ā€¢ environment variables control usingĀ `direnv`Ā utility; ā€¢ editor configuration viaĀ `.editorconfig`Ā file; ā€¢ configuredĀ `clj-kondo`Ā linter; ā€¢ configuredĀ `cljstyle`Ā formatter; ā€¢ run tests usingĀ https://github.com/lambdaisland/kaocha. This template will give you the following basic project workflow:

mike@mbp02 just
List of available recipes
Available recipes:
    build              # Build uberjar file (as an application)
    bump level='patch' # Bump version artifact in `version_id` file, level may be one of: major, minor, patch, alpha, beta, rc, release.
    clean              # Clean target folder
    default            # Help
    deploy             # Deploy uberjar file to remote repository (stub)
    format             # Format source code
    install            # Install uberjar locally (requires the pom.xml file)
    javac              # Compile java sources (if any)
    lint               # Lint source code
    outdated           # Check for outdated dependencies
    repl               # Run Clojure repl
    requirements       # Install project requirements (OS will be detected automatically)
    run                # Run application
    standalone         # Create a standalone application with bundled JDK (using jlink, JDK 9+)
    test               # Run tests

šŸŽ‰ 11
nonrecursive 2021-03-06T16:32:47.251200Z

this looks neat!

mike_ananev 2021-03-05T21:31:53.248500Z

See also newer version of library template https://github.com/redstarssystems/rssyslib