Posts
 
Reputation
Joined
Last Seen
Ranked #901
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
754
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
129
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
69
Member Avatar for number87

I got a question about c++ strings. Let's say string text = "0R14" and I access each element using text[0],text[1] etc does text[0] return an integer 0? or a character '0'? if it doesn't return an integer, how do I convert individual string element to integer type if I need …

Member Avatar for number87
0
161
Member Avatar for vikasnahar

[code=c] #include<iostream> using namespace std; int fact (int num); int main () { cout<<"Enter a number"<<endl; int number; cin>>number; cout<<"Displaying number: "<<number<<endl; cout<<"Calculating Factorial for the number"<<endl; int fact; fact = fact(number); return 0; } int fact (int num) { if(num==1) { return num; } else { return num * …

Member Avatar for seemant_sun
-1
103
Member Avatar for star34

Hi im working with linked list and i have to implement a function that deletes the duplicates of a number. for example if given 2 7 1 7 12 7 then the result should be 2 7 1 12 here is what I have: [code] #include <iostream> using namespace std; …

Member Avatar for NeoKyrgyz
0
110
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
254
Member Avatar for mahdi68

Hi i write a calculator ,This calculator get an arithmetic expression written in infix notation , then change it to postfix notation , then finds the value of postfix notation . i have a problem , this program only work for one digit numbers :( please help me to slove …

Member Avatar for NeoKyrgyz
0
153
Member Avatar for kostasxx

so guys, i was thinking about finding a way to create arrays, without knowing their size. for example create an app that takes unsigned long values until EOF and just saves them to an unknown size array. i was thinking that, because the array size could be big, to create …

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
189
Member Avatar for Talguy

I am passing a dynamically sized 2D array into a function. How would I be able to tell the row size and column size the array. I know I can do this to find the total number of elements in the array: [CODE] foo(const _T ***m_data) { int dataSize = …

Member Avatar for Narue
0
3K
Member Avatar for Church

Well i was looking in the paper the other day and they have this Word puzzle with a bunch of letters used to figure out what the quote of some famous guy was. Basically they take every letter of the alphabet and just change them and print it out and …

Member Avatar for NeoKyrgyz
0
237
Member Avatar for Petrock6

Hello. I'm developing a encryption program. I'm testing with encryption right now. I use bitwise operators and also bitwise shifts. [OR [|], XOR[^], AND[&], NOT[~], right[>>],left[<<]] To add even more security, I went ahead and added bitwise shifts. Whenever I shift the numbers, they go over 256 [max int in …

Member Avatar for NeoKyrgyz
0
134
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

[code] double P = 3.5/(.1 * sqrt(2.0*3.14159)) * exp(-pow(5.0,2) / (2.0*pow(.1,2))); cout << P << endl; if (P==0) cout << "P is zero!" << endl; [/code] Is this underflowing so it is getting rounded to zero? The problem is that I am taking the log of this, so if it …

Member Avatar for Rashakil Fol
0
111
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
147