David Kimura PRO
Joined 7/18/2015
Drifting Ruby Owner
Ruby Rogues Panelist
David Kimura PRO said 3 months ago :
I'm glad you were able to figure out a solution, would you mind posting it in case it helps someone else?

David Kimura PRO said 3 months ago on Developing in Docker :
Smaller applications, I'm thinking like Campfire, makes sense to go without a dockerized environment. But, at the same time, if you have to context switch a lot between different applications, it can really solve environmental conflicts (different PG versions, imagemagick versions, etc.) Ideally, all of our apps will be on the same version and updated, but that's not always reality.

David Kimura PRO said 2 months ago on Custom Dashboard - Part 2 :
  john.wallace  Thank you for letting me know. I've updated the ZIP and Code tab with the code. I have no idea how I messed that up, but luckily, I was able to copy and paste all of the code from this example into the previous episode's code and it worked! 

David Kimura PRO said about 2 months ago on Drag and Drop with Hotwire :
The object that you're calling insert_at is nil. Try logging what the item is to make sure that it is being found. It's currently returning nil, so you should trace upwards to see what the params[:sgid] is being set to. If the params[:sgid] is nil, then you go upwards from there to what's calling the controller and find out why it is nil.

David Kimura PRO said about 1 month ago on Streaming LLM Responses :
This is considered the template or prompt format for communicating with the particular model that you're using. You can find more information and the specific templates on https://ollama.com/library/mixtral:latest. Since mistral is based on llama, it uses the [INST]prompt[/INST] template. If using gemma then the template would look something like <start_of_turn>model {{ .Response }}<end_of_turn>. It's basically formatting to yield better results from the model that is being used.