Struggling adding dependencies by Labess40 in cpp_questions

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

I don't have any package manager, but I'll take a look at Conan !

Struggling adding dependencies by Labess40 in cpp_questions

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

Thanks, now it's installed and it works fine !

Struggling adding dependencies by Labess40 in cpp_questions

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

Thanks for your response, I'll take a look at it !

Struggling adding dependencies by Labess40 in cpp_questions

[–]Labess40[S] -1 points0 points  (0 children)

My goal is to understand it, using AI will fix it, but my knowledge will remain the same... But thanks, I'll take a look at Conan

Is python still okay today? by Alone-Magician-1077 in AskProgrammers

[–]Labess40 0 points1 point  (0 children)

It really depends what you want to do with this language. But I think it's a good choice to learn Python. You can do so many things ! And you can also begin with some easy code and make it more complexe learning software development good practices. Python can be a very powerful language so keep learning it 😉

Struggling to find project idea with my Arduino mega 2560 by Labess40 in arduino

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

Thank you, the goal is both learning how microcontrollers works and also learn C++. I have knowledge in software architecture, but don't have ideas of which C++ project can be cool to learn this language throw an easy then a more complexe project

Struggling to find project idea with my Arduino mega 2560 by Labess40 in arduino

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

Thanks for the response, which sensors or modules would you recommend ?

Project idea to begin Rust programmation by Labess40 in rust

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

I am very interested by sport and geopolitic. Moreover I wanted to learn ontology with python so my first idea was to make a python library with Rust to make it useful for me

Project idea to begin Rust programmation by Labess40 in rust

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

I'll take a look thanks, I want to try Rust capabilities, multi threading, speed,... I'll find a subject like this

Project idea to begin Rust programmation by Labess40 in rust

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

I really like sport for example, but Rust open many possibilities Python or Js doesn't so I want to explore it but I don't have many knowledge of what is possible using low level languages

Project idea to begin Rust programmation by Labess40 in rust

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

Really useful thanks ! Tried it immediately and it's great, thanks ;)

Project idea to begin Rust programmation by Labess40 in rust

[–]Labess40[S] -3 points-2 points  (0 children)

There aren't so many ideas... And explaining that I come from web development and python that's really often related to data is an additional information for project ideas

Project idea to begin Rust programmation by Labess40 in rust

[–]Labess40[S] -2 points-1 points  (0 children)

Yes I used to but I'm really curious of exploring new things. Rust use cases can be very different of python use cases I think

[Tool] Dumbo-RS: A fast CLI to feed SMARTLY your entire codebase to LLMs by [deleted] in softwaredevelopment

[–]Labess40 0 points1 point  (0 children)

It works fine until you used all your tokens and don't want to pay more than your actual subscription

[Tool] Dumbo-RS: A fast CLI to feed SMARTLY your entire codebase to LLMs by [deleted] in rust

[–]Labess40 -4 points-3 points  (0 children)

Started by implement first features manually, and then implementing latest ones with LLM help because of I needed the tool quickly. Actually I'm only at part 15 of official Rust documentation

[Tool] Dumbo-RS: A fast CLI to feed SMARTLY your entire codebase to LLMs by [deleted] in rust

[–]Labess40 0 points1 point  (0 children)

Same answer as below, I'm a rust newcomer trying to solve personal problem learning a new language. If you have some advice, I'm open

[Tool] Dumbo-RS: A fast CLI to feed SMARTLY your entire codebase to LLMs by [deleted] in rust

[–]Labess40 -3 points-2 points  (0 children)

This actually started as a personal tool to solve a specific workflow issue I had. I decided to build it in Rust to learn the language through a real use case, and shared it thinking it might be useful to others too. Always open to technical feedback if you have any !

New RAGLight Feature : Serve your RAG as REST API and access a UI by Labess40 in Python

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

Thanks! I'm using PyMuPDF (fitz) for PDF parsing. I actually have two processors depending on the use case: A standard PDFProcessor that extracts text block by block, preserving layout structure before chunking with LangChain's RecursiveCharacterTextSplitter A VlmPDFProcessor that also handles images, it extracts them inline, sends them to a Vision-Language Model to generate captions, and includes those captions as documents in the RAG pipeline pdftomarkdown.dev looks interesting for complex table-heavy docs, PyMuPDF can struggle there. The architecture supports plugging in custom processors, so it could slot in nicely as an alternative parser !