Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Showing results 1 to 40 of 500
Search took 0.13 seconds.
Search: Posts Made By: DaWei
Forum: C++ Yesterday, 10:13 PM
Replies: 2
Views: 26
Posted By DaWei
Re: I Need A Super Simple Class

All you do with a class is define some object. A person object would have attributes such as name, hair color, gender, etc. A carburetor object would have different attributes. You see what I'm...
Forum: C++ Yesterday, 2:47 PM
Replies: 16
Views: 397
Posted By DaWei
Re: Random number always 41.

I despise the ramblings of a dummy, particularly on Sundays. Have a look here. (http://www.eternallyconfuzzled.com/arts/jsw_art_rand.aspx)
Forum: Existing Project Development Yesterday, 2:45 PM
Replies: 2
Views: 38
Posted By DaWei
Forum: C++ Yesterday, 2:43 PM
Replies: 8
Views: 138
Posted By DaWei
Re: Help with plural Prggram

I'm not generous. You think you are elite. You're merely pitiful Even preteens have gotten over that shit in the last couple of years.

I want you to think very seriously about this. Do you...
Forum: C++ Mar 13th, 2010, 9:07 AM
Replies: 8
Views: 98
Posted By DaWei
Re: I want to catch the "idea" !

Use the modulus and division operators repeatedly, checking the remainder for 6 or 7.
Forum: Community Introductions Mar 12th, 2010, 6:59 PM
Replies: 2
Views: 68
Posted By DaWei
Re: Aloha...

You don't learn those things here. You learn to solve problems that occur because you haven't quite learned them, yet.
Forum: Other Web Development Languages Mar 12th, 2010, 6:57 PM
Replies: 3
Views: 59
Posted By DaWei
Re: pulling batch information from a site.

If you want to scrape a site, consider Python and Beautiful Soup. If that's not what you're asking (and who the hell can be sure), ignore this response.
Forum: C++ Mar 12th, 2010, 5:44 PM
Replies: 8
Views: 138
Posted By DaWei
Re: Help with plural Prggram

Packet, it would also help if your little finger didn't twitch when it's sitting on the shift key. This so-called 'lite shit went out of fashion several years ago. It never did actually make...
Forum: Paid Job Offers Mar 12th, 2010, 5:39 PM
Replies: 2
Views: 69
Posted By DaWei
Re: looking for programmer

You might attract the attention of more intelligent people if you could actually deal with spelling and grammar.

You might think that's quibbling, but it's VERY indicative of your chances for...
Forum: C Mar 11th, 2010, 5:14 PM
Replies: 6
Views: 79
Posted By DaWei
Re: Having trouble understanding an assignment operation

/offtopic

I used latex right up until I got the vasectomy.
Forum: PHP Mar 10th, 2010, 10:34 PM
Replies: 2
Views: 91
Posted By DaWei
Re: reading < > tags in php

If you can't spell, why should anyone think you know anything about programming? Just curious.
Forum: Software Design and Algorithms Mar 10th, 2010, 4:54 PM
Replies: 10
Views: 171
Posted By DaWei
Re: seven-segment devices

I wouldn't even attempt it, as conio.h is non-standard and someone might run out to the web and get the version for Turbo C 1.0. For non-standard console output on a Windows machine, I would use the...
Forum: C Mar 10th, 2010, 2:38 PM
Replies: 5
Views: 97
Posted By DaWei
Re: insert node to sorted linked list

Infty, your comment on what I might have said is unjustified. You'll be 10 years contributing as much to this forum as I have. Despite those contributions, I am not patient with lazy asses that...
Forum: Software Design and Algorithms Mar 10th, 2010, 2:32 PM
Replies: 10
Views: 171
Posted By DaWei
Re: seven-segment devices

WTF? Do you know what a 7-segment display is? It is a display designed to present the numbers 0-9 by lighting some combination of seven segments. It can display more, but since it can't display an...
Forum: C Mar 10th, 2010, 2:09 PM
Replies: 5
Views: 107
Posted By DaWei
Re: Stuck in makng a simple factorial program.

Bear in mind that factorials get very large, very quickly. Dealing with things like blocking factors will generally require approaches beyond the simplistic calculation of factorials.
Forum: Software Design and Algorithms Mar 10th, 2010, 9:48 AM
Replies: 10
Views: 171
Posted By DaWei
Re: seven-segment devices

If you want to be successful, you'll need to develop some initiative and resourcefulness. If you want someone to do the work, see the "Hire a Programmer" forum.
Forum: Python Mar 10th, 2010, 8:55 AM
Replies: 6
Views: 175
Posted By DaWei
Re: short regular expression code not working

I hope you don't do mission-critical software where one false positive could kill someone.

A complete validator (leap year, etc.) would be very complex. I'd work through the text using something...
Forum: Software Design and Algorithms Mar 10th, 2010, 8:32 AM
Replies: 10
Views: 171
Posted By DaWei
Re: seven-segment devices

I don't recommend storing the numerical value in the array. I'd use an array of 10 that stores the pattern that matches the segment-on pattern for a given number. See your display and your...
Forum: C Mar 10th, 2010, 8:27 AM
Replies: 2
Views: 77
Posted By DaWei
Re: Font Size

I believe you need Vista or later.
Forum: C Mar 10th, 2010, 8:20 AM
Replies: 5
Views: 97
Posted By DaWei
Re: insert node to sorted linked list

Start at the root and move through the list, comparing the value of each node to the value to be inserted. Insert the new node before the first node that has a value greater than the new...
Forum: JavaScript and Client-Side Browser Scripting Mar 9th, 2010, 4:32 PM
Replies: 1
Views: 44
Posted By DaWei
Re: Storing web page source as a string

You can do this in any language. Python makes it very simple. If you use Python, have a look at Beautiful Soup for parsing the raw data.
Forum: Community Introductions Mar 9th, 2010, 4:28 PM
Replies: 1
Views: 59
Posted By DaWei
Re: confused newbie

If you can't peel apart that statement of the problem, and phrase it in your native language, then you should reconsider programming as a goal.

If you CAN do that, then do it. Pseudo code is merely...
Forum: C++ Mar 9th, 2010, 4:24 PM
Replies: 5
Views: 100
Posted By DaWei
Re: Newbie Needs help with First Program?

As mentioned, your syntax is just awful.

When you have a program like this that is failing all over the place, then reduce it to a functional minimum and determine the problem. An approach like...
Forum: C++ Mar 9th, 2010, 12:06 PM
Replies: 2
Views: 141
Posted By DaWei
Re: Embedded images in Executable file

Heh. ResHack is great. I once even made my START button say LOOKY.
Forum: Assembly Mar 9th, 2010, 9:01 AM
Replies: 6
Views: 103
Posted By DaWei
Forum: Assembly Mar 9th, 2010, 8:58 AM
Replies: 4
Views: 69
Posted By DaWei
Re: New to assembly - any advice

Have a look here (http://en.wikipedia.org/wiki/List_of_assemblers). I just use MASM for dinking around on the PC.
Forum: HTML / XHTML / CSS Mar 9th, 2010, 5:58 AM
Replies: 4
Views: 165
Posted By DaWei
Re: Populating html

Have you considered using something like cars.com?
Forum: HTML / XHTML / CSS Mar 9th, 2010, 5:51 AM
Replies: 4
Views: 174
Posted By DaWei
Re: what is web 2.0 Technology ?

Web 2.0 is primarily buzz-words intended to fraudulently convey a sense of superiority for one's work.
Forum: Assembly Mar 9th, 2010, 5:47 AM
Replies: 4
Views: 69
Posted By DaWei
Re: New to assembly - any advice

I would recommend that you learn how the microprocessor works for which you intend to write assembly language. Learn about registers, ALUs, cache, and so forth. Assembly language is a set of...
Forum: Paid Job Offers Mar 8th, 2010, 8:14 PM
Replies: 12
Views: 212
Posted By DaWei
Re: Willing to pay for a simple program

Muhaaaaahaaaaaaaaaaahaaaaaaaaaaaaa !!!!
Forum: Python Mar 8th, 2010, 8:12 PM
Replies: 2
Views: 69
Posted By DaWei
Re: problem with the getopt module

I've always found it best to assume that the library writers made terrible mistakes. The alternative is quite embarrassing.
Forum: C Mar 7th, 2010, 3:08 PM
Replies: 2
Views: 76
Posted By DaWei
Re: C programming video tutuorial

Will it teach us how to spell "tutorial?"
Forum: Community Introductions Mar 7th, 2010, 12:24 PM
Replies: 21
Views: 916
Posted By DaWei
Re: Which language would you say to start?

Suppose you write a program that says "Hello, World." What the hell do you think is happening? Is that going to be printed on a monitor? A teletype? A banner being towed by an airplane? Tattooed...
Forum: Other Web Development Languages Mar 4th, 2010, 11:40 PM
Replies: 9
Views: 1,275
Posted By DaWei
Re: best web development language

I would suggest pLop.
Forum: Project Ideas Mar 4th, 2010, 11:29 PM
Replies: 2
Views: 101
Posted By DaWei
Re: what language should i learn??

Even if I disregard the fact that English isn't your native language, I have to say that the question is dumb. Further, it's been asked and answered (improperly) about a zillion times before. Would...
Forum: Paid Job Offers Mar 4th, 2010, 6:26 AM
Replies: 2
Views: 69
Posted By DaWei
Re: Help for a custom script to handle a CSV file

You posted this everywhere but in the right place, which would be he "jobs" forum.
Forum: C Mar 3rd, 2010, 8:33 PM
Replies: 6
Views: 143
Posted By DaWei
Re: A simple program with a deep problem

Get some implementation of "lint." Most compilers will presume, to some extent, that you know what you're doing. Lint will presume that you don't, and issue more warnings.
Forum: C Mar 3rd, 2010, 8:31 PM
Replies: 6
Views: 99
Posted By DaWei
Re: A problem with a program that uses multiple source files

Your program probably works now, but you need to understand the build process: preprocessing, compiling, linking, and (possibly) locating. That will tell you why you don't put code in header files....
Forum: C++ Mar 2nd, 2010, 2:58 PM
Replies: 3
Views: 114
Posted By DaWei
Re: check it plz

Read the "how to post" thread, particularly regarding the use of code tags. If you're lucky Ancient Dragon will act as your mama and fix the stuff for you. I would suggest, rather, that you grow up.
Forum: HTML / XHTML / CSS Mar 2nd, 2010, 2:55 PM
Replies: 2
Views: 88
Posted By DaWei
Re: html page updating in real time

One suspects you don't understand the nature of the client/server paradigm and the connectionless nature of the HTTP protocol. One also suspects that you don't realize the the system sitting on your...
Showing results 1 to 40 of 500

 
Forum Jump



DaniWeb IT Discussion Community
All times are GMT -5. The time now is 7:01 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC