Julien Maupetit

Thanks to #deezer radios, I could have a multiple artists-inspired mix using the deep flag. 😍

#linux #cli #python

nikolasdi

@itsfoss Kew is absolutely the best thing I have discovered in a long time. I completely stopped using my Navidrome server at home because of it. #cli #terminal #music_player #Navidrome

avp

Released Guile-PNG version 0.8.0:
github.com/artyom-poptsov/guil

Main changes:
- New "png" CLI tool that prints human-readable information in org-mode format about the given PNG file.
- New "<square>" type in "(png graphics rectangle)" module.
- New "(png version)" module that provides procedures to get the information about the current Guile-PNG version.

#projects #guile #guile_png #png #cli #tool

Release v0.8.0 · artyom-poptsov/guile-png

Table of Contents Changes in version 0.8.0 (2025-03-29) Implement…

GitHub
Justine Smithies
Other than @whynothugo@fosstodon.org #Shotman are there any other #CLI #Wayland screenshot utilities that will take a screenshot of just the active output and not both? I know you can do this with grim on sway by supplying it with the currently focused output but I want to know about other screenshot CLI clients that actually get that info themselves without requiring the WM to have IPC and so on.
Steven Sanderson

🔄 Master Linux while loops! Start with this beginner-friendly guide to automate repetitive tasks.
bash

while [ condition ]; do
commands
done

💡 Perfect for creating menus, processing files, and handling user input. No more manual repetition! 👉
Read more: Mastering Linux Shell Loops: spsanderson.com/steveondata/po

#Programming #Linux #Shell #Blog #Technology #CLI #while #until #loop

Julien Maupetit

🐍🎸 Create and play a random playlist of #SOAD and #RATM on the fly. Easy 😅

#deezer #cli

barefootstache

The script is called "pergs" ([P]ublish Codeb[erg] Static [S]ite) and can be found on #Codeberg:

codeberg.org/barefootstache/pe

While on #debian tried to install the script and it failed. Thus refactored the install script taking inspiration from #bun install script.

#cli #pergs #bash

readbeanicecream

I often use #toottui to browse #mastodon from my #linux #commandline. Why? Not because I think I am #hackerman. It's because my favorite machine has a celeron N3060 CPU and a Mesa 400 Graphics. So, low end issues require low end solutions. #tui #cli #tuiallthethings #computinglikeits1989

ploum

If you want to improve your Command-Line/bash skills, "Efficient Linux at the Command Line" by @DanielJBarrett is a life changing read.

Really.

A mindblowing experience.

#cli #commandline #bash

While you are at it, also check out offpunk :

offpunk.net

yes, it is related.

Offpunk, an offline-first command-line browser

Offpunk Tutorial

offpunk.net
Dave Pearson

I've just released v1.0.0 of ng2web, a command line tool that converts a #NortonGuide file into a collection of static web pages. Useful if you want to revive information locked up in Norton Guide files.

blog.davep.org/2025/03/24/ng2w

#cli #python #MSDOS #Clipper

ploum

3 years ago, as I just had created Offpunk, I started to implement what would become ansicat : a way to render HTML (or any format) in your terminal

Besides a lot of technical learning, the biggest lesson was probably how bad people are at writing texts and abusing any format.

ploum.net/2022-03-24-ansi_html

See the results here:

offpunk.net/install.html

#offpunk #gemini #terminal #ansi #html #smolnet #cli #retroploum

Rendering the Web with Pictures in Your Terminal : more than you would like to know about HTML, ANSI and the philosophy of communication.

Rendering the Web with Pictures in Your Terminal :…

ploum.net
Abdeslam Chouimet

@nojhan Hey, thanks for your comment and for trying out Numtap! 😊 I totally get why you'd compare it to Python REPL—it's a solid tool for calculations. Your feedback actually inspired me to release v1.1.0 with several improvements, so thank you for that! 🙏 Here’s how Numtap now stands out for terminal workflows:

Instant Launch & Lightweight: Numtap is super lightweight (just 52.7 kB) and launches instantly—no waiting for a full Python environment to load or importing modules like math. Perfect for quick math during scripting or analysis! ⚡
Built-in REPL Features for Terminal Workflows: Numtap comes with commands like history (shows all calculations with timestamps), last (recalls the last result), and clear (clears the screen)—all tailored for a seamless CLI experience. In Python, you’d need extra setup to get similar functionality. 🕒
Scientific Functions, No Imports Needed: Functions like sin(), cos(), log(), and unit conversions (e.g., 90 deg to rad) are ready to use right away. In Python, you’d need to import math and convert units manually (e.g., math.sin(math.radians(45))), which slows you down. 🧮
Colorful & Clear Output: Using chalk, Numtap provides color-coded feedback (e.g., green results, red errors), making it easier to read during long sessions. Python REPL’s plain text can feel less user-friendly in comparison. 🌈
Smooth Error Handling: Numtap handles errors without crashing the session, with clear messages like "Undefined symbol" or "Unexpected operator". Python’s error tracebacks can be overwhelming for quick math tasks.
Specialized for Terminal Math: Numtap is built specifically for terminal calculations, with two modes: Quick Mode (e.g., numtap "2 + 3") for one-off expressions, and Interactive Mode for chained calculations. Python REPL is more general-purpose, so it’s less focused for this use case.
Numtap is designed to be a go-to tool for terminal users—like in infosec workflows—where speed, simplicity, and a polished CLI experience matter. It works on Linux, macOS, and Windows (via WSL) with just Node.js installed. For more details, check out the links below! 🔗

Npm: npmjs.com/package/numtap
GitHub: github.com/AbdeslamChouimet/nu

I’d love to hear your thoughts on this updated version! Your feedback was super helpful, and I’d really appreciate more comments like yours to keep improving Numtap. What features would make it even more useful for your needs? 🖤💜

#infosec #CLI #JavaScript #OpenSource #terminal #nodejs #math

Abdeslam Chouimet

Hey infosec folks 🖤💜
I’m excited to share my project 😅 "Numtap", a CLI calculator that brings quick and reliable math to your terminal—perfect for those moments when you need fast calculations during analysis or scripting!

Why Numtap? 🤔
- An open-source CLI calculator for basic operations (like 2 + 3) and advanced functions (like sin, sqrt) ✅
- Works in two modes: Interactive (for ongoing calculations) 🧮 or Quick ⚡ (for one-off expressions) ✅
- Built with JavaScript using `mathjs` for precision and `chalk` for a colorful interface ✅
- Keeps a history of your calculations 🕒

Get Started 💁
Install Numtap with the command below:

$ npm install -g numtap

Check out the screenshots below to see it in action! For more details, visit the links below.

🔗 Links:
- [GitHub](github.com/AbdeslamChouimet/nu)
- [npm](npmjs.com/package/numtap)

I’d love to hear your feedback 🛠️ and suggestions for improvement! 😊 What do you think 🤔? Do you find CLI tools like this useful in your infosec workflows? 🖤💜

#infosec #CLI #JavaScript #OpenSource #terminal #nodejs