Skip to content

Instantly share code, notes, and snippets.

@tmeusburger
tmeusburger / rust-command-line-utilities.markdown
Created November 26, 2023 07:13 — forked from sts10/rust-command-line-utilities.markdown
A curated list of command-line utilities written in Rust

A curated list of command-line utilities written in Rust

Note: I have moved this list to a proper repository. I'll leave this gist up, but it won't be updated. To submit an idea, open a PR on the repo.

Note that I have not tried all of these personally, and cannot and do not vouch for all of the tools listed here. In most cases, the descriptions here are copied directly from their code repos. Some may have been abandoned. Investigate before installing/using.

The ones I use regularly include: bat, dust, fd, fend, hyperfine, miniserve, ripgrep, just, cargo-audit and cargo-wipe.

  • atuin: "Magical shell history"
  • bandwhich: Terminal bandwidth utilization tool
@tmeusburger
tmeusburger / solozrized.txt
Created September 20, 2021 09:23 — forked from scuba323/solozrized.txt
Solarized WeeChat Setup
# /secure passphrase A-PASSWORD
# ---- Defaults ----
/set irc.server_default.username "tracphil"
/set irc.server_default.nicks "tracphil, tracphil_"
/set irc.server_default.sasl_mechanism dh-blowfish
# ---- IRC Servers ----
# Nick and auth settings for freenode
/server add freenode chat.freenode.net
@tmeusburger
tmeusburger / mapstruct.java
Created October 6, 2017 00:44
Mapstruct Example Question
public class SourceObject {
private String trackingNumber;
public String getTrackingNumber() {
return trackingNumber;
}
public void setTrackingNumber(String trackingNumber) {
this.trackingNumber = trackingNumber;
}
@tmeusburger
tmeusburger / 0_reuse_code.js
Created July 17, 2017 18:25
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console

Keybase proof

I hereby claim:

  • I am tmeusburger on github.
  • I am opus (https://keybase.io/opus) on keybase.
  • I have a public key ASCxp2s1kRKEdSDx4X0SvkqpMJlV0sQvrWe9EVWWitgK_Qo

To claim this, I am signing this object:

@tmeusburger
tmeusburger / .screenrc
Created July 7, 2015 16:49
Screen configuration file
# kill startup message
startup_message off
# detach on hangup
autodetach on
# define a bigger scrollback, default is 100 lines
defscrollback 30000
# Make the bell visual!