├── .github ├── scripts │ └── build_dmg.zsh └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CMakeLists.txt ├── GFLAGS_LICENSE.txt ├── Info.plist.in ├── LICENSE.md ├── README.md ├── carabiner.cpp ├── carabiner.h.in ├── doc └── assets │ ├── DS-logo-github.png │ ├── carabiner.png │ └── zulip-icon-circle.svg ├── mongoose.c └── mongoose.h /.github/scripts/build_dmg.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Symmetry/carabiner/HEAD/.github/scripts/build_dmg.zsh -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Symmetry/carabiner/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Symmetry/carabiner/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Symmetry/carabiner/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Symmetry/carabiner/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Symmetry/carabiner/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /GFLAGS_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Symmetry/carabiner/HEAD/GFLAGS_LICENSE.txt -------------------------------------------------------------------------------- /Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Symmetry/carabiner/HEAD/Info.plist.in -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Symmetry/carabiner/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Symmetry/carabiner/HEAD/README.md -------------------------------------------------------------------------------- /carabiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Symmetry/carabiner/HEAD/carabiner.cpp -------------------------------------------------------------------------------- /carabiner.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Symmetry/carabiner/HEAD/carabiner.h.in -------------------------------------------------------------------------------- /doc/assets/DS-logo-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Symmetry/carabiner/HEAD/doc/assets/DS-logo-github.png -------------------------------------------------------------------------------- /doc/assets/carabiner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Symmetry/carabiner/HEAD/doc/assets/carabiner.png -------------------------------------------------------------------------------- /doc/assets/zulip-icon-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Symmetry/carabiner/HEAD/doc/assets/zulip-icon-circle.svg -------------------------------------------------------------------------------- /mongoose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Symmetry/carabiner/HEAD/mongoose.c -------------------------------------------------------------------------------- /mongoose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Symmetry/carabiner/HEAD/mongoose.h --------------------------------------------------------------------------------