Forwarded from Находки в опенсорсе
A utility tool powered by fzf for using git interactively.
This tool is designed to help you use git more efficiently. It's lightweight and easy to use.
Also integrates with: diff-so-fancy, delta, bat, emoji-cli.
https://github.com/wfxr/forgit
#shell #git
This tool is designed to help you use git more efficiently. It's lightweight and easy to use.
Also integrates with: diff-so-fancy, delta, bat, emoji-cli.
https://github.com/wfxr/forgit
#shell #git
Forwarded from Находки в опенсорсе
A bulk renaming #rust tool for files.
Features:
- Rename one or several patterns in your files using the powerful Rust regex engine.
- Add an increment as a prefix or suffix to files.
https://github.com/adriangoransson/renamer
Features:
- Rename one or several patterns in your files using the powerful Rust regex engine.
- Add an increment as a prefix or suffix to files.
https://github.com/adriangoransson/renamer
Forwarded from Freestanding
2007.00752.pdf
854.2 KB
Forwarded from Freestanding
Medium
Understanding Closures in Rust.
fn, Fn, FnMut, FnOnce
Why Is It So Hard to Be Rational? (Score: 152+ in 5 hours)
Link: https://readhacker.news/s/4Szyu
Comments: https://readhacker.news/c/4Szyu
Link: https://readhacker.news/s/4Szyu
Comments: https://readhacker.news/c/4Szyu
The New Yorker
Why Is It So Hard to Be Rational?
The real challenge isn’t being right but knowing how wrong you might be.
An easy for begineer configuration for emacs with evil mode
https://github.com/ianyepan/yay-evil-emacs
https://github.com/ianyepan/yay-evil-emacs
GitHub
GitHub - ianyepan/yay-evil-emacs: 😈 A lightweight literate Emacs config with even better "better defaults". Shipped with a custom…
😈 A lightweight literate Emacs config with even better "better defaults". Shipped with a custom theme! - ianyepan/yay-evil-emacs
Telegram pywal palette generator
https://github.com/agnipau/telegram-palette-gen
https://github.com/agnipau/telegram-palette-gen
GitHub
GitHub - agnipau/telegram-palette-gen: A bash script that generates themes for Telegram based on an arbitrary 16-colors palette…
A bash script that generates themes for Telegram based on an arbitrary 16-colors palette or by sourcing the colors generated by pywal/wal. - GitHub - agnipau/telegram-palette-gen: A bash script tha...
# DIY clipboard manager #Notes #MyCreation
This was the part of larbs but i never able to get it working until now.
Using xclip, xdotool and dmenu to fetch clipboard contents
*Dependancies:
- xdotool
- xclip
- dmenu
- sxhkd (optional and depends on how you manage keybinds)
using dmenu later we will get the list of copied texts
but this file need to updated everytime we copied something.
So we can either cron job it or use a trigger recognizing program like entr.
So i choose to create aliases instead
and this sxhkd hotkey will be use to get the list of content.
This was the part of larbs but i never able to get it working until now.
Using xclip, xdotool and dmenu to fetch clipboard contents
*Dependancies:
- xdotool
- xclip
- dmenu
- sxhkd (optional and depends on how you manage keybinds)
xclip -sel c -o
will put selected clipboard content into fileusing dmenu later we will get the list of copied texts
but this file need to updated everytime we copied something.
So we can either cron job it or use a trigger recognizing program like entr.
So i choose to create aliases instead
alias \
cc="{xclip -sel c -o -r; printf '\n'; } >> ~/.local/share/larbs/snippets" \
cr=" : > ~/.local/share/larbs/snippets"
cc
will update the clipboard and cr
will clear all the fileand this sxhkd hotkey will be use to get the list of content.
super + Insert
xdotool type "$(dmenu -i -l 50 < ~/.local/share/clipboard/snippets)"