User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T21:19:33Zhttp://stackoverflow.com/feeds/user/17224http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/131128/what-standard-techniques-are-there-for-using-cpu-specific-features-in-dlls/131491#1314911Answer by computinglife for What standard techniques are there for using cpu specific features in DLLs?computinglife2008-09-25T04:33:33Z2009-10-17T20:23:40Z<p>DLLs you download from Microsoft are targeted for the generic x86 architecture for the simple reason that it has to work across all the multitude of machines out there. </p>
<p>Until the Visual Studio 6.0 time frame (I do not know if it has changed) Microsoft used to optimize its DLLs for size rather than speed. This is because the reduction in the overall size of the DLL gave a higher performance boost than any other optimization that the compiler could generate. This is because speed ups from micro optimization would be decidedly low compared to speed ups from not having the CPU wait for the memory. True improvements in speed come from reducing I/O or from improving the base algorithm. </p>
<p>Only a few critical loops that run at the heart of the program could benefit from micro optimizations simply because of the huge number of times they are invoked. Only about 5-10% of your code might fall in this category. You could rest assured that such critical loops would already be optimized in assembler by the Microsoft software engineers to some level and not leave much behind for the compiler to find. (I know it's expecting too much but I hope they do this)</p>
<p>As you can see, there would be only drawbacks from the increased DLL code that includes additional versions of code that are tuned for different architectures when most of this code is rarely used / are never part of the critical code that consumes most of your CPU cycles.</p>
http://stackoverflow.com/questions/145262/any-experience-with-compiling-vb-script0Any experience with compiling VB scriptcomputinglife2008-09-28T05:27:10Z2009-06-04T04:30:27Z
<p>I have a home-spun 2000 line VB script, that has become progressively slow with each additional code i add. It was created as a private debugging aid and now that it has becomes really useful, i want to polish it and ship it along with our product.</p>
<p>I thought i could speed it up by compiling it and making it an exe and further i want to have a user interface for my tool, which might be possible once i use the extra libraries that the compiling platform might give me. I'm also considering extending the script by calling win32 functions for whatever missing functionalities i require. </p>
<p>I have VB 6.0 or i can buy an external compiler. But i also need the created program (not the compiler itself) to run fine in Vista. What are my best options? </p>
http://stackoverflow.com/questions/376296/building-both-dll-and-static-libs-from-the-same-project/376797#3767970Answer by computinglife for Building both DLL and static libs from the same projectcomputinglife2008-12-18T03:03:02Z2008-12-18T03:03:02Z<p>Multiple projects are the best way to go - this is the configuration i have most widely seen in umpteen no of projects that i have come across. </p>
<p>That said, it might be also possible to implement the third option by modifying your vcproj files on the fly from external tools(like a custom vbscript), that you could invoke from a make file. You can use shell variables to control the behavior of the tool. </p>
<p>Note that you should still use use visual studio to make the build, the makefile should only launch your external tool if required to make the mods and then follow that by the actual build command </p>
http://stackoverflow.com/questions/296283/how-to-make-an-atl-com-class-derived-from-a-base-class/375067#3750670Answer by computinglife for How to make an ATL COM class derived from a base class?computinglife2008-12-17T16:07:31Z2008-12-17T16:07:31Z<p>Just a suggestion - if your COM object does not need to do anything special with COM related stuff then you can implement code such that the real logic that your base COM class does is encapsulated in another plain old C++ class say CBaseLogic. </p>
<pre><code>CBaseLogic : IBase
class ATL_NO_VTABLE CBase :
public CComObjectRootEx<CComSingleThreadModel>,
public CComCoClass<CBase, &CLSID_Base>,
public ISupportErrorInfo,
public IConnectionPointContainerImpl<CBase>,
public CProxy_IBaseEvents<CBase>,
public IDispatchImpl<IBase, &IID_IBase, &LIBID_ExampleLib
{
CBaseLogic m_LogicObj; /* Method calls are simply forwarded to this member */
};
CDerivedLogic : public CBaseLogic
class ATL_NO_VTABLE CDerived :
public CComObjectRootEx<CComSingleThreadModel>,
public CComCoClass<CDerived, &CLSID_Base>,
public ISupportErrorInfo,
public IConnectionPointContainerImpl<CDerived>,
public CProxy_IBaseEvents<CDerived>,
public IDispatchImpl<IBase, &IID_IBase, &LIBID_ExampleLib
{
CDerivedLogic m_LogicObj;
};
</code></pre>
<p>This achieves what you are trying to do with the added advantage of </p>
<ol>
<li>Keeps your real program logic separate from the infrastructure / packaging (COM)</li>
<li>Makes the real logic platform independent. </li>
<li>Future maintainer need not understand your clever COM hack</li>
<li>Keeps your program logic clean and away from the COM syntax, improving readability</li>
<li>Makes re-use of real logic easier in other forms of packaging eg as a C DLL</li>
</ol>
http://stackoverflow.com/questions/277382/what-kind-of-stats-does-your-company-collect-to-define-code-software-product-qu7What kind-of stats does your company collect to define code / software product qualitycomputinglife2008-11-10T08:55:02Z2008-11-10T09:29:45Z
<p>Most programming houses / managers i know of can only define quality in terms of the no of bugs made / resolved in retrospect. </p>
<p>However most good programmers can innately sense quality once they start meddling with the code.(right?) </p>
<p>Has any programming houses that you know of, successfully translated this information into metrics that organizations can measure and track to ensure quality? </p>
<p>I ask since i very often hear rantings from dis-gruntled managers who just cannot put their finger on what quality really is. But some organizations like HoneyWell i hear has lots of numbers to track programmer performance, all of which translates to numbers and can be ticked off during appraisals. Hence my question to the community at large to bring out the stats they know of.</p>
<p>Suggestions about tools that can do a good job of measuring messy codes will help too. </p>
http://stackoverflow.com/questions/242884/dlls-that-require-registration-used-in-different-programs/258226#2582261Answer by computinglife for DLLs that require registration, used in different programscomputinglife2008-11-03T09:44:52Z2008-11-03T09:44:52Z<p>Use the new XP deployment model of side by side assemblies. It supports isolated COM components.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa369732" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa369732</a>(VS.85).aspx</p>
http://stackoverflow.com/questions/258007/setting-command-button-visibility-in-vc-6-0/258209#2582092Answer by computinglife for Setting command button visibility in VC++ 6.0?computinglife2008-11-03T09:31:08Z2008-11-03T09:31:08Z<p>From the resource editor once you select the button, you can see its properties in the properties window. Here you can set the visible property to true / false. (assuming this functionality is present in 6.0 - i use 2003 now and cannot remember if this used to be present in 6.0)</p>
<p><strong>Add CButton variable</strong> </p>
<p>If you want to dynamically change the buttons visibility during load, add a variable for your button using the MFC class wizard. (you are lucky to have this - this wizard seems to have been removed from Visual Studio .NET)</p>
<p><strong>Override CDialog InitDialog</strong></p>
<p>Next override the initdialog function of your dialog box and then once the base InitDialog function has been successfully called, set the buttons showwindow property to SW_HIDE / before showing the dialog box. </p>
<p><strong>Code</strong></p>
<pre><code>BOOL CMyDialog::OnInitDialog()
{
CDialog::OnInitDialog();
if (ConditionShow)
m_MyButton.ShowWindow(SW_SHOW);
else
m_MyButton.ShowWindow(SW_HIDE);
return TRUE;
}
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/120555#1205550Answer by computinglife for What are Code Smells? What is the best way to correct them?computinglife2008-09-23T12:04:48Z2008-10-31T09:33:14Z<p>My list - <a href="http://computinglife.wordpress.com/2008/06/03/what-really-is-bad-code-levels-of-bad-ness/" rel="nofollow">http://computinglife.wordpress.com/2008/06/03/what-really-is-bad-code-levels-of-bad-ness/</a></p>
<p>Excerpts - </p>
<ol>
<li>Does not catch errors / ignore return values</li>
<li>Memory leaks / Exceptions</li>
<li>No validations (on inputs / parameters / strings)</li>
<li>Too big a function / class</li>
<li>Globals</li>
<li>Pointy code (<a href="http://www.codinghorror.com/blog/archives/000486.html" rel="nofollow">http://www.codinghorror.com/blog/archives/000486.html</a>)</li>
<li>Too many variables</li>
<li>No indentation</li>
<li>Weak naming</li>
<li>Extremely big individual lines</li>
</ol>
http://stackoverflow.com/questions/252597/mem-usage-higher-than-vm-size-in-winxp-task-manager/252947#2529479Answer by computinglife for "Mem Usage" higher than "VM Size" in WinXP Task Managercomputinglife2008-10-31T09:21:53Z2008-10-31T09:21:53Z<p><strong>Virtual Memory</strong></p>
<p>Assume that your program (eg Oracle) allocated 100 MB of memory upon startup - your VM size goes up by 100 MB though no additional physical / disk pages are touched. ie VM is nothing but memory book keeping. </p>
<p>The total available physical memory + paging file memory is the maximum memory that ALL the processes in the system can allocate. The system does this so that it can ensure that at any point time if the processes actually start consuming all that memory it allocated the OS can supply the actual physical pages required.</p>
<p><strong>Private Memory</strong></p>
<p>If the program copies 10 MB of data into that 100 MB, OS senses that no pages have been allocated to the process corresponding to those addresses and assigns 10 MB worth of physical pages into your process's private memory. (This process is called page fault)</p>
<p><strong>Working Set</strong></p>
<p>Definition : Working set is the set of memory pages that have been recently touched by a program. </p>
<p>At this point these 10 pages are added to the working set of the process. If the process then goes and copies this data into another 10 MB cache previously allocated, everything else remains the same but the Working Set goes up again by 10 Mb if those old pages where not in the working set. But if those pages where already in the working set, then everything is good and the programs working set remains the same. </p>
<p><strong>Working Set behaviour</strong></p>
<p>Imagine your process never touches the first 10 pages ever again, in which case these pages are trimmed off from your process's working set and possibly sent to the page file so that the OS can bring in other pages that are more frequently used. However if there are no urgent low memory requirements, then this act of paging need not be done and OS can act as if its rich in memory. In this case the working set simply lets these pages remain. </p>
<p><strong>When is Working Set > Virtual Memory</strong></p>
<p>Now imagine the same program de-allocates all the 100 Mb of memory. The programs VM size is immediately reduced by 100 MB (remember VM = book keeping of all memory allocation requests)</p>
<p>The working set need not be affected by this, since that doesn't change the fact that those 10 Mb worth of pages where recently touched. Therefore those pages still remain in the working set of the process though the OS can reclaim them whenever it requires. </p>
<p>This would effectively make the VM < working set. However this will rectify if you start another process that consumes more memory and the working set pages are reclaimed by the OS. </p>
http://stackoverflow.com/questions/128705/do-you-ever-code-just-for-fun/132235#1322359Answer by computinglife for Do you ever code just for fun?computinglife2008-09-25T09:01:08Z2008-10-27T07:55:12Z<p>Fun ? </p>
<p>Not in the way i have fun when i go to a movie or the beach or travel or visit the pub. </p>
<p>Coding, for me, is more like an addictive hobby that pushes me to get more cool stuff done, and get more and more cool tools and is something you could brag about if you cared to. (Latest Ubuntu ? Latest Gaming Laptops ? Latest Games ? Lisp ?)</p>
<p>Its like an affliction, the way people who love cars love to know the details of that 30 grand V12 that can do 100 mph in 3 secs. Something that stirs the youngster in me.</p>
<p>At times, it aspires me to tinker on something coz i know that it can be improved. And i simply cant consciouly let it pass knowing that something that can be improved and is within your powers is not perfected. This feeling at times is referred to as a 'programmers itch'. The feeling i have when i succeed in this is at times pride, gratification or of plain brag value. But never is the actual process of improvement fun. Its hard work. But the goal drives you towards that final gratification. </p>
<p>You cannot be careless about it and you have to learn and you cant help knowing about the next cool thing that just happened. </p>
<p>I would say coding, is definitely a hobby - that pays. </p>
http://stackoverflow.com/questions/238184/define-an-interface-method-that-takes-different-parameters/239204#2392041Answer by computinglife for Define an interface method that takes different parameterscomputinglife2008-10-27T06:26:29Z2008-10-27T07:15:12Z<p>If you are going to deal with even more than one device type, then controller + device interface seperation, which communicates using Name vlaue pairs would be a good solution</p>
<p><strong>DECOUPLING</strong></p>
<p>Using name value pairs allows you to seperate your code into a device + controller + application code structure</p>
<p><strong>Sample Code</strong></p>
<pre><code>class DeviceInterface
{
void Initialize(IController & Controller);
void Close();
bool ChangeParameter(const string & Name, const string & Value);
bool GetParam(string & Name, string &Value );
}
</code></pre>
<p>Each device implementation, when created should be created with the identification of the controller that can accept its commands and translate them into the actual device commands</p>
<pre><code>interface IController
{
Initialize(DeviceSpecific & Params);
Close();
bool ChangeParameter(string & Name, string & Value);
bool ChangeParams(string & Name[], string &Value []);
}
</code></pre>
<p>Your user code would look something like this</p>
<pre><code>IController objController = new MeasurementDevice(MeasureParram);
DeviceInterface MeasureDevice = new DeviceInterface(objController);
string Value;
MeasureDevice.GetParam("Temperature", Value);
if (ConvertStringToInt(Value) > 80)
{
MeasureDevice.ChangeParameter("Shutdown", "True");
RaiseAlert();
}
</code></pre>
<p>All that the DeviceInterface class should do is take care of passing the commands to the controller. The controller should take care of the device communication. </p>
<p><strong>Advantages of the interface seperation</strong></p>
<p><strong>Protect againt changes</strong></p>
<p>This sort of decoupling will allow you to isolate your app code from the controller. Changes in the device does not affect your user code</p>
<p><strong>Maintainability of Appliction Code</strong></p>
<p>Addtionally the user code is always clean and you need bother only with the application logic. But had you defined multiple interfaces / created templates or generics with multiple types of parameter structs specific to controller, your code would have lots of device dependent junk in it which might hurt readability and create maintenance issues whenever your device / its parameters changes. </p>
<p><strong>Implementation ease</strong></p>
<p>You can also hive off different controller implementations into its own projects. Plus your application can also configure commands and responses in a more dynamic naure using XML files etc that can ship along with the controller classes such that your entire application becomes more dynamic in nature. </p>
<p><strong>Real Life</strong></p>
<p>One of the latest production controller projects from the leader in that domain works in the same manner. But they use LON for the device communication.</p>
<p><strong>LON ?</strong> </p>
<p>LON protocol used in controllers (think air-conditioner / boiler / fans etc) networks use this concept to talk to various devices</p>
<p>So all that you would need to have is a single interface that can talk to your device and then sends the name value pair to it using LON. he use of a standard protocol will also allow you to talk to other devices besides your measurement instrument. There are open source implementations of LON available if your device uses LON. </p>
<p>If your device does not support LON then you might have to design something where the user code still works on name value pairs and an opposite interface translates your name value pairs into an equivalet corresponding cotroller struct+ and communicates to the individua device in the way the device understands . </p>
<p>Hope this comes useful.</p>
http://stackoverflow.com/questions/238267/what-is-your-naming-convention-for-stored-procedures/238364#2383640Answer by computinglife for What is your naming convention for stored procedures?computinglife2008-10-26T17:58:33Z2008-10-26T17:58:33Z<p>Avoid sp_* in SQl server coz all system stored prcedures begins with sp_ and therefore it becomes more harder for the system to find the object corresponding to the name. </p>
<p>So if you begin with something other than sp_ things become easier. </p>
<p>So we use a common naming of Proc_ to begin with. That makes it easier to identify the procedures if presented with one big schema file. </p>
<p>Apart from that we assign a prefix that identify the function. Like </p>
<p><code>Proc_Poll_Interface, Proc_Inv_Interface</code> etc. </p>
<p>This allows us to find all stored procs which does the job of POLL vs that does Inventory etc. </p>
<p>Anyhow the prefix system depends on your problem domain. But al said and done something similar ought to be present even if it be just to allow people to quicly locate the stored procedure in the explorere drop down for editing. </p>
<p>other eg's of function. </p>
<pre><code>Proc_Order_Place
Proc_order_Delete
Proc_Order_Retrieve
Proc_Order_History
</code></pre>
<p>We followed the function based naming coz Procs are akin to code / function rather than static objects like tables. It doesnt help that Procs might work with more than one table. </p>
<p>If the proc performed more functions than can be handled in a single name, it means your proc is doing way much more than necessary and its time to split them again.</p>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/234609/how-do-you-bring-a-failing-project-back-on-track/234762#2347622Answer by computinglife for How do you bring a failing project back on track?computinglife2008-10-24T18:31:05Z2008-10-24T18:37:12Z<p>Common sense has already been pointed out to you by Maxim (Quit the death march). But if for reasons unknown you wish to persist, let me regale you with my experience in a similar situation - perhaps it might come useful. </p>
<p>It was my first job in a sleepy old town where good computer jobs where hard to come by and I despertely needed one immediately after college. I was hired coz the management thought i was enthusiastic enough and might be better than nothing (I offered to bring in my own comp to save them a cost of giving me a PC and offered to work for the experience alone)</p>
<p>The project had been abandoned by its creators due to the death march situation and had gone away after deleting all the comments in the code and performing other obfuscations. Nobody knew win32 / MFC stuff either. </p>
<p>I simply started studying the code on good old paper and pencil (lots of rubbing and corrections) until within 20 days time i knew the entire code including the variables by heart and what and where things where happening.</p>
<p>Armed with this knowledge i was able to make a critical piece working which had eluded everyone before. Of-course this was nothing but a drop in the ocean but it enabled the management to buy the clients confidence "smart fellow - got him with great difficulty - already got x working - u will have ur stuff working within y time". </p>
<p>Once the client was convinced and we where able to buy some time, some pressure was taken away. This got some hope back into the team and we started to hammer away for good. 6 months later i got promoted to project lead and 9 months later we had our fix shipment (lots of progress demos and a visibly more and more satisfied client in between). </p>
<p>As you can see, the elements of success are not directly duplicatable. But i would summarize that you need to breath some hope into the project first - show some progress and win confidence - that of your peers, management and the client. Once that is in place the technical stuff should be corrected too - there is nothing to replace this part of the equation. </p>
<p>If that does not seem likely, all that hard work (oh yes - lots and lots of work like you never imagined - why do you think its called a death march) would be a waste and you had better quit even before you start. </p>
<p>I had no choice and i was hot blooded and desperately need a job. The technical details where something icould work magic upon, and everthing just clicked into place. I really earned a lot of good will and self respect with that piece of work but in the long run its just a story i can narrate with great aplomb and nothing more except for those few in the know. </p>
<p>Things might be different for you but its for you to decide. </p>
<p>Good luck</p>
http://stackoverflow.com/questions/234482/using-stl-to-find-all-elements-in-a-vector/234618#2346180Answer by computinglife for using STL to find all elements in a vectorcomputinglife2008-10-24T17:52:43Z2008-10-24T17:52:43Z<p>Lamda functions - the idea is to do something like this</p>
<pre><code>for_each(v.begin(), v.end(), [](MyType& x){ if (Check(x) DoSuff(x); })
</code></pre>
<p>Origial post <a href="http://softwareramblings.com/2008/04/c-lambda-functions.html" rel="nofollow">here</a>. </p>
http://stackoverflow.com/questions/226581/update-a-dll-without-stopping-the-service/226705#2267050Answer by computinglife for Update a dll without stopping the servicecomputinglife2008-10-22T17:04:44Z2008-10-22T17:04:44Z<p>When a process has loaded a dll it is not possible to change it.</p>
<p>IIS does not keep a DLL loaded in memory when it is not being used (<a href="http://blogs.msdn.com/david.wang/archive/2006/01/29/HOWTO-Replace-an-ISAPI-DLL-on-a-Live-Server.aspx" rel="nofollow">affected by the Cache property</a>) and i assume the same is the case with ASP.NET. If you follow the same strategy you could update your dlls too. </p>
<p>However if your dlls are being used, you should have a way to tell your server process to unload all your dlls. </p>
<p>For this to happen the server process must load all the DLLS using the LoadLibrary calls such that it can unload them when it receives a communication asking it to do so. </p>
<p>Communicating with the server process can be done by creating a globally available named event that can be accessed by the new program and used to signal the running process that an update is about to happen. (You could also think of other variations of doing this).</p>
http://stackoverflow.com/questions/226577/strange-program-hang-what-does-this-mean-in-debug/226674#2266743Answer by computinglife for Strange program hang, what does this mean in debug?computinglife2008-10-22T16:53:42Z2008-10-22T16:53:42Z<p><strong>The problem</strong></p>
<ol>
<li><p>First chance exceptions means that the debugger is giving you, the person who is using the debugger, the first chance to debug the exception, before it throws it back at the program to handle the issue.</p></li>
<li><p>In this case the exception is "Access violation". This means that your program is trying to read / write from an illegal memory location. </p></li>
<li><p>Access violations are serious coz it could be corrupting some memory which is critical for your program and this would be the likely reason that your program hangs. </p></li>
<li><p>From the faulting instruction it seems as if you are trying to get the contents of a 4 byte value from an illegal instruction. </p></li>
</ol>
<p><strong>Debugging the Problem</strong></p>
<ol>
<li><p>If this is your code then you can easily debug this issue by setting the debug symbol location to the output folder of your compiler (this would contain the relevant pdb files)</p></li>
<li><p>When you get this exception get the call stack (one of the view windows would have it)</p></li>
<li><p>This would show you the location in your code where the faulting stack has originated. </p></li>
<li><p>Now open the file that contains this source and set a breakpoint there and the program would hit this point and stop inside the windebugger. Debug from this point and you would know exactly from which line of code this violation is thrown</p></li>
</ol>
<p>Tip : Boost comes with source so you can easily put a break point inside this code. Be sure to press F11 while debugging when you get to asio::detail::win_iocp_io_service::do_one. </p>
http://stackoverflow.com/questions/224225/create-an-application-without-a-window/224372#2243728Answer by computinglife for Create an Application without a Windowcomputinglife2008-10-22T03:21:39Z2008-10-22T03:29:27Z<p>When you write a WinMain program, you automatically get the /SUBSYSTEM option to be windows in the compiler. (Assuming you use Visual Studio). For any other compiler a similar option might be present but the flag name might be different. </p>
<p>This causes the compiler to create an entry in the executable file format (<a href="http://webster.cs.ucr.edu/Page_TechDocs/pe.txt" rel="nofollow">PE format</a>) that marks the executable as a windows executable. </p>
<p>Once this information is present in the executable, the system loader that starts the program will treat your binary as a windows executable and not a console program and therefore it does not cause console windows to automatically open when it runs. </p>
<p>But a windows program need not create any windows if it need not want to, much like all those programs and services that you see running in the taskbar, but do not see any corresponding windows for them. This can also happen if you create a window but opt not to show it. </p>
<p>All you need to do, to achieve all this is, </p>
<pre><code>#include <Windows.h>
int WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int cmdShow)
{
/* do your stuff here. If you return from this function the program ends */
}
</code></pre>
<p>The reason you require a WinMain itself is that once you mark the subsystem as Windows, the linker assumes that your entry point function (which is called after the program loads and the C Run TIme library initializes) will be WinMain and not main. If you do not provide a WinMain in such a program you will get an un-resolved symbol error during the linking process.</p>
http://stackoverflow.com/questions/197497/how-do-i-determine-number-of-window-handles-an-application-is-using/198394#1983940Answer by computinglife for How do I determine number of window handles an application is using?computinglife2008-10-13T17:44:10Z2008-10-13T17:44:10Z<p>The handle count shown by taskmanager is the same as the one shown by PerfMon</p>
<p>ProcessExplorer tool from sysinternals can list the different type of handles + their names a process uses and you can get a good idea by browsing that list about the composition of the handles your program uses. </p>
<p>But I'm afraid it does not sumarize these handle type counts for you. </p>
<p>To view the actual handles and their types using ProcessExplorer - View - show lower pane view - handles.</p>
<p>You can also use some sort window spy tool which shows all the windows in the system like Microsoft spy++ or Managed Spy++ (<a href="http://msdn.microsoft.com/en-us/magazine/cc163617.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc163617.aspx</a>)</p>
<p>This will allow you to see if your windows are being created.</p>
http://stackoverflow.com/questions/183277/passing-copy-of-object-to-method-who-does-the-copying/183933#1839330Answer by computinglife for Passing copy of object to method -- who does the copying?computinglife2008-10-08T17:37:59Z2008-10-08T17:37:59Z<p>I assume you would have something like const declaration. This would be compiler enforced and would be more efficient than creating copies of your objects.</p>
http://stackoverflow.com/questions/156799/what-is-data-area/156904#1569040Answer by computinglife for What is data area?computinglife2008-10-01T09:51:12Z2008-10-01T09:51:12Z<p><strong>Executable has lots of information in it.</strong> </p>
<p>An executable, has many types / classes of data stored inside its physical file. </p>
<p>eg's are </p>
<ol>
<li>Executable code instructions</li>
<li>Resources</li>
<li>Dependency information (which dlls this binary depends on)</li>
<li>The symbols that are exported from this binary </li>
</ol>
<p>etc</p>
<p><strong>There needs to be some way to organize</strong> </p>
<p>all this information inside the .exe file format such that the OS can easily find all the information and load the executable and get things working. For this purpose a common binary format (created by M$ of-course) called PE (portable Executable) is used in the windows world. All the information i just listed (and many more) are described in detail in different sections of the binary. </p>
<p><strong>.data section</strong> </p>
<p>One such section is the .data section. The .data section contains all the initialized global and static data, while the .bss section contains the uninitialized global data. </p>
<p><strong>Why do you require a separate section for globals ?</strong> </p>
<p>Well, a global behaves like a global because it is created in an area of memory that exists for the lifetime of a program and is not a temporary data structure like a stack which might be overwritten / reused. (like normal auto variables). </p>
<p><strong>Compiler</strong> </p>
<p>Therefore these variables need to be allocated in some permanent address in the heap, which unfortunately cannot be known at the time of compilation. So the compiler places all the global and static variables in this .data / .bss section, and the instructions that refer to these variables refer to these relatively permanent addresses in the .data / .bss. </p>
<p><strong>Linker</strong></p>
<p>When the linker loads the executable in the real world, it decides where these sections have to be placed and creates FIX UPs for these temp addresses such that the instructions that refers to the globals refer to the now real virtual addresses in the programs memory. </p>
<p><em>Now you know what the .data section / area is and why the globals needs to be allocated some space in that area and how that helps the program in real time. Googling PE format and linker and .data section etc would get you the links.</em> </p>
http://stackoverflow.com/questions/139346/including-quality-into-the-software-development-project-plan/152511#1525111Answer by computinglife for Including quality into the software development project plancomputinglife2008-09-30T10:24:33Z2008-09-30T10:24:33Z<p>Caveat - Based on experience as developer and not in Program Management.</p>
<p>Including these metrics and constraints as part of the delivery would really help in ensuring the quality.</p>
<ol>
<li>Part contracts - see how it goes and then the next - sets expectations</li>
<li>Response times</li>
<li>scalability numbers</li>
<li>CPU and memory constraints</li>
<li>Max network bandwidth consumption</li>
<li>Zero warnings from compilers at max warning level? </li>
<li>Use of source control tool / static analysis tool at the very minimum</li>
<li>Automated builds with max time required for builds</li>
<li>No memory errors as validated using application verifier tool / valgrind etc</li>
<li>Not one crash</li>
<li>No run away logs </li>
<li>Type and number of machines which will be required to run the program</li>
<li>If user data is involved specs on that eg If emailing program, it should send 10MB of attachment within 2 secs on an ethernet link.</li>
<li>Acceptable bug counts - 0 sev1,2 bugs. 10 sev3 bugs. 0 review bugs.</li>
<li>Type and no of Automated tests cases </li>
<li>Max no of concurrent users and max no of users</li>
<li>Adherence of ALL code to a particular coding style (any but some should be there)</li>
<li>Prototyping oriented designs and construction</li>
<li>Fine grained task breakup for estimation</li>
<li>Reputation and background of tech leads and managers on the project </li>
<li>Code review time (done preferably by a competent person u trust) + factoring time required for mods </li>
<li>Clause to be able to reject a module after 50% completion based on code review and design conformance</li>
</ol>
<p>If you ask me there is nothing more important than a customer's insistence on code reviews and quality. Reviewing the designs and code fairly accurately and having a stick to beat them with is your best assurance for quality. Knowing that your code will be reviewed by someone more important than your colleague next cube always helps. </p>
<p>A shop i once worked with even had the clients calling in and ensuring the developers knew the basics and insisted on trainings for those who do not. (A very valid criteria depending on the type of shop you will be awarding the contract to)</p>
<p>Agile based development on UI interfaces would be the best as that takes care of the heavy feedback cycles that UI work involves most of the time. This is the only piece of work that might be impossible to design up-front unless of course you are able to provide ALL the screens to your customer upfront. Even if you do provide a sample / spec site / spec program that most closely matches your requirement it would help. (If you could summarize the characteristics of this sample you ;love and then spell it out, that would also help)</p>
<p>Thinking back, these are the items i feel that could have remedied some of the more unfortunate projects i have seen.</p>
<p>ps : The coding style should avoid all known bad code smells like functions bigger than x lines, pointy code, no error checks, using exceptions to convey normal errors, use of global variables, go to etc </p>
http://stackoverflow.com/questions/122461/what-are-often-overlooked-steps-to-take-before-beginning-a-big-project/152393#1523930Answer by computinglife for What are often overlooked steps to take before beginning a big projectcomputinglife2008-09-30T09:37:19Z2008-09-30T09:37:19Z<p>Make sure you really need a big project - aka control the scope. </p>
http://stackoverflow.com/questions/152064/how-to-measure-performance-in-a-c-mfc-application/152172#1521721Answer by computinglife for How to measure performance in a C++ (MFC) application?computinglife2008-09-30T08:06:04Z2008-09-30T08:06:04Z<p>Intel Thread Checker via Vtune performance analyzer- Check this picture for the view i use the most that tells me which function eats up the most of my time. </p>
<p><img src="http://computinglife.files.wordpress.com/2008/09/without-fault.jpg" alt="alt text" /></p>
<p>I can further drill down inside and decompose which functions inside them eats up more time etc. There are different views based on what you are watching (total time = time within fn + children), self time (time spent only in code running inside the function etc).</p>
<p>This tool does a lot more than profiling but i haven't explored them all. I would definitely recommend it. The tool is also available for downloading as a fully functional trial version that can run for 30 days. If you have cost constraints, i would say this window is all that you require to pin point your problem. </p>
<p>Trial download here - https://registrationcenter.intel.com/RegCenter/AutoGen.aspx?ProductID=907&AccountID=&ProgramID=&RequestDt=&rm=EVAL&lang=</p>
<p>ps : I have also played with Rational Rational but for some reason I did not take much to it. I suspect Rational might be more expensive than Intel too.</p>
http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/131926#1319268Answer by computinglife for What are the pros and cons to keeping SQL in Stored Procs versus Codecomputinglife2008-09-25T07:27:05Z2008-09-30T01:18:53Z<p><strong>CON</strong></p>
<p>I find that doing lots of processing inside stored procedures would make your DB server a single point of inflexibility, when it comes to scaling your act. </p>
<p>However doing all that crunching in your program as opposed to the sql-server, <em>might</em> allow you to scale more if you have multiple servers that runs your code. Of-course this does not apply to stored procs that only does the normal fetch or update but to ones that perform more processing like looping over datasets. </p>
<p><strong>PROS</strong></p>
<ol>
<li>Performance for what it may be worth (avoids query parsing by DB driver / plan recreation etc)</li>
<li>Data manipulation is not embedded in the C/C++/C# code which means i have less low level code to look through. SQL is less verbose and easier to look through when listed separately. </li>
<li>Due to the separation folks are able to find and reuse SQL code much easier.</li>
<li>Its easier to change things when schema changes - you just have to give the same output to the code and it will work just fine</li>
<li>Easier to port to a different database. </li>
<li>I can list individual permissions on my stored procedures and control access at that level too</li>
<li>I can profile my data query/ persistance code separate from my data transformation code</li>
<li>I can implement changeable conditions in my stored procedure and it would easy to customize at a customer site. </li>
<li>It becomes easier to use some automated tools to convert my schema and statements together rather than when it is embedded inside my code where i would have to hunt them down</li>
<li>Ensuring best practices for data access is easier when you have all your data access code inside a single file - I can check for queries that access the non performant table or that which uses a higher level of serialization or select *'s in the code etc. </li>
<li>It becomes easier to find schema changes / data manipulation logic changes when all of it is listed in one file. </li>
<li>It becomes easier to do search and replace edits on SQL when they are in the same place eg change / add transaction isolation statements for all stored procs. </li>
<li>I and the DBA guy find that having a separate SQL file is easier / convenient when the DBA has to review my SQL stuff. </li>
<li>Lastly you dont have to worry about SQL injection attacks because some lazy member of your team did not use parametrized queries when using embedded sqls.</li>
</ol>
<p>Edit - corrected spell mistakes and some grammar</p>
http://stackoverflow.com/questions/147747/return-correct-error-code-or-protect-privacy/147779#1477790Answer by computinglife for Return "correct" error code, or protect privacy?computinglife2008-09-29T07:09:44Z2008-09-29T07:09:44Z<p>Lets say you did return a "page not found" error when you detect that the user does not have the correct access rights. A malicious person with the intent of hacking will soon figure out that you would return this in place of the access denied. </p>
<p>But the real users who mistype a url or use a wrong login etc would be confused and it would take no end of explanations and release notes to explain your position to the customers, TAC etc. In exchange for what ? </p>
<p>The intention is good, but i'm afraid this policy you propose might not work out the way you wanted it to. </p>
http://stackoverflow.com/questions/142644/weird-msc-8-0-error-the-value-of-esp-was-not-properly-saved-across-a-function-c/146398#1463980Answer by computinglife for Weird MSC 8.0 error: "The value of ESP was not properly saved across a function call..."computinglife2008-09-28T18:13:21Z2008-09-28T18:13:21Z<p>You would get this error if the function is invoked with a calling convention other than the one it is compiled to.</p>
<p>Visual Studio uses a default calling convention setting thats decalred in the project's options. Check if this value is the same in the orignal project settings and in the new libraries. An over ambitious dev could have set this to _stdcall/pascal in the original since it reduces the code size compared to the default cdecl. So the base process would be using this setting and the new libraries get the default cdecl which causes the problem</p>
<p>Since you have said that you do not use any special calling conventions this seems to be a good probability.</p>
<p>Also do a diff on the headers to see if the declarations / files that the process sees are the same ones that the libraries are compiled with .</p>
<p>ps : Making the warning go away is BAAAD. the underlying error still persists.</p>
http://stackoverflow.com/questions/139090/getexitcodeprocess-returns-128/146351#1463510Answer by computinglife for GetExitCodeProcess() returns 128computinglife2008-09-28T17:53:34Z2008-09-28T17:53:34Z<p>There are 2 issues that i could think of from your code sample</p>
<p>1.Get yourusage of the first 2 paramaters to the creatprocess command working first. Hard code the paths and invoke notepad.exe and see if that comes up. keep tweaking this until you have notepad running.</p>
<p>2.Contrary to your comment, If you have passed the currentdirectory parameter for the new process as NULL, it will use the current working directory of the process to start the new process from and not the parent' starting directory. </p>
<p>I assume that your external process exe cannot start properly due to dll dependencies that cannot be resolved in the new path. </p>
<p>ps : In the debugger watch for @err,hr which will tell you the explanation for the last error code, </p>
http://stackoverflow.com/questions/145842/what-are-the-most-useful-data-structures-to-know-inside-out/146303#1463031Answer by computinglife for What are the most useful data structures to know inside out?computinglife2008-09-28T17:29:21Z2008-09-28T17:29:21Z<p>I will have to disregard your requirement about one data structure per post - these are the ones that i have used the most and most programs i find require mostly one amongst these or a combination. </p>
<p><strong>arrays</strong> - the most basic and provides the fastest access. <strong>vectors</strong> are the improvisation over the plain old arrays and are de-facto replacements used commonly these days. <strong>dequeue</strong> is another variation on this theme and again provides consant time / random access but optimized for fast insertions and deletions at the beginning and end.</p>
<p><strong>link list</strong> - very useful to maintain a list of data that is dropped and inserted frequently but very slow to iterate / search. eg free / used lists inside memory pages </p>
<p><strong>trees</strong> - a basic structure that forms the basis of more complex structures. There are many forms of this structure. Provides logn search times when the tree is kept sorted.Becomes useful for large data items like dictionaries. Binary / AVL and red-black trees are the most common. </p>
<p><strong>maps and hashes</strong> - Not exactly data structures but complex fast lookup algorithms implemented using a combination of clever logic and these above data structure.</p>
<p>These data structure and their implementaion are avalable in the STL library in C++. Other languages also have their native implementations. Once you know these basic data structures and a few of their variatons (queue,stack,priority queues) & something about search algorithms i would say the basics would be well covered. </p>
http://stackoverflow.com/questions/143174/c-c-how-to-obtain-the-full-path-of-current-directory/145309#1453094Answer by computinglife for C/C++: How to obtain the full path of current directory?computinglife2008-09-28T06:04:04Z2008-09-28T06:04:04Z<p>getcwd is a POSIX function and supported out of the box by all POSIX compliant platforms. You would not have to do anything special (apart from incliding the right headers unistd.h on Unix and direct.h on windows).</p>
<p>Since you are creating a C program it will link with the default c run time library which is linked to by ALL processes in the system (specially crafted exceptions avoided) and it will include this function by default. The CRT is never considered an external library coz that provides the basic standard compliant interface to the OS.</p>
<p>On windows getcwd function has been depreciated in favour of _getcwd. I think you could use it in this fashion.</p>
<pre><code>#include <stdio.h> /* defines FILENAME_MAX */
#ifdef WINDOWS
#include <direct.h>
#define GetCurrentDir _getcwd
#else
#include <unistd.h>
#define GetCurrentDir getcwd
#endif
char cCurrentpath[FILENAME_MAX];
if (!GetCurrentDir(cCurrentPath, sizeof(cCurrentPath)))
{
return errno;
}
cCurrentPath[sizeof(cCurrentPath) - 1] = '/0'; /* not really required */
printf ("The current working directory is %s", cCurrentPath);
</code></pre>
http://stackoverflow.com/questions/142895/advice-changing-careers-towards-programming/143159#1431590Answer by computinglife for Advice changing careers TOWARDS programming.computinglife2008-09-27T06:59:57Z2008-09-27T06:59:57Z<p>Since you have said that you hav already spend too much time on another vocation i assume you would be hard pressed to do a Comp Sc degreee. </p>
<p>My advice would be to follow up on what you said you like (iPhone market is quite hot right now) and then do a degree in parallel. At thevery least it would tell you whether you still feel the same about programming the way you used to.</p>
http://stackoverflow.com/questions/296283/how-to-make-an-atl-com-class-derived-from-a-base-class/375067#375067Comment by on How to make an ATL COM class derived from a base class?2008-12-17T16:12:31Z2008-12-17T16:12:31ZJust saw the above posted links from vcfaq - they contain more sophisticated implementations of basically the same approach. I suggest you go over those above and take up the ones which are best suited for your situationhttp://stackoverflow.com/questions/299304/why-does-javas-hashcode-in-string-use-31-as-a-multiplier/299748#299748Comment by on Why does Java's hashCode() in String use 31 as a multiplier?2008-11-20T20:00:47Z2008-11-20T20:00:47Z31 was chosen coz it is an odd prime??? That doesnt make any sense - I say 31 was chosen because it gave the best distribution - check
<a href="http://computinglife.wordpress.com/2008/11/20/why-do-hash-functions-use-prime-numbers/" rel="nofollow">computinglife.wordpress.com/2008/11/…</a>http://stackoverflow.com/questions/252597/mem-usage-higher-than-vm-size-in-winxp-task-manager/252947#252947Comment by on "Mem Usage" higher than "VM Size" in WinXP Task Manager2008-11-03T04:57:13Z2008-11-03T04:57:13ZIn conclusion i would say that what amount of the allocated memory gets tagged to real pages and translates into memory size / working set depends on situation to situation and the OS in question.
But overall the concept / differentiation between VM size and working set is as i have described.http://stackoverflow.com/questions/252597/mem-usage-higher-than-vm-size-in-winxp-task-manager/252947#252947Comment by on "Mem Usage" higher than "VM Size" in WinXP Task Manager2008-11-03T04:53:11Z2008-11-03T04:53:11ZWhen i allocated 1024 MB VM size was at 1024 Mb but mem usage stayed at some arbitrary value of 35 MB or so. Writing to 10MB after this did not increase Mem usage since Mem usage had already included the first 10MB i suppose.http://stackoverflow.com/questions/252597/mem-usage-higher-than-vm-size-in-winxp-task-manager/252947#252947Comment by on "Mem Usage" higher than "VM Size" in WinXP Task Manager2008-11-03T04:51:27Z2008-11-03T04:51:27ZRan some tests - allocated 100MB and both mem + VM went up. Uponw riting to just 10 Mb the mem usage dropped to 10Mhttp://stackoverflow.com/questions/234609/how-do-you-bring-a-failing-project-back-on-track/234762#234762Comment by on How do you bring a failing project back on track?2008-10-31T08:44:48Z2008-10-31T08:44:48Z@Vyas, the idea is not to do away with expectations BUT to fix something concrete right away and win back the clients confidence.
Of what use is reams & reams of time sheets, if client believes nothing useful is being done?
Build the confidence & get tech on track & u might yet scrape through.http://stackoverflow.com/questions/234609/how-do-you-bring-a-failing-project-back-on-track/234762#234762Comment by on How do you bring a failing project back on track?2008-10-31T08:40:55Z2008-10-31T08:40:55Z@Tim - yes i got promoted to project lead 9 months out of college ;) - crazy isnt it - as far as the management was concerned i was making things happen for them & they couldnt care less.
Speaks volumes for the mess they were in & their relative in-experience. (founded by <i>techies</i> from AT&T) http://stackoverflow.com/questions/232691/how-can-i-get-the-size-of-an-array-from-a-pointer-in-c/232719#232719Comment by on How can I get the size of an array from a pointer in C?2008-10-24T18:04:25Z2008-10-24T18:04:25Z@Joel - Ever think of how delete [] *p manages to call all the destructors in the array pointed to by p - well thats coz new does the same thing that bary suggested.
new stores the no of items in the array in the beginning of the array and gives you the pointer past this 1st location. http://stackoverflow.com/questions/224225/create-an-application-without-a-window/224449#224449Comment by on Create an Application without a Window2008-10-23T14:48:13Z2008-10-23T14:48:13Z@jussji - You are right - the console program does not have any "windows" but try double clicking a console program from explorer & the OS will automatically create a console window for running the console program. The Op did not seem to want neither a real window nor a console. Hence my comment. http://stackoverflow.com/questions/222916/in-a-multi-threaded-c-app-do-i-need-a-mutex-to-protect-a-simple-boolean/222926#222926Comment by on In a multi-threaded C++ app, do I need a mutex to protect a simple boolean?2008-10-22T18:08:49Z2008-10-22T18:08:49Zvolatile does not prevent read / write re-ordering. VC++ 2005/8 seems to do this correctly, by adding additional meaning to the keyword volatile in the same way Java 5 does.
GCC on the other hand will definitely re-order things.http://stackoverflow.com/questions/224225/create-an-application-without-a-window/224449#224449Comment by on Create an Application without a Window2008-10-22T05:46:04Z2008-10-22T05:46:04Zconsole application will always open up a console window when it runshttp://stackoverflow.com/questions/143032/does-vb6-have-a-pragma-pack-equivalent/143055#143055Comment by on Does VB6 have a #pragma pack equivalent?2008-09-27T06:56:00Z2008-09-27T06:56:00ZUse in conjuction with the advice given belowhttp://stackoverflow.com/questions/137921/what-is-your-single-most-effective-interview-question/138200#138200Comment by on What is your single most effective interview question?2008-09-27T01:20:41Z2008-09-27T01:20:41ZWhile i agree this is effective, i have found that this becomes really time consuming especially if you enounter talkers. http://stackoverflow.com/questions/108389/is-it-a-good-correct-way-to-encapsulate-a-collection/108409#108409Comment by on Is it a good (correct) way to encapsulate a collection?2008-09-25T16:43:58Z2008-09-25T16:43:58ZWhat would then encapsulate the class you have newly created?
My point being that the encapsulation you are trying to achieve, of encapsulating the collection which is already encasulated by STL is akin to what i have asked.