5,331 Posted Topics

Member Avatar for xednycrex

What deceptikon said. More memory is good - if your system supports it, then 8GB is appropriate, especially once you start running Oracle. BTW, what operating system are you running?

Member Avatar for xednycrex
0
204
Member Avatar for mido29

Sorry, but we don't do your homework for you. Please post your code that tries to solve the problem/exercise and we might be able to help point out your errors.

Member Avatar for rubberman
0
42
Member Avatar for chachajay.lol

This is not an exercise for a newbie! I have experience writing trading programs as a professional (options trading with automatic portfolio balancing - a lot of Black-Scholes and similar algorithms to compute risk factors - the Greeks). You need a feed from the exchange(s) to get real-time quotes. Since …

Member Avatar for rubberman
0
251
Member Avatar for lewashby

Not sure, apart from removing the drive from the ipod, installing it in a carrier, connecting it to another computer, and then running a badblocks check on the device. If it appears as a USB attached drive when the ipod is connected to your computer, then you can run the …

Member Avatar for rubberman
0
145
Member Avatar for Alaa_6

As Mike2k said, apt-get/aptitude/synaptic/dpkg are package management tools for Debian-based distributions such as Debian, Ubuntu, Mint, et al. For RedHat-based distributions you can use yum, or rpm. That said, yum is the current preferred package manager for RH distributions as it deals with dependencies much better than rpm, whereas with …

Member Avatar for rubberman
0
5K
Member Avatar for admiri92

Yes, exceptions are standardized, and all compilers that I am aware of handle them correctly (not always the case in the mid-90's). This signature indicates that `Funct1(int)` may (or may not) throw an exception. In any case, `throw()` specifies that it may throw ANY exception. Usually you specify what exception …

Member Avatar for mike_2000_17
0
291
Member Avatar for tmilner80

Have you gone to the Toshiba user forums to see if others have had this problem? I suspect that few of us have the same gear as you do, so looking on the Toshiba forums is a sensible (to me at least) approach.

Member Avatar for rubberman
0
162
Member Avatar for Zahra_1

Actually, I don't know any standards for pseudo-code except possibly for BNF (Backus–Naur Form) which is used for many standards, including the DDN Whitebook specification of the TCP/IP protocols.

Member Avatar for Zahra_1
0
4K
Member Avatar for earlybirdsean

Do you mean it won't boot from the CD/DVD/USB drive? Or does it try, but fail? If it tries, but fails, then you may have a bad image. If it won't try to boot from the device at all, then you probably need to go into the BIOS and tell …

Member Avatar for catsman
0
7K
Member Avatar for toomutch

Give the file system on the drive a label. You can then find it with the e2label command.

Member Avatar for toomutch
0
167
Member Avatar for Alan_4

From your post it appears that you are running Linux/Unix, right? You are writing a bash script? If this is so, study the bash man page: man bash - that should provide you enough information to get started. We don't do your homework for you, but will help you sort …

Member Avatar for cmk001
0
398
Member Avatar for johnas.delacruz

There are a number of unlimited precision math tools. The most used one is probably boost. Here is a wikipedia article about arbitray precision math tools: http://en.wikipedia.org/wiki/Arbitrary-precision_arithmetic

Member Avatar for David W
0
471
Member Avatar for Curious Gorge

Two popular multi-platform IDE's for software development are Eclipse and Code::Blocks. I have quite a bit of experience with Eclipse and little with C::B, but I have heard a lot about it. I did install it once, and decided that if I wanted an IDE I would use Eclipse. Myself, …

Member Avatar for Curious Gorge
0
286
Member Avatar for RikTelner

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 that in the format of an SD or USB device! :-)

Member Avatar for RikTelner
0
243
Member Avatar for natasya.aldridge

Sorry, but we don't do your school assignments for you... :-( There is a plethora of information on the internet about this. Start with a Wikipedia search.

Member Avatar for kev breezy
0
177
Member Avatar for Dang_1

What operating system are you using? Also, I presume you want to use free (preferably open source) software?

Member Avatar for sarahwilliams25
0
75
Member Avatar for sunnyx

Some viruses / malware are VERY hard to find, and may not be detected by your tools. Another possibility is that the drive is starting to fail, and a lot of the lag is due to the system re-reading disc sectors until they get them successfully. Most modern system drives …

Member Avatar for sarahwilliams25
0
264
Member Avatar for MikeBah

Well, set_intersectWith() is not implemented. If you don't write the code, how do you expect it to work?

Member Avatar for rubberman
0
583
Member Avatar for joe_5

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 the output here. Then I can help you get the proper drivers and firmware installed. FWIW, this is not an …

Member Avatar for joe_5
0
291
Member Avatar for kevsam

Have you gone on the device's web site and looked to see if they have Win7/Win8 drivers for it?

Member Avatar for rubberman
0
84
Member Avatar for happygeek

Good thread! Best laugh all day! :-) Thanks folks. My company has been purchased by MS (the deal hasn't cleared yet, but will soon), and WE are confused by the change. 1/2 of our discussions mention "SkyDrive" and 1/2 "OneDrive". Begs the question, just who's on first (sic)? FWIW, here …

Member Avatar for Ancient Dragon
2
796
Member Avatar for rodion.gorkovenko

I would suggest a strongly recursive language such as prolog, lisp, snobol, APL, etc. :-) Yeah, we are getting into the prehistoric era of programming, but that doesn't say some of those languages aren't appropriate for this purpose! These days, given the penchant for web-based programming, javascript or some of …

Member Avatar for Schol-R-LEA
0
360
Member Avatar for NoR_1
Member Avatar for jwenting
-2
92
Member Avatar for ColeTechInc

What did you find when you Googled that? In any case, it is a video input card, not a "Security Camera" card.

Member Avatar for ColeTechInc
0
169
Member Avatar for janith.amarawickrama

A couple of minor issues with the assignment operator in StuXYZ's example: Way& Way::operator=(const Way& A) { if (this!=&A) { id=A.id; name=A.id; } return A; } should be this: Way& Way::operator=(const Way& A) { if (this!=&A) { id=A.id; name=A.name; } return *this; }

Member Avatar for rubberman
0
177
Member Avatar for cazmere

Me, I have some futures in the Brooklyn Bridge you might be interested in. Far below par value I think! Sorry for all the sarcasm cazmere, but your question is way too vague to answer. Try to be more specific, as in do you want to learn how to write …

Member Avatar for rubberman
0
89
Member Avatar for blue_Student

Myself, I usually write a function (for C programs) or a class (for C++ programs) that handles tokenizing of data - ie, extracts each token to be analyzed. I have found that strtok is unsuitable for all but the most elementary uses. Usually, you will pass a list of delimiters …

Member Avatar for Ancient Dragon
0
518
Member Avatar for dan.doca

I'm sure there are some here who speak Portuguez - I speak Spanish and can guess what your comments mean, but others don't. Please translate your post into English as well as you can.

Member Avatar for dan.doca
0
376
Member Avatar for Adox

Remember, for Windows, if your user uses backslashes (normal Windows format) for directory separators, then fopen will need double backslashes since the backslash is an "escape" character in C strings. Alternatively, you can convert the backslash into a forward slash (/) and the path should work on Windows as well …

Member Avatar for rubberman
0
229
Member Avatar for m.k.thakrar.hospital

Do I hear an echo...echo? :-) Basically, it means that some program cannot find a DLL where it expected to. Either it was deleted, or moved. Usually this is a user error in trying to "clean" the system of unnecessary files.

Member Avatar for rubberman
0
114
Member Avatar for suganyabavani

A dll file contains relocatable binary data/code that can run in a Windows environment. There may be readable strings contained in it, but most of the data is machine code of some kind. As others have suggested, there are cracker and decompiler tools that can turn the binary code into …

Member Avatar for rubberman
0
819
Member Avatar for M. Tribber

.wav files are just data files which contain sound recordings in a non-compressed format (raw data, as opposed to .mp3 files which are compressed and of a different format). If the video player that you are using (Media Player Classic in your case) cannot find it, then you will indeed …

Member Avatar for rubberman
0
147
Member Avatar for actfray

It is possible that someone has pwnd your youtube account. Have you contacted their support page? Have you tried creating a new account? Have you changed your gmail/google password?

Member Avatar for actfray
0
155
Member Avatar for asaidi

How don't your java programs work with eclipse? Please explain in detail. FWIW, eclipse alse supports C/C++ development.

Member Avatar for JamesCherrill
0
135
Member Avatar for cussel
Member Avatar for Amoh

Learn by doing. Decide what program you would want to have, and then create it - there will be a lot of pain and gnashing of teeth in the process, but when it does what you want, you are ready to move on to more.

Member Avatar for rubberman
0
86
Member Avatar for rakesh.menon.16

So, you expect us to analyze 200+ lines of code to find where your logic sucks? Review it yourself with a critical eye, and then post a smaller bit of code here if you still need help. Of course, 136 lines of this input is just data - what does …

Member Avatar for rubberman
0
473
Member Avatar for malladiram
Member Avatar for rubberman
0
46
Member Avatar for M. Tribber

What audio player are you using? If the normal Windows Media Player, have you tried VLC?

Member Avatar for rubberman
0
133
Member Avatar for pwolf

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. If not, you need to throw an exception. Data validation is critical for all programming processes. If you don't verify …

Member Avatar for pwolf
0
346
Member Avatar for syasya

So, you want us to do your homework for you? Make an effort to solve the problem and we can help you. This is not sufficient... :-(

Member Avatar for Alberto Bucur
-1
154
Member Avatar for Dani

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. Send me a personal message as a reminder.

Member Avatar for Assembly Guy
0
806
Member Avatar for syasya
Member Avatar for rubberman
-2
235
Member Avatar for catcit
Member Avatar for Jeff_13

Well, after looking on the HP web site about this system, it is unclear whether or not it has PCI expansion slots. If you are considering purchasing it, and have a need for PCI add-ins, then I would consider other alternatives unless you can get a positive response from HP …

Member Avatar for rubberman
0
143
Member Avatar for SWEngineer

Agree with Jorge with one big caveat - if the drive is encrypted you may not be able to access the data without serious effort, if at all. My company uses full disc encryption, but we use McAfee tools to do it, and they have recovery keys if needed for …

Member Avatar for rubberman
0
210
Member Avatar for mrsajjadmemon

Regular SD cards have a slider that can write-protect the device, but I don't think micro-sd cards have one of those (mine don't). In any case, SD cards over 8GB need to be supported by SD-HC (or newer) controllers. It may be that your phone doesn't support SD-HC (high capacity) …

Member Avatar for cguan_77
0
441
Member Avatar for Reverend Jim
Member Avatar for neha.jebin.18

As Schol-R-Lea showed (but may not have pointed out), you were, at the least, missing the leading left-bracket when defining your class. IE, you posted class itemtype public: . . . }; but it should have been class itemtype { public: . . . };

Member Avatar for David W
0
267
Member Avatar for radhakrishnan.akshai.3

To complete what David W said - do this: `function(&array[0])` or more simply `function(array)`

Member Avatar for rubberman
0
130

The End.