nu_scripts/modules
Dominik Schrempf a3778622cd
ultimate_extractor: various fixes (#482)
- fix regex matching
  - . -> \.
  - use $ ot match end of file name
- fix naming of variables (exte -> handlers; command -> maybe_handler)
- combine suffixes with common extractors
- in case of no match, use a proper error
2023-05-10 06:17:46 -05:00
..
after powerline : NU_POWER_MODE and NU_POWER_BENCHMARK (#464) 2023-04-26 13:36:55 -05:00
background_task refactor: (#418) 2023-04-25 17:56:25 -05:00
base16 refactor: (#418) 2023-04-25 17:56:25 -05:00
coloring refactor: (#418) 2023-04-25 17:56:25 -05:00
data_extraction ultimate_extractor: various fixes (#482) 2023-05-10 06:17:46 -05:00
docker rename registry list to registry show (#480) 2023-05-08 06:32:14 -05:00
formats Update to-ini.nu (#465) 2023-04-26 06:37:48 -05:00
fun refactor: (#418) 2023-04-25 17:56:25 -05:00
git REFACTOR: unify git modules and aliases (#472) 2023-04-30 07:23:07 -05:00
kubernetes optimize kube_stat with ensure-cache (#470) 2023-04-28 12:34:35 -05:00
log powerline : NU_POWER_MODE and NU_POWER_BENCHMARK (#464) 2023-04-26 13:36:55 -05:00
maths refactor: (#418) 2023-04-25 17:56:25 -05:00
network optimize kube_stat with ensure-cache (#470) 2023-04-28 12:34:35 -05:00
nvim refactor: (#418) 2023-04-25 17:56:25 -05:00
prompt rename registry list to registry show (#480) 2023-05-08 06:32:14 -05:00
rbenv refactor: (#418) 2023-04-25 17:56:25 -05:00
virtual_environments refactor: (#418) 2023-04-25 17:56:25 -05:00
weather refactor: (#418) 2023-04-25 17:56:25 -05:00
README.md refactor: (#418) 2023-04-25 17:56:25 -05:00

Modules

after

Run a function after the given program (by PID)

api_wrappers

Demo of various API wrappers:

background_task

make nushell "support" background task feature. see README

base16

Base16 theme generator (for Linux, might work for other OS) see README

coloring

These scripts are used to demonstrate the ansi command using ansi coloring. This is mainly a demo area where we have taken typical bash scripts and ported them to nushell scripts. It would be nice if all scripts here showed the "other" version of script and the ported nushell version. We can show "other" flavors of scripts by including them as comments in the nushell scripts or by naming the nushell script and the other script the same basename.

data_extraction

  • Ultimate Extractor - Extract any compressed archive, UE will call the proper program under the hood 😎

docker

An extensive example of a wrapper for docker operations, with nushell completions.

filesystem

formats

Examples of input/output formatters:

fun

  • spark - send an array into spark and get a sparkline out:
    > let v = [2, 250, 670, 890, 2, 430, 11, 908, 123, 57]
    > spark $v
    ▁▂▆▇▁▄▁█▁▁
    
  • website-builder - converts markdown into their equivalent html pages
  • wordle - A Terminal Wordle game. The code is based on this gist, but slightly personalized.

github

  • branch-protections - Do you have hundreds or thousands of GitHub repositories in your organization? Are you tired of manually managing their branch protection rules? Don't! Let nushell do it for you! see README
  • merged-branches - Do your developers often forget to delete their branches after merging PRs? Are you tired of manually going into every repository and deleting them? Don't! Let nushell do it for you! see README

gitlab

Search files on your GitLab server

kubernetes

???

make_release

???

maths

  • [math_functions] - module with the following commands:
    • root - root with a custom denominator
    • croot - cube root
    • aroot - root with a custom scaler and denominator
    • delta - calculate the delta of the quadratic function
    • fact - factorial of the given number
    • q_roots - calculare roots of the quadratic function: ax^2+bx+x
    • isprime - check if integer is prime
    • primelist - list primes until given number
    • mtable - multiplication table of n till max
    • isleap - check if year is leap
    • gcd - greatest common divisor between 2 integers
    • lcm - least commoin multiple between 2 integers
    • dec2base - decimal number to custom base representation
    • scale-minmax - scale list to [a,b] interval
    • scale-minmax-table - Scale every column of a table (separately) to [a,b] interval
    • math exp - exp function

network

  • remoting - This module provide convenient way to manage multiple remote clients. see README

  • sockets - The sockets command returns a table containing information on network sockets and the processes they belong to. It is basically a join of the tables produced by the lsof command, and the nushell ps command.

    image
  • ssh wrapper that provides the following commands:

    • ssh
    • scp
    • ssh-list
    • parse-ssh-file
    • str max-length
    • ensure-index

nvim

??? (not sure how universal this is) Mix of hooks, defs and alias wrapper around neovim.

progress_bar

??? (make a module out of these scripts?) - Collection of progress bars

rbenv

??? (not sure how universal this is) This script provides minimal working rbenv setup.

virtual_environments

The scripts in this directory activate virtual environments for Conda environments.

weather

These scripts should be used to demonstrate how get your local weather and/or weather forecasts.

webscraping

Simple scripts to demonstrate how to scrape websites in nushell. Requires query web plugin