Chatgpt Like Prompts
FleetingTable of Contents
- text
- comparing them
- image generation
- code helper
- life-hacking
- tooling
- Permalink
text
- https://chatgpt.com/ (of course)
- https://claude.ai/
- https://gemini.google.com/ -> I cannot use
- https://www.bing.com/copilot
- https://poe.com
- https://chat.mistral.ai/chat
- https://huggingface.co/chat
- https://www.perplexity.ai/
- https://you.com/
- https://pi.ai/talk
- notebooklm
https://notebooklm.google.com/
- phind
comparing them
dynamic run-name for github action
in github action, change the value of the run name of the workflow displayed in the github action web view such as
1. if the trigger is schedule or manual, set the value to "Nightly"
2. otherwise, set the name to the string "CI: {the commit message that triggered the workflow}"
chatgpt
name: ${{
contains(github.event_name, 'schedule') || contains(github.event_name, 'workflow_dispatch')
? 'Nightly'
: 'CI: ' + github.event.head_commit.message
}}
perplexity
run-name: >-
${{
github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
? 'Nightly'
: format('CI: {0}', github.event.head_commit.message)
}}
claude
run-name: >-
${{
github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
? 'Nightly'
: format('CI: {0}', github.event.head_commit.message)
}}
bing - copilot
steps:
- name: Set Run Name
id: set-run-name
run: |
if [[ "${{ github.event_name }}" == "schedule" || "${{ github.event_name }}" == "workflow_dispatch" ]]; then
echo "::set-output name=run_name::Nightly"
else
COMMIT_MESSAGE=$(git log -1 --pretty=%B)
echo "::set-output name=run_name::CI: $COMMIT_MESSAGE"
- name: Apply Run Name
run: echo "Run name: ${{ steps.set-run-name.outputs.run_name }}"
env:
GITHUB_RUN_NAME: ${{ steps.set-run-name.outputs.run_name }}
chatgpt o1-preview
same things. I don’t have the exact output because we did that on the machine of a friend that actually has access to the payable account.
my solution
run-name: "${{ format('{0}{1}', ( ( github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' ) && 'NIGHTLY' ) || '', github.event.head_commit.message) }}"
conclusion
none of them provided anything that was useful, yet there was a way to do this.
image generation
comparing them
generate a house that looks like a sock
In french, to make sure I tell it correctly
Génère une image d'une maison qui ressemble à une chaussette
chatgpt
That’s great
claude
It did its best to draw one. That’s impressive
Yet the result is…
leonardo
That’s not bad at all!
code helper
- copilot
- codeium
- cursor
https://www.trycursor.com/pricing
- sourcegraph
- supermaven
https://supermaven.com/pricing
life-hacking
- aider
- aidchat
https://github.com/sigoden/aichat
tooling
- https://github.com/simonw/llm
- ahyatt/llm: A package abstracting llm capabilities for emacs.