-
Replied To a Post in Problem with Chrome
Sounds like a Chrome issue. What is the version of Chrome you are using, and if it is the latest, what happens if you revert to an earlier version? If … -
Replied To a Post in Ubuntu 12.10 and problem with identifying network as i use USB flash !!
Are you using WiFi, or wired Ethernet? If WiFi, then you probably need to install the proprietary driver and firmware for your WiFi hardware. Run "lspci" and "lsusb" and post … -
Replied To a Post in Array
To complete what David W said - do this: `function(&array[0])` or more simply `function(array)` -
Replied To a Post in Oracle forms 10g linux client
I would suggest that you post this to the Oracle forums. One issue may be that your icons are not in the expected place by the tool. -
Replied To a Post in collect2.exe:fatal error:cannot find 'ld'
The 'ld' command is the linker for GCC compilers, such as MingW. If you installed Ming in a normal manner, it should be on your system as well. Possibly you … -
Replied To a Post in Problem with Chrome
What happens if you try Firefox instead of Chrome? -
Replied To a Post in 301 redirect that preserves POST data
Good suggestions Jorge. I am writing a lot of PHP code these days, and you can do it in PHP on the server side. I was just hoping that someone … -
Replied To a Post in Finite State Machine (FSM)
The FSM code I have written in the past has been for both C and C++. In any case, each state has events it responds to, and those transition to … -
Replied To a Post in 301 redirect that preserves POST data
Dani, what browser are you using? My people suggested that you try another, like Firefox which has good diagnostic and tracing tools to help determine what is going on. In … -
Replied To a Post in beginner code check
I'm only going to say one thing - you don't validate your input data. In the constructor you do not verify that either the suit or rank passed is valid. … -
Replied To a Post in Calling a Function
Not indenting your code makes it very difficult to read... :-( -
Replied To a Post in Help newcamd Protocol Project
Re-read the protocol? Study some implementations? Do some research? This is non-trivial stuff, and I honestly doubt that many of us could, without study, answer your questions correctly. I have … -
Replied To a Post in 301 redirect that preserves POST data
Sorry Dani - been up to my eyeballs so far this week - merger of Nokia and MS stuff... I am sending myself a "nag" to ask my colleagues about … -
Replied To a Post in eMachines computer monitor doesn't come in
The move probably damaged the computer. Either the vibrations and such that occurred during the move unseated some of the socketed circuits, or they damaged the hard drive. You need … -
Replied To a Post in opnet csma/cd
When I taught networking protocols, this is what I did in class - remember that csma-cd means carrier-sense-multiple-access with collision detection. IE, the network interfaces listen for a clear carrier … -
Replied To a Post in Finite State Machine (FSM)
I've been writing FSM execution engines for 25+ years. These have been used to parse computer languages, implement TCP/IP protocols, and implement generic terminal emulation programs. What do YOU know … -
Replied To a Post in cardinality
Since this is obviously a class problem, what does your text and class notes say? FWIW, some of your input here is not decipherable since your input ended up generating … -
Replied To a Post in Practice problems on time complexity
School exercise? What do you know about the stated algorithms, mathematically speaking? -
Replied To a Post in .. Write C++ program to implement following instructions.
Sorry, but we don't do your homework for you (that is cheating). Please make an effort to do the assignment, and we can help you with your mistakes. -
Replied To a Post in graphics library problem in c
Please post the code here. Without seeing your code in context, there is no way to answer your question. -
Replied To a Post in Compile Windwos netcat under linux?
Well, it depends upon the dependencies of the package on Windows-specfic libraries and header files. I can only ask why you would want to do this? Experimentation? Need exact functionality … -
Replied To a Post in Pcwont boot...after playing around with ram?
You need to be sure the new RAM is compatible with your system. -
Replied To a Post in Compile Windwos netcat under linux?
Just install the nc package on Linux. That is the native Linux version of netcat. -
Replied To a Post in Parsing a date
Also, these lines are wrong char date[]="20141018"; //the date is 10/18/2014 char _mypointer=date; they should be char date[]="20141018"; //the date is 10/18/2014 char* _mypointer=date; Also, DO NOT use leading underscores … -
Replied To a Post in java sql syntax
These lines: // System.out.print(aa + bb); System.out.print(( "SELECT " + all +" FROM ")); are inside your loop, so for each column you are selecting on, it adds "SELECT column-name, … -
Replied To a Post in Avoid microphone use?
For Linux, go into "Sound Preferences" and disable the audio input device. Don't have Win8 so I can't say what to do there, other than what I would do with … -
Replied To a Post in Windows 8 no internet access wifi
It is probably an issue with your routing tables in Windows 8. Sorry, but I haven't had the "pleasure" of using Windows 8 (other than the phone version) yet, so … -
Replied To a Post in Hi friends
Not much, mostly, though the kernels and a lot of services are different. There are a number of Unix versions, some of which are free and open source (BSD mostly), … -
Replied To a Post in windows refuses to open new windows at 37% RAM usage
Perhaps your system is still pwnd and/or corrupted? Have you tried re-installing Windows from scratch (from DVD)? Also, did you scan your boot sector and recovery partition for infections. I … -
Replied To a Post in 301 redirect that preserves POST data
I suspect we do this with our mobile browsers. I'll have to ask one of my colleagues tomorrow and get back to you as I don't personally know the process. … -
Gave Reputation to Reverend Jim in c programing
That was a mistake on my part. I meant to downvote the OP. I have reversed the error (I hope). Sorry about that. -
Replied To a Post in c programing
NP. I get fat fingers from time to time! :-) Thanks for the response. -
Replied To a Post in c programing
@Reverend Jim So, why the downvote? -
Replied To a Post in Config file to web interface and vice versa
What have you tried so far? We don't do your homework for you, but we will help you sort it out after you make an honest effort to solve the … -
Replied To a Post in want arabic text printed in java as string
Have you set your LANG environment variable to the appropriate setting for Arabic output? The default for most systems is utf-8 which would not help much. There may be Java … -
Replied To a Post in Java to Mips
So, where is your MIPS assembly code? -
Replied To a Post in c+++
First, work out the process in plain language (pseudo code). Then, write the code that follows that process. Good luck! -
Replied To a Post in using of AT Commands
Standard libraries are stuff that all C compilers have to support in order to considered "standards compliant". The functions you need are things like `FILE* fopen("COM:", "rw");` (for Windows), or … -
Replied To a Post in c programing
See my response in your duplicate posting... -
Replied To a Post in Small Presentation device that can connect internet and hdmi port
What about a Raspberry Pi? Runs Linux, has ethernet (usb, etc), boots from an SD card, and has high-dev video (hdmi I think). Cost is under $50USD. -
Replied To a Post in Help need for CFS(Completely Fair Scheduler) on Linux
Google is your friend, as is www.kernel.org. It is time to read code... -
Replied To a Post in Java to Mips Assembly
Your code is in Java. Where is your MIPS assembler code? -
Replied To a Post in How to install drivers on Linux on fresh disk?
Most of the time, when you install Linux, it already has the drivers you need for your hardware, including video. Linux is NOT Windows! It will interrogate the system on … -
Replied To a Post in How long it will take, to degrade worth of 2TB RAM to now 2GB RAM
Well, given that a 2TB disc now costs under $100 USD today, I would say about 2 years... :-) A 2GB disc? You can't even buy one any longer, other … -
Replied To a Post in router radiation specification
Which of these are WiFi access points? Regular switches and routers may radiate a little EM radiation, but probably no more than a regular AM/FM radio receiver. WiFi operates in … -
Replied To a Post in Amazon Web Service
1. AWS software is probably not purchasable. 2. As Darren said, AWS provides an infrastructure. You pay for servers and services as used, and the more you use, the less … -
Replied To a Post in CUDA and threads interaction
I would suggest that you read the CUDA documentation. Most nVidia GPU's have 100's of CUDA cores, so if done properly, this should not be a problem. How many threads … -
Replied To a Post in undefined reference to 'readline'
If you are trying to learn objective-c, are you sure you install the gcc-objc (objective-C) compiler/package on your system? Also, try replacing the line `#import <stdio.h>` with `#include <stdio.h>` -
Replied To a Post in DOS memory and Unix time calculation question
Mike does do that well (explain stuff) doesn't he? :-) -
Replied To a Post in High availability for server backed mobile Apps
You are only using 1 server for 10,000+ users? It is doable - we use about 5000 servers to handle approximately 100M mobile browser users (20,000 per server), but we …
The End.