TO 2023 REBRAND

This commit is contained in:
Bel LaPointe
2023-10-23 09:45:31 -06:00
parent 91799b978a
commit c739041642
10 changed files with 739 additions and 428 deletions

File diff suppressed because it is too large Load Diff

7
cv/pick_n.sh Normal file
View File

@@ -0,0 +1,7 @@
#! /bin/bash
cd "$(dirname "$(realpath "$BASH_SOURCE")")"
cat ./20* \
| gojq -c --yaml-input '.[] | [.grade, (.quantity | length), .]' \
| sort \
| head -n ${1:-${N:-15}} \
| $(which jq) -c

8
cv/prompts.yaml Normal file
View File

@@ -0,0 +1,8 @@
- topic: resume wording
src: https://www.linkedin.com/posts/thedanielbotero_use-these-chatgpt-prompts-if-you-want-to-activity-7119669945298284546-q1DA/?utm_source=share&utm_medium=member_desktop
prompt: |
Review my current resume and suggest improvements to ensure it is error-free, precise, and effectively communicates my skill, expertise, and experience. Provide feedback on the structure, including formatting and layout, and avoid any kind of personal opinions or preferences or biases.
- topic: LinkedIn profile headline
src: https://www.linkedin.com/posts/thedanielbotero_use-these-chatgpt-prompts-if-you-want-to-activity-7119669945298284546-q1DA/?utm_source=share&utm_medium=member_desktop
prompt: |
I work in Software Development as a Senior Software Engineer. Can you help me in creating a headline that will catch the interest of recruiters and possible employers?

10
cv/rendered.sh Normal file
View File

@@ -0,0 +1,10 @@
#! /bin/bash
cd "$(dirname "$(realpath "$BASH_SOURCE")")"
cat 2* \
| gojq -c --yaml-input '.[] | {when: .when, s: .rendered}' \
| grep -v null \
| grep -v '""' \
| $(which jq) -r -c . \
| sort \
| $(which jq) -s 'group_by(.when) | map({key: (.[0].when | tostring), value: [.[] | .s]}) | from_entries' \
| gojq --yaml-output