It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
all. I downloaded the Qt source, and then proceeded to start building it on a Mac. At the moment, it's been four hours. Is it supposed to take this long? If not, what am I doing wrong? It's just building, building, building, building.... And using a lot of resources. It's confusing.
Yes, it is meant to take this long.
You should consider the use of parallel make.
make -j4 uses 4 CPUs.
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to do some statistical analysis with an ms-sql database for an aps.net application. What are the options as I don't see many built-in functions for my purpose? Thanks for any suggestions. Options that you actually use would be appreciated.
Check out MathDotNet, it can do pretty much anything you'd need.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I use wget to download the HMTL, but what I get is different from what I see in the browser. Particularly, I am interested in the latitude of the location
wget "http://m.yp.com/30332/pep-boys?page=0"
grep 'data-lat=' pep-boys\?page\=0
... NO RESULTS :(((
The only possible reason is that your headers aren't the same than those your brother so the webserver doesn't behave the same way.
Give a look at this : http://www.askapache.com/linux/wget-header-trick.html
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I've been asked to model my application. I'm not clear what this means, Perhaps something related to the architecture of my project?. Does it mean giving them a break-up of the classes? Or something like building a use-case or class diagram? Or perhaps something else?
EDIT: I cannot ask them!
I'd go with UML (Unified Modelling Language). It allows you to lay out classes, methods, inheritance, etc. in a graphical format.
A quick Google search gives this FOSS option:
Umbrello UML Modeller
EDIT: Just realized that's linux-only, so here's the Wikipedia page for a whole bunch of other options.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm trying to create a directory structure, with folders,similar to Windows Explorer, with R. Someone can help me with this ?
Thank you
If you want this for visualizing things within R, rather than directories on your disk (in which case you can use choose.dir or similar tools as suggested), then look at the TkListView function in the TeachingDemos package to see if that is the functionality that you want. If the TkListView function itself does not do what you want, but gives the correct display, then you can look at the code for the function (it is only R code, other than the Tk calls) and see if you can modify it to do what you want.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I need to be able to read information about project lines in the Qt project which is building by MinGW.
How can I do it? Where I should include - /MAPINFO:LINES , to get output file with information about lines numbers?
Try to use __LINE__.
Example:
qDebug()<<__LINE__<<"hi";