User titaniumdecoy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T13:15:08Zhttp://stackoverflow.com/feeds/user/18091http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1892026/binding-values-to-functions-in-perl3Binding values to functions in Perltitaniumdecoy2009-12-12T02:17:11Z2009-12-12T07:11:43Z
<p>I am using a hash table similar to the following to store the letters that can be entered at a prompt along with that option's description and the function that will be called.</p>
<pre><code>my %main_menu = (
"l" => ["list locks", \&list_locks],
"n" => ["new lock", \&new_lock],
"u" => ["update lock", \&update_lock]
);
</code></pre>
<p><code>menu_prompt(\%main_menu)</code> produces the following menu:</p>
<pre><code> ________________________
| l - list locks |
| n - new lock |
| u - update lock |
|________________________|
(l,n,u)> </code></pre>
<p>When the user enters 'u', at the prompt, the update_lock function will be called.</p>
<p>Now, I want to produce a similar menu with a new hash table (<code>%lock_menu</code>). However, I will first prompt the user for the ID of the lock they wish to update.</p>
<pre>Please enter the ID of a lock to update: 1
You are updating lock 1.
__________________
| l - list users |
| n - new user |
|__________________|
(p,u,c)> </pre>
<p>I want to store the lock ID so that it is accessible to the lock menu functions. For example:</p>
<pre>my %users_menu = (
"l" => ["list users", \&list_users],
"n" => ["new user", \&new_user]);</pre>
<p>I can't figure out how to "attach" the lock ID to the functions in the <code>%users_menu</code>. So when 'l' is selected, list_users will be called with that number as its first argument.</p>
<p>I seem to remember that ML if you call a n-argument function in the ML language with only one argument it will produce a function that takes n-1 arguments. So for example, calling func(int,int,int) as func(5) would produce func(int,int) with the first argument saved as 5.</p>
<p>Is this possible in Perl? Or am I going about this the wrong way? Please let me know.</p>
<p><strong>UPDATE:</strong> This is the function that prints a menu (print_options), prompts the user for a letter, and calls the corresponding function.</p>
<pre><code>sub menu_prompt
{
my $options = shift;
print_options $options;
my $choice = <>;
chomp $choice;
if (defined $$options{$choice})
{
$$options{$choice}[1](); # no arguments
}
}</code></pre>
<p>I would like to find a way to use this function for all menus, rather than writing a separate function where a value is passed to the function.</p>
http://stackoverflow.com/questions/297162/strange-ld-error0Strange ld errortitaniumdecoy2008-11-17T22:15:24Z2009-11-20T18:53:03Z
<p>I have a project consisting of two files, main.c and logoff.c. When I try to compile them I get this error:</p>
<pre><code>gcc -c -g -Wall main.c
gcc -c -g -Wall logoff.c
gcc -o main -g -Wall main.o logoff.o
ld: duplicate symbol _logoff in logoff.o and main.o</code></pre>
<p>I have a function named logoff in logoff.c, but I have searched main.c for the text "logoff" and have found nothing (the function is not even called yet!). </p>
<p>If I change the name of the function to log_off it works. There is a second function in the file which then causes the same error unless its name is changed as well.</p>
<p>Is there any reason why this might occur? I have this problem on two different systems. One thing that might be relevant is that I used the same logoff.c file in another project but it is not connected to this one.</p>
http://stackoverflow.com/questions/1082511/iphone-board-game-opengl-es-or-coregraphics2iPhone board game: OpenGL ES or CoreGraphics?titaniumdecoy2009-07-04T16:20:39Z2009-11-11T03:35:34Z
<p>I want to program a board game (similar to checkers) for the iPhone. Would OpenGL ES or CoreGraphics be a better option? What do most games of this type on the App Store use?</p>
http://stackoverflow.com/questions/172798/lisp-in-the-real-world31Lisp in the real worldtitaniumdecoy2008-10-05T22:56:52Z2009-11-10T19:17:04Z
<p>I have experimented with Lisp (actually Scheme) and found it to be a very beautiful language that I am interested in learning more about. However, it appears that Lisp is never used serious projects, and I haven't seen it listed as a desired skill on any job posting. I am interested in hearing from anyone who has used Lisp or seen it used in the "real world", or who knows whether it is considered a purely academic language.</p>
http://stackoverflow.com/questions/1584206/problems-communicating-with-external-editor-in-qt40Problems communicating with external editor in Qt4titaniumdecoy2009-10-18T06:53:22Z2009-10-22T12:02:14Z
<p>I am writing a command-line Qt4 script (using QCoreApplication) on Mac OS X.</p>
<p>I am using this code adapted from C++ Programming with Qt 4, 2nd ed. p. 313:</p>
<pre><code>QTemporaryFile outFile;
if (!outFile.open())
return;
QString fileName = outFile.fileName();
QTextStream out(&outFile);
out << initial_text;
outFile.close();
QProcess::execute(editor, QStringList() << fileName);
QFile inFile(fileName);
if (!inFile.open(QIODevice::ReadOnly))
return;
QTextStream in(&inFile);
QString text = in.readAll();
std::cout << text.toStdString() << std::endl;</code></pre>
<p>When the above is run with editor set to "/usr/bin/vim", "Vim: Warning: Input is not from terminal" is printed, then vim launches <em>with</em> the initial text (the string initial_text); however, I am unable to edit or quit because pressing escape prints a blue ^[ at the position of the cursor, similar to every other key.</p>
<p>When editor is instead set to "/Users/jason/bin/mate" (the TextMate command-line utility), TextMate launches, <em>without</em> the initial text. I can edit and save the document, and when I quit, the application reads in the initial text (which should have been overwritten).</p>
<p>I am puzzled since this code is in a printed book so it should work. Am I using the wrong strings for the editor variable?</p>
http://stackoverflow.com/questions/1598514/infinite-loop-on-eof-in-c1Infinite loop on EOF in C++titaniumdecoy2009-10-21T02:59:42Z2009-10-21T09:46:59Z
<p>This code works as desired for the most part, which is to prompt the user for a single character, perform the associated action, prompt the user to press return, and repeat. However, when I enter ^D (EOF) at the prompt, an infinite loop occurs. I am clearing the error state via std::cin.clear() and calling std::cin.ignore(...) to clear the buffer. What could be causing the infinite loop?</p>
<pre><code>#include <iostream>
#include <limits>
void wait()
{
std::cout << std::endl << "press enter to continue.";
std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
std::cin.clear();
std::cin.get();
}
int main()
{
char response;
while (true)
{
std::cout << "enter a character at the prompt." << std::endl << "> ";
std::cin >> response;
switch (response)
{
case 'q':
exit(0);
break;
}
wait();
}
}</code></pre>
<p>I am running this in the Mac OS X terminal, if it matters.</p>
<p><hr></p>
<p><strong>UPDATE:</strong> What I am really asking here is, <em>when the user enters EOF (^D) at the prompt</em>, how do I (a) detect it and (b) reset the stream so that the user can continue to enter data.</p>
<p><strong><em>The following example is different from the code above</em></strong>, but illustrates the same principle of clearing the stream after a ^D has been detected and continuing to read from that stream.</p>
<pre>> a
you entered: a
> b
you entered: b
> ^D
you entered EOF
> c
you entered: c
...</pre>
http://stackoverflow.com/questions/1552042/how-to-allow-a-user-to-edit-data-in-a-separate-app-from-the-terminal1How to allow a user to edit data in a separate app from the terminal?titaniumdecoy2009-10-11T23:06:03Z2009-10-12T01:58:50Z
<p>I am writing a terminal-based application, but I want the user to be able to edit certain text data in a separate editor. For example, if the user chooses to edit the list of current usernames, the list should open as a text file in the user's favorite editor (vim, gedit, etc.). This will probably be an environment variable such as $MYAPPEDITOR. This is similar to the way commit messages work in svn.</p>
<p>Is the best way to do this to create a temporary file in /tmp, and read it in when the editor process is terminated? Or is there a better way to approach this problem?</p>
http://stackoverflow.com/questions/1242270/generating-a-graph-with-multiple-sets-of-multiple-sets-of-multiple-x-axis-data1Generating a graph with multiple (sets of multiple sets of multiple) X-axis data setstitaniumdecoy2009-08-07T00:28:45Z2009-10-08T16:16:53Z
<p>I am looking for a way to generate a graph with multiple sets of data on the X-axis, each of which is divided into multiple sets of multiple sets. I basically want to take <a href="http://gdgraph.com/samples/sample1A.html" rel="nofollow">this graph</a> and place similar graphs side by side with it. I am trying to graph the build a graph of the duration (Y-axis) of the same jobs (0-3) with different configurations (0-1) on multiple servers (each group with the same 8 jobs). Hopefully the following diagram will illustrate what I am trying to accomplish (smaller groupings are separated by pipes, larger groupings by double pipes):</p>
<pre>|| 0 1 | 0 1 | 0 1 | 0 1 || 0 1 | 0 1 | 0 1 | 0 1 || 0 1 | 0 1 | 0 1 | 0 1 ||
|| 0 | 1 | 2 | 3 || 0 | 1 | 2 | 3 || 0 | 1 | 2 | 3 ||
|| Server 1 || Server 2 || Server 3 ||</pre>
<p>Is this possible with either the GD::Graph Perl module or the matplotlib Python module? I can't find examples or documentation on this subject for either.</p>
http://stackoverflow.com/questions/1527498/cs-senior-project-ideas-involving-unix-system-programming0CS senior project ideas involving Unix system programmingtitaniumdecoy2009-10-06T19:12:02Z2009-10-07T14:31:43Z
<p>I know there are a number of questions about senior project ideas but I am specifically looking for a project that involves Unix system programming in C or (preferably) C++. I have <a href="http://rads.stackoverflow.com/amzn/click/0321525949" rel="nofollow">the book</a> which I used for one quarter but haven't had a chance to use since. I want to find a project that will give me as much experience with Unix system calls as possible.</p>
<p>My ideas so far:</p>
<ul>
<li>Packet analyzer</li>
<li>Web server</li>
</ul>
<p>Also, I would like to create a GUI for the application. Since it will be written in C or C++, I am leaning towards Qt4 since I would like to be able to run it on Mac OS X. I would appreciate recommendations in this area as well.</p>
<p>EDIT: As suggested by some answers, it does not have to have a GUI. That was just an idea. Although I can't think of many project ideas that don't involve one.</p>
http://stackoverflow.com/questions/1478671/unable-to-build-with-qt-on-snow-leopard1Unable to build with Qt on Snow Leopardtitaniumdecoy2009-09-25T17:41:55Z2009-09-27T01:20:07Z
<p>I installed Qt and tried to build a template project (Qt4 Gui Application) in QtCreator. I can't figure out why I am getting these errors.</p>
<pre>Running build steps for project SourceControl...
Configuration unchanged, skipping QMake step.
Starting: /usr/bin/make -w
make: Entering directory `/Users/jason/SourceControl'
g++ -c -pipe -g -gdwarf-2 -Wall -W -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/local/Qt4.5/mkspecs/macx-g++ -I. -I/Library/Frameworks/QtCore.framework/Versions/4/Headers -I/usr/include/QtCore -I/Library/Frameworks/QtNetwork.framework/Versions/4/Headers -I/usr/include/QtNetwork -I/Library/Frameworks/QtGui.framework/Versions/4/Headers -I/usr/include/QtGui -I/usr/include -I. -I. -F/Library/Frameworks -o main.o main.cpp
In file included from /Library/Frameworks/QtCore.framework/Headers/qnamespace.h:45,
from /Library/Frameworks/QtCore.framework/Headers/qobjectdefs.h:45,
from /Library/Frameworks/QtCore.framework/Headers/qobject.h:47,
from /Library/Frameworks/QtCore.framework/Headers/qcoreapplication.h:45,
from /Library/Frameworks/QtGui.framework/Headers/qapplication.h:45,
from /Library/Frameworks/QtGui.framework/Headers/QApplication:1,
from main.cpp:1:
/Library/Frameworks/QtCore.framework/Headers/qglobal.h:297:34: error: AvailabilityMacros.h: No such file or directory
In file included from /Library/Frameworks/QtCore.framework/Headers/qstring.h:46,
from /Library/Frameworks/QtCore.framework/Headers/qobject.h:48,
from /Library/Frameworks/QtCore.framework/Headers/qcoreapplication.h:45,
from /Library/Frameworks/QtGui.framework/Headers/qapplication.h:45,
from /Library/Frameworks/QtGui.framework/Headers/QApplication:1,
from main.cpp:1:
/Library/Frameworks/QtCore.framework/Headers/qbytearray.h:48:20: error: string.h: No such file or directory
In file included from /Library/Frameworks/QtCore.framework/Headers/qobject.h:48,
from /Library/Frameworks/QtCore.framework/Headers/qcoreapplication.h:45,
from /Library/Frameworks/QtGui.framework/Headers/qapplication.h:45,
from /Library/Frameworks/QtGui.framework/Headers/QApplication:1,
from main.cpp:1:
/Library/Frameworks/QtCore.framework/Headers/qstring.h:60:22: error: string: No such file or directory
In file included from /Library/Frameworks/QtCore.framework/Headers/qobject.h:50,
from /Library/Frameworks/QtCore.framework/Headers/qcoreapplication.h:45,
from /Library/Frameworks/QtGui.framework/Headers/qapplication.h:45,
from /Library/Frameworks/QtGui.framework/Headers/QApplication:1,
from main.cpp:1:
/Library/Frameworks/QtCore.framework/Headers/qlist.h:50:20: error: iterator: No such file or directory
/Library/Frameworks/QtCore.framework/Headers/qlist.h:51:16: error: list: No such file or directory
/Library/Frameworks/QtCore.framework/Headers/qlist.h:54:15: error: new: No such file or directory
In file included from /Library/Frameworks/QtGui.framework/Headers/qbrush.h:47,
from /Library/Frameworks/QtGui.framework/Headers/qpalette.h:47,
from /Library/Frameworks/QtGui.framework/Headers/qwidget.h:48,
from /Library/Frameworks/QtGui.framework/Headers/qmainwindow.h:45,
from /Library/Frameworks/QtGui.framework/Headers/QMainWindow:1,
from mainwindow.h:4,
from main.cpp:2:
/Library/Frameworks/QtCore.framework/Headers/qvector.h:52:18: error: vector: No such file or directory
/Library/Frameworks/QtCore.framework/Headers/qvector.h:54:20: error: stdlib.h: No such file or directory
In file included from /Library/Frameworks/QtCore.framework/Headers/qstring.h:46,
from /Library/Frameworks/QtCore.framework/Headers/qobject.h:48,
from /Library/Frameworks/QtCore.framework/Headers/qcoreapplication.h:45,
from /Library/Frameworks/QtGui.framework/Headers/qapplication.h:45,
from /Library/Frameworks/QtGui.framework/Headers/QApplication:1,
from main.cpp:1:
/Library/Frameworks/QtCore.framework/Headers/qbytearray.h: In function 'uint qstrlen(const char*)':
/Library/Frameworks/QtCore.framework/Headers/qbytearray.h:68: error: 'strlen' was not declared in this scope
/Library/Frameworks/QtCore.framework/Headers/qbytearray.h: In function 'int qstrncmp(const char*, const char*, uint)':
/Library/Frameworks/QtCore.framework/Headers/qbytearray.h:91: error: 'strncmp' was not declared in this scope
/Library/Frameworks/QtCore.framework/Headers/qbytearray.h: In function 'bool operator==(const QByteArray&, const QByteArray&)':
/Library/Frameworks/QtCore.framework/Headers/qbytearray.h:502: error: 'memcmp' was not declared in this scope
In file included from /Library/Frameworks/QtCore.framework/Headers/qobject.h:48,
from /Library/Frameworks/QtCore.framework/Headers/qcoreapplication.h:45,
from /Library/Frameworks/QtGui.framework/Headers/qapplication.h:45,
from /Library/Frameworks/QtGui.framework/Headers/QApplication:1,
from main.cpp:1:
/Library/Frameworks/QtCore.framework/Headers/qstring.h: At global scope:
/Library/Frameworks/QtCore.framework/Headers/qstring.h:65: error: expected initializer before ' QList::fromStdList()':
/Library/Frameworks/QtCore.framework/Headers/qlist.h:316: error: 'list' was not declared in this scope
/Library/Frameworks/QtCore.framework/Headers/qlist.h:316: error: 'back_inserter' is not a member of 'std'
In file included from /Library/Frameworks/QtGui.framework/Headers/qbrush.h:47,
from /Library/Frameworks/QtGui.framework/Headers/qpalette.h:47,
from /Library/Frameworks/QtGui.framework/Headers/qwidget.h:48,
from /Library/Frameworks/QtGui.framework/Headers/qmainwindow.h:45,
from /Library/Frameworks/QtGui.framework/Headers/QMainWindow:1,
from mainwindow.h:4,
from main.cpp:2:
/Library/Frameworks/QtCore.framework/Headers/qvector.h: At global scope:
/Library/Frameworks/QtCore.framework/Headers/qvector.h:293: error: expected unqualified-id before ' QVector::fromStdVector()':
/Library/Frameworks/QtCore.framework/Headers/qvector.h:294: error: 'vector' was not declared in this scope
/Library/Frameworks/QtCore.framework/Headers/qvector.h:294: error: 'back_inserter' is not a member of 'std'
/Library/Frameworks/QtCore.framework/Headers/qvector.h: In constructor 'QVector::QVector(int) [with T = QPoint]':
/Library/Frameworks/QtGui.framework/Headers/qpolygon.h:93: instantiated from here
/Library/Frameworks/QtCore.framework/Headers/qvector.h:397: error: no matching function for call to 'operator new(long unsigned int, QPoint*&)'
:0: note: candidates are: void* operator new(long unsigned int)
/Library/Frameworks/QtCore.framework/Headers/qvector.h: In constructor 'QVector::QVector(int) [with T = QPointF]':
/Library/Frameworks/QtGui.framework/Headers/qpolygon.h:152: instantiated from here
/Library/Frameworks/QtCore.framework/Headers/qvector.h:397: error: no matching function for call to 'operator new(long unsigned int, QPointF*&)'
:0: note: candidates are: void* operator new(long unsigned int)
/Library/Frameworks/QtCore.framework/Headers/qlist.h: In member function 'void QList::node_construct(QList::Node*, const T&) [with T = QString]':
/Library/Frameworks/QtCore.framework/Headers/qlist.h:426: instantiated from 'void QList::append(const T&) [with T = QString]'
/Library/Frameworks/QtCore.framework/Headers/qstringlist.h:70: instantiated from here
/Library/Frameworks/QtCore.framework/Headers/qlist.h:341: error: no matching function for call to 'operator new(long unsigned int, QList::Node*&)'
:0: note: candidates are: void* operator new(long unsigned int)
/Library/Frameworks/QtCore.framework/Headers/qlist.h: In member function 'void QList::node_copy(QList::Node*, QList::Node*, QList::Node*) [with T = QString]':
/Library/Frameworks/QtCore.framework/Headers/qlist.h:618: instantiated from 'QList& QList::operator+=(const QList&) [with T = QString]'
/Library/Frameworks/QtCore.framework/Headers/qstringlist.h:85: instantiated from here
/Library/Frameworks/QtCore.framework/Headers/qlist.h:360: error: no matching function for call to 'operator new(long unsigned int, QList::Node*)'
:0: note: candidates are: void* operator new(long unsigned int)
/Library/Frameworks/QtCore.framework/Headers/qvector.h: In member function 'void QVector::realloc(int, int) [with T = QPoint]':
/Library/Frameworks/QtCore.framework/Headers/qvector.h:315: instantiated from 'void QVector::detach_helper() [with T = QPoint]'
/Library/Frameworks/QtCore.framework/Headers/qvector.h:113: instantiated from 'QVector::QVector(const QVector&) [with T = QPoint]'
/Library/Frameworks/QtGui.framework/Headers/qpolygon.h:66: instantiated from here
/Library/Frameworks/QtCore.framework/Headers/qvector.h:444: error: no matching function for call to 'operator new(long unsigned int, QPoint*&)'
:0: note: candidates are: void* operator new(long unsigned int)
/Library/Frameworks/QtCore.framework/Headers/qvector.h:484: error: no matching function for call to 'operator new(long unsigned int, QPoint*&)'
:0: note: candidates are: void* operator new(long unsigned int)
/Library/Frameworks/QtCore.framework/Headers/qvector.h:491: error: no matching function for call to 'operator new(long unsigned int, QPoint*&)'
:0: note: candidates are: void* operator new(long unsigned int)
/Library/Frameworks/QtCore.framework/Headers/qvector.h: In member function 'void QVector::realloc(int, int) [with T = QPointF]':
/Library/Frameworks/QtCore.framework/Headers/qvector.h:315: instantiated from 'void QVector::detach_helper() [with T = QPointF]'
/Library/Frameworks/QtCore.framework/Headers/qvector.h:113: instantiated from 'QVector::QVector(const QVector&) [with T = QPointF]'
/Library/Frameworks/QtGui.framework/Headers/qpolygon.h:131: instantiated from here
/Library/Frameworks/QtCore.framework/Headers/qvector.h:444: error: no matching function for call to 'operator new(long unsigned int, QPointF*&)'
:0: note: candidates are: void* operator new(long unsigned int)
/Library/Frameworks/QtCore.framework/Headers/qvector.h:484: error: no matching function for call to 'operator new(long unsigned int, QPointF*&)'
:0: note: candidates are: void* operator new(long unsigned int)
/Library/Frameworks/QtCore.framework/Headers/qvector.h:491: error: no matching function for call to 'operator new(long unsigned int, QPointF*&)'
:0: note: candidates are: void* operator new(long unsigned int)
/Library/Frameworks/QtCore.framework/Headers/qvector.h: In member function 'void QVector::realloc(int, int) [with T = QPainterPath::Element]':
/Library/Frameworks/QtCore.framework/Headers/qvector.h:315: instantiated from 'void QVector::detach_helper() [with T = QPainterPath::Element]'
/Library/Frameworks/QtCore.framework/Headers/qvector.h:129: instantiated from 'void QVector::detach() [with T = QPainterPath::Element]'
/Library/Frameworks/QtCore.framework/Headers/qvector.h:228: instantiated from 'T* QVector::begin() [with T = QPainterPath::Element]'
/Library/Frameworks/QtCore.framework/Headers/qvector.h:241: instantiated from 'T& QVector::first() [with T = QPainterPath::Element]'
/Library/Frameworks/QtGui.framework/Headers/qpainterpath.h:370: instantiated from here
/Library/Frameworks/QtCore.framework/Headers/qvector.h:444: error: no matching function for call to 'operator new(long unsigned int, QPainterPath::Element*&)'
:0: note: candidates are: void* operator new(long unsigned int)
/Library/Frameworks/QtCore.framework/Headers/qvector.h:315: instantiated from 'void QVector::detach_helper() [with T = QPainterPath::Element]'
/Library/Frameworks/QtCore.framework/Headers/qvector.h:129: instantiated from 'void QVector::detach() [with T = QPainterPath::Element]'
/Library/Frameworks/QtCore.framework/Headers/qvector.h:228: instantiated from 'T* QVector::begin() [with T = QPainterPath::Element]'
/Library/Frameworks/QtCore.framework/Headers/qvector.h:241: instantiated from 'T& QVector::first() [with T = QPainterPath::Element]'
/Library/Frameworks/QtGui.framework/Headers/qpainterpath.h:370: instantiated from here
/Library/Frameworks/QtCore.framework/Headers/qvector.h:484: error: no matching function for call to 'operator new(long unsigned int, QPainterPath::Element*&)'
:0: note: candidates are: void* operator new(long unsigned int)
/Library/Frameworks/QtCore.framework/Headers/qvector.h:491: error: no matching function for call to 'operator new(long unsigned int, QPainterPath::Element*&)'
:0: note: candidates are: void* operator new(long unsigned int)
make: *** [main.o] Error 1
make: Leaving directory `/Users/jason/SourceControl'
Exited with code 2.
Error while building project SourceControl
When executing build step 'Make'</pre>
http://stackoverflow.com/questions/1478671/unable-to-build-with-qt-on-snow-leopard/1482237#14822370Answer by titaniumdecoy for Unable to build with Qt on Snow Leopardtitaniumdecoy2009-09-26T21:34:53Z2009-09-27T01:20:07Z<p>Thanks, Troubadour. I was able to solve the problem by adding the following line to my project's .pro file:</p>
<pre>QMAKE_MAC_SDK = /Developer/SDKs/MacOSX10.5.sdk</pre>
<p>I would prefer to build against the Mac OS X 10.6 SDK but there is no such directory in /Developer/SDKs. If you know where I can find the 10.6 SDK please let me know.</p>
<p><strong>EDIT:</strong> After updating to the latest version of Xcode, I was able to remove the line indicated above from my project's .pro file and compile successfully.</p>
http://stackoverflow.com/questions/1418001/recommended-programming-computer-book-publishers/1419924#14199242Answer by titaniumdecoy for Recommended programming/computer book publisherstitaniumdecoy2009-09-14T06:15:32Z2009-09-14T06:15:32Z<p>Addison-Wesley can't be bad since they published the highly-regarded <a href="http://www.pearsoned.co.uk/Bookshop/subject.asp?item=6893" rel="nofollow">C++ In-Depth series</a>.</p>
http://stackoverflow.com/questions/1406846/how-do-you-change-the-state-of-the-window-close-button-in-cocoa/1406872#14068727Answer by titaniumdecoy for How do you change the state of the window close button in Cocoa?titaniumdecoy2009-09-10T18:15:32Z2009-09-10T18:15:32Z<p>To set it programmatically, you can use the <code>-setDocumentEdited:</code> method of NSWindow. If you are writing a Document-based app, NSDocumentManager should automatically detect when there are unsaved changes to the NSUndoManager associated with the current NSDocument.</p>
http://stackoverflow.com/questions/1381387/push-notification-background-process-iphone/1381604#13816041Answer by titaniumdecoy for push notification - background process - iPhonetitaniumdecoy2009-09-04T21:23:18Z2009-09-04T21:23:18Z<p>Although only tangentially related to this discussion, I think you might be interested in Loopt's agreement with AT&T to <a href="https://loopt.com/loopt/background/" rel="nofollow">track user's iPhones</a> (for a monthly fee).</p>
http://stackoverflow.com/questions/770790/relative-path-to-sqlite-db-in-context-xml1Relative path to SQLite DB in context.xmltitaniumdecoy2009-04-21T02:07:15Z2009-09-01T11:02:38Z
<p>Is it possible to use a relative path to an SQLite database file in the context.xml file of a Java web application?</p>
<p>At present, I have:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<Context path="/mywebapp">
<Resource name="jdbc/mydb" auth="Container" type="javax.sql.DataSource"
maxActive="100" maxIdle="30" maxWait="10000"
username="myusername" password="mypassword" driverClassName="org.sqlite.JDBC"
url="jdbc:sqlite://Users/me/NetBeansProjects/MyApp/web/my.db"/>
</Context></code></pre>
<p>As you can see, the url attribute of the Resource tag currently specifies an absolute path to my.db. However, I am working on this project with a small team of developers as a class project. We are sharing the code through Subversion and currently, every time one of us updates our project, we have to manually replace the above path with the correct path for our computer.</p>
<p>Thanks in advance.</p>
<p><hr /></p>
<p><strong>UPDATE:</strong> It appears that relative paths are not relative to the context.xml file, but to CATALINA_HOME. Unfortunately that directory (where Tomcat is located) is in another user's home folder (1) to which I have ony read access:</p>
<p>(1) /home/myprof/Tomcat/bin/<br />
(2) /home/me/NetBeansProjects/MyApp/web/my.db</p>
<p>I cannot include /me in the relative path because, as stated above, this project will run on multiple computers via a svn repository and the directory in which the project files are contained (2) will change. However, since all of the accounts are on a shared virtual network, CATALINA_HOME (1) will not change.</p>
<p><hr /></p>
<p>Also, how can I get the path to the database file my.db from the context.xml file above inside a servlet?</p>
http://stackoverflow.com/questions/1350427/strange-uiimage-positioning-problem0Strange UIImage positioning problemtitaniumdecoy2009-08-29T04:11:29Z2009-08-31T15:49:45Z
<p>I created a view in Interface Builder with a bunch of labels and an image. When I pushed the view onto a UINavigationController, it worked perfectly. I then inserted the view into a UITableView as a cell (instead); in order to do so, I had to convert change the superclass of its view controller from a UIViewController to a UITableViewCell. However, when the view is displayed inside the table its labels are all positioned correctly but the image is displayed at its original (un-resized) size in the center left of the screen. I cannot seem to change its size or position no matter what I do. Please let me know if you have any idea what the problem might be, as I am completely stumped.</p>
http://stackoverflow.com/questions/1350427/strange-uiimage-positioning-problem/1358090#13580900Answer by titaniumdecoy for Strange UIImage positioning problemtitaniumdecoy2009-08-31T15:49:45Z2009-08-31T15:49:45Z<p>I figured out what the problem was. UITableViewCell has its own imageView property, which was conflicting with the IBOutlet imageView property in my subclass. I simply had to rename the property in the subclass.</p>
http://stackoverflow.com/questions/764282/how-can-jira-soap-api-not-have-this-method/1330553#13305531Answer by titaniumdecoy for how can JIRA soap API not have this method?titaniumdecoy2009-08-25T19:51:58Z2009-08-25T19:51:58Z<p>It is possible to write a JIRA plug-in to expose the desired methods via SOAP with the <a href="http://confluence.atlassian.com/display/JIRA/RPC+Endpoint+Plugin+Module" rel="nofollow">RPC Endpoint Plugin Module</a>.</p>
http://stackoverflow.com/questions/1302525/how-to-use-a-wsdl/1304099#1304099-1Answer by titaniumdecoy for How to use a WSDLtitaniumdecoy2009-08-20T05:20:32Z2009-08-20T05:20:32Z<p>An alternative cross-platform solution is <a href="http://www.cs.fsu.edu/~engelen/soap.html" rel="nofollow">gSOAP</a>.</p>
http://stackoverflow.com/questions/1301448/gsoap-class-generation-problem0gsoap class generation problemtitaniumdecoy2009-08-19T17:29:32Z2009-08-19T21:28:26Z
<p>I am trying to generate gsoap classes for the JIRA issue tracking system WSDL. I run these commands to generate the required classes:</p>
<pre>$ wsdl2h -o JIRASoap.h <url to wsdl>
$ soapcpp2 -C JIRASoap.h</pre>
<p>The soapcpp2 command gives the following output, but does not indicate how to fix it.</p>
<pre>There were errors:
3 syntax errors
1 semantic error
2 warnings</pre>
<p>These are (most of) the errors:</p>
<pre>JIRASoap.h(935): syntax error
JIRASoap.h(934): Syntax error: input before ; skipped
JIRASoap.h(940): syntax error
JIRASoap.h(939): Syntax error: input before ; skipped
JIRASoap.h(942): **ERROR**: Duplicate declaration of __size (already declarared at line 937)
JIRASoap.h(947): syntax error
JIRASoap.h(946): Syntax error: input before ; skipped</pre>
<p>Here is the relevant portion of JIRASoap.h (lines 928-947):</p>
<pre><code>/// SOAP encoded array of xs:byte[]
class ArrayOf_USCORExsd_USCOREbase64Binary
{ public:
/// SOAP encoded array of xs:byte
class
{ public:
/// Pointer to array of xsd__byte.
xsd__byte *__ptr ;
/// Size of the dynamic array.
int __size ;
/// Offset for partially transmitted arrays (uncomment only when required).
// int __offset ;
} *__ptr ;
/// Size of the dynamic array.
int __size ;
/// Offset for partially transmitted arrays (uncomment only when required).
// int __offset ;
/// A handle to the soap struct that manages this instance (automatically set)
struct soap *soap ;
};</code></pre>
<p>When I try to compile my program, I get this error:</p>
<blockquote>soapStub.h:2799: error: ISO C++ forbids declaration of ‘ArrayOf_USCORExsd_USCOREbase64Binary’ with no type</blockquote>
<p>Here is the relevant section of the WSDL:</p>
<pre><code><complexType name="ArrayOf_xsd_base64Binary">
<complexContent>
<restriction base="soapenc:Array">
<attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:byte[][]"/>
</restriction>
</complexContent>
</complexType></code></pre>
<p>As far as I can tell, most types are defined in soapStub.h, but ArrayOf_USCORExsd_USCOREbase64Binary is not.</p>
<p>When I generate C only files, I get "struct /*?*/" instead of "ArrayOf_USCORExsd_USCOREbase64Binary".</p>
http://stackoverflow.com/questions/1301448/gsoap-class-generation-problem/1302132#13021320Answer by titaniumdecoy for gsoap class generation problemtitaniumdecoy2009-08-19T19:26:18Z2009-08-19T21:28:26Z<p>I managed to get the code to compile by removing all references to ArrayOf_USCORExsd_USCOREbase64Binary from JIRASoap.h, including the class itself and the ns4_addAttachmentsToIssue method (which takes a pointer to an ArrayOf_USCORExsd_USCOREbase64Binary as a parameter).</p>
<p>If you find a way to fix the errors above without removing the ns4_addAttachmentsToIssue, please let me know.</p>
http://stackoverflow.com/questions/1223305/tower-of-hanoi-recursive-algorithm4Tower of Hanoi: Recursive Algorithmtitaniumdecoy2009-08-03T16:33:34Z2009-08-18T06:32:53Z
<p>I am a Computer Science student, and as such I have no problem whatsoever understanding recursion. However, I can't seem to wrap my head around the recursive solution to the Tower of Hanoi problem. Here is the code from <a href="http://en.wikipedia.org/wiki/Tower%5Fof%5FHanoi#Recursive%5Fsolution" rel="nofollow">Wikipedia</a>:</p>
<pre><code>procedure Hanoi(n: integer; source, dest, by: char);
Begin
if (n=1) then
writeln('Move the plate from ', source, ' to ', dest)
else begin
Hanoi(n-1, source, by, dest);
writeln('Move the plate from ', source, ' to ', dest);
Hanoi(n-1, by, dest, source);
end;
End;</code></pre>
<p>I understand the base case and the concept of breaking the problem into smaller pieces until you are able to move a single disk. However, I can't figure out how the two recursive calls in the non-base case work together. Perhaps someone can help me out? Thanks.</p>
http://stackoverflow.com/questions/1262501/why-doesnt-my-perl-grep-return-the-first-match6Why doesn't my Perl grep return the first match?titaniumdecoy2009-08-11T19:47:17Z2009-08-12T12:18:29Z
<p>The following snippet searches for the index of the first occurrence of a value in an array. However, when the parentheses around $index are removed, it does not function correctly. What am I doing wrong?</p>
<pre><code>my ($index) = grep { $array[$_] eq $search_for } 0..$#array;
</code></pre>
http://stackoverflow.com/questions/1258260/parameters-hide-instance-variables-in-objective-c0Parameters hide instance variables in Objective-Ctitaniumdecoy2009-08-11T02:46:47Z2009-08-11T17:16:55Z
<p>Is there a way to give a parameter to a method the same name as an instance variable in Objective-C without hiding that variable?</p>
<p>For instance,</p>
<pre><code>- (void)doSomething:(id)object
{
self.object = object;
}</code></pre>
<p>The code above gives the warning "local declaration of 'object' hides instance variable."</p>
<p>The obvious solution is to name the parameter arguments differently, but I find it annoying having to choose a name like "anObject" instead of "object".</p>
http://stackoverflow.com/questions/1210015/filtering-models-with-inheritance-in-django0Filtering models with inheritance in Djangotitaniumdecoy2009-07-30T23:56:17Z2009-07-31T17:32:17Z
<p>I have two Django model classes that are structured similar to the following:</p>
<pre>class Build(models.Model):
project = models.CharField(max_length=100)
...
class CustomBuild(Build):
custom_type = ...
...</pre>
<p>I want to select all Builds <b>and</b> CustomBuilds (each CustomBuild has a one-to-one relationship with a Build) from the database with a specific project attribute.</p>
<p>I believe Build.objects.filter(project="myproject") will select the correct objects but many of them will be missing the additional data (such as custom_type) that would be provided by a CustomBuild object. On the other hand, filtering CustomBuild.objects will exclude those objects that are not CustomBuilds.</p>
<p>How can I accomplish this? Thanks.</p>
http://stackoverflow.com/questions/1202366/iphone-dev-activate-the-view-of-a-tabbar-button/1202412#12024120Answer by titaniumdecoy for IPhone Dev: Activate the view of a tabBar buttontitaniumdecoy2009-07-29T19:10:01Z2009-07-30T07:23:27Z<p>Use the <a href="http://developer.apple.com/IPhone/library/documentation/UIKit/Reference/UITabBarController_Class/Reference/Reference.html#//apple_ref/occ/instp/UITabBarController/selectedViewController" rel="nofollow">selectedViewController</a> or <a href="http://developer.apple.com/IPhone/library/documentation/UIKit/Reference/UITabBarController_Class/Reference/Reference.html#//apple_ref/occ/instp/UITabBarController/selectedIndex" rel="nofollow">selectedIndex</a> methods of the corresponding <a href="http://developer.apple.com/IPhone/library/documentation/UIKit/Reference/UITabBarController_Class/Reference/Reference.html#//apple_ref/occ/instp/UITabBarController" rel="nofollow">UITabBarController</a>.</p>
<p>In response to the comments on this answer, I have provided an example of how this might be accomplished:</p>
<pre><code>id firstViewController = [[FirstViewController alloc] initWithNibName:@"FirstView" bundle:[NSBundle mainBundle]];
id secondViewController = [[SecondViewController alloc] initWithNibName:@"SecondView" bundle:[NSBundle mainBundle]];
self.tabBarController = [[UITabBarController alloc] init];
self.tabBarController.viewControllers = [NSArray arrayWithObjects:firstViewController, secondViewController, nil];
[firstViewController release];
[secondViewController release];
// Select the second tab bar item and its view
self.tabBarController.selectedIndex = 1;
[self.window addSubview:tabBarController.view];
[self.window makeKeyAndVisible];</code></pre>
<p>In my testing, it seems that using the selectedViewController method of UITabBarController to set the current view does not update the selectedIndex property (the new view is displayed but the selected UITabBarItem is not changed). This is in contrast to the behavior promised in the documentation. Using the selectedIndex method as demonstrated in the code snippet above should work fine, however.</p>
http://stackoverflow.com/questions/1162417/how-to-set-subview-of-uiview-dynamically-iphone/1163588#11635880Answer by titaniumdecoy for How to set subview of UIView dynamically (iPhone)?titaniumdecoy2009-07-22T07:19:37Z2009-07-22T07:19:37Z<p>If I understand your question correctly, you are trying to swap one view with another. One way to accomplish this is as follows:</p>
<p>Add an UIView to the root view named switchView. Either in code or in Interface Builder create a new UIView named subView1 and add it as a subclass of switchView when the root view loads:</p>
<pre><code>[switchView addSubview:subView1];</code></pre>
<p>When the user toggles the segmented control in the root view, create a new UIView in a similar fashion named subView2 and switch it with the current subview of switchView:</p>
<pre><code>[subView1 removeFromSuperview];
[switchView addSubview:subView2];</code></pre>
http://stackoverflow.com/questions/1148878/how-to-reload-a-uiviewcontroller-on-the-iphone/1148921#11489210Answer by titaniumdecoy for How to reload a uiviewcontroller on the iPhonetitaniumdecoy2009-07-19T00:06:35Z2009-07-19T01:34:27Z<p>You should get the behavior you want by modifying the UIViewController's attributes only after the UIView it represents has been loaded:</p>
<pre><code>[coming viewWillAppear:YES];
[going viewWillDisappear:YES];
[going.view removeFromSuperview];
[self.window insertSubview:coming.view atIndex:0];
<strong>coming.phoneNumber = aPhoneNumber;</strong>
[going viewDidDisappear:YES];
[coming viewDidAppear:YES];</code></pre>
<p>In the code above, the coming UIViewController has been loaded, but the UIView it represents is not loaded until it is accessed for the first time by coming.view. This is explained in the <a href="http://developer.apple.com/iPhone/library/documentation/UIKit/Reference/UIViewController_Class/Reference/Reference.html#//apple_ref/occ/instp/UIViewController/view" rel="nofollow">documentation for UIViewController</a>:</p>
<blockquote>If you access [the view] property and its value is currently nil, the view controller automatically calls the loadView method and returns the resulting view.</blockquote>
<p>You can determine if a UIView has been loaded via the -isViewLoaded method of UIViewController.</p>
http://stackoverflow.com/questions/1132784/iphone-have-the-keyboard-slide-into-view-from-the-right-like-when-editing-a-not/1148514#11485144Answer by titaniumdecoy for iPhone - Have the keyboard slide into view from the right like when editing a note in Contactstitaniumdecoy2009-07-18T20:43:59Z2009-07-18T20:43:59Z<p>All you need to do is tell the text view in question to become the first responder in the -viewDidLoad method of the view controller you are pushing onto the navigation stack:</p>
<pre><code>- (void)viewDidLoad {
[someTextView becomeFirstResponder];
[super viewDidLoad];
}</code></pre>
<p>I have tested this and it works. The keyboard slides in from the right along with the view.</p>
http://stackoverflow.com/questions/1123331/iphone-text-field/1123492#11234920Answer by titaniumdecoy for iPhone Text Fieldtitaniumdecoy2009-07-14T04:55:14Z2009-07-14T04:55:14Z<p>You may be able to find the answer to your question <a href="http://cocoadev.com/forums/comments.php?DiscussionID=204" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1919912/visual-svn-client-for-linuxComment by titaniumdecoy on Visual SVN client for Linuxtitaniumdecoy2009-12-17T07:02:02Z2009-12-17T07:02:02ZYou forgot about the title (or is that non-editable?)http://stackoverflow.com/questions/1892026/binding-values-to-functions-in-perl/1892055#1892055Comment by titaniumdecoy on Binding values to functions in Perltitaniumdecoy2009-12-12T03:07:09Z2009-12-12T03:07:09ZThat is what I was looking for, thanks!http://stackoverflow.com/questions/1892026/binding-values-to-functions-in-perl/1892078#1892078Comment by titaniumdecoy on Binding values to functions in Perltitaniumdecoy2009-12-12T02:56:28Z2009-12-12T02:56:28ZI see what you are saying, but I am trying to avoid using a global variable.http://stackoverflow.com/questions/1892026/binding-values-to-functions-in-perl/1892078#1892078Comment by titaniumdecoy on Binding values to functions in Perltitaniumdecoy2009-12-12T02:48:50Z2009-12-12T02:48:50ZThanks, but I need the $id variable to be determined at runtime based on what the user enters.http://stackoverflow.com/questions/1892026/binding-values-to-functions-in-perl/1892078#1892078Comment by titaniumdecoy on Binding values to functions in Perltitaniumdecoy2009-12-12T02:40:17Z2009-12-12T02:40:17ZWhere does the $id variable come from? (I want it to be provided when the function is called.) Also, isn't the shift evaluated before the program runs?http://stackoverflow.com/questions/1886452/how-do-i-disable-the-image-toolbar-for-images-in-ie/1886470#1886470Comment by titaniumdecoy on How do I disable the image toolbar for images in IE?titaniumdecoy2009-12-11T07:47:23Z2009-12-11T07:47:23ZAccording to the page you linked to, that attribute is obsolete.http://stackoverflow.com/questions/1802210/how-to-recover-google-classic-design-from-its-new-designComment by titaniumdecoy on How to recover Google classic design from its new design?titaniumdecoy2009-11-26T08:09:35Z2009-11-26T08:09:35ZThis should probably be on superuser.com.http://stackoverflow.com/questions/1584206/problems-communicating-with-external-editor-in-qt4/1606745#1606745Comment by titaniumdecoy on Problems communicating with external editor in Qt4titaniumdecoy2009-10-22T21:15:16Z2009-10-22T21:15:16ZI figured out that you have to execute "mate -w" to wait for the file to be closed.http://stackoverflow.com/questions/1598514/infinite-loop-on-eof-in-c/1598994#1598994Comment by titaniumdecoy on Infinite loop on EOF in C++titaniumdecoy2009-10-21T07:39:26Z2009-10-21T07:39:26ZThere is an administrative program I use over ssh that prompts for input, and if you enter ^D, it simply redisplays the prompt. Is this not possible in standard C++?http://stackoverflow.com/questions/1598514/infinite-loop-on-eof-in-c/1598994#1598994Comment by titaniumdecoy on Infinite loop on EOF in C++titaniumdecoy2009-10-21T07:14:20Z2009-10-21T07:14:20ZAre you saying it is not possible to reset std::cin once EOF has been read? If that is the case, could I route std::cin through another stream or something?http://stackoverflow.com/questions/1598514/infinite-loop-on-eof-in-c/1598994#1598994Comment by titaniumdecoy on Infinite loop on EOF in C++titaniumdecoy2009-10-21T07:13:31Z2009-10-21T07:13:31ZOne situation I am looking at is where the user enters a message on multiple lines and enters ^D on the last line to end the message.http://stackoverflow.com/questions/1598514/infinite-loop-on-eof-in-c/1598994#1598994Comment by titaniumdecoy on Infinite loop on EOF in C++titaniumdecoy2009-10-21T06:57:04Z2009-10-21T06:57:04ZBasically what I want to do, (and I realize this isn't what I posted but it requires the same functionality) is to read a list of names entered by a user, one on each line, followed by EOF (^D). The program then needs to CONTINUE EXECUTION (e.g., reading from the std::cin) so that the user can respond to further prompts.http://stackoverflow.com/questions/1598514/infinite-loop-on-eof-in-c/1598994#1598994Comment by titaniumdecoy on Infinite loop on EOF in C++titaniumdecoy2009-10-21T06:53:20Z2009-10-21T06:53:20ZThanks for your answer, but your code has the same problem as mine. I need to CONTINUE THE LOOP after EOF (^D) has been entered by the user. As soon as I put prompt_for_input inside a loop that is not controlled by its return value (e.g., while(true)), I get an infinite loop.http://stackoverflow.com/questions/1598514/infinite-loop-on-eof-in-c/1598822#1598822Comment by titaniumdecoy on Infinite loop on EOF in C++titaniumdecoy2009-10-21T05:18:02Z2009-10-21T05:18:02ZI modified the code to make this more clear.http://stackoverflow.com/questions/1598514/infinite-loop-on-eof-in-c/1598822#1598822Comment by titaniumdecoy on Infinite loop on EOF in C++titaniumdecoy2009-10-21T05:17:10Z2009-10-21T05:17:10ZThat code is not shown as it is part of the (empty) switch statement. I want to continually read in single characters followed by a carriage returns (forever).