Search found 7 matches

by blue21
Jan 11, 2022 12:34
Forum: Archive
Topic: quitting smoking app
Replies: 3
Views: 2272

quitting smoking app

hi...

here is a very basic quitting smoking app/program in freebasic

https://github.com/ronblue77/fb_quitting_smoking
by blue21
Dec 29, 2021 15:14
Forum: Beginners
Topic: are there better AI algorithms for offline [non spam] chatbots?
Replies: 5
Views: 1301

Re: are there better AI algorithms for offline [non spam] chatbots?

@srvaldez I meant offline nonspam chatbots... just cause I'm asking a question about chatbots intelligence doesn't mean I wanna create a spam bot just like I don't assume that the fact you're programing in freebasic and other languages means you hack sits or code computer viruses... here is one of m...
by blue21
Dec 29, 2021 14:28
Forum: Beginners
Topic: are there better AI algorithms for offline [non spam] chatbots?
Replies: 5
Views: 1301

Re: are there better AI algorithms for chatbots?

hello... i'm looking at old chatbots i used to collect during the mid-2000's and I found this interesting text file explaining how "ECC-ELIZA V 4.09" works thought it would be interesting to share and maybe try to make sense or re-code it in freebasic : HOW-WRKS.TXT - Explains how ECC-Eliz...
by blue21
Dec 29, 2021 13:49
Forum: Beginners
Topic: are there better AI algorithms for offline [non spam] chatbots?
Replies: 5
Views: 1301

are there better AI algorithms for offline [non spam] chatbots?

hello. I would like to ask if anyone knows or can give simple links or code examples for better algorithms for chatbots in freebasic - all my chatbots use more or less the same simple algorithm that is: if the input contains these keyword(s) replay a random replay from these replies. that's basicall...
by blue21
Dec 29, 2021 9:57
Forum: Projects
Topic: Chatbot Danny
Replies: 0
Views: 2186

Chatbot Danny

hi... I've written a chatbot in freebasic called "chatbot Danny" it's dedicated to a friend of mine. the chatbot is for both Linux and Windows with TTS abilities + it's a GUI chatbot using FLTK library and freebasic wrapper for it - here is a link to the chatbot repository on GitHub. this...
by blue21
Nov 15, 2021 15:05
Forum: Libraries Questions
Topic: fltk gui question - how to auto scroll down?
Replies: 2
Views: 1659

Re: fltk gui question - how to auto scroll down?

hi imortis...

thank you for your help... as well as to the answer how to make only a vertical scroll bar (word wrapper) to the text editor

Code: Select all

Fl_Text_DisplayWrapMode(*Text_Display, WRAP_AT_BOUNDS, 0)
by blue21
Nov 15, 2021 12:56
Forum: Libraries Questions
Topic: fltk gui question - how to auto scroll down?
Replies: 2
Views: 1659

fltk gui question - how to auto scroll down?

hi sorry for a silly question but I trying to dev a gui app with fltk library in freebasic - how do I make the fl_text_editor widget auto scroll down to the end of the last text - I've been searching on the documentation and manuals and in the forum and just couldn't wrap my brain on that... here is...