Konubinix' opinionated web of thoughts

Chatgpt Like Prompts

Fleeting

chatgpt like prompts (LLM)

text

  1. https://chatgpt.com/ (of course)
  2. https://claude.ai/
  3. https://gemini.google.com/ -> I cannot use
  4. https://www.bing.com/copilot
  5. https://poe.com
  6. https://chat.mistral.ai/chat
  7. https://huggingface.co/chat
  8. https://www.perplexity.ai/
  9. https://you.com/
  10. https://pi.ai/talk
  11. notebooklm

https://notebooklm.google.com/

  1. phind

comparing them

[2024-09-19 Thu] 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

  1. https://app.leonardo.ai/image-generation
  2. https://chatgpt.com/
  3. https://claude.ai/

comparing them

[2024-09-19 Thu] 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

  1. copilot
  2. codeium
  3. cursor

https://www.trycursor.com/pricing

  1. sourcegraph

https://accounts.sourcegraph.com/sign-in?redirect_to=L29hdXRoL2F1dGhvcml6ZT9jbGllbnRfaWQ9c2Ftc19jaWRfMDE4ZDU3ODAtNmI1ZS03ZGY0LWEzYTAtZjhhZmU4MWJjZDliJm5vbmNlPWV5SmpjM0ptVkc5clpXNGlPaUkxTmpBNE9UZ3dOaTFqTkRKaUxUUm1PREV0WWpFMk1pMHhOalJrT0dOaU1XTXhNV1VpTENKeVpXUnBjbVZqZENJNkltaDBkSEJ6T2k4dmMyOTFjbU5sWjNKaGNHZ3VZMjl0TDNObFlYSmphQ0lzSW5BaU9pSnpZVzF6SW4wJTNEJnJlZGlyZWN0X3VyaT1odHRwcyUzQSUyRiUyRnNvdXJjZWdyYXBoLmNvbSUyRi5hdXRoJTJGY2FsbGJhY2smcmVzcG9uc2VfdHlwZT1jb2RlJnNjb3BlPW9wZW5pZCtwcm9maWxlK2VtYWlsJnN0YXRlPWV5SmpjM0ptVkc5clpXNGlPaUkxTmpBNE9UZ3dOaTFqTkRKaUxUUm1PREV0WWpFMk1pMHhOalJrT0dOaU1XTXhNV1VpTENKeVpXUnBjbVZqZENJNkltaDBkSEJ6T2k4dmMyOTFjbU5sWjNKaGNHZ3VZMjl0TDNObFlYSmphQ0lzSW5BaU9pSnpZVzF6SW4wJTNE

  1. supermaven

https://supermaven.com/pricing

life-hacking

  • aider

https://aider.chat/

  • aidchat

https://github.com/sigoden/aichat

tooling

https://github.com/ahyatt/llm