Question Answering with YouTube Videos Using RAG in LangChain Programming Computer Science by usmanmalik57 … with [PDF documents](https://www.daniweb.com/programming/computer-science/tutorials/541732/paris-olympics-ticket-information… and [SQL databases](https://www.daniweb.com/programming/computer-science/tutorials/541771/using-natural-language-to… method. The method's response is displayed on the console. The process continues until the user types `bye`.… Claude 3 Opus Vs. Google Gemini Vs. GPT-4 for Zero-Shot Text Classification Programming Computer Science by usmanmalik57 … and Chat-GPT on another dataset](https://www.daniweb.com/programming/computer-science/tutorials/541335/comparing-google-gemini-pro-with-openai…, which you can retrieve by [signing up for Claude console](https://console.anthropic.com/login?returnTo=%2F). You can call the `message… Console Programming Programming Software Development by Iron_Cross I've been wondering about console programming. Not the book example type stuff, but the 'real' console programming. Stuff that seems to use things like… Re: Console Programming Programming Software Development by Iron_Cross … in it. And actualy, I'm really talking about a console program within a GUI program. I.E: You've got… the main window has a section that looks like a console window, and that's where most of the input and… Re: Console Programming Programming Software Development by Ancient Dragon quite frankly I don't think there are a whole lot of programs out there in the commercial world that use win32 api console functions very extensively -- most programs have GUI front ends. But [URL="http://www.codexxi.com/"]here[/URL] is a link to some example programs. Re: Console Programming Programming Software Development by Ancient Dragon [URL="http://www.codeproject.com/cpp/EditBin.asp"]Here[/URL] is one example of how that's done. Re: Console Programming Programming Software Development by Ancient Dragon [URL="http://www.codeguru.com/Cpp/misc/misc/article.php/c277"]Here[/URL] is another example Help with an return to console/exit program question Programming Software Development by bunifrog …balance = loanAmount; //Calls in the console Console c = System.console(); //Programming infromation System.out.println(); System.out… (c == null) { System.err.println("Console Error."); System.exit(5); } //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\\ //=30… Re: Help with an return to console/exit program question Programming Software Development by bunifrog … loanAmount; //Calls in the console Console c = System.console(); //Programming infromation System.out.println(); System…c == null) { System.err.println("Console Error."); System.exit(5); } //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\\… C# Console Programming Help Programming Software Development by jmurph333 I am currently working on a game that takes place in the console. I need to know how to combine [CODE]Console.WriteLine()[/CODE] and [CODE]Console.ReadLine()[/CODE] into 1 line so that the blinking underscore appears on the same line. Is there any way to do this? Any help is appreciated. Re: C# Console Programming Help Programming Software Development by kvprajapati Not sure but try this: [code] void tryThis() { Console.ReadLine(); Console.WriteLine(); } [/code] Re: C# Console Programming Help Programming Software Development by samueal [CODE]Console.Write(Console.ReadLine());[/CODE] Try This!! Re: C# Console Programming Help Programming Software Development by jmurph333 I would like to write a string (s) to a line in the console. But instead of having the blinking underscore on the next line, I want it next to the string I just wrote to the console. In C++ it would be: [CODE] cout << s; cin.ignore(); [/CODE] Re: C# Console Programming Help Programming Software Development by Sodabread WriteLine automatically adds a newline character. Write, on the other hand, does not. [CODE]Console.Write(""); Console.ReadLine();[/CODE] Re: C# Console Programming Help Programming Software Development by ddanbe Or have a look at the example code here: [url]http://msdn.microsoft.com/en-us/library/system.console.cursorleft(v=VS.85).aspx[/url] Re: C# Console Programming Help Programming Software Development by ddanbe Use Console Write or Read instead of WriteLine and ReadLine The methods with [B]Line [/B]add an extra cr char. Re: C# Console Programming Help Programming Software Development by jmurph333 Thanks Sodabread, that was exactly what I was looking for. This is just another quick question. Is there anyway I can write some text on to the console, and then change that text to something else? Console + GUI Program Programming Software Development by woodenduck … to write an application that I can run from the console where it loads settings from a config file. I also… GUI. I did something similiar to this in a Java programming class I took 6 years ago. But having it been… Console game help! Programming Software Development by Triarius Hi! I'm making a console game with cars. I am stuck trying to make the …" C++ for some years, I have just started seriously programming. Thanks in a advance. [CODE]//Car Game //The goal of… Re: How long have you been programming? Community Center by m_sam6 4 years now begin c++ console programming for 18 month c# for 1 month simple programs java one year make some apllications feel to learn more and more Re: c++ gui programming question? Programming Software Development by LdaXy if your using windows, i sugest starting with basic WIN32 programming. Microsoft gives a very detailed intro to this type of … mind though, WIN32 coding is much more difficult than standard Console programming. not trying to discourage you, but just want to let… Re: Increasing DOS console window Programming Software Development by Narue What does MSDN's reference on console programming say? Programming is just too difficult...... Programming Software Development by sheltask First I was on that console window, and everything seemed easy because…that but things further in to Object Oriented programming are some of the biggest off-putting … six weeks, couldn't manage it in a console window - it was too difficult. I have …nothing. It's like my head is locked around programming and mathematics, and it always has been. All… Re: Programming using a convert.txt file Programming Software Development by tinstaafl … = SplitData[0]; From = SplitData[1]; Factor = Convert.ToDouble(SplitData[2]); Console.WriteLine(To + " - " + From + " - " + Factor + &… allowed by the C# language, is considered poor programming and can lead to big problems in larger programs.… Re: Programming is just too difficult...... Programming Software Development by mike_2000_17 …language out there. It certainly is a very important programming language (and dominates in many fields) that any … efforts or complexity to deal with. But certain programming language can constitute a path of least resistance for… certain tasks. Finally, computer programming simply might not be your thing. Some people &… Re: Programming in.NET Environment Programming by ddanbe …availability = new char[13,6]; int row_num, col_num; char seats; Console.WriteLine("This program assigns seats for a commercial airplane…quot;The current seat assignment is as follows."); Console.WriteLine(); Console.WriteLine("\t\tA\tB\tC\tD\tE\tF&… Re: Programming is just too difficult...... Programming Software Development by Less_1 … a couple decades now and have taught tons of people programming and programming concepts also. No problems. I have never failed to… Re: Programming is just too difficult...... Programming Software Development by glenford11 i personally started out with java and i had similar problems such as yours but because of my love for programming i took some advice and switched to python and so far it has been a breeze not that everything about it is that simple but its syntax and structering is so i recommend you take that route and see where that leads you. Console window for a Deamon Hardware and Software Linux and Unix by anishpsla … my first post in this forum.Also first about linux programming. I want to run a small linux application as a… working without any problem. Now I want to get the console window of this deamon if it run as a standalone… ./myapp. How can I get the debug info in another console ? Please help me. Re: Console window for a Deamon Hardware and Software Linux and Unix by Stefano Mtangoo … my first post in this forum.Also first about linux programming. I want to run a small linux application as a… working without any problem. Now I want to get the console window of this deamon if it run as a standalone… ./myapp. How can I get the debug info in another console ? Please help me.[/QUOTE] I don't think it is…