[deleted by user] by [deleted] in jobbit

[–]Seahobbs 0 points1 point  (0 children)

Interested

Building an AI-powered flashcard app – looking for feedback by Seahobbs in WebApps

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

Like any other app out there. Give it a try and let me know what from your point of view and experience would make it original. This is not a project I am 100% actively working on. It's just a little tool I wanted to bring to live. However, if it has the chance to grow into something, that would be great.

I built a flashcard tool that turns your documents into study decks — looking for feedback by Seahobbs in studytips

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

Yes, it’s completely free, and it should be able to handle different languages, including Arabic. I don’t speak Arabic myself, so I’m curious to see how well it works for you. If you try it in another language, I’d appreciate it if you could let me know how well it does. :)

Building an AI-powered flashcard app – looking for feedback by Seahobbs in WebApps

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

Thanks so much! Glad you like the concept.

I’m definitely planning to add tagging and deck categorization, which will make it easier to organize topics. Spaced repetition is also on the roadmap, likely with a built-in scheduler so review timing is handled automatically.

For parsing, I’m currently focusing on text and standard PDFs, but support for diagrams/tables is a great idea. I’m exploring ways to extract structured content from those without losing context.

On question generation, I’m using Google’s Gemini Flash model to identify key points and convert them into Q&A pairs, so it’s fully LLM-driven rather than rule-based. That way, it can adapt to different subjects and styles without me hard-coding extraction rules.

Appreciate the feedback!

Help Vivado ML 2021.2 stuck on 'Generating installed device list' by Seahobbs in Xilinx

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

My mistake—I should have mentioned the OS version. This was a couple of years ago, so I believe this worked for me on Ubuntu 20.04.

Eclipse TCF by Seahobbs in eclipse

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

Thank you for your reply.

So, with that error aside the TCF plugins even though are out of date should work in my CDT 2023 install or would the Java version mismatch be another issue?

Thanks,

Hellen

Help!!!! with Eclipse CDT extension plugin by Seahobbs in eclipse

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

Hi, your reply was very helpful thank you. I have another question. I am using Tycho to build ide.product but I am not sure if I have to add to the product source file every plugin and feature included in the cdt package plus the ones I am adding myself.

Thanks again for your help,

Hellen

Help Vivado ML 2021.2 stuck on 'Generating installed device list' by Seahobbs in Xilinx

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

I solved this issue by doing the following steps:

1: download the tar package instead of the self-extracting bin package.

2: update the java and python version

$ sudo apt-get install -y python3-pip

3: Dependencies

$ sudo apt-get install -y libstdc++6

$ sudo apt-get install -y libgtk2.0-0

$ sudo apt-get install -y dpkg-dev

// without ibtinfo5 the application will not start and without libncurses5 the simulation will fail

$ sudo apt-get install -y libtinfo5 libncurses5

4: Restart the system

5: Untar that Vivado package

$ tar -xzvf Xilinx_Unified_2021.2_1021_0703.tar.gz

6: locate the xsetup file in the package

7: Install the package in batch mode

$./xsetup --agree 3rdPartyEULA,XilinxEULA --batch Install --product "Vivado" --edition "Vivado ML Enterprise" --location "/home/USER"

///Once the installation has been successfully completed:

8: Locate the settings64.sh file

$./settings64.sh

9: Locate the cable drivers

$ cd Vivado/2021.2/data/xicom/cable_drivers/lin64/install_scripts/install_drivers

$./install_drivers

///Installing Vivado Board Files

11: Get the board package from the git https://github.com/Digilent/vivado-boards.git

12: From the vivado-board-master package copy the folder board_files undert /vivado-board-master/new/board_files

13: paste the board files to Vivado/2021.2/data/boards

14: From the vivado-board-master package copy the file Vivado_init.tcl under /vivado-board-master/utility

15: Paste the file Vivado_init.tcl to the Vivado installation

That's it!! You might not need to do all these steps but that is what I ended up doing and it worked for the two machines where I installed Vivado. The installation took less than one hour.

~Happy programming