- Strength to Increase Rep
- +4
- Strength to Decrease Rep
- -1
- Upvotes Received
- 4
- Posts with Upvotes
- 4
- Upvoting Members
- 3
- Downvotes Received
- 3
- Posts with Downvotes
- 3
- Downvoting Members
- 2
Software Developer
Hi, all I'm searching for an idea regarding AI term project. I've researched a lot about AI areas, but not able to decide/come up with reasonable project that can be implemented within 2 months (approx. 5-10 hours a week) and easy to test&document, but at the same time be non-trivial … | |
Hi, My project modules are organized in such a way that I have to maintain following Database structure. I've 5 schemas, each containing 20 to 50 tables. Each schema is accosiated with one module of the project. All the tables that are used within more than one modules are kept … | |
Hi, My project modules are organized in such a way that I have to maintain following Database structure. I've 5 schemas, each containing 20 to 50 tables. Each schema is accosiated with one module of the project. All the tables that are used within more than one modules are kept … | |
If you were asked to offer a multi-site video conferencing solution, where quality is more important than price, what would you offer? With my current knowledge I can offer just two things: 1) Use hardware codecs for pears and make one server MCU. (This way I offer just intallation and … | |
| |
Re: [QUOTE] if(nodePtr->value==num) { delete nodePtr; } [/QUOTE] Here you are directly freeing up the the node, deleting it. So if it's in the middle or at the beginning of the linked list, your list is corrupted, broke. head->2 -> 7 -> 1 -> 7 -> 12 -> 7 You are … | |
Hi, guy I've created an animation (swf file) using AS3 and FlashDevelop. I'm able to compile and play it in FlashDevelop but when I open it in any browser (IE, Firefox, Chrome) I just see the background color and that's it. (I've flash player plugin installed on browsers). What my … | |
Re: Very bad style of programming and it's difficult to read your code. Try to use stringtokenizer to parse the string, try to avoid unnecessary variable creation within a loop, try to see what variable are being created and destroyed. After trying above, paste your code here, I'll help to solve … | |
Re: 1-tip: Each time you are calling malloc, it's giving you totally different location, so old values that you have stored are left in old location. Try realloc. [code] if (count>size){ size=count; } [/code] What's the purpos of the above code? | |
Hi, I've a *ix machine and I need to share some folders with Windows users. I use samba for this purposes. Samba is set-up and works fine. All windows users use one id to mount (net use) samba drive. But the problems is that when user tries wrong password 3(or … | |
Hi, Experts I [B]really [/B]need to do following animation: Arrows moving on some path (to be determined by a function). Let's this path to be circle. I want several arrows (number of arrows must be determined dynamically so that arrows cover whole circle) to move on the circle and their … | |
Re: If it's dynamically allocated "array" (A pointer to the adress where R pointers a stored, each in terms pointing a beginning of the mermory that holds C number of T typed items), it seems for me that you can't learn it without using some marks (i.e. NULL at the end) … | |
Re: It seems for me that this problem is not solvable. You would never know whether you have hit true solution or not. Besides character permutations there will be word permutations also. But as suggested above you can give possible words (which is estimated to be huge, but helpful) Also if … | |
Re: You can store it in a char (8 bit) variable. Even if "char" gives impression of "character" variable actually it's just a integer of 8 bits. This should solve you problem if I got it correctly. Otherwise please clarify your problem. | |
Hi, I was looking for an animation that gets names of winners (1,2,3 place) and shows them in an attractive way. They way of getting input is not important, it might read from file or anything. Trust me Google is not helpful now, because I am not able to find … | |
Hi, I don't know whether this is correct place to ask, but since my application is J2EE application (JSP) I'm asking it here. We've several web applications, some of them are J2EE applications (JSP, JAVA) and the administrators of these applications change frequently. One can just change code and add … | |
Re: You may want to implement your own Double Class (which will hold data as a string internally) | |
Hi, experts. I want to test whether (third library) function (say X) is interruptible or not. For this, I want to create two threads one for calling function X, the other for interrupting (sending signal) to the first one while it's inside the function X. But I don't know the … |