-
Gave Reputation to Ahmad_74 in How to implement check availability in hotel reservation system
Hi ppl I am developing website for my project which is Venue/Halls booking system for events like wedding birthday partieslike that I just need code or logic to check availability … -
Replied To a Post in Please i need a mentor in python
I would like to add one piece of advice on the topic of tutorials. There are many, many tutorials on Python programming, either as web pages or as YouTube videos; … -
Began Watching Please i need a mentor in python
Hello, My name is Frank from Ghana in the west africa, Please I just started learning python today. Can i get a dedicated mentor i can ask question in case … -
Replied To a Post in Texture segmentation using Local Binary Pattern
I haven't had the chance to look through this code in detail, but two things immediately strike me: * The use of `<conio.h>`. This is a non-standard library which is … -
Began Watching Texture segmentation using Local Binary Pattern
// Texture segmentation using Uniform Local Binary Pattern #include<iostream> #include<stdio.h> #include<conio.h> #include<malloc.h> #include<math.h> struct cluster { /* data */ float i[10]; float cumi[10]; int memcount; }; //variable declaration unsigned char … -
Replied To a Post in What is Forum?Tell! me about Forum because i am new here please help me.
A forum is just a central meeting place, or (in this case) a place where you can talk with others about some topic. More specifically, it is a synonym for … -
Began Watching What is Forum?Tell! me about Forum because i am new here please help me.
Tell! me about Forum because i am new here please help me. -
Replied To a Post in Function to generate a random number in a random range
I would recommend moving away from the older C-style `srand()`/`rand()` combination, and use the C++ [`<random>`](https://cplusplus.com/reference/random/) library, which is both more flexible and gives finer control. While it requires more … -
Began Watching Function to generate a random number in a random range
Can someone please give me tips on how to accomplish generating a random number within a random range. See 'roll_dice' #include <iostream> #include <limits> #include <ctime> #include <iomanip> #include <cstdlib> … -
Gave Reputation to sallybeauty in How to grow a beard fast?
I have short beard want to grow fast But How? Kindly Help to find best one -
Began Watching Advice on implementing a basic minmax algorithm for Connect-4
I've been working on the GUI portion of my [C++ Connect-N game project](https://github.com/Schol-R-LEA/ConnectN), and have gotten it to would could charitably be called a working state. However, the game AI, … -
Created Advice on implementing a basic minmax algorithm for Connect-4
I've been working on the GUI portion of my [C++ Connect-N game project](https://github.com/Schol-R-LEA/ConnectN), and have gotten it to would could charitably be called a working state. However, the game AI, … -
Gave Reputation to robertcoble in What is most effective social media platform for paid campaign?
The most effective social media platform for a paid campaign will vary depending on your target audience and the specific goals of your campaign. However, some platforms are more popular … -
Gave Reputation to robertcoble in how we can grow our Business using Instagram ads?
There are a number of ways to grow your business using Instagram ads. First, you can use Instagram ads to target new potential customers who are not already familiar with … -
Created Opinions: Is this template worthwhile as a stand-alone project?
[Ranged Numeric Types in C++](https://github.com/Schol-R-LEA/Ranged-Numeric-Types-for-CPP) I've started writing a simple template class for automating range checking in specialized numeric types, inspired by the ranged types in languages such as Pascal … -
Began Watching Opinions: Is this template worthwhile as a stand-alone project?
[Ranged Numeric Types in C++](https://github.com/Schol-R-LEA/Ranged-Numeric-Types-for-CPP) I've started writing a simple template class for automating range checking in specialized numeric types, inspired by the ranged types in languages such as Pascal … -
Gave Reputation to slavonescjy in what is the difference between web designer and a web developer?
A web designer is a graphic artist who is responsible for designing the layout, usability, and visual appearance of a website. A web developer is someone who builds and maintains … -
Replied To a Post in Which programming language does PHP resemble? Please tell me
Itself, since PHP is in fact a programming language. One for a specific set of uses, but a programming language nonetheless. As for which *other* language it most resembles, that's … -
Began Watching Which programming language does PHP resemble? Please tell me
Which programming language does PHP resemble? Please tell me -
Replied To a Post in solution to my car rental system code along with the login part
We would need a lot more information than that to be able to help you with it, starting with the code in question and the error you are getting. -
Began Watching solution to my car rental system code along with the login part
i am unable solve the error in my program -
Gave Reputation to NehaPande in Where can I learn C++ game development online for free?
Here are a few websites where you may register and begin learning C++ programming. 1. Udemy 2. Learn to code 3. Code Academy 4. Coursera 5. Code Avengers -
Replied To a Post in ARRAY PROOGRAMMING CODE
@Toneewa: please stop answering questions which don't show the OP's own code - DaniWeb is *not* a free homework solving service. And yes, I know I'd made the same mistake … -
Gave Reputation to NehaPande in Game Development Discussion
Most algorithmic programming, and more specifically competitive programming, use C++. In addition, it is utilized for sophisticated features like creating new operating systems, languages, and other so-called BIG DADDY'S activities. … -
Replied To a Post in How To Summarize multiple name into one where the date is equal to now
If you don't mind me asking, how is it that you are writing new VB 6.0 code in 2022? I would strongly advise against trying to beat that dead horse … -
Began Watching How To Summarize multiple name into one where the date is equal to now
Hello , i am using vb6.0 can some one help me with my problem. I want to summarize a database with multiple name and display it into one data where … -
Replied To a Post in Convert a temperature
First off, we don't do other people's homework for them. Second, we *don't* do other people's homework for them. And third, ***we don't do other people's homework for them***. Sensing … -
Began Watching Convert a temperature
Write a program that converts temperature from degrees Fahrenheit to degrees Celsius .The formula is C = (5.0/9.0) (F-32) -
Gave Reputation to Yolie_b in Convert a temperature
Write a program that converts temperature from degrees Fahrenheit to degrees Celsius .The formula is C = (5.0/9.0) (F-32) -
Gave Reputation to toneewa in How to make a c++ function that stops when a nonpositive number is inputted
While it's not using the requested function formats, it'll do what you want plus more. #include<stdio.h> #include<iostream> int products(int arr[], int len) { int i, temp = 1; for (i … -
Replied To a Post in Question about unicode in visual basic 6
Several of us have VB6 experience, but for most of us it would be several years since we've used it - VB6 was released in 1998 and support for it … -
Began Watching Question about unicode in visual basic 6
Hello everyone, I wrote data arrays at the end of the exe with delimiter. After I compiled, the app it didn't work on Chinese Windows, only on English, I want … -
Replied To a Post in image not showing in customtkinter :(
With a little further testing by a process of elimination, I have found that the critical sections are the definitions of `login_load_button` and `captcha_input`, both of which are the only … -
Replied To a Post in image not showing in customtkinter :(
As a proof-of-concept, [minimal reproducible example](https://en.wikipedia.org/wiki/Minimal_reproducible_example), I stripped out all of the code except that which is necessary for displaying the Captcha image: from PIL import Image, ImageTk import os,re,requests,time,customtkinter … -
Replied To a Post in image not showing in customtkinter :(
In the future, please post the code into your message (using the Code Block button, `</>`, in the editor window menubar), rather than as a link to a copy on … -
Began Watching image not showing in customtkinter :(
image not showing in customtkinter :( i dont know why its not working i think its cuse of its in Function code : https://www.toptal.com/developers/hastebin/manaxujufu.py https://i.stack.imgur.com/c5X9r.png -
Replied To a Post in Why is my py code not working as intended?
> i have posted the code.its a bit bulky because i had to repeat one function four times. i know there is a shorter way to do this but i … -
Began Watching Why is my py code not working as intended?
Hi guys, i am new here. Been on this code for some days and i seem stuck and not getting the expected output from this code. first the code functions … -
Replied To a Post in to calculate final score
The reason you need to change `Score()` rather than `FinalScore()` is because `Score()` is where you are updating the totals. -
Replied To a Post in to calculate final score
There are two approaches you can take: you can either make `scP1` and `scP2` globals by moving their declarations to the top level outside of the `main()` function or - … -
Began Watching to calculate final score
i already done the scores for each round, i dont know how to calculate the scores for all round, can u help me to solve this? #include <iostream> #include <cstring> … -
Gave Reputation to rproffitt in How do I attempt the assignment?
Weird assignment. No bank I know would code this in C++ today. It would be some web server and backend systems. But hey who said what they teach you in … -
Replied To a Post in How do I attempt the assignment?
Fortunately, the assignment gives a good deal of detail as to how to go about it, and seems focused on how well you understand basic OOP development. From the assignment, … -
Began Watching How do I attempt the assignment?
Hi, would anybody be king enough to assist me in completing this assignment? A local bank is attempting to digitize a few of its services and operations. In an effort … -
Replied To a Post in to read a file and pass to parallel aray
If I might recommend a bit of an improvement: void ShowCardP1(int cardP1, string cardName[], string p_code[], string type[], string plusMode, string system[]) { cout<< "Product code: " << p_code[cardP1] << … -
Began Watching to read a file and pass to parallel aray
how to solve no 2 problem? i dont know how to do that, someone please help me :(  -
Replied To a Post in Login code on python
I spent far too much time on this, but I worked out a usable password sign-in process that you may want to look into. It uses a third party library, … -
Replied To a Post in Login code on python
Unfortunately, there's really no way to read Python code when the indentation has been lost. I'll try to puzzle out your intentions here, but it isn't straightforward. As it is, … -
Began Watching Login code on python
Hello, I'm trying to make a login code for my game algorithm but it isn't working as I want it to so can someone help to stop my loops from … -
Replied To a Post in How to calculate the total work hours (12 hour format AM PM) in vb.net 2022
While it is an extra step, I would recommend converting the date text value to a `System.DateTime` value and perform the operations on that before converting back to text.
The End.