User Jere.Jones - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T18:59:53Zhttp://stackoverflow.com/feeds/user/19476http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1876051/how-can-i-change-a-modules-checksum-in-a-minidump2How can I change a module's checksum in a minidump?Jere.Jones2009-12-09T18:58:29Z2009-12-10T00:54:31Z
<p>The software that I write (and sell) is compressed and encrypted before I distribute it. Everytime I release a new build, I keep all the .map files and the generated binaries including the exe before it is compressed and encrypted.</p>
<p>When it crashes on a client's machine I get a minidump back. I open these minidumps in Visual Studio and explore them there.</p>
<p>I have made good use of these minidumps by searching for addresses in the .map files. This will typically get me in the correct area of the code and I can generally reason about why the crash occured and fix it but this is VERY time consuming.</p>
<p>It would be helpful if I could use the symbols that I saved from the original build in the debugging of the minidump.</p>
<p>My problem is that I get warnings about being unable to find the right symbols. My research leads me to believe that this is because the checksum of the exe on the client's machine does not match the checksum of the exe that Visual Studio built. And I understand why, it has been compressed and encypted. Of course the checksums don't match. </p>
<p>I figure I can manually edit the minidump or change the checksum of the saved binaries to match the checksum of the distributable. I would prefer to manipulate the stored copies so I don't have to modify every dump that comes in, but I'd be estatic with either.</p>
<p>So, my question is: How can I locate these checksums and figure out what I should replace them with? As an auxiliary question: Is there a better way?</p>
http://stackoverflow.com/questions/1572630/using-web-services-in-different-environments0Using web services in different environmentsJere.Jones2009-10-15T14:11:12Z2009-11-06T01:46:59Z
<p>We have a series of web services that live in different environments (dev/qa/staging/production) that are accessed from a web application, a web site, and other services. There are a few different service areas as well. So for production, we have services on four different boxes.</p>
<p>We conquered the db connection string issue by checking the hostname in global.asax and setting some application wide settings based on that hostname. There is a config.xml that is in source control that list the various hostnames and what settings they should get. </p>
<p>However, we haven't found an elegant solution for web services. What we have done so far is add references to all the environments to the projects and add several using statements to the files that use the services. When we checkout the project, we uncomment the appropriate using statement for the environment we're in.</p>
<p>It looks something like this:</p>
<pre><code>// Development
// using com.tracking-services.dev
// using com.upload-services.dev
// QA
// using com.tracking-services.qa
// using com.upload-services.qa
// Production
// using com.tracking-services.www
// using com.upload-services.www
</code></pre>
<p>Obviously as we use web services more and more this technique will get more and more burdensome.</p>
<p>I have considered putting the namespaces into web.config.dev, web.config.qa, etc and swapping them out on application start in global.asax. I don't think that will work because by the time global.asax is run the compilation is already done and the web.config changes won't have much effect.</p>
<p>Since the "best practices" include using web services for data access, I'm hoping this is not a unique problem and someone has already come up with a solution.</p>
<p>Or are we going about this whole thing wrong?</p>
<p>Edit:
These are asmx web services. There is no url referenced in the web.config that I can find.</p>
http://stackoverflow.com/questions/1561766/how-to-route-legacy-type-urls-in-asp-net-mvc0How to route legacy type urls in ASP.NET MVCJere.Jones2009-10-13T17:35:15Z2009-10-13T17:53:24Z
<p>Due to factors outside my control, I need to handle urls like this:</p>
<ul>
<li><a href="http://www.bob.com/dosomething.asp?val=42" rel="nofollow">http://www.bob.com/dosomething.asp?val=42</a></li>
</ul>
<p>I would like to route them to a specific controller/action with the val already parsed and bound (i.e. an argument to the action).</p>
<p>Ideally my action would look like this:</p>
<pre><code>ActionResult BackwardCompatibleAction(int val)
</code></pre>
<p>I found this question: <a href="http://stackoverflow.com/questions/817325/asp-net-mvc-routing-legacy-urls-passing-querystring-ids-to-controller-actions">ASP.Net MVC routing legacy URLs passing querystring Ids to controller actions</a> but the redirects are not acceptable.</p>
<p>I have tried routes that parse the query string portion but any route with a question mark is invalid.</p>
<p>I have been able to route the request with this:</p>
<pre><code>routes.MapRoute(
"dosomething.asp Backward compatibility",
"{dosomething}.asp",
new { controller = "MyController", action = "BackwardCompatibleAction"}
);
</code></pre>
<p>However, from there the only way to get to the value of val=? is via Request.QueryString. While I could parse the query string inside the controller it would make testing the action more difficult and I would prefer not to have that dependency.</p>
<p>I feel like there is something I can do with the routing, but I don't know what it is. Any help would be very appreciated.</p>
http://stackoverflow.com/questions/1425349/how-do-i-find-an-element-position-in-stdvector/1425384#14253841Answer by Jere.Jones for How do I find an element position in std::vector?Jere.Jones2009-09-15T06:01:20Z2009-09-15T06:01:20Z<p>In this case, it is safe to cast away the unsigned portion unless your vector can get REALLY big.</p>
<p>I would pull out the where.size() to a local variable since it won't change during the call. Something like this:</p>
<pre><code>int find( const vector<type>& where, int searchParameter ){
int size = static_cast<int>(where.size());
for( int i = 0; i < size; i++ ) {
if( conditionMet( where[i], searchParameter ) ) {
return i;
}
}
return -1;
}
</code></pre>
http://stackoverflow.com/questions/1425309/asp-net-mvc-html-helpers-not-working/1425336#14253362Answer by Jere.Jones for ASP.NET MVC html helpers not workingJere.Jones2009-09-15T05:46:33Z2009-09-15T05:46:33Z<p>You can add the namespace to the web.config and then you won't have to worry about it later.</p>
<p>Inside your web.config, you should see something like this:</p>
<pre><code><namespaces>
<add namespace="System.Web.Mvc"/>
<add namespace="System.Web.Mvc.Ajax"/>
<add namespace="System.Web.Mvc.Html"/>
<add namespace="System.Web.Routing"/>
<add namespace="System.Linq"/>
<add namespace="System.Collections.Generic"/>
</namespaces>
</code></pre>
<p>Just add a line with your namespace.</p>
<p>If you don't want the helpers to be globally imported, each directory can have it's own web.config. Unless specifically set, those "sub" web.configs will inherit settings from higher web.configs. If you go this route, be forewarned, some settings can only be set at the application level. It can get confusing fast.</p>
http://stackoverflow.com/questions/1406649/wanted-elegant-solution-to-race-condition3Wanted: Elegant solution to race conditionJere.Jones2009-09-10T17:36:00Z2009-09-10T18:45:29Z
<p>I have the following code:</p>
<pre><code>class TimeOutException
{};
template <typename T>
class MultiThreadedBuffer
{
public:
MultiThreadedBuffer()
{
InitializeCriticalSection(&m_csBuffer);
m_evtDataAvail = CreateEvent(NULL, TRUE, FALSE, NULL);
}
~MultiThreadedBuffer()
{
CloseHandle(m_evtDataAvail);
DeleteCriticalSection(&m_csBuffer);
}
void LockBuffer()
{
EnterCriticalSection(&m_csBuffer);
}
void UnlockBuffer()
{
LeaveCriticalSection(&m_csBuffer);
}
void Add(T val)
{
LockBuffer();
m_buffer.push_back(val);
SetEvent(m_evtDataAvail);
UnlockBuffer();
}
T Get(DWORD timeout)
{
T val;
if (WaitForSingleObject(m_evtDataAvail, timeout) == WAIT_OBJECT_0) {
LockBuffer();
if (!m_buffer.empty()) {
val = m_buffer.front();
m_buffer.pop_front();
}
if (m_buffer.empty()) {
ResetEvent(m_evtDataAvail);
}
UnlockBuffer();
} else {
throw TimeOutException();
}
return val;
}
bool IsDataAvail()
{
return (WaitForSingleObject(m_evtDataAvail, 0) == WAIT_OBJECT_0);
}
std::list<T> m_buffer;
CRITICAL_SECTION m_csBuffer;
HANDLE m_evtDataAvail;
};
</code></pre>
<p>Unit testing shows that this code works fine when used on a single thread as long as T's default constructor and copy/assignment operators don't throw. Since I'm writting T, that is acceptable.</p>
<p>My problem is the Get method. If there is no data available (i.e. m_evtDataAvail is not set), then a couple of threads can block on the WaitForSingleObject call. When new data becomes available, they all fall through to the Lock() call. Only one will pass and can get the data out and move on. After the Unlock() another thread can move on through and will find that there is no data. Currently it will return the default object.</p>
<p>What I want to happen is for that second thread (and others) to go back to the WaitForSingleObject call. I could add an else block that unlocked and did a goto but that just feels evil. </p>
<p>That solution also adds the possibility for an endless loop since each trip back would restart the timeout. I could add some code to check the clock on entry and adjust the timeout on each trip back but then this simple Get method starts to get very complicated.</p>
<p>Any ideas on how to solve these problems while maintaining testability and simplicity?</p>
<p>Oh, for anyone wondering, the IsDataAvail function only exists for testing. It won't be used in production code. The Add and Get are the only methods that will be used in a non-testing environment.</p>
http://stackoverflow.com/questions/1348713/slow-sqlcommand-performance-with-longer-commandtext3Slow SqlCommand performance with longer CommandTextJere.Jones2009-08-28T18:46:52Z2009-08-28T21:57:41Z
<p>Does the length of the CommandText of an SqlCommand make a difference? I'm not talking about thousands of characters either. Here's what I have:</p>
<pre><code>SqlCommand cmd = new SqlCommand();
cmd.Connection = conn;
cmd.CommandText = sql;
for (int i=0; i<1000; ++i)
{
string name = i.ToString() + "Bob" + i.ToString();
string email = i.ToString() + "Jim" + i.ToString();
// etc...
cmd.Parameters.Clear();
cmd.Parameters.Add(new SqlParameter("@name", name));
cmd.Parameters.Add(new SqlParameter("@country", country));
DateTime cmdStart = DateTime.Now;
cmd.ExecuteNonQuery();
DateTime cmdEnd = DateTime.Now;
TimeSpan len = cmdEnd - cmdStart;
}
</code></pre>
<p>If I use the following sql, the first iteration takes .5 seconds. The second takes 1.1 seconds. The third takes 3.3 seconds. And so on until it just throws for a timeout.</p>
<pre><code>string sql =
"INSERT INTO Test " +
" ([name] " +
" ,[email] " +
" ,[country] " +
" ,[comment] " +
" ,[date] " +
" ,[key_v0] " +
" ,[key_v1] " +
" ,[expires_v1] " +
" ,[expires_v2] " +
" ) " +
" VALUES " +
" (@name " +
" ,@email " +
" ,@country " +
" ,' ' " +
" ,@date " +
" ,@key_v0 " +
" ,@key_v1 " +
" ,@expires_v1 " +
" ,@expires_v2 " +
" )";
</code></pre>
<p>However, if I use the following sql, the entire loop is executed in under a second.</p>
<pre><code>string sql =
"INSERT INTO Test " +
"([name] " +
",[email] " +
",[country] " +
",[comment] " +
",[date] " +
",[key_v0] " +
",[key_v1] " +
",[expires_v1] " +
",[expires_v2] " +
") " +
"VALUES " +
"(@name " +
",@email " +
",@country " +
",' ' " +
",@date " +
",@key_v0 " +
",@key_v1 " +
",@expires_v1 " +
",@expires_v2 " +
")";
</code></pre>
<p>The only difference is the whitespace. Removing the whitespace brought the total character count from 428 to 203. I have been unable to locate anything referencing the length of CommandText except references to 4k and 8k limits. I'm nowhere near that.</p>
<p>I have run both versions with the profiler running and it the duration is under 10ms for all calls. The delay seems to be happening from when the command is complete inside the SQL engine until ExecuteNonQuery returns.</p>
<p>I know that there are alternative ways to do this. I'm not asking about better ways to do this. I'm asking about the source of the slowdown.</p>
<p>UPDATE:
As a test, I added spaces to the end of the query. As soon as I got above 400ish characters total, it slowed down. Interestingly, at 414 characters, the first 99 inserts are fast. At 415 characters, the first 9 inserts are fast. Since I am changing some of the strings based on the iteration number, this kinda makes sense. e.g. The 10th insert is a little longer than the 9th and the 100th insert is a little longer than the 99th.</p>
<p>While I kinda understand that longer inserts should take longer, I can't understand the clear division between fast and slow and the sheer magnitude of the difference. I also don't understand why the time taken increases.</p>
<p>UPDATE 2:
(Additional information in response to Peter Oehlert's answer):
The entire database is clean. There are no other tables and the test table is dropped and recreated for each run. There are no indexes, triggers or foreign keys. There is an 'id' column that is a primary key.</p>
<p>This is code pulled from a console app written specifically to troubleshoot this problem. It only includes the necessary code to repro this behavior.</p>
<p>(Aditional profiler information):
When running the SQL profiler, there is a column called TextData that shows what the command and data are. An example is this:</p>
<pre><code>exec sp_executesql N'INSERT INTO Test ([name] ,[email] ,[country] ,[comment] ,[date] ,[key_v0] ,[key_v1] ,[expires_v1] ,[expires_v2] ) VALUES (@name ,@email ,@country ,'' '' ,@date ,@key_v0 ,@key_v1 ,@expires_v1 ,@expires_v2 ) ',N'@name nvarchar(4),@country nvarchar(2),@email nvarchar(3),@date datetime,@key_v0 nvarchar(4000),@key_v1 nvarchar(4000),@expires_v1 datetime,@expires_v2 datetime',@name=N'9Bob',@country=N'us',@email=N'Jim',@date='2009-08-28 15:35:36.5770000',@key_v0=N'',@key_v1=N'',@expires_v1='2009-08-28 15:35:36.5770000',@expires_v2='2009-08-28 15:35:36.5770000'
</code></pre>
<p>That line is 796 characters long and runs fast. Changing the name from '9Bob' to '10Bob' results in a slow insert. Neither 796, nor 797 seem like a significant numbers. Removing the exec sp_executesql portion means lengths of 777 and 778. They don't seem significant either.</p>
<p>I'm stumped.</p>
<p>Update:
Posted trace here: <a href="http://www.jere.us/WierdInserts.trc" rel="nofollow">http://www.jere.us/WierdInserts.trc</a></p>
http://stackoverflow.com/questions/568066/triple-screen-setup-3-same-size-vs-large-center/568119#5681190Answer by Jere.Jones for Triple Screen Setup (3 same size vs large center)Jere.Jones2009-02-20T02:58:45Z2009-08-28T18:54:13Z<p>I have a 30in flanked by 2 24in and I absolutely love it. I have the tops of the screens lined up so speakers lay on their sides underneath.</p>
<p>I started with a single 24. Then I moved to 2 24's. Now that I have 3 monitors, I'm thinking of adding another 30. Putting the 2 30's on the outside and stacking the 2 24's vertically.</p>
<p>I just don't think I can have too much real estate.</p>
<p>Pixels is what is important to me. Whatever screen combination gets you the most pixels, go for that. You won't regret it.</p>
<p>And get a copy of UltraMon while you're at it. Multiple screens with only one taskbar is annoying and hurts my productivity.</p>
<p>UPDATE:</p>
<p>I've added another 30in monitor and changed the layout. Since you asked for a picture, here it is: <a href="http://www.twitpic.com/el9p6" rel="nofollow">http://www.twitpic.com/el9p6</a></p>
http://stackoverflow.com/questions/991169/wxwidgets-obtaining-application-path/991175#9911750Answer by Jere.Jones for wxWidgets: obtaining application pathJere.Jones2009-06-13T17:59:19Z2009-06-13T17:59:19Z<p>This isn't wxWidgets specific. Windows has a function called <a href="http://msdn.microsoft.com/en-us/library/ms683197.aspx" rel="nofollow">GetModuleFileName</a> that does what you want. The link is to the msdn page.</p>
http://stackoverflow.com/questions/796198/how-to-create-a-boost-thread-with-data/796252#7962528Answer by Jere.Jones for How to create a boost thread with data? Jere.Jones2009-04-28T04:39:48Z2009-04-28T04:39:48Z<p>Keep in mind that the first argument to any member function is the object.</p>
<p>So if you wanted to call:</p>
<pre><code>scanner* s;
s->scan()
</code></pre>
<p>with bind you would use:</p>
<pre><code>boost::bind(&scanner::scan, s);
</code></pre>
<p>If you wanted to call:</p>
<pre><code>s->scan(42);
</code></pre>
<p>use this:</p>
<pre><code>boost::bind(&scanner::scan, s, 42);
</code></pre>
<p>Since I often want bind to be called on the object creating the bind object, I often do this:</p>
<pre><code>boost::bind(&scanner::scan, this);
</code></pre>
<p>Good luck.</p>
http://stackoverflow.com/questions/782223/visual-studio-or-resharper-variable-and-method-coloring/782342#7823421Answer by Jere.Jones for Visual Studio (or resharper) variable and method coloringJere.Jones2009-04-23T15:45:24Z2009-04-23T15:52:26Z<p>A VS plugin that I use, <a href="http://www.wholetomato.com/" rel="nofollow">WholeTomato's Visual Assist X</a>, does this. If the thing being highlighted is a variable, it will even show assignments and reads in different colors.</p>
<p>Here is what it looks like (note that this highlighting happened because I put the carat between the t and w of networks):</p>
<p><img src="http://www.jere.us/usagehighlight.png" alt="snapshot" /></p>
http://stackoverflow.com/questions/760522/ace-vs-boost-vs-poco-vs-wxwidgets3ACE vs Boost vs Poco vs wxWidgetsJere.Jones2009-04-17T13:55:24Z2009-04-17T16:31:39Z
<p>I have a considerable amount of experience with <a href="http://www.cs.wustl.edu/~schmidt/ACE.html" rel="nofollow">ACE</a>, <a href="http://www.boost.org/" rel="nofollow">Boost</a> and <a href="http://www.wxwidgets.org/" rel="nofollow">wxWidgets</a>. I have recently found the <a href="http://pocoproject.org/" rel="nofollow">POCO</a> libraries. Does anyone have any experience with them and how they compare to ACE, Boost and wxWidgets with regard to performance and reliability?</p>
<p>I am particularly interested in replacing ACE with POCO. I have been unable to get ACE to compile with VS2008 with an x64 target. I mostly use ACE_Task so I think I can replace those with Poco's threads and message queues.</p>
<p>Some other portions of POCO that interest me are the HTTPServer, HTTPClient, and LayeredConfiguration. Those libraries are similiar to libraries in Boost and wxWidgets but I try to limit my use of wxWidgets to GUI components and the comparable Boost libraries are... difficult.</p>
<p>I'm interested in any experience anyone can share about POCO, good or bad.</p>
http://stackoverflow.com/questions/555315/jquery-checking-success-of-ajax-post/555317#5553173Answer by Jere.Jones for Jquery checking success of ajax postJere.Jones2009-02-17T02:17:44Z2009-02-17T02:24:43Z<p>The documentation is here: <a href="http://docs.jquery.com/Ajax/jQuery.ajax" rel="nofollow">http://docs.jquery.com/Ajax/jQuery.ajax</a></p>
<p>But, to summarize, the ajax call takes a bunch of options. the ones you are looking for are error and success.</p>
<p>You would call it like this:</p>
<pre><code>$.ajax({
url: 'mypage.html',
success: function(){
alert('success');
},
error: function(){
alert('failure');
}
});
</code></pre>
<p>I have shown the success and error function taking no arguments, but they can receive arguments.</p>
<p>The error function can take three arguments: XMLHttpRequest, textStatus, and errorThrown.</p>
<p>The success function can take two arguments: data and textStatus. The page you requested will be in the data argument.</p>
http://stackoverflow.com/questions/538498/your-favorite-jquery-controls-plugins/538565#5385656Answer by Jere.Jones for Your Favorite JQuery Controls & PluginsJere.Jones2009-02-11T20:17:06Z2009-02-11T20:17:06Z<p><a href="http://www.trirand.com/blog/" rel="nofollow">jqGrid</a> is simply the best and most flexible grid I have seen. It has, without a doubt, made my current project much easier. Ajax friendly, extendable, under active development. I can't find anything else that comes close.</p>
http://stackoverflow.com/questions/538373/jquery-fadein-effect/538416#5384164Answer by Jere.Jones for jQuery fadeIn effectJere.Jones2009-02-11T19:38:24Z2009-02-11T19:38:24Z<p>I'll assume you have a submit button somewhere so that isn't your problem.</p>
<p>What I see on your code is that the locale div doesn't fade in. It looks like it just "pops" into existence. The problem is that the div is already visible. And the html call just replaces the internal html. fadeIn() won't do anything if the object is already visible.</p>
<p>Solution: Start the page with the div hidden.</p>
<p>Change this:</p>
<pre><code><div id="locale"></div>
</code></pre>
<p>To this:</p>
<pre><code><div id="local" style="display:none"></div>
</code></pre>
http://stackoverflow.com/questions/455623/how-can-i-prevent-users-from-taking-screenshots-of-my-application-window/456521#4565219Answer by Jere.Jones for How can I prevent users from taking screenshots of my application window?Jere.Jones2009-01-19T04:24:19Z2009-01-26T22:19:46Z<p>I am amazed that no one has mentioned this. Put your interface on a DirectShow overlay surface. Since the surface exists in a separate part of memory and is "overlayed" by the video card right before being displayed on the screen, "normal" screen grabbers won't see it.</p>
<p>It won't be easy but you could create a virtual source filter that draws your interface and feeds it directly into the overlay mixer. You won't have access to standard windows controls and you will have to intercept mouse coordinates and button activity and translate those coordinates to where the are on the overlay.</p>
<p>This would also fix the copy and paste problem because the text would exist only as a drawing, not as something that can be selected.</p>
<p>This is not unbeatable, but it will defeat most screen grabbers that rely on the OS to get the pixel data.</p>
<p>Like anything in security, nothing is impossible to break, but you can make it more difficult until the cost to break in isn't worth what you get in return.</p>
http://stackoverflow.com/questions/479816/networking-lib-helper-c/479941#4799411Answer by Jere.Jones for networking lib + helper (c++)Jere.Jones2009-01-26T14:24:14Z2009-01-26T14:24:14Z<p>I like the <a href="http://www.cs.wustl.edu/~schmidt/ACE.html" rel="nofollow">ADAPTIVE Communication Environment</a>. It has built in constructs for just about all the networking patterns. I particullarly like ACE_Task. It makes message passing <strong>SO</strong> much easier.</p>
http://stackoverflow.com/questions/478875/how-to-change-the-name-of-a-thread/478906#4789065Answer by Jere.Jones for How to change the name of a threadJere.Jones2009-01-26T05:18:28Z2009-01-26T05:18:28Z<p>Here is the code I use.</p>
<p>This goes in a header file.</p>
<pre><code>#pragma once
#define MS_VC_EXCEPTION 0x406d1388
#pragma warning(disable: 6312)
#pragma warning(disable: 6322)
typedef struct tagTHREADNAME_INFO
{
DWORD dwType; // must be 0x1000
LPCSTR szName; // pointer to name (in same addr space)
DWORD dwThreadID; // thread ID (-1 caller thread)
DWORD dwFlags; // reserved for future use, most be zero
} THREADNAME_INFO;
inline
void SetThreadName(DWORD dwThreadID, LPCSTR szThreadName)
{
#ifdef _DEBUG
THREADNAME_INFO info;
info.dwType = 0x1000;
info.szName = szThreadName;
info.dwThreadID = dwThreadID;
info.dwFlags = 0;
__try
{
RaiseException(MS_VC_EXCEPTION, 0, sizeof(info) / sizeof(DWORD), (DWORD *)&info);
}
__except (EXCEPTION_CONTINUE_EXECUTION)
{
}
#else
dwThreadID;
szThreadName;
#endif
}
</code></pre>
<p>Then I call it like this inside the threads proc.</p>
<pre><code>SetThreadName(GetCurrentThreadId(), "VideoSource Thread");
</code></pre>
<p>It is worth noting that this is the exact code that David posted a link to (Thanks! I had forgotten where I got it). I didn't delete this post because I'd like the code to still be available if MSDN decides to reorganize its links (again).</p>
http://stackoverflow.com/questions/471929/whats-the-coolest-startup-programmer-job-title/478713#4787138Answer by Jere.Jones for What's the coolest startup programmer job title?Jere.Jones2009-01-26T02:42:06Z2009-01-26T02:42:06Z<p><strong>Evil Genius</strong></p>
<p>It's what I have on my business cards.</p>
http://stackoverflow.com/questions/316395/what-is-the-coolest-ai-project-youve-heard-of/316404#3164044Answer by Jere.Jones for What is the coolest AI project you've heard of?Jere.Jones2008-11-25T04:59:47Z2008-11-25T04:59:47Z<p><a href="http://www.numenta.com/" rel="nofollow">The Numenta Platform for Intelligent Computing</a>. They are implementing the type of neuron described in "On Intelligence" by Jeff Hawkins. For an idea of the significance, they are working on software neurons that can visually recognize objects in about 200 steps instead of the thousands and thousands necessary now.</p>
<p>Edit: Apparently version 1.6.1 of the SDK is available now. Exciting times for learning software!!</p>
http://stackoverflow.com/questions/290632/how-to-overload-operator-that-doesnt-take-or-return-ostream4How to overload operator<< that doesn't take or return ostreamJere.Jones2008-11-14T16:22:50Z2008-11-14T18:13:25Z
<p><strong>Original Question</strong></p>
<p>I am writting a logging class where the goal is to be able to do this:</p>
<pre><code>// thread one
Logger() << "Some string" << std::ios::hex << 45;
// thread two
Logger() << L"Some wide string" << std::endl;
</code></pre>
<p>Currently my Logger header looks something like this:</p>
<pre><code>#pragma once;
#include <ostream>
class Logger
{
public:
Logger();
~Logger();
std::ostream* out_stream;
};
template <typename T>
Logger& operator<< (Logger& logger, T thing) {
*logger.out_stream << thing;
return logger;
}
</code></pre>
<p>Some notes about this class:</p>
<ol>
<li>Cross platform compatibility is not an issue.</li>
<li>Inside of Logger.cpp there is a singleton class that takes care of creating the "real" ostream.</li>
<li>The Logger constructor and deconstructor perform the necessary locking of the singleton.</li>
</ol>
<p>I have three problems:</p>
<ul>
<li>How do I make the operator<< function a friend or member so I can set out_stream as private? </li>
<li>How do I make the operator<< function work for manipulators?</li>
<li>How can I add a specialization so that if T is a WCHAR* or std::wstring that it will convert it to char* or std::string before passing it to out_stream? (I can do the conversion. Losing high unicode characters isn't a problem in my case.)</li>
</ul>
<p><strong>Summary of things learned in answers:</strong></p>
<ul>
<li>Put template BEFORE friend instead of after.</li>
<li>std::ios::hex is not a manipulator. std::hex is a manipulator.</li>
</ul>
<p><strong>End Result</strong></p>
<pre><code>#pragma once
#include <ostream>
#include <string>
std::string ConvertWstringToString(std::wstring wstr);
class Logger
{
public:
Logger();
~Logger();
template <typename T>
Logger& operator<< (T data) {
*out << data;
return *this;
}
Logger& operator<< (std::wstring data) {
return *this << ConvertWstringToString(data);
}
Logger& operator<< (const wchar_t* data) {
std::wstring str(data);
return *this << str;
}
private:
std::ostream* out;
};
</code></pre>
http://stackoverflow.com/questions/290341/a-good-free-screen-sharing-program-for-pair-programming/290355#2903553Answer by Jere.Jones for A Good, Free screen sharing program for pair programming?Jere.Jones2008-11-14T15:09:19Z2008-11-14T15:09:19Z<p><a href="http://connect.microsoft.com/site/sitehome.aspx?SiteID=94" rel="nofollow">Windows Shared View</a> works for me. It allows you to only share certain windows and even shows where your "attendees" mouse is. It would be best to use that in connection with some sort of voip connection so that you don't have to type questions/responses back and forth.</p>
http://stackoverflow.com/questions/261829/whats-the-best-way-to-build-variants-of-the-same-c-c-application/261894#2618945Answer by Jere.Jones for What's the best way to build variants of the same C/C++ application.Jere.Jones2008-11-04T13:27:51Z2008-11-04T13:27:51Z<p>What you are trying to do seems very similar to "Product lines". Carnigie Melon University has an excellent page on the pattern here: <a href="http://www.sei.cmu.edu/productlines/" rel="nofollow">http://www.sei.cmu.edu/productlines/</a></p>
<p>This is basically a way to build different versions of one piece of software with different capabilities. If you imagine something like Quicken Home/Pro/Business then you are on track.</p>
<p>While that may not be exactly what you attempting, the techniques should be helpful.</p>
http://stackoverflow.com/questions/257418/do-while-0-what-is-it-good-for/257421#2574218Answer by Jere.Jones for do { ... } while (0) what is it good for?Jere.Jones2008-11-02T21:38:44Z2008-11-02T23:48:54Z<p>It is a way to simplify error checking and avoid deep nested if's. For example:</p>
<pre><code>do {
// do something
if (error) {
break;
}
// do something else
if (error) {
break;
}
// etc..
} while (0);
</code></pre>
http://stackoverflow.com/questions/252268/what-is-the-best-way-to-protect-user-inputs-not-yet-submitted-from-session-time/252349#2523494Answer by Jere.Jones for What is the best way to protect user inputs (not yet submitted) from session timeout?Jere.Jones2008-10-31T01:22:33Z2008-10-31T01:22:33Z<p>Make your applications stateless on the server side. You can include any state you need to maintain in hidden input fields. If security is a concern then you can encrypt the data before putting it in the field.</p>
<p>An example is putting something like this in your form:</p>
<pre><code><input type="hidden" name="user" value="bob" />
<input type="hidden" name="currentRecordId" value="2345" />
<input type="hidden" name="otherStuff" value="whocares" />
</code></pre>
<p>The main advantage of this is that your web app can do everything it needs to with just that page. It doesn't need any session variables because everything it needs is in the page it just received. Now it doesn't matter how long they take because there is no session to expire.</p>
<p>A secondary advantage is that it reduces the load on your server because it isn't polling your users periodically.</p>
http://stackoverflow.com/questions/240932/vmware-and-performance-for-developing/240963#2409632Answer by Jere.Jones for vmware and performance for developingJere.Jones2008-10-27T18:29:20Z2008-10-27T18:29:20Z<p>We use it where I work. We are even making a dvd with the appliance on it to reduce the time it takes new developers to get up to speed.</p>
<p>Regarding performance, I have seen a performance hit. It seems mostly limited by the hard drive if you have snapshots enabled. Of course after I moved my vm's to a VelociRaptor, even that performance hit is no longer noticable.</p>
<p>Oh, I develop ASP websites and C/C++ applications using Visual Studio 2005 and 2008.</p>
http://stackoverflow.com/questions/238738/events-in-c/238757#23875712Answer by Jere.Jones for Events in C++Jere.Jones2008-10-26T22:57:06Z2008-10-26T22:57:06Z<p>Take a look at the boost <a href="http://www.boost.org/doc/libs/1_36_0/doc/html/signals.html" rel="nofollow">signal</a> library. Combined with the <a href="http://www.boost.org/doc/libs/1_36_0/doc/html/function.html" rel="nofollow">function</a> and <a href="http://www.boost.org/doc/libs/1_36_0/libs/bind/bind.html" rel="nofollow">bind</a> libraries, you can do exactly what you are looking for.</p>
http://stackoverflow.com/questions/238465/static-or-dynamic-linking-the-crt-mfc-atl-etc/238513#2385131Answer by Jere.Jones for Static or dynamic linking the CRT, MFC, ATL, etc.Jere.Jones2008-10-26T19:48:42Z2008-10-26T19:48:42Z<p>As long as you keep your usage limited to certain libraries and do not use any dll's then you should be good. </p>
<p>Unfortunately, there are some libraries that you cannot link statically. The best example I have is OpenMP. If you take advantage of Visual Studio's OpenMP support, you will have to make sure the runtime is installed (in this case vcomp.dll).</p>
<p>If you do use dll's then you can't pass some items back and forth without some serious gymnastics. std::strings come to mind. If your exe and dll are dynamically linked then the allocation takes place in in the CRT. Otherwise your program may try to allocate the string on one side and deallocate it on the other. Bad things ensue...</p>
<p>That said, I still statically link my exe's and dll's. It does reduce a lot of the variablilty in the install and I consider that well worth the few limitations.</p>
http://stackoverflow.com/questions/233633/how-to-create-windows-firewall-exception-in-visual-basic-2005/233667#2336671Answer by Jere.Jones for How to create Windows firewall exception in Visual Basic 2005?Jere.Jones2008-10-24T14:07:43Z2008-10-24T14:07:43Z<p>Very similar to this question: <a href="http://stackoverflow.com/questions/113755/programmatically-add-an-application-to-windows-firewall">http://stackoverflow.com/questions/113755/programmatically-add-an-application-to-windows-firewall</a></p>
<p>That question is for C#, but since the languages are similar, the techniques should be the same.</p>
http://stackoverflow.com/questions/232256/how-can-i-clone-clean-environments-for-testing-an-installer/232295#2322953Answer by Jere.Jones for How can I clone clean environments for testing an installerJere.Jones2008-10-24T02:24:47Z2008-10-24T02:35:02Z<p>You can look into Windows Steady State here: <a href="http://www.microsoft.com/windows/products/winfamily/sharedaccess/default.mspx" rel="nofollow">http://www.microsoft.com/windows/products/winfamily/sharedaccess/default.mspx</a></p>
<p>It virtualizes all writes so that rebooting the machine restores it to the locked down state.</p>
<p>Basically, you would install XP and then Steady State. When you get to a point that you want to always start from, lock it down. Then you can do all the installations you want. You only need to restart the machine to get it back to its original state.</p>
<p>Steve Gibson talks about it in episode 129 of Security Now. You can download it here: <a href="http://www.grc.com/securitynow.htm" rel="nofollow">http://www.grc.com/securitynow.htm</a></p>
http://stackoverflow.com/questions/1876051/how-can-i-change-a-modules-checksum-in-a-minidump/1877986#1877986Comment by Jere.Jones on How can I change a module's checksum in a minidump?Jere.Jones2009-12-10T16:39:25Z2009-12-10T16:39:25ZIt is the same as locking your car and taking the keys. It doesn't stop the determined thieves, but neither is it useless.http://stackoverflow.com/questions/1876051/how-can-i-change-a-modules-checksum-in-a-minidump/1877986#1877986Comment by Jere.Jones on How can I change a module's checksum in a minidump?Jere.Jones2009-12-10T14:37:25Z2009-12-10T14:37:25ZI wouldn't say my software is special/important. It is a commercial consumer product so reverse engineering isn't the concern. Cracking and keygens are.http://stackoverflow.com/questions/911250/visual-studio-debugger-not-attaching-when-at-the-root-of-a-website/944947#944947Comment by Jere.Jones on Visual Studio Debugger Not Attaching when at the Root of a websiteJere.Jones2009-11-05T18:18:07Z2009-11-05T18:18:07ZI wish I could upvote you multiple times!http://stackoverflow.com/questions/1572630/using-web-services-in-different-environments/1573897#1573897Comment by Jere.Jones on Using web services in different environmentsJere.Jones2009-10-15T18:13:21Z2009-10-15T18:13:21ZThat sounds like a great idea. Umm... how do I do that?http://stackoverflow.com/questions/1572630/using-web-services-in-different-environmentsComment by Jere.Jones on Using web services in different environmentsJere.Jones2009-10-15T18:12:16Z2009-10-15T18:12:16ZThe different namespaces are how the different urls are specified. Dev, QA, and Production often have different binaries since any change has to be developed in Dev then moved to QA for testing and finally pushed to Production. All three binaries could be different.http://stackoverflow.com/questions/1561766/how-to-route-legacy-type-urls-in-asp-net-mvc/1561842#1561842Comment by Jere.Jones on How to route legacy type urls in ASP.NET MVCJere.Jones2009-10-13T19:17:18Z2009-10-13T19:17:18ZUnbelievable. I tried it and it worked. Shouda just tried it. Thanks!!!
http://stackoverflow.com/questions/1415595/solve-the-patternComment by Jere.Jones on Solve the patternJere.Jones2009-09-12T17:07:37Z2009-09-12T17:07:37ZIs this homework?http://stackoverflow.com/questions/471929/whats-the-coolest-startup-programmer-job-title/478713#478713Comment by Jere.Jones on What's the coolest startup programmer job title?Jere.Jones2009-09-11T07:20:07Z2009-09-11T07:20:07ZSure. Enjoy. I know I have.http://stackoverflow.com/questions/1406649/wanted-elegant-solution-to-race-condition/1406847#1406847Comment by Jere.Jones on Wanted: Elegant solution to race conditionJere.Jones2009-09-10T21:42:27Z2009-09-10T21:42:27ZWow. Out of left field comes an outstanding alternative. That is elegant and simple. Friggin' beautiful.http://stackoverflow.com/questions/1406649/wanted-elegant-solution-to-race-condition/1406703#1406703Comment by Jere.Jones on Wanted: Elegant solution to race conditionJere.Jones2009-09-10T21:39:03Z2009-09-10T21:39:03ZSecond, BRILLIANT! I changed the if-empty-reset block to if-not-empty-set and every path I can think of is handled properly. Thanks!http://stackoverflow.com/questions/1406649/wanted-elegant-solution-to-race-condition/1406703#1406703Comment by Jere.Jones on Wanted: Elegant solution to race conditionJere.Jones2009-09-10T21:35:22Z2009-09-10T21:35:22ZFirst, I have historically used RAII in just these circumstances. I chose not to in this case to increase the testing area. I'm just getting into TDD.http://stackoverflow.com/questions/1406649/wanted-elegant-solution-to-race-condition/1407014#1407014Comment by Jere.Jones on Wanted: Elegant solution to race conditionJere.Jones2009-09-10T21:23:20Z2009-09-10T21:23:20ZI really like the idea of a nolock list, but as far as I can tell, those lists are LIFO and I need FIFO. Or am I missing something?http://stackoverflow.com/questions/1348713/slow-sqlcommand-performance-with-longer-commandtext/1349592#1349592Comment by Jere.Jones on Slow SqlCommand performance with longer CommandTextJere.Jones2009-08-28T23:02:05Z2009-08-28T23:02:05ZI love your answer. You see exactly what I see. I would like it to be code defect but you see all of the code above. The loop is just as described. No sorting. No saving. Just insert-loop-insert-etc.http://stackoverflow.com/questions/1348713/slow-sqlcommand-performance-with-longer-commandtext/1349109#1349109Comment by Jere.Jones on Slow SqlCommand performance with longer CommandTextJere.Jones2009-08-28T21:37:14Z2009-08-28T21:37:14Z99Bob and 10Bob have the same performance characteristics.http://stackoverflow.com/questions/1348713/slow-sqlcommand-performance-with-longer-commandtext/1348750#1348750Comment by Jere.Jones on Slow SqlCommand performance with longer CommandTextJere.Jones2009-08-28T19:50:35Z2009-08-28T19:50:35ZThe original idea was to use this code only once to move some data from a MySql db to an MSSql db. Hence the lack of a stored proc. Now I'm just trying to find out what the heck is going on.