Posts
 
Reputation
Joined
Last Seen
Ranked #903
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
60% Quality Score
Upvotes Received
4
Posts with Upvotes
4
Upvoting Members
3
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
2
6 Commented Posts
~9K People Reached
About Me

Software Developer

Favorite Tags
Member Avatar for NeoKyrgyz

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 …

Member Avatar for denverprojects
0
756
Member Avatar for NeoKyrgyz

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 …

0
130
Member Avatar for NeoKyrgyz

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 …

0
143
Member Avatar for NeoKyrgyz

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 …

0
70
Member Avatar for number87
Member Avatar for vikasnahar
Member Avatar for star34

[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 …

Member Avatar for NeoKyrgyz
0
111
Member Avatar for NeoKyrgyz

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 …

Member Avatar for NeoKyrgyz
0
256
Member Avatar for mahdi68

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 …

Member Avatar for NeoKyrgyz
0
154
Member Avatar for kostasxx

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?

Member Avatar for Narue
-1
2K
Member Avatar for NeoKyrgyz

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 …

Member Avatar for NeoKyrgyz
0
1K
Member Avatar for NeoKyrgyz

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 …

Member Avatar for iamthwee
0
192
Member Avatar for Talguy

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) …

Member Avatar for Narue
0
3K
Member Avatar for Church

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 …

Member Avatar for NeoKyrgyz
0
239
Member Avatar for Petrock6

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.

Member Avatar for NeoKyrgyz
0
137
Member Avatar for NeoKyrgyz

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 …

Member Avatar for rajarajan2017
0
132
Member Avatar for NeoKyrgyz

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 …

0
68
Member Avatar for daviddoria

You may want to implement your own Double Class (which will hold data as a string internally)

Member Avatar for Rashakil Fol
0
113
Member Avatar for NeoKyrgyz

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 …

Member Avatar for NeoKyrgyz
0
148