π»πͺ
This file contains hidden or 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
# Technical Prompt Enhancement and Clarification Agent | |
## Version: 1.0 | |
## Purpose: | |
To analyze technical prompts, gather latest information via MCPs, identify prerequisites, ask clarifying questions, and produce a comprehensive, unambiguous specification that eliminates assumptions and guesswork. | |
## Role: |
This file contains hidden or 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
DH_USERNAME= | |
DH_PASSWORD= | |
DOCKER_HUB_COOKIE="" |
This file contains hidden or 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
// | |
// This file is part of ZenProfits. | |
// Copyright (C) 2021, Luis MartΓnez. | |
// | |
// Please refer to AUTHORS.rst for a complete list of Copyright holders. | |
// | |
// ZenProfits is free software: you can redistribute it and/or modify | |
// it under the terms of the GNU General Public License as published by | |
// the Free Software Foundation, either version 3 of the License, or | |
// (at your option) any later version. |
This file contains hidden or 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
# This is a python script to send a multipart email message | |
# Replace these variables with its values: | |
# from_address = "" | |
# to_address = "" | |
# server_url = "" <--------------- You can use smtp.gmail.com | |
# server_port = "" | |
# password = "" | |
# | |
# You should write your message in the text variable and the html variable (for an html version of the message) |
This file contains hidden or 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
# This script deletes a submodule from the repository | |
# Usage: bash remove-submodule.sh <submodule name> | |
submodule_name=$(echo "$1" | sed 's/\/$//'); shift | |
exit_err() { | |
[ $# -gt 0 ] && echo "fatal: $*" 1>&2 | |
exit 1 | |
} |
This file contains hidden or 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
# This script uninstalls all pip installed packages in the global scope. Must be run as root. | |
for PYTHON in $( ls -1 /usr/local/lib/ ); do | |
if [ "$( echo ${PYTHON} | cut -c -6 )" == "python" ]; then | |
PYTHONVER="$( echo ${PYTHON} | cut -c 7,8,9 )" | |
PYTHONVERSHT="$( echo ${PYTHONVER} | cut -c 1 )" | |
if [ -x "/usr/local/bin/pip${PYTHONVER}" ] || [ -x "/usr/bin/pip${PYTHONVER}" ]; then | |
PIPBIN="pip${PYTHONVER}" |
This file contains hidden or 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
# This is a script to release a new debian package using gitbuildpackage | |
# Replace <author name> and <author email> with the author data, <gnupg key> with your signing gpg key and <version> with the new version of the package, including the debian revision (ex. 2.0.1-1) | |
export DEBFULLNAME="<author name>" | |
export DEBEMAIL="<author email>" | |
git config --global user.name "<author name>" | |
git config --global user.email "<author email>" | |
git add --all . | |
git commit -a |
This file contains hidden or 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
# This command will change the date of a specific commit | |
# Replace <commit-hash> with the actual commit hash | |
git filter-branch -f --env-filter \ | |
'if [ $GIT_COMMIT = <commit-hash> ] | |
then | |
export GIT_AUTHOR_DATE="May 19 16:18:03 2016 -0400" | |
export GIT_COMMITTER_DATE="May 19 16:18:03 2016 -0400" | |
fi' |
This file contains hidden or 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
Python 11 hrs 2 mins βββββββββββββββββββββ 32.6% | |
Bash 10 hrs 50 mins βββββββββββββββββββββ 32.0% | |
JSON 3 hrs 23 mins βββββββββββββββββββββ 10.0% | |
Markdown 2 hrs 34 mins βββββββββββββββββββββ 7.6% | |
TypeScript 1 hr 26 mins βββββββββββββββββββββ 4.3% |
NewerOlder