-
Replied To a Post in C# Vs. other Web development languages
OK, let's start off by clearing up a misconception you seem to have. HTML and CSS are not programming languages at all; HTML is a markup language (that is to … -
Began Watching include graphics .h in vs2013
?????????????????? -
Replied To a Post in include graphics .h in vs2013
As NathanOliver said, the Borland `graphics.h` header, and the library it declares, are not standard C++; indeed, there is no standard graphics package for C++. The Turbo C++ package, furthermore, … -
Began Watching Stuck on tutorial 6: bootloaders 4
I'm stuck on one of brokenthorn's tutorial on bootloaders. My question is why reference byte 26? > Bytes 26-27 : First Cluster http://www.brokenthorn.com/Resources/OSDev6.html -
Replied To a Post in Stuck on tutorial 6: bootloaders 4
You might have some more luck if you try searching the [OSDev forums](http://forum.osdev.org/), or read their [wiki](http://wiki.osdev.org/Expanded_Main_Page). There aren't many os-devers on Daniweb AFAICT, and I expect that this question … -
Began Watching Project Askali
This might sound crazy or something, but i've always wanted to build an Operating System like Windows where people can do everyday things I know some people do not like … -
Replied To a Post in Project Askali
Crazy for wanting to write an operating system? No, I wouldn't say so. Overly ambitious perhaps, but not crazy. There are dozens if not hundreds of OS developers (or would-be … -
Began Watching looking for a good fun DDOS script in python
Hello everybody. I'm looking for a good cool and fun DDOS script in python. Any suggestion? How can I create a good fun DDOS script using URLLIB?! -
Replied To a Post in looking for a good fun DDOS script in python
Asking for help in an illegal activity is a violation of [Daniweb forum rules](https://www.daniweb.com/community/rules), specifically: > Do not ask for help to pursue any illegal activity including, but not limited … -
Began Watching Compiling for processor directly vs for executable for OS
Can you use any compiler, assembler, etc to output code directly for the processor and not for an executable file specific to an OS? How do you determine if you … -
Replied To a Post in Compiling for processor directly vs for executable for OS
You might find the [Object File](http://wiki.osdev.org/Object_Files) page of the OS Dev wiki helpful here. To sum up, while it is possible to generate a pure executable image from code under … -
Began Watching Polynomial functions stores
10x^6+3x^5+4x^+4 9x^6+2x^4+2x+5 1)could you please propose a suitable data structure to store above ploynomials. 2) and, how to add & multiply them using python codes. -
Replied To a Post in Polynomial functions stores
As Gribouilis said, there is only so much we can suggest without doing the work for you. As for data structures, there are three options I can recommend, in order … -
Began Watching C++ to C problem
Hi everyone, I’m beginner and I need a little help. I have to make RPN (postfix) calculator using stack which is implemented by singly linked list in C. Now I … -
Replied To a Post in C++ to C problem
**Mayukh_1**: Given that the OP has not been on Daniweb for two months, I think we can call this a dead thread. -
Began Watching Python
The following lower case letters are written partly below the **baseline: g, j, p, q, y.** We say that these letters have a descender. Write a function named hasDescender() that … -
Replied To a Post in Python
You have the right general idea,except that you want to look for a category of letter forms, not just a single letter; also, the set of letter forms which have … -
Began Watching Using a Checkbutton to Import Serial Data into Python Tkinter
I am trying to create a GUI using Tkinter, that reads in serial data. I eventually want multiple check buttons (for each possible port), and when the checkbutton is clicked, … -
Replied To a Post in Using a Checkbutton to Import Serial Data into Python Tkinter
Given that you never actually call `create_widgets()`, I would expect that it wouldn't display the button in question at all. Similarly, as it is now, it is set up to … -
Began Watching not able to save a file using button
i'm making a programme in which there is a button to save new text file to disk, i make a programme but it not work help me what is the … -
Replied To a Post in not able to save a file using button
> Why String^ to just a string?? change that. **@ritchieking**: Presumably, basit_3 is working in C++/CLR (C++ for .Net, formerly called Managed C++), which despite what Microsoft says is in … -
Began Watching Payroll tax
Hello I need help with this java tax assignment it is asking to Write the Java code needed to perform the following:• Calculate state withholding tax at 6.0%, and calculate … -
Replied To a Post in Payroll tax
Just to clarify what Slavi said, you only need to have this line in the actual code: salary = salary - (salary * (25.0 / 100.0)); The other lines just … -
Began Watching write the program that display HELLO WORLD
Write a program that takes length as input in feet and inches. The program should then convert the lengths in centimeters and display it on screen. Assume that the given … -
Replied To a Post in write the program that display HELLO WORLD
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 … -
Replied To a Post in trying to get this code the right way to work
Again, I would need to see both the function you have written, and the error message you are getting, before I could have any hope of answering that question. Sorry … -
Replied To a Post in trying to get this code the right way to work
OK, first off, you are never setting the value of `ans`, so `ans` is by default zero. Any answer other than 0 will fail. As for why it never gets … -
Began Watching computer science
.1 Develop a complete C/C++ program which will sort the input array of integer having a maximum of 10 elements in “Descending Order”. (15 Marks) Your program should give a … -
Replied To a Post in computer science
<rant> Why do we even bother answering these idiots when all it does is encourage more idiots to post in their threads with the same garbage? </rant> Sorry, lost my … -
Replied To a Post in trying to get this code the right way to work
*sigh* I need you to paste the exact error message into a post so we can see it. -
Replied To a Post in trying to get this code the right way to work
We still would need to know what the syntax error *is*, not just where it is occurring. As for the second part, you are setting `array_size` to zero here: int … -
Replied To a Post in trying to get this code the right way to work
Can you post the error messages you are getting, please? -
Replied To a Post in get function name on definition
> decorators only work on function call, not on definition Actually, they can be either one, sort of; the decorator syntax is just syntactic sugar for calling the decorator function … -
Began Watching get function name on definition
basically, what I want to do is add a function name to an outside reference in a safe sys.modules reference without copying the name... best idea I got is to … -
Replied To a Post in get function name on definition
> basically, what I want to do is add a function name to an outside reference in a safe sys.modules reference without copying the name... Have you considered writing a … -
Replied To a Post in password help!
The Standard Template Library [`vector` template class](http://www.cplusplus.com/reference/vector/vector/) is an alternative to a fixed-size array; it is basically a dynamically-resizing array that can be parameterized to use any given type you … -
Began Watching password help!
#include <iostream> #include <conio.h> #include <string> #include <windows.h> using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int … -
Replied To a Post in password help!
To start with, I recommend that you be more careful about formatting your code; as it is, the indentation is all over the place, and inconsistent as hell. Now, you … -
Began Watching I need help for algoritam and writting a programme in C++
Write a program that modifies a given sentence by the last word to the beginning of sentences.To consider that words are separated by exactly one with blank sign.A sentence in … -
Replied To a Post in I need help for algoritam and writting a programme in C++
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 Substance Look and Feel in java
Now am using substance look and feel version 5.3.I want to upgrade the it to latest version 7.2.1. I need to know what is the new features in new version … -
Replied To a Post in Substance Look and Feel in java
**@JamesCherrill**: I am fairly certain the OP as referring to the version numbers for the [Substance LAF](https://java.net/projects/substance/) framework, not Java itself. That having been said, I doubt anyone here knows … -
Began Watching Anti Virus | Help
Im trying to make a antivirus prototype for my friend. after some research on youtoobe and google I found this code. have been searching for a while now but most … -
Replied To a Post in Anti Virus | Help
> I want to make a simple and working anti virus software in Heuristic method Unfortunately, 'simple' and 'working' don't go together in the field of anti-virus software. A working … -
Replied To a Post in trying to get this code the right way to work
> How am I supposed to accomplish this. How can you create an arrays that could store arrays so that it can compare random numbers If I am reading this … -
Replied To a Post in Another C++ question..password validator
Erk, I did it again - I was editing my post, adding details and clarifying some points, when you answered me. You may want to check what I added to … -
Began Watching Another C++ question..password validator
Okay, here I am again. I searched the forum and found the posts that I need to solve this password validator, but I'm not putting it together in my head … -
Replied To a Post in Another C++ question..password validator
>I keep getting an error for "password was not declared in this scope" in main. As tinstaafl pointed out already, that is because `password` isn't declared in `main()`, and in … -
Replied To a Post in Constant too large
I think you'll find that it *was* `AH`, and that you wanted to set that to 4Ch; however, since `AH` is the high byte of `AX`, using `MOV AX, 4C00h` … -
Began Watching trying to get this code the right way to work
Hi every I am doing over my programming final project trying to see where I have gone wrong. And slowly am beginning to see some of my mistakes, I guess …
The End.