Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Laverna | 8,700 | 2 years ago | 2 | April 22, 2015 | 448 | mpl-2.0 | JavaScript | |||
Laverna is a JavaScript note taking application with Markdown editor and encryption support. Consider it like open source alternative to Evernote. | ||||||||||
Git It Electron | 4,393 | 2 | 22 days ago | 1 | September 20, 2015 | 122 | bsd-2-clause | Perl | ||
:computer: :mortar_board: Git-it is a (Mac, Win, Linux) Desktop App for Learning Git and GitHub | ||||||||||
Jpexs Decompiler | 3,676 | 2 months ago | gpl-3.0 | Java | ||||||
JPEXS Free Flash Decompiler | ||||||||||
Xnode | 2,713 | 3 months ago | 70 | mit | C# | |||||
Unity Node Editor: Lets you view and edit node graphs inside Unity | ||||||||||
Awesome Devenv | 2,532 | a month ago | 19 | |||||||
A curated list of awesome tools, resources and workflow tips making an awesome development environment. | ||||||||||
Git Cola | 2,053 | 7 days ago | 3 | June 11, 2022 | 94 | gpl-2.0 | Python | |||
git-cola: The highly caffeinated Git GUI | ||||||||||
Git Interactive Rebase Tool | 1,255 | 4 | 2 months ago | 2 | April 29, 2022 | 20 | other | Rust | ||
Native cross-platform full feature terminal-based sequence editor for git interactive rebase. | ||||||||||
Abapgit | 1,220 | 20 hours ago | 108 | mit | ABAP | |||||
Git client for ABAP | ||||||||||
Cn Vscode Docs | 995 | 1 | a year ago | 1 | October 02, 2016 | 16 | mit | |||
VScode说明文档翻译 | ||||||||||
Upmgitextension | 645 | 3 months ago | 4 | mit | C# | |||||
This package extends the UI of Unity Package Manager (UPM) for the packages installed from git repository. |
Awesome personal dotfiles
Installation Shell Scripts Git Docs
# with homebrew or linuxbrew
brew install denisidoro/tools/dotfiles
dot self install
# with curl
bash <(curl -s https://raw.githubusercontent.com/denisidoro/dotfiles/master/scripts/self/install)
# with wget
bash <(wget -qO- https://raw.githubusercontent.com/denisidoro/dotfiles/master/scripts/self/install)
# with git
export DOTFILES="${HOME}/dotfiles"
git clone https://github.com/denisidoro/dotfiles "$DOTFILES"
"${DOTFILES}/bin/dot" self install
dot::clone() {
git clone https://github.com/denisidoro/dotfiles "$DOTFILES"
}
dot::clone_if_necessary() {
[ -n "${DOTFILES:-}" ] && [ -x "${DOTFILES}/bin/dot" ] && return
export DOTFILES="${HOME}/dotfiles"
$(dot::clone >/dev/null || true)
}
dot::source() {
dot::clone_if_necessary
source "${DOTFILES}/scripts/core/main.sh"
}
dot::source
There's a single entry point for most scripts, which is the dot
command:
dot <ctx> <cmd> [<args>...] # example: dot rice pipes
Some scripts are documented in /docs. For all other scripts, run:
dot <ctx> <cmd> --help # example: dot rice pipes --help
$ dot shell zsh benchmark
Benchmark #1: /usr/bin/time /bin/zsh -i -c exit
Time (mean ± σ): 35.6 ms ± 3.0 ms [User: 14.0 ms, System: 16.0 ms]
Range (min … max): 32.7 ms … 48.8 ms 67 runs
In order to setup your own dotfiles, I recommend using dotly or Sloth, which are frameworks inpired by this repository.