5,331 Posted Topics

Member Avatar for Alan_4

Alan, you are on a roll here! See my other reply to your posting about shell programming. Once again, we don't do your homework for you, but will help you once you have made some progress in writing the program. FWIW, this problem is not trivial. Complete the other one …

Member Avatar for rubberman
0
244
Member Avatar for vishalonne

If you have backup copies of all of your web pages and application files, then run a checksum (cksum, md5sum, etc) on both the backups and the ones that are active in your web server directories, and then compare them. My guess is that you have been infected with a …

Member Avatar for rubberman
0
204
Member Avatar for sumdumhoe

As moschops said. Also, in modern compilers you would use either stdout, or stderr. One other thing. It is good practice to initialize external variables such as page and line where they are declared. IE: int line = 1; int page = 0; Uninitialized variables tend to cause many sleepless …

Member Avatar for Ancient Dragon
0
199
Member Avatar for Sanjeetjmp

"STATEMENTS IN THE FUNCTION ARE SUBSTITUTED WHENEVER THE FUNCTION IS CALLED." This is very true, but the only thing on the stack would be automatic variables in the function. The function itself is turned into machine (or intermediate) code when compiled. It can expand the size of the translation unit's …

Member Avatar for Ancient Dragon
0
219
Member Avatar for laavanya

Topics - there is not just one. 1. Cloud computing 2. Large scale distributed systems and computations 3. Big Data and complex analytics 4. Mobile computing 5. Computer and network security 6. IoT (Internet of Things, such as sensor arrays, smart appliances, etc). I'm sure the list goes on, but …

Member Avatar for laavanya
0
225
Member Avatar for asmaa_4
Re: c++

On most current 64-bit systems, a long int is 64 bits and an int is 32 bits. However, as AD said, look in /usr/include/limits.h (Unix/Linux), or wherever limits.h is found on your system. You can also use the sizeof(int) and sizeof(long int) in your code to determine what they are …

Member Avatar for yasir prince
0
113
Member Avatar for sireiz

Google Maps, Nokia Here, etc. Google Maps is pretty ubiquitous. Nokia maps are more for the mobile domain such as cell phones, GPS devices, and automotive navigation systems. FWIW, Nokia maps were able to navigate me to some pretty obscure places in foreign countries where Google was clueless! They have …

Member Avatar for rubberman
0
190
Member Avatar for matt55284

What Moschops said, for C++, but you CAN use a C construct, const char* for the variables, and then assign a new string to them. Example: const char* FileToInject = "File_Name.xxx"; const char* ProcessName = "Process_Name.exe"; // Do stuff with file and process names, and now change them. FileToInject = …

Member Avatar for rubberman
0
354
Member Avatar for singularity~

Why the backslash? Linux file names can have spaces in them. However, when you invoke the name, place double quotes around the $SCHOOL variable. IE: SCHOOL="/home/stephen/Steve's Stuff/School" mkdir "$SCHOOL" cd "$SCHOOL" If you don't use the double quotes when you create the directory, the single quote will make bash take …

Member Avatar for rubberman
0
226
Member Avatar for savedlema

That port may be blocked by your company's firewall. Check with your network operations people. You may need to go through a proxy server to get to it, and they will need to white-list it with the proxy server.

Member Avatar for rubberman
0
155
Member Avatar for olabamiji14

This is just so totally unclear! Please get into MUCH more detail!

Member Avatar for lativa
0
96
Member Avatar for y0yie_333

Good luck! This is a non-trivial problem, and requires significant pattern analysis and statistical skills to solve. You can never say with 100% certainty that a particular fingerprint matches a specific person - only that there is some % of probability that it does. IE, if the pattern has a …

Member Avatar for abelingaw
0
482
Member Avatar for ClimateWonk

Don't bother with the expense of building your own gear. Rent time on a large Amazon cloud system to do the analysis. When you are don't, you shut it down and aren't being charged for resources you don't need. If this is an occasional need, then it can be a …

Member Avatar for ClimateWonk
0
276
Member Avatar for samtechae

@richieking is being sarcastic. What he is saying, in plain English, is that we do not do your homework for you. We will help you, point out obvious errors, and such. Make an attempt to solve the problem, post the code here (if it isn't working), and if it isn't …

Member Avatar for anku gupta
0
129
Member Avatar for makakus

What operating system are you running? This is critical because each has functions to do this, but they are very different in approach. What you would do with Windows is NOT what you would do with Linux.

Member Avatar for makakus
0
250
Member Avatar for napninjanx

I hope you have a good (great) attorney. If you sold an app that does A to Google (or whoever) for a gazillion $$, then write one that does something entirely different! If it is as great as the first one, then Google (or whoever) will probably pay you 2 …

Member Avatar for napninjanx
0
180
Member Avatar for jigar.makhija

SQL Server is basically Sybase with warts. Please provide examples - input and subsequent output. Also, provide information about the API's that your are using, language (C, C++, C#, whatever), and the functions you are using to store the data.

Member Avatar for rubberman
0
48
Member Avatar for ahmad313

Seems clear to me. Set up array of 3 files to read. Fork 3 child processes (see fork/exec man pages), each of which reads one of the files. Each sleeps for 3-10 seconds (random time I would assume), at which point they send 50 characters (are they 8-bit, or 16-bit …

Member Avatar for rubberman
-1
148
Member Avatar for TheDarkHorse

Ok. We don't do your homework for you. Do you understand C++ passing function arguments by value vs. passing them by reference? If not, let's start there. If you do, tell me what YOU think they mean (with illustration code), so if you are falling into the deep end I …

Member Avatar for rubberman
0
113
Member Avatar for lewashby

Besides having compatible frequencies, they also need to support the same protocols, such as 802.11a (5.2GHz), 802.11n (both 2.4 and 5.2 GHz), 802.11b (2.4GHz), etc. Most 802.11n products also support a/b protocols. 802.11a-only devices don't support b/n protocols.

Member Avatar for lewashby
0
109
Member Avatar for Rshrth
Member Avatar for rubberman
0
131
Member Avatar for theashman88

Your example gets those that start with an even number, not the ones that have an even number at the end of the number string. IE, it will properly return "cp2*.enc" as well as "cp4*.enc", "cp6*.enc", etc. So, that would include "cp211.enc" and such.

Member Avatar for rubberman
0
1K
Member Avatar for me2gepro
Re: ISP

You mean their IP addresses? You can use the nslookup tool to do that, such as "nslookup att.net".

Member Avatar for rubberman
0
47
Member Avatar for Cap'nKirk
Member Avatar for murugami eric

Don't purchase anything. Either get Apache (FOSS - free, open source), Tomcat (ditto), or Nginx (also FOSS). Also, run your server on Linux - it is much more secure for this sort of purpose than Windows of any sort.

Member Avatar for murugami eric
0
163
Member Avatar for sohail.butt.144

What deceptikon said. Don't ask us to do your homework for you. If we were to solve it for you, what would you learn? How to cheat? :-(

Member Avatar for lala56565
0
187
Member Avatar for Perry_1

Agile, in my opinion, is just the hot process of the day. Not much more useful than the outdated waterfall technique. We use it at my company, but it doesn't get any more work done than the less "structured" methods we used in my previous position (principal engineer in a …

Member Avatar for Perry_1
0
139
Member Avatar for Chris_19

PHP is good for web applications - it is similar to C++ in terms of classes, inheritance, etc; however, it also allows embedded html code. It is also a web server-side tool. Unless you run a 5.5.x or later version, it cannot be run as a server on its own. …

Member Avatar for diafol
0
135
Member Avatar for 2concussions

Another option is to not use Windows for this... :rolleyes: Sorry, sarcastic genes showing here.

Member Avatar for rubberman
0
272
Member Avatar for lynette_1

Google is your friend! Also, we don't do your homework for you! If this isn't homework, then re-read the first sentence...

Member Avatar for rubberman
0
154
Member Avatar for davy_yg

If you have a static IP address and that is associated with a registered domain name, then it is available 24x7, assuming the system is running and visible to the internet. I have had friends who provided hosting services to rural towns in Massachusetts in the past doing this - …

Member Avatar for rubberman
0
214
Member Avatar for guywithpc

Send it into Dell for repair. If it is under warranty, you can request a pre-paid shipping box for it. When you get it (takes a day usually) then send the computer back to Dell for repair. If it isn't under warrany, you can box and ship it yourself (your …

Member Avatar for rubberman
0
117
Member Avatar for mgold

If you want to understand this stuff, you need to study formal logic! Boolean predicate logic for sure! In my engineering studies in the mid-1960's I had to take a philosophy class as a requirement. I took the formal logic course (part of the philosophy dept), which has stood me …

Member Avatar for sepp2k
0
283
Member Avatar for kolitha.nayanapriya.9

Not enough information... You say that IE works, but not other browsers. What about other stuff?

Member Avatar for rubberman
0
55
Member Avatar for August AlieN

You can also use symmetric encryption, where the same key is used to decrypt the message as is used to encrypt it. Depending upon the encryption algorithm used, this can be more secure than public key encryption when JorgeM talks about. The major issue with this is how to securely …

Member Avatar for rubberman
0
175
Member Avatar for suela

Do some research (google search) on Eliza! Here is a link to get you started: http://en.wikipedia.org/wiki/ELIZA Natural language processing is very difficult - companies like Google, Microsoft, and others are doing serious work on these problems, but they are PhD-level ones. Here is another link to ACM articles and papers …

Member Avatar for Ancient Dragon
0
178
Member Avatar for dingo#

If you have a 230v main power and the system was switched to 115v, then the increased amperage required to deliver the required load can have caused serious damage to the system, although many power supplies have limiter circuitry (fuse or circuit breaker) that can limit the damage to the …

Member Avatar for PcTestCard.com
0
788
Member Avatar for Howieb

See my reply to D Ray about his power problem. Likely similar situation.

Member Avatar for Howieb
0
201
Member Avatar for clife

What about header files? They declare the functions that are in the shared libraries. If this is linux (which I assume since you say you are using .so files), then you need the developer package for the library, which will install the headers for you. Then, as AD asked, are …

Member Avatar for L7Sqr
0
226
Member Avatar for bryann

Well, I was going to suggest a VM, like VirtualBox, that can run old 16bit versions of MS-DOS and Windows (3.x).

Member Avatar for Begginnerdev
0
90
Member Avatar for islam-morad

Not enough information. What kind of "certificates"? How are they formatted? Is this a public/private key certificate? Are you using PGP keys? Show your work.

Member Avatar for islam-morad
0
198
Member Avatar for naveed1122

Gah! If you are getting that far along in your "education" and can't think of a project that gets your juices flowing, then you don't deserve to graduate! Just my humble opinion... :-( So, what do you know or have done with web design? What about working with Android (Dalvik/Java)? …

Member Avatar for rubberman
0
53
Member Avatar for D_Ray

The power circuitry in the laptop may be bad. Often it is caused by damaged capacitors. See if you can see any that seem swollen or leaking electrolyte. This is the most common cause of this sort of failure. Repair isn't hard, but you need really good soldering skills to …

Member Avatar for D_Ray
0
204
Member Avatar for COKEDUDE

There is also (on some systems) a long double which should be 128 bits (16 bytes) in size. In a C or C++ program, you can tell how big each type is by using the sizeof(type) function/macro. It will return the number of bytes the type occupies.

Member Avatar for rubberman
0
100
Member Avatar for CFROG

I haven't installed php on an ubuntu system, but have on my redhat, centos, and scientific linux (all RHEL 6.4 based) systems. I needed php 5.5+ and those systems are still at 5.3.3, so I had to install from source. I am not necessarily saying that you will have to …

Member Avatar for matrixdevuk
0
417
Member Avatar for mustafahad

Not enough information. What database API's are you using? What functions? Is this a command-line program, or GUI? FWIW, SQL is its own language, and is passed to a database front-end to be parsed and executed. For example: select * from table_name where column=value;

Member Avatar for rubberman
0
44
Member Avatar for COKEDUDE

Myself, when processing textual data I usually read a complete line, and then parse it for tokens of interest using string functions such as strstr(). I process lots of log files efficiently this way.

Member Avatar for rubberman
0
1K
Member Avatar for lewashby

Most systems have some sort of I/O ports, and pi is certainly likely to have such. You should be able to write software to monitor the port(s) that the switch is connected to (how are your soldering skills?) and trigger an interrupt handler as needed. This is not "junior grade" …

Member Avatar for rubberman
0
130
Member Avatar for lucasmonteiro.uugwanga1

If this is a 64-bit machine, why install a 32-bit OS? In any case, the installation was probably a failure, hence the cyclical reboot symptom. Try re-installing the OS at the least.

Member Avatar for rubberman
0
46
Member Avatar for alumab1

Which OS is it running? If Windows 8, then you may be out of luck as yet. If Windows 7, then you are more likely to find a suitable driver on the drive manufacturer's web site.

Member Avatar for rch1231
0
121

The End.