User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 402,523 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,540 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 246
Search took 0.02 seconds.
Posts Made By: sarehu
Forum: Computer Science and Software Design 2 Days Ago
Replies: 4
Views: 140
Posted By sarehu
Re: Need CS homework help

Your answer makes sense, in terms of stacking naive interpreters atop one another.

Your examples of levels are completely nonsensical though, justsoyouknow. "Binary numbers" is not a programming...
Forum: Software Developers' Lounge 2 Days Ago
Replies: 1
Views: 93
Posted By sarehu
Forum: Computer Science and Software Design 2 Days Ago
Replies: 4
Views: 140
Posted By sarehu
Re: Need CS homework help

"Level"?

What is a "level"? This question makes no sense.
Forum: Computer Science and Software Design 7 Days Ago
Replies: 3
Views: 168
Posted By sarehu
Re: overloading vs polymorphism

Overloading is one thing, and polymorphism is another. Look at the definitions on the internet and then use thinking to figure how they are related and unrelated.
Forum: C# 7 Days Ago
Replies: 11
Views: 305
Posted By sarehu
Re: Multi Threading

Who are you replying to? Since when did we start talking about multitasking?
Forum: C# 8 Days Ago
Replies: 11
Views: 305
Posted By sarehu
Re: Multi Threading

I'm not sure what's wrong with running mono, any deficiencies will be in the mono documentation.
Forum: C# 9 Days Ago
Replies: 11
Views: 305
Posted By sarehu
Re: Multi Threading

MSDN has information on having multiple threads in C#. It's fairly straightforward.
Forum: Software Developers' Lounge 9 Days Ago
Replies: 6
Views: 322
Posted By sarehu
Re: Graphics vs Gameplay

The best video game is the playlist I have playing right now. Rachmaninov Op. 1, 18, 30, 40, and 43. The storyline can't be beat!
Forum: Computer Science and Software Design 9 Days Ago
Replies: 1
Views: 134
Posted By sarehu
Re: Help with make CD with more then 400 .pdf?

You'll need to use Javascript for the behavior of the page to be based on the contents of the text box. Learn Javascript and HTML and use that information to solve your problem.
Forum: Computer Science and Software Design 9 Days Ago
Replies: 1
Views: 132
Posted By sarehu
Re: Computer Science

If you can't figure out a basic idea of the definitions after reading books on the topic, I don't think reading some post in the forum will help you.
Forum: Computer Science and Software Design 9 Days Ago
Replies: 4
Views: 215
Posted By sarehu
Re: How to design my own Linux ??

This is not a computer science or software design question.

Anyway, Linux distributions generally have some norms for how packages are distributed and installed. So first you need to think about...
Forum: Computer Science and Software Design 11 Days Ago
Replies: 9
Views: 389
Posted By sarehu
Re: Computer Science HCI, AI, and Scientific Computing questions

Take undergrad classes in the subjects to figure out what you're interested in.



It should be easy to pick up whatever programming languages you need when you get to them.
Forum: Geeks' Lounge 14 Days Ago
Replies: 44
Views: 1,050
Posted By sarehu
Forum: C++ 14 Days Ago
Replies: 5
Views: 157
Posted By sarehu
Re: What's wrong with this program?

Because your compiler.
Forum: Computer Science and Software Design 14 Days Ago
Replies: 1
Views: 216
Posted By sarehu
Re: Interview Questions

There is no such thing as technical programming. Functional programming is the writing of software in a referentially transparent manner.

Front end developers develop the front end, whereas back...
Forum: Geeks' Lounge 14 Days Ago
Replies: 44
Views: 1,050
Posted By sarehu
Re: Can you think of some real life projects which cannot be programmed ?

I could make a wristwatch for them to wear that injects a sedative.
Forum: Geeks' Lounge 14 Days Ago
Replies: 44
Views: 1,050
Posted By sarehu
Re: Can you think of some real life projects which cannot be programmed ?

Really? I can forecast the next 5 minutes of weather with high accuracy.
Forum: Software Developers' Lounge 18 Days Ago
Replies: 9
Views: 450
Posted By sarehu
Re: first time programming

No.

It's not your teacher's job to tell you how to work on the project.
Forum: Computer Science and Software Design 18 Days Ago
Replies: 3
Views: 218
Posted By sarehu
Re: Beta Testing Tools

You're going to have to explain what you mean by "beta testing tool" then.
Forum: Geeks' Lounge 18 Days Ago
Replies: 44
Views: 1,050
Posted By sarehu
Forum: Computer Science and Software Design 18 Days Ago
Replies: 3
Views: 218
Posted By sarehu
Re: Beta Testing Tools

This is a joke, right?
Forum: Computer Science and Software Design 19 Days Ago
Replies: 1
Views: 254
Posted By sarehu
Re: Agile : Real World Examples

This might be the most depressing post I have read on this forum. I have to admit maybe you live in a different software development world than I live in. For example, the notion of "auditable...
Forum: Software Developers' Lounge 20 Days Ago
Replies: 3
Views: 237
Posted By sarehu
Re: wrc 1.00 Windows Remote Control

Post the source code, obviously.
Forum: Computer Science and Software Design 21 Days Ago
Replies: 8
Views: 514
Posted By sarehu
Re: Practical Uses of Recursion

Yuck. I was going to say that a queue was infinitely better than recursion, but even a queue is pretty bad.
Forum: C# 21 Days Ago
Replies: 9
Views: 315
Posted By sarehu
Re: Preventing decompilers in .NET

Have you ever actually had problems with people decompiling your code?
Forum: C++ 21 Days Ago
Replies: 2
Views: 169
Posted By sarehu
Re: STL vector destruction

For example, the behavior of the following two snippets is more or less the same, as far as destruction is concerned:

T* p = new T[3];
p[0] = x;
p[1] = y;
p[2] = z;
delete[] p;


{
Forum: C++ 21 Days Ago
Replies: 2
Views: 169
Posted By sarehu
Re: STL vector destruction

No you don't. When a vector's destructor gets called, it calls the destructors of all its elements.
Forum: Computer Science and Software Design 21 Days Ago
Replies: 1
Views: 245
Posted By sarehu
Re: final year project.

Use some free database server then, such as PostgreSQL or MySQL.
Forum: Computer Science and Software Design 21 Days Ago
Replies: 4
Views: 286
Posted By sarehu
Re: binary num question

You could represent it with a 15-degree polynomial.

Here's a hint: I think it is meant for ^ be an exponentiation operator, not a bitwise xor operator.
Forum: Computer Science and Software Design 22 Days Ago
Replies: 4
Views: 286
Posted By sarehu
Re: binary num question

Why don't you try running the program yourself? Sheesh.
Forum: C++ 24 Days Ago
Replies: 10
Views: 294
Posted By sarehu
Re: Optimizing some small functions...

In fact, a vector<bool> isn't even optimized for space if it's standard-compliant.
Forum: Software Developers' Lounge 24 Days Ago
Replies: 5
Views: 345
Posted By sarehu
Re: Scriptlance programmers

Everybody is behind on technology. Everybody in the world.
Forum: Software Developers' Lounge 24 Days Ago
Replies: 5
Views: 345
Posted By sarehu
Re: Scriptlance programmers

The phrase "if the country is technologically advanced enough to program the script that I am asking for" is completely nonsensical. What are you even talking about.
Forum: Computer Science and Software Design 24 Days Ago
Replies: 8
Views: 514
Posted By sarehu
Re: Practical Uses of Recursion

That's easy to use and easy to follow, and works across the board. What do you mean "does not scale well." Are you babbling nonsensically? I don't understand how you think the statements you are...
Forum: Computer Science and Software Design 25 Days Ago
Replies: 8
Views: 514
Posted By sarehu
Re: Practical Uses of Recursion

Pass a function as an argument and call that.
Forum: Computer Science and Software Design 27 Days Ago
Replies: 3
Views: 327
Posted By sarehu
Re: SQL Server and ADO.net

I'm unsure about the source of your confusion. What does the documentation and other information online say about these products?
Forum: Software Developers' Lounge 31 Days Ago
Replies: 3
Views: 309
Posted By sarehu
Re: How to check the work flow of the system?

Don't you use a version control system or have code reviews?
Forum: Techies' Lounge 31 Days Ago
Replies: 4
Views: 292
Posted By sarehu
Re: hey every body

Be careful though: with trojans, the number depends on whether you're using standard ounces or troy ounces as your unit of measurement. The choice has never been standardized.
Forum: Computer Science and Software Design Aug 2nd, 2008
Replies: 2
Views: 441
Posted By sarehu
Re: Discuss this scientific approach with solid comments.

If you could, please define the word "code methodology."
Forum: Software Developers' Lounge Aug 2nd, 2008
Replies: 3
Views: 329
Posted By sarehu
Re: C++ year1:)

Accelerated C++ is a good book. I'd recommend learning how to use a language like Scheme, and then maybe later Haskell, because that will make you better aware of the advantages and deficiencies of...
Showing results 1 to 40 of 246

 
All times are GMT -4. The time now is 6:56 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC