Skip to content

Instantly share code, notes, and snippets.

View Digital-gitz's full-sized avatar
🎯
Focusing

G-throw\Hub Digital-gitz

🎯
Focusing
View GitHub Profile
@sts10
sts10 / rust-command-line-utilities.markdown
Last active June 11, 2024 23:45
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
@JAffleck
JAffleck / editWithNeoVIm.reg
Created June 17, 2018 05:42
Neovim - Edit With Neovim WIndows Context menu
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\Neovim]
@="Edit with Neovim"
"Icon"="C:\\tools\\neovim\\Neovim\\bin\\nvim-qt.exe"
[HKEY_CLASSES_ROOT\*\shell\Neovim\command]
@="\"C:\\tools\\neovim\\Neovim\\bin\\nvim-qt.exe\" \"%1\""
@FollowMeDown
FollowMeDown / debian-source-pkg-build.txt
Last active April 4, 2024 22:30
How to create debian package from source
In any GNU/Linux distribution, which have a package manager on board, is recommended to install software by using "packages".
Building from source
Step 1. GPG key
The first thing you need is generate a gpg key.
Package will be signed by this key.
Run this commands in your terminal:
@oxguy3
oxguy3 / embiggener.js
Last active March 13, 2024 05:44
Greasemonkey script to find the biggest version of an image on a variety of sites
// ==UserScript==
// @name Embiggener
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Finds the biggest possible version of any image
// @author Hayden Schiff (oxguy3)
// @match *://*/*
// @grant unsafeWindow
// ==/UserScript==
@soniacs
soniacs / default.css
Created December 26, 2012 17:03
HTML & CSS boilerplate
@font-face {}
/* COMMON STYLES
-------------------------------- */
/* LAYOUT */
/* {position:absolute;} */
/* {position:relative;} */
/* {float:left;} */
/* {float:right;} */