Show HN: Vomitorium – all of your project in 1 text file
npmjs.com
Show HN: Vomitorium – all of your project in 1 text file
1–10 of 56 posts
Re: Show HN: Vomitorium – all of your project in 1 text file
#2Can you go 1 more step? Is there a way to not just dump someone's project into a plain text file, but sometime intelligently craft it into a ready to go prompt? I could use that!
Here's my user test: https://www.youtube.com/watch?v=sTPTJ4ladiI
Re: Show HN: Vomitorium – all of your project in 1 text file
#3This made me laugh. Thanks! Can you go 1 more step? Is there a way to not just dump someone's project into a plain text file, but sometime intelligently craft it into a ready to go prompt? I could use that! Here's my user test: https://www.youtube.com/watch?v=sTPTJ4ladiI
It does this, and smartly, using tree-sitter, for quite a few tree-sitter supported languages.
Re: Show HN: Vomitorium – all of your project in 1 text file
#4This made me laugh. Thanks! Can you go 1 more step? Is there a way to not just dump someone's project into a plain text file, but sometime intelligently craft it into a ready to go prompt? I could use that! Here's my user test: https://www.youtube.com/watch?v=sTPTJ4ladiI
> Can you go 1 more step? Is there a way to not just dump someone's project into a plain text file, but sometime intelligently craft it into a ready to go prompt? I could use that! https://aider.chat/ It does this, and smartly, using tree-sitter, for quite a few tree-sitter supported languages.
Re: Show HN: Vomitorium – all of your project in 1 text file
#5Re: Show HN: Vomitorium – all of your project in 1 text file
#6- Dump all .py files into out.txt (for copy/paste into a LLM)
> find . -name "*.py" -exec cat {} + > out.txt
- Sort all .py files by number of lines
> find . -name '*.py' -exec wc -l {} + | sort -n
Re: Show HN: Vomitorium – all of your project in 1 text file
#7Love the name :D.
> A commonly held but erroneous notion is that Ancient Romans designated spaces called vomitoria for the purpose of literal vomiting, as part of a binge-and-purge cycle
Re: Show HN: Vomitorium – all of your project in 1 text file
#8Re: Show HN: Vomitorium – all of your project in 1 text file
#9Re: Show HN: Vomitorium – all of your project in 1 text file
#10Similar project: https://github.com/yamadashy/repopack