User Craig W. Wright - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T14:22:45Zhttp://stackoverflow.com/feeds/user/114921http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1369827/reconnect-to-process-started-via-com0Reconnect to Process Started Via COMCraig W. Wright2009-09-02T20:03:53Z2009-09-03T18:27:54Z
<p>First, I'd like to note that I need to use the COM/OLE2 APIs, the low level stuff, the stuff you can put in a C Windows Console program. I can't use MFC. I can't use .NET.</p>
<p>My question is:</p>
<p>Given the following code:</p>
<p><code></p>
<pre><code>CLSID clsid;
HRESULT hr;
hr = CLSIDFromProgID(L"InternetExplorer.Application", &clsid);
assert(SUCCEEDED(hr));
hr = CoCreateInstance(clsid,
NULL,
CLSCTX_LOCAL_SERVER,
IID_IDispatch,
(void **)&(iePtr_));
assert(SUCCEEDED(hr));
</code></pre>
<p></code></p>
<p>Is there a way to write some information to the disk so that I can reconnect to the same instance of IE later on? Basically can "iePtr_" be stringified for later reconstitution by some other process?</p>
<p>Thanks.</p>
<p>---- added later------</p>
<p>The broader problem I am trying to solve is that I want to start an AutoCAD application, load some data into it, and then leave it running for my client to interact with. Later he will go back to my application and I want to reconnect to the same AutoCAD session and feed it more data. </p>
<p>Now, I full well realize I can keep the IDispatch pointer in memory in my application and I'll be able to continue to interact with the same AutoCAD process. That's my fallback position.</p>
<p>However, I use a "wrapper" program to do my COM stuff. So the wrapper is transient. My main application starts the wrapper, then the wrapper communicates, and then exits. I just want subsequent wrapper processes to be able to reconnect to the same AutoCAD process.</p>
<p>Why use a wrapper? Here's the working reason: My main application is a 32-bit application, but I can use a 64-bit wrapper and communicate with 64-bit AutoCAD. I need to be able to communicate with 64-bit AutoCAD and can probably not port my main application easily (500K+ lines of C++) vs. my wrapper program (couple hundred lines).</p>
http://stackoverflow.com/questions/993400/how-to-learn-programming-related-topics-faster/993447#9934470Answer by Craig W. Wright for How to learn programming related topics faster?Craig W. Wright2009-06-14T18:35:44Z2009-06-14T18:35:44Z<p>If you are an expert in at least one language already, there's little point in buying (or reading in full) introductory texts. If anything have them for a reference. Instead find a book that teaches what is special (i.e. the idioms) about the language you are trying to learn, especially if it is similar to one you already know. (e.g. If you know C++ and you want to learn Python pick up a book like Dive Into Python).</p>
<p>Beyond that, as others have noted, learn by doing. Ideally not with toy programs.</p>
http://stackoverflow.com/questions/987960/dividing-c-application-into-libraries/990074#9900742Answer by Craig W. Wright for Dividing C++ Application into LibrariesCraig W. Wright2009-06-13T05:54:31Z2009-06-13T05:54:31Z<p>You should have a read of Large-Scale C++ Software Design by John Lakos. </p>
<p>You may not be able to read it before you start your work, but you should put this book on your list.</p>
<p>Otherwise Martin York's advise is sound.</p>
<p>One more thing though, I would recommend picking up a tool like doxygen that can give you dependency diagrams of your code base. If your bothering to do this type of restructuring you should rid yourself of circular dependencies between your libraries. Lakos describes a lot of ways to cut dependencies - some obvious, some less so.</p>
http://stackoverflow.com/questions/989980/how-do-you-handle-command-line-options-and-config-files/990054#9900540Answer by Craig W. Wright for How do you handle command line options and config files?Craig W. Wright2009-06-13T05:35:46Z2009-06-13T05:35:46Z<p>Not sure about command line argument parsing. I have not needed very rich capabilities in that area and have generally rolled my own to save adding more dependencies to my software. Depending upon what your needs are you may or may not want to try this route. The C++ programs I have written are generally not invoked from the command line.</p>
<p>On the other hand, for a config file you really can't beat an XML based format. It's readable, extensible, structured, etc... :) Plus there are lots of XML parsers out there. Despite the fact it is a C library, I tend to use libxml2 from xmlsoft.org.</p>
http://stackoverflow.com/questions/981563/same-function-different-return-types-for-class-hierarchy/982639#9826390Answer by Craig W. Wright for Same function, different return types for class hierarchyCraig W. Wright2009-06-11T17:57:09Z2009-06-11T17:57:09Z<p>You could do:</p>
<pre>
template
class base
{
public:
void calculateValue(value_type& x);
};
class derived1 : protected base
{
private:
float m_price;
int m_quantity;
float m_value;
};
class derived2 : protected base
{
private:
double m_price;
long m_quantity;
double m_value;
};
</pre>
http://stackoverflow.com/questions/982421/how-to-write-portable-floating-point-arithmetic-in-c/982531#9825310Answer by Craig W. Wright for How to write portable floating point arithmetic in c++ ?Craig W. Wright2009-06-11T17:36:08Z2009-06-11T17:36:08Z<p>I believe "limits.h" will include the C library constants INT_MAX and its brethren. However, it is preferable to use "limits" and the classes it defines: </p>
<pre>
std::numeric_limits<float>, std::numeric_limits<double>, std::numberic_limits<int>, etc...
</pre>
http://stackoverflow.com/questions/982448/has-anyone-done-any-physical-packaging-branding-of-their-software/982501#9825010Answer by Craig W. Wright for Has anyone done any physical packaging/branding of their software?Craig W. Wright2009-06-11T17:30:26Z2009-06-11T17:30:26Z<p>If self-production is not an option then one thing you could do is to investigate places that produce music CDs. There are lots of companies that offer cover/booklet design and printing services in that market space.</p>
http://stackoverflow.com/questions/982388/linked-list/982471#9824713Answer by Craig W. Wright for linked listCraig W. Wright2009-06-11T17:25:27Z2009-06-11T17:25:27Z<p>Arguably you want your list data structure to be external to the data that it stores.</p>
<p>Say you have:</p>
<pre>
struct Whatever
{
int x_;
}
</pre>
<p>Then your list structure would look like this:</p>
<pre>
struct Whatever_Node
{
Whatever_Node* next_
Whatever* data_
}
</pre>
<p>Ryan Oberoi commented similarly, but w/o example.</p>
http://stackoverflow.com/questions/948008/linux-command-to-list-all-available-commands-and-aliases/948068#9480680Answer by Craig W. Wright for Linux command to list all available commands and aliasesCraig W. Wright2009-06-04T00:58:59Z2009-06-04T00:58:59Z<p>Here's a function you can put in your bashrc file:</p>
<pre>
function command-search
{
oldIFS=${IFS}
IFS=":"
for p in ${PATH}
do
ls $p | grep $1
done
export IFS=${oldIFS}
}
</pre>
<p>Example usage:</p>
<pre>
$ command-search gnome
gnome-audio-profiles-properties*
gnome-eject@
gnome-keyring*
gnome-keyring-daemon*
gnome-mount*
gnome-open*
gnome-sound-recorder*
gnome-text-editor@
gnome-umount@
gnome-volume-control*
polkit-gnome-authorization*
vim.gnome*
$
</pre>
<p>FYI: IFS is a variable that bash uses to split strings.</p>
<p>Certainly there could be some better ways to do this.</p>
http://stackoverflow.com/questions/937716/how-do-you-send-the-output-of-ls-to-mv/937753#9377531Answer by Craig W. Wright for How do you send the output of ls to mv?Craig W. Wright2009-06-02T03:02:38Z2009-06-02T03:02:38Z<p>Not exactly sure what you're trying to achieve here, but here's one possibility:</p>
<p>The "xargs" part is the important piece everything else is just setup. The effect of this is to take everything that "ls" outputs and add a ".txt" extension to it.</p>
<pre>
$ mkdir xxx #
$ cd xxx
$ touch a b c x y z
$ ls
a b c x y z
$ ls | xargs -Ifile mv file file.txt
$ ls
a.txt b.txt c.txt x.txt y.txt z.txt
$
</pre>
<p>Something like this could also be achieved by:</p>
<pre>
$ touch a b c x y z
$ for i in `ls`;do mv $i ${i}.txt; done
$ ls
a.txt b.txt c.txt x.txt y.txt z.txt
$
</pre>
<p>I sort of like the second way better. I can NEVER remember how <em>xargs</em> works without reading the man page or going to my "cute tricks" file.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/937646/can-abstract-thinking-be-taught/937731#9377311Answer by Craig W. Wright for Can abstract thinking be taught?Craig W. Wright2009-06-02T02:54:13Z2009-06-02T02:54:13Z<p>I haven't given it a ton of thought, but I believe there is a strong relationship between algebra and software design. In any case I trace my ability to think abstractly to a mastery of algebra.</p>
<p>Now you probably don't want to tell your new hire to go relearn algebra, but for a child or a young adult, I think a mastery of algebra is a key first step to this type of thinking.</p>
<p>In your current situation it's hard to say what to do. There are most likely some particulars here that are of import. Things you can not and should not share.</p>
<p>One thing I would suggest is that you think about the interview questions that you could have asked him that would preclude you from hiring another person like him in the future. We at least have to learn from our mistakes...</p>
<p>Meanwhile, like some others have suggested (barring no bad attitudes, etc..), maybe he can find a different place in your organization where he will be productive.</p>
http://stackoverflow.com/questions/931311/does-visual-studio-have-a-capability-like-emacs-registers1Does Visual Studio have a capability like Emacs registers?Craig W. Wright2009-05-31T04:56:05Z2009-05-31T05:22:39Z
<p>Registers are a feature of emacs that I make a lot of use of. For those not familiar, you highlight some text, and then ask emacs to place it in a numbered register (0-9). Then as you're going along you can ask emacs to insert the text in the given register into your code. </p>
<p>Basically I can save a chunk of text on the fly and then insert it into a buffer at a later time. The content of the register dies when the session dies.</p>
<p>Question is, does Visual Studio have a similar feature?</p>
http://stackoverflow.com/questions/931198/how-do-i-open-a-windows-in-a-different-x11-session/931216#9312160Answer by Craig W. Wright for how do i open a windows in a different X11 session?Craig W. Wright2009-05-31T03:50:15Z2009-05-31T03:50:15Z<p>I am a little unclear on the question, but here's a hypothetical setup:</p>
<p>I am sitting on my computer (we'll call that the root session) and I have a shell. In this case there is an environment variable DISPLAY with the value "127.0.0.1:0.0".</p>
<p>A second session is started. You'll need to know what the display variable is on this machine. If it's also on the localhost it may be something like "127.0.0.1:1.0". If you do an "echo $DISPLAY" on the other host it will tell you this. If it reports ":1.0" or something without the "127.0.0.1" that's okay. The localhost is implied if an address is not specified. </p>
<p>Next, before going back to the root session you'll need to run "xhost" to allow other sources to display windows on this host. (Disclaimer: What I'm going to tell you to do is horribly insecure so you may want to read the man page for xhost if you are on an insecure network). Type "xhost +" in an xterm on the other display. This command (in particular the "+" option) allows any host to pop up windows on this display.</p>
<p>So then all you have to do is go back to your root session shell and (I assume bash) run "export DISPLAY="127.0.0.1:1.0". Then run "xterm", which should have the window popping up in the other session.</p>
<p>I hope this helps.</p>
<p>You might do a search for "X windows DISPLAY variable" if any of this is unclear.</p>
http://stackoverflow.com/questions/931103/do-you-read-books-about-programming-a-lot/931155#9311550Answer by Craig W. Wright for Do you read books about programming (a lot) ?Craig W. Wright2009-05-31T03:02:32Z2009-05-31T03:02:32Z<p>I usually take in a couple programming books per year, although I read a lot of "how to" type of stuff on the Internet. For example I'm learning Windows Power Shell right now, will probably become somewhat competent at it, but will probably never buy a book about it. I'm really a Linux guy at heart... :)</p>
<p>I guess the main point is whether you read "programming books" or not, you should find ways to hone your skills. For me it's hard to simply read through beginner level books. I like to have something in mind that I am trying to accomplish and then just jump right in.</p>
<p>When I read a book from start to finish it tends to be books that are more advanced and/or topical (e.g. Exceptional C++, Large Scale C++, the Pragmatic Programmer, etc...).</p>
<p>Professional development both technical and otherwise is very important to me personally and I look for it in other when I do interviews. It is an indicator of passion.</p>
http://stackoverflow.com/questions/1369827/reconnect-to-process-started-via-comComment by Craig W. Wright on Reconnect to Process Started Via COMCraig W. Wright2009-09-03T17:58:19Z2009-09-03T17:58:19ZAdded "broader" picture stuff to the main post.http://stackoverflow.com/questions/987960/dividing-c-application-into-libraries/990074#990074Comment by Craig W. Wright on Dividing C++ Application into LibrariesCraig W. Wright2009-06-13T20:32:18Z2009-06-13T20:32:18ZOh yes, it's quite verbose! To the point of being tedious. On the other hand there are some real gems in there, and no, I dont' know of a more concise version. :(http://stackoverflow.com/questions/931311/does-visual-studio-have-a-capability-like-emacs-registers/931357#931357Comment by Craig W. Wright on Does Visual Studio have a capability like Emacs registers?Craig W. Wright2009-05-31T12:53:32Z2009-05-31T12:53:32ZSo that's like "Ctl-Y" followed by "Alt-Y" in emacs. Not quite what I'm looking for, but still good to know. :)