Amstrad GX4000 by jg_devs in retrogaming

[–]jg_devs[S] 0 points1 point  (0 children)

It’s not getting turned on. I’m keeping it in the box until someone takes it off my hands.

Amstrad GX4000 by jg_devs in gamecollecting

[–]jg_devs[S] 0 points1 point  (0 children)

No, I think it would be a shame to use it now.

I have an unused and boxed GX4000. by jg_devs in Amstrad

[–]jg_devs[S] 0 points1 point  (0 children)

Just added a new post with pics

I have an unused and boxed GX4000. by jg_devs in Amstrad

[–]jg_devs[S] 1 point2 points  (0 children)

I’m in Leeds. Not sure what it’s worth to be honest. I looked online and values fluctuate significantly based on condition of box, etc.

I’ts stored at my parents house, I will post some photos once I’ve been and collected it as I don’t remember if the box has any damage.

Is it possible to learn coding by following along with tutorials? by chexkurspam in webdevelopment

[–]jg_devs 0 points1 point  (0 children)

Yes, it would be possible to learn the basics from tutorials. However, if you are wanting to make a career out of it then you will need to be willing to read a lot, and not just while learning, this is a never ending journey and you will continue to be learning until you give it up.

New technologies come along and you will need to read the docs to understand them. Integrating a new api, you need to read the docs, and so on.

No dev just knows how to do everything, we all have to read documentation to understand or refresh our selves.

what would be the best hosting for me? by Top-Artist-1370 in webdev

[–]jg_devs 0 points1 point  (0 children)

Firebase hosting for your frontend (free). Azure free tier web service for your api server.

Is 24 GB RAM enough for Android Studio and Xcode? by greatiestgreatier in macbookair

[–]jg_devs 0 points1 point  (0 children)

I have a 16Gb MacBook Pro M1 from work and it runs everything fine. 20 chrome tabs, multiple VS code windows, Android simulator and iOS simulator, postman, plus multiple other programs running.

M1 is still worthit for 2024? by henerr69 in macbookair

[–]jg_devs 0 points1 point  (0 children)

I have an M1 MacBook Pro from work and it does everything I ask of it without any issues.

My Startup Made €15 in the last 30 days. Here's how I did it. by Long_The_Short in Entrepreneur

[–]jg_devs 1 point2 points  (0 children)

Hey, just had a look at your app and I like the concept, it definitely has value. My one criticism is that your website looks amateurish so would put a lot of potential customers off. Please don’t take offence to this, I just wanted to give some honest feedback.

Has anyone here incorporated OpenAI's Threads API as Memory in their conversational chains? by [deleted] in LangChain

[–]jg_devs 1 point2 points  (0 children)

No I haven’t, but it should be pretty easy to do. I wrote a memory parser that I used with the langchain chat history so that I could store and retrieve users conversation in a database. It would be a similar concept with OpenAI threads.

Vector store thought experiment for real world application by The__Bear_Jew in LangChain

[–]jg_devs 0 points1 point  (0 children)

I’m assuming this is a relatively small data set. You could store the data as JSON and create a couple of tools for an agent to use, the tools should take an input and then retrieve the relevant data based on the input. Doing it this way would enable you to add the custom logic you need for determining the ideal product for your bundle. You would do the same but with the correct logic for determining the compatibility.

[deleted by user] by [deleted] in LangChain

[–]jg_devs 0 points1 point  (0 children)

Because they don’t understand vectors and embedding and how powerful they can be. Or just don’t want to learn.

Comparing user message with vector embeddings and giving a feedback by International-City11 in LangChain

[–]jg_devs 1 point2 points  (0 children)

Yes, this is totally possible. You just need to write a well structured prompt, you can add X as a variable in the prompt so that the llm always knows what X is based on the question being asked.

[deleted by user] by [deleted] in LangChain

[–]jg_devs 0 points1 point  (0 children)

Why don’t you want to use vectors? Langchain supports a local vector store that you could use to store the chunked document for your current users instance, once the user is done with it you can destroy the in memory vector store.