This is a list of aliases/triggers I make for MUSHclient which I think can be useful to others.
Update: Created as a repo for easy install, see chenasraf/git-open
Creates git aliases to open git URLs for project, new PR, PR list and CI-CD/Actions.
Usage: git open
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
ollama_prompt() { | |
prompt="$@" | |
endpoint="http://localhost:11434" | |
curl $endpoint/api/generate -XPOST \ | |
--no-buffer \ | |
-s \ | |
-H 'Content-Type: application/json' \ |
OlderNewer