5,331 Posted Topics

Member Avatar for Beachtime

Very elegant, and low cost! Of course, this $0.25 fix will never be incorporated by Dell - too expensive! In my professional opinion (as an electrical and software engineer) this is a design flaw, and should be fixed at no cost to users. Yeah, that and $5 will get you …

Member Avatar for rubberman
2
251
Member Avatar for Paul_30

My thinking is that this may be normal behavior - a system-level POST (Power-On Self Test). Use the HP diagnostics as Beginnerdev suggests to see if they determine there is a problem. If not, then ignore it would be my recommendation.

Member Avatar for rubberman
0
235
Member Avatar for bostjanv

Yes, the variable 'a' is const (you cannot change it), but the VALUE of the variable is a standard scalar value, which is not necessarily const. You need to cast the value to a const, as in: `const int b = (const int)a;` I agree that this should not be …

Member Avatar for bostjanv
0
114
Member Avatar for ahmedelsadek94
Member Avatar for afinepoint

If this system was still under warranty, then insist that Asus provides you a new installation disc gratis! If not, then caveat emptor - never purchase a system without recovery devices, or a means to re-install the operating system if there is a major failure such as this! This is …

Member Avatar for rubberman
0
210
Member Avatar for Jorgeab

Most systems will enter the bios setup if you hold down any key (like esc) when starting to boot.

Member Avatar for rubberman
0
101
Member Avatar for gashaye

Sorry, but we don't do your homework for you. Make an effort to solve the problem, post your code and compiler and/or runtime errors here, and we may give you assistance.

Member Avatar for rubberman
0
92
Member Avatar for Coramez

Get a degree in computer science. Learn multiple programming languages. Become competent in graphics development. BTW, Newtonian physics is also helpful for game development.

Member Avatar for Nimerion
-1
151
Member Avatar for RobertHDD

I'd up the power supply to 1000w instead of 800 for this size of gear. I presume it is a full-size tower?

Member Avatar for RobertHDD
0
151
Member Avatar for zahra123

I have used Lex and Yacc and hate them! Part of the problem is that writing parsing rules is not trivial, and the other part is that they generate in-line code that cannot be easily modified - any changes are wiped out the next time you generate the code. My …

Member Avatar for zahra123
0
526
Member Avatar for pintukennady31

There are many good articles on the net, including Wikipedia, that will explain these concepts to you.

Member Avatar for happygeek
-2
87
Member Avatar for senait.kifle.127

Assuming that the strings are dynamically allocated (with operator new or the C-style malloc/calloc functions) then they will remain around after the list pointer is deleted. More code would be helpful to enable us to better advise you.

Member Avatar for NathanOliver
0
255
Member Avatar for Maritimo

Well, there are a number of problems with your code. Example, in the class B constructor, this B(int i1_, int i2_) : A{i1_}, i2{i2_} {} should be this B(int i1_, int i2_) : A(i1_), i2(i2_) {} Watch your parens vs brackets!

Member Avatar for pritaeas
0
397
Member Avatar for amal.mohammed.7505

What NathanOliver said, plus we aren't here to help you cheat on your homework assignments. Make an *honest* effort to solve the problem, post your work here, and we will make appropriate comments.

Member Avatar for jencas
-1
262
Member Avatar for svsathyavishnu
Member Avatar for maria.javed.3990
Member Avatar for theashman88

This is likely a code editor issue. What editor are you using? The Windows VS editor, Eclipse, or something else?

Member Avatar for nullptr
0
7K
Member Avatar for pintukennady31

What do you know about Linux? Have you tried to use it? Things that come to mind: 1. touch filename 2. echo "" >filename amongst others.

Member Avatar for rubberman
-3
106
Member Avatar for Ghost0s
Member Avatar for rubberman
0
198
Member Avatar for arashe
Member Avatar for N S K
Member Avatar for akkyboy
Re: net

You can setup routes on your computer, either windows or Linux, so the computer can access other systems. Essentially, you are turning your computer into a router.

Member Avatar for rubberman
0
117
Member Avatar for NoCodeMonkey
Member Avatar for rose_2

Linux usb modems are a species of serial modem. You need to use the network management tool to configure it properly, as a PPP device.

Member Avatar for rubberman
0
195
Member Avatar for usmanjani

Nutster is a newbie poster here, but is giving a lot of very good advice from what I have read so far. I am giving her/him a big thumbs-up.

Member Avatar for usmanjani
0
161
Member Avatar for nyka.avellaneda
Member Avatar for rubberman
0
47
Member Avatar for omar.elbakly.95

One could always compute the size of temp[] and temp1[] at runtime, malloc() the arrays, and then use memset() to initialize them, resulting in a pretty much infinite triangle size. Of course, you still need to be sure that the initial array sizes are odd, otherwise you miss the pointy …

Member Avatar for Maritimo
0
1K
Member Avatar for JwAlstrom

It can be reconfigured from a router to a bridge, but as for the WiFi access point, not really. You can use it with an SSID that is different from the other one, connect them with an Ethernet cable, and then connect to either to get internet access. I do …

Member Avatar for Prtablegm
0
407
Member Avatar for raliot

Why do you have 3 main() functions here? Are you trying to show various approaches you have attempted? If so, then break them into separate code blocks, or postings to this thread. Thanks.

Member Avatar for raliot
0
294
Member Avatar for IsaacMessi10

I think your problem is here: for (int i = 0; i < messageList.Length; i ++) { if (messageUserList[i].Contains("_0")) { . . . } } You probably need to set the guard barrier `i < messageList.Length` to `i <= messageListPos`. You have initialized the strings in messageList and messageUserList up …

Member Avatar for IsaacMessi10
0
139
Member Avatar for fanabanana

Start by describing what entities you need (classes such as Student, Professor, Subject, Schedule, etc) to deal with, and how they interact (methods such as `subjectTaughtBy(const Subject*, const Professor*);`). An object-oriented approach to C programming can help a great deal, even if you don't have classes per se. It helps …

Member Avatar for rubberman
0
164
Member Avatar for cannon_1

Have you verified that both the basic lapack and blas packages have been properly installed? Look in /usr/lib for the appropriate libraries, or download and install them directly. In any case, lapack and lapack++ are system performance testing tools, primarily to scope the math processing capabilities of a system. Is …

Member Avatar for rubberman
0
230
Member Avatar for Reverend Jim

I read this in SlashDot or similar blogs the other day. So, when your e-smoking friend complains about headaches, just say it is the NSA or GCHQ scanning his memory! :-)

Member Avatar for rubberman
0
98
Member Avatar for it@61@sec

You could write a bash script to start it up on login (calling the script from ~/.bash_profile which is run when you login) to the system where it could ask for the password required. Anything else, keeping it in the script file for example, would not be safe as noted …

Member Avatar for rubberman
0
234
Member Avatar for hamza233

1. Learn to write code in C++ (not a trivial exercise). 2. Learn some C++ game API's that will make your work easier (not a trivial exercise either). 3. Design and model your game (what, where, how). 4. Implement it in the API of choice. FWIW, NathanOliver's post was spot …

Member Avatar for rubberman
0
200
Member Avatar for Shutout180

Sorry, but we don't do your homework for you. I assume you have some C coding text books? There is also plenty of tutorial stuff on the internet for this. In any case, first writing out the processes and procedures you program will implement (pseudo code) is a good first …

Member Avatar for Nutster
0
257
Member Avatar for cocojrch00
Member Avatar for writerervin

GUI toolkits are VERY complex. Moschops has identified many of the issues you face. My advice is to study other GUI toolkits, such as Qt, WxWin, etc for some perspective on the issues involved. Also, how many years do you have to spend on this project? :-)

Member Avatar for Moschops
0
292
Member Avatar for cannon_1

Are you sure you have compatible versions of Blas and Lapack installed? Also, what is the output of ../configure when you run it in the extracted directory for lapack++?

Member Avatar for cannon_1
0
647
Member Avatar for aseel.jaradat.9

Huh? Please be more expressive of what you are trying to do, and the systems you are trying to do it on.

Member Avatar for iamthwee
0
110
Member Avatar for alon4963

There are too many fundamental errors in your code to begin commenting on it. You have stuff in your .cpp files that should be in the headers. You are using constructors with values that are not visible in their scope. You are initializing class member variables inside constructor bodies when …

Member Avatar for rubberman
0
150
Member Avatar for bjf1992
Re: c++

The address of 'x' won't change. The value of ptr may. First, ptr is assigned the address of x, then it is changed to '200'. IE, the results of the output values of 'x' and 'ptr' will differ. However, some systems will generate a core dump (segfault) when accessing the …

Member Avatar for rubberman
0
117
Member Avatar for Aws_1

What Nutster said. I assume you mean a Nokia cell phone? They already have an RTC. Nokia phones use HTML and JavaScript for application development. Have you visited the Nokia/Microsoft web site(s) to get information about application development on their mobile systems?

Member Avatar for rubberman
0
154
Member Avatar for digikiller88

I would suspect a problem with your HDMI gear. If your system is JUST out of warranty, bitch loudly to Toshiba. They will probably fix it gratis in order to keep a customer. Threaten them that you will NEVER purchase another Toshiba device if they don't fix it...

Member Avatar for digikiller88
0
130
Member Avatar for asadaliwah

You don't provide enough information. Did you do a full GUI install, or just a command-line server install? Do you get to a login screen or window? If so, after the first part of the installation and it boots for the first time, it should ask for a user ID …

Member Avatar for rubberman
0
209
Member Avatar for Leo G
Member Avatar for Builder_1

Yes? And what errors are you getting? Compiler errors, or runtime errors? Show the output. Asking us to analyze 167 lines of beginner code is asking a bit much...

Member Avatar for Builder_1
0
379
Member Avatar for happygeek

Well, Windows and its applications are still the 800lb gorilla target of malware writers (viewing all the credit card hacks recently at Target, Home Depot, et al that infected Windows cashier terminals), though Mac OSX is getting more attention these days. I personally believe that Linux is still the most …

Member Avatar for happygeek
1
1K
Member Avatar for aluhnev

I would recommend that you create a support class, call it Person, that encapsulates name, address, city, state, and zipcode. That will simplify the underlying code considerably. IE: class Person { private: string name; string address; string city; string state; string zipCode; public: Person() {} Person(const string& aName, const string& …

Member Avatar for rubberman
0
259
Member Avatar for EijahJuliana

What make/model of phone do you have? Current Android phones (I have several) have a flashing light at the top of the phone that is an indicator of your battery life remaining. Blue and green are good. Orange and red indicate you need to charge the device.

Member Avatar for rubberman
-2
135

The End.