https://martinfowler.com/articles/exploring-gen-ai.html
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
# Created to accompany https://martinfowler.com/articles/exploring-gen-ai.html#memo-10 | |
# | |
# Prerequisites: | |
# - pip install pyautogen | |
# - pip install python-dotenv | |
# - git clone [email protected]:openmrs/openmrs-react-components.git | |
# - .env file in the same directory with the respective env variables needed for the model connection | |
# | |
# Implementation based on https://microsoft.github.io/autogen/docs/notebooks/agentchat_function_call_code_writing/ | |
# Prompt based on docs at https://testing-library.com/docs/react-testing-library/migrate-from-enzyme/ |
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
#!/bin/bash | |
set -e | |
RED='\033[0;31m' | |
GREEN='\033[0;32m' | |
BLUE='\033[1;34m' | |
YELLOW='\033[1;33m' | |
NC='\033[0m' # No Color | |
BRANCH_AHEAD_PATTERN="^.*ahead.*$" | |
NOT_STAGED_PATTERN="^.*not staged.*$" |
Erik Dörnenburg, Martin Fowler “Architecture without Architects”
Pat Kua, "The Well-Rounded Architect"
- https://www.slideshare.net/thekua/the-well-rounded-architect
- https://www.safaribooksonline.com/library/view/oreilly-software-architecture/9781491958490/video284896.html
Pat Kua, "The Geek’s Guide to Leading Teams"
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
#https://github.com/schacon/ruby-git | |
#https://github.com/es-analysis/plato | |
require 'git' | |
################################## | |
# root location of git repository | |
root_location = '/path/to/my/repo' | |
# JS scripts folder, relative to folder where script is started |
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
#!/bin/sh | |
## | |
# This is a script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# Run in interactive mode with: | |
# $ sh -c "$(curl -sL https://raw.github.com/gist/2108403/hack.sh)" | |
# | |
# or run it without prompt questions: |