User RWendi - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T22:13:40Zhttp://stackoverflow.com/feeds/user/15152http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer61What's Your Motto As A Developer/Programmer?RWendi2008-09-17T10:09:00Z2009-11-23T18:27:19Z
<p>Title says it all... Mine is "Never stop learning"... :)</p>
http://stackoverflow.com/questions/1463409/how-to-check-for-null-in-c0How to check for NULL in c++?RWendi2009-09-23T00:50:45Z2009-09-24T18:23:09Z
<p>Hi,</p>
<p>Let say for example, I have a struct, and an array of the struct. What I want to do is to iterate through the array and check if any of the item is a null. I tried checking the item against NULL and (struct *) 0, that don't seem to work. Is there any reliable way to check for null value?</p>
<p>UPDATE Sample Code</p>
<pre><code>struct Test{
int a;
};
Test testArray[size];
for (int i = 0; i < testCount; i++)
{
if (testArray[i] == NULL) //this doesnt work
{
}
}
</code></pre>
<p>Thanks,</p>
<p>RWendi</p>
http://stackoverflow.com/questions/434522/anyone-knows-how-to-fix-compile-error-lnk2005-source-code-inside1Anyone knows how to fix compile error: LNK2005? (Source Code inside).RWendi2009-01-12T05:17:29Z2009-08-31T05:50:37Z
<p>I have the below code in stdafx.h.</p>
<pre><code>using namespace std;
typedef struct {
DWORD address;
DWORD size;
char file[64];
DWORD line;
} ALLOC_INFO;
typedef list<ALLOC_INFO*> AllocList;
//AllocList *allocList;
</code></pre>
<p>Without the commented code (last line), it compiles just fine. But when I add the commented code, Im getting the following error.</p>
<blockquote>
<p>error LNK2005: "class std::list >
* allocList" (?allocList@@3PAV?$list@PAUALLOC_INFO@@V?$allocator@PAUALLOC_INFO@@@std@@@std@@A)
already defined in test.obj</p>
</blockquote>
<p>Im using Visual Studio .NET 2003. Anyone has any idea what that is and how to solve it?</p>
http://stackoverflow.com/questions/1354665/how-to-best-utilize-asp-net-membership-database0How to best utilize ASP .NET Membership database? RWendi2009-08-30T19:10:59Z2009-08-31T00:43:28Z
<p>Hi,</p>
<p>I'm in early development stage of developing a web application. Im currently reviewing as to whether I should use ASP .NET Membership or write my own. Im more lenient towards to using ASP .NET Membership to save me some development time. Need help to clear up some ambiguities on how to best utilize membership database:</p>
<ul>
<li>Membership creates a new database. Which one is better, to use the same database for my
application database OR creating a new database for my application? Why? </li>
<li>If I go for creating a new database for my application. Which one is better, creating a new user table in my application database or reusing/extending the user table in the membership database?</li>
</ul>
<p>Thanks in advance,</p>
<p>RWendi</p>
http://stackoverflow.com/questions/1315474/how-to-apply-css-class-to-an-html-element-using-jquery-in-asp-net-mvc1How to apply css class to an html element using jquery in ASP .NET MVC?RWendi2009-08-22T08:15:57Z2009-08-22T08:33:48Z
<p>Hi,</p>
<p>Im trying to implement a tab menu just like the one in stackoverflow. I created html list and style them to look like tab menus using CSS. I put the html list on the master page. Now the problem is that How do you change the color of the list once it's clicked by the user? For example, If you click the stackoverflow "Users" tab menu, it will redirect you to the Users index view, and then change the color of the tab menu to orange. How do I achieve this?</p>
<p>Thanks In Advance.</p>
<p>RWendi</p>
http://stackoverflow.com/questions/98606/favorite-visual-studio-keyboard-shortcuts/101118#101118-1Answer by RWendi for Favorite Visual Studio keyboard shortcutsRWendi2008-09-19T11:07:34Z2009-03-11T02:11:09Z<p>Nothing beats <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>B</kbd> - Building the solution!!</p>
<p>As far as navigation control, <kbd>Ctrl</kbd>+<kbd>-</kbd> and <kbd>Ctrl</kbd>+<kbd>+</kbd> is nice... <br /><br />
But I prefer <kbd>Ctrl</kbd>+<kbd>K</kbd>+<kbd>K</kbd> ---> creates bookmark... <br /><br />and <kbd>Ctrl</kbd>+<kbd>K</kbd>+<kbd>N</kbd> ---> to navigate to the next bookmark... awesome stuff...</p>
http://stackoverflow.com/questions/514083/why-is-good-ui-design-so-hard-for-some-developers/544275#5442750Answer by RWendi for Why is good UI design so hard for some Developers?RWendi2009-02-13T00:55:52Z2009-02-13T00:55:52Z<p>Because Its a <strong><em>different</em></strong> set of skill. Skills required to be a Web designer IS NOT the same as skills required to be a programmer. Yes few skills might overlap, like HTML, CSS, Javascript, but by nature Programmers know nothing of what makes a web design a good web design, and vice versa.</p>
<p>RWendi</p>
http://stackoverflow.com/questions/434522/anyone-knows-how-to-fix-compile-error-lnk2005-source-code-inside/434545#4345450Answer by RWendi for Anyone knows how to fix compile error: LNK2005? (Source Code inside).RWendi2009-01-12T05:30:49Z2009-01-12T05:30:49Z<p>I was trying to follow this <a href="http://www.flipcode.com/archives/How_To_Find_Memory_Leaks.shtml" rel="nofollow">article</a>, I assume that all those code are meant to be placed in the stdafx.h. Any other alternatives pax?</p>
http://stackoverflow.com/questions/125188/does-postscript-have-a-concept-of-a-table1Does Postscript have a concept of a table?RWendi2008-09-24T03:03:52Z2008-12-30T06:32:15Z
<p>What I'm trying to achieve is to determine if the Postscript that I'm parsing contains any element that resides in a table (box)... Thank you in advance...</p>
<p>Cheers,</p>
<p>RWendi</p>
http://stackoverflow.com/questions/181213/how-to-build-a-solution-to-target-64-bit-environment3How to build a solution to target 64 bit environment? [closed]RWendi2008-10-08T03:22:20Z2008-12-28T15:44:11Z
<p>Is there anyway to build a solution to target 64 bit environment in vs2003? My solution is native c++ not visual c++. Any help would be greatly appreciated.</p>
<p>cheers,</p>
<p>RWendi</p>
http://stackoverflow.com/questions/304341/anyone-uses-asp-net-membership5Anyone uses ASP .NET Membership?RWendi2008-11-20T04:34:46Z2008-12-01T06:29:07Z
<p>Was wandering if anyone uses ASP .NET membership? If you do, tell me what you think about it.</p>
<p>If you don't use it, Are you planning to use it on future projects? If not, why?</p>
<p>RWendi</p>
http://stackoverflow.com/questions/307933/mvc-vs-observer-pattern/308003#3080030Answer by RWendi for MVC vs. Observer PatternRWendi2008-11-21T05:54:18Z2008-11-21T06:09:58Z<p>I would agree that the article is not MVC. Its more of an implementation of observer pattern. Observer pattern in .NET can be implemented by using events, which was the case of the article. </p>
<p>MVC requires a controller class that controls what action to execute upon a request made from either the model, or the view. Applying MVC is a very good programming practice as it greatly promotes separation of concern. You will have a cleaner, more extensible, and more testable app with mvc. Another point to note, you can still apply observer pattern to an MVC app. They will not contradict each other.</p>
<p>===========</p>
<p>To answer your second question: which pattern is the best? I think the way you approach software development is rather wrong. You shouldn't worry too much about those things yet, not until you've hit a problem. e.g. If this object changes state I need these other objects to react to it, hence I would implement an observer pattern.</p>
<p>If I were you I would start on the model side first, and then takes things from there.</p>
http://stackoverflow.com/questions/306708/must-haves-for-developers-office/307241#3072411Answer by RWendi for Must haves for developers officeRWendi2008-11-20T23:06:42Z2008-11-21T05:56:38Z<p><strong>Brian The Build Bunny!!!</strong> <a href="http://au.youtube.com/watch?v=Is32fWJJA-I" rel="nofollow">http://au.youtube.com/watch?v=Is32fWJJA-I</a></p>
http://stackoverflow.com/questions/307584/can-you-vote-for-your-own-questions-or-answers/307586#3075860Answer by RWendi for Can you vote for your own questions or answers?RWendi2008-11-21T01:55:42Z2008-11-21T01:55:42Z<p>I dont think so.</p>
http://stackoverflow.com/questions/301693/why-didnt-unit-testing-work-out-for-your-project/304348#3043481Answer by RWendi for Why didn't unit testing work out for your project?RWendi2008-11-20T04:44:18Z2008-11-20T04:44:18Z<p>Because the project didn't use unit testing from the start. Now it has grown so huge, that it becomes painful to write unit tests for the existing codebase.</p>
<p>Yes it works out for new stuffs (I've tried it and loved it), but the lack of enthusiasm of my seniors to enforce unit testing has made my effort becomes useless.</p>
<p>RWendi</p>
http://stackoverflow.com/questions/287011/c-help-with-properties/287026#2870263Answer by RWendi for C# help with propertiesRWendi2008-11-13T14:16:03Z2008-11-13T14:16:03Z<p>Your NChildren property on the set accessor doesnt quite make sense. It will always set this.child to 0, is that intended?</p>
http://stackoverflow.com/questions/286496/how-can-i-create-a-zip-file-by-using-objective-c/286518#2865180Answer by RWendi for How can I create a zip file by using Objective C?RWendi2008-11-13T08:26:31Z2008-11-13T08:26:31Z<p>Not sure if there's a built in function, but perhaps you could use an external library such as <a href="http://infozip.sourceforge.net/" rel="nofollow">InfoZip</a>. Or alternatively you could try implementing your own zip library, I am pretty sure Zip format specification can be found somewhere on the internet.</p>
<p>RWendi</p>
http://stackoverflow.com/questions/269893/best-place-to-store-config-files-and-log-files-on-windows-for-my-program/269990#2699903Answer by RWendi for Best Place to Store Config Files and Log Files on Windows for My Program?RWendi2008-11-06T19:41:43Z2008-11-06T19:41:43Z<p>To be honest %appdata% is still the best place to place your config files and log files, as it serves the purpose of a placeholder to store your application data. It should not be that hard to access, just write %appdata% in explorer and you will be directed straight to your %appdata% directory.</p>
http://stackoverflow.com/questions/267069/appealing-technical-career-path-options/267158#2671580Answer by RWendi for Appealing technical career path optionsRWendi2008-11-05T23:36:44Z2008-11-05T23:36:44Z<p>Well there are 2 aspects for a developer's carrer advancement... If you're the kind of person who like to manage, you'll become a team leader and ultimately be promoted to a manager. On the other hand if you like technical stuff, you probably be promoted to senior software developer, then ultimately promoted to something thats more prestigious such as Software Architect. </p>
<p>That's how I see it, at least that's being applied to my company.</p>
http://stackoverflow.com/questions/266433/how-does-default-relative-path-resolution-work-in-net/266522#266522-2Answer by RWendi for How does default/relative path resolution work in .NET?RWendi2008-11-05T20:27:58Z2008-11-05T20:27:58Z<p>Hi,</p>
<p>You can use this to specify a path that resides at the same path of your exe @"..\CAISLog.csv". Please note that the double dots refer to the parent directory of where ever your .exe lies.</p>
<p>RWendi</p>
http://stackoverflow.com/questions/260258/is-there-a-difference-between-a-good-development-video-card-and-general-gaming-vi/260304#2603040Answer by RWendi for Is there a difference between a good development video card and general gaming video cards?RWendi2008-11-03T23:16:04Z2008-11-03T23:16:04Z<p>Video card is not an important factor... I would rather invest on CPU and fast hard drives than on video card... At minimum of dual core cpu clocked @ 3GHz and 7200RPM drives...</p>
http://stackoverflow.com/questions/126458/looking-for-a-bug-tracking-task-management-tool3Looking for a bug tracking/task management tool... [closed]RWendi2008-09-24T10:50:27Z2008-10-30T03:54:51Z
<p>Hi, Im looking for a free/open source bug tracking tool that doesn't require a database. Any Recommendations? Thanks in advance.</p>
<p>RWendi</p>
http://stackoverflow.com/questions/248527/how-do-i-conditionally-suppress-application-exceptions-written-to-the-event-log/248681#2486811Answer by RWendi for How do I conditionally suppress application exceptions written to the event log?RWendi2008-10-29T22:36:45Z2008-10-29T22:36:45Z<p>Maybe have a workflow that if the polls fails for a certain number of times, the polling interval is increased. e.g. polls every 15 seconds for like 3 times, if it fails then increase the polling interval to one minute, if it fails for n times then increase the time to one hour.</p>
<p>To be honest the workflow above doesnt really solve your problem. If I were you, I would reverse the workflow. Instead of the server polling for devices, why not do it the other way round? When a device connected to a networked machine, your client side service sends a message to the server, so that the server knows that the device is connected and alive.</p>
<p>Hope this helps...</p>
<p>RWendi</p>
http://stackoverflow.com/questions/246071/basic-sample-of-a-scriptable-plugin-for-firefox-in-c-with-vs2005-8/246083#2460833Answer by RWendi for Basic sample of a scriptable plugin for FireFox in C++ with VS2005/8RWendi2008-10-29T07:58:05Z2008-10-29T07:58:05Z<p>The SDK has basic samples on how to write mozzila plugins which can be downloaded here: <a href="http://mxr.mozilla.org/seamonkey/source/modules/plugin/tools/sdk/" rel="nofollow">http://mxr.mozilla.org/seamonkey/source/modules/plugin/tools/sdk/</a></p>
<p>Here is the official mozilla plugin site <a href="http://www.mozilla.org/projects/plugins/" rel="nofollow">http://www.mozilla.org/projects/plugins/</a></p>
<p>Hope it helps.</p>
http://stackoverflow.com/questions/245395/underused-features-of-windows-batch-files/245982#2459821Answer by RWendi for Underused features of Windows batch filesRWendi2008-10-29T06:40:28Z2008-10-29T06:40:28Z<p>here's one trick that I use to run My Nant Build script consecutively without having to click the batch file over and over again.</p>
<pre><code>:CODELINE
NANT.EXE -buildfile:alltargets.build -l:build.log build.product
@pause
GOTO :CODELINE
</code></pre>
<p>What will happen is that after your solution finished building, it will be paused. And then if you press any key it will rerun the build script again. Very handy I must say.</p>
http://stackoverflow.com/questions/237719/most-frustrating-programming-style-youve-encountered/237723#2377239Answer by RWendi for Most frustrating programming style you've encounteredRWendi2008-10-26T08:19:14Z2008-10-26T18:46:35Z<p>I hate it when people declare/use undescriptive variable...</p>
<p>e.g.</p>
<pre><code>string zp = string.Empty;
int n1 = -1;
List<object> xList = new List<object>();
</code></pre>
http://stackoverflow.com/questions/194538/class-member-organization/237744#2377440Answer by RWendi for Class member organizationRWendi2008-10-26T08:39:15Z2008-10-26T08:39:15Z<p>At a higher level, I would organize my class this way:</p>
<ol>
<li>Constructor </li>
<li>Destructor</li>
<li>Private Fields</li>
<li>Properties</li>
<li>Methods/Functions</li>
</ol>
<p>Then for methods/functions I would break it down again by functionality. e.g. I would put methods that implement an interface into one region, I would put event handlers methods into one region, etc...</p>
<p><a href="http://www.rwendi.com" rel="nofollow" title="RWendi">RWendi</a></p>
http://stackoverflow.com/questions/231903/how-much-to-log-within-an-application-how-much-is-too-much/232189#2321890Answer by RWendi for How much to log within an application??? How much is too much...RWendi2008-10-24T01:23:46Z2008-10-24T01:23:46Z<p>At a bare minimum you should log errors and calls to external component... The sample you provide is what I would call TOO much loggings... There is no point of logging that you're in a start of a method, or in the end of a method, or even the params that were passed to the method... Its a waste of disk space, You log file will get very big in no time...</p>
<p><a href="http://www.rwendi.com" rel="nofollow" title="RWendi">RWendi</a></p>
http://stackoverflow.com/questions/231753/microsoft-and-the-windows-api-war/231928#2319282Answer by RWendi for Microsoft and the Windows API WarRWendi2008-10-23T23:21:41Z2008-10-23T23:21:41Z<p>As far as API war is concern, Microsoft has NOT lost at all... It may be losing few percentage of market share, but still holds the largest market share overall...</p>
<p>If I was to develop a new software I wouldnt use cocoa, because that would mean I would target my software users only for Macs users... Microsoft has a huge user base and that is one big advantage that's hard to be beaten...</p>
<p>For those who embrace .NET Framework, should embrace Windows APIs as well... Why? because some of classes in .NET Framework in the end calls Windows APIs to do the work for them...</p>
<p>Just my 2 cents,</p>
<p><a href="http://www.rwendi.com" rel="nofollow" title="RWendi">RWendi</a></p>
http://stackoverflow.com/questions/217614/whats-a-good-naming-convention-for-a-lookup-map-hash/217624#2176240Answer by RWendi for What's a good naming convention for a lookup map/hash?RWendi2008-10-20T05:59:32Z2008-10-20T05:59:32Z<p>I usually do it this way:</p>
<p>countryCodeMappingByName</p>
<p>Or if the mapping is unique, just simply:</p>
<p>countryCodeMapping</p>
<p><a href="http://www.rwendi.com" rel="nofollow" title="RWendi">RWendi</a></p>
http://stackoverflow.com/questions/1463409/how-to-check-for-null-in-c/1463435#1463435Comment by RWendi on How to check for NULL in c++?RWendi2009-09-23T01:25:10Z2009-09-23T01:25:10ZGreat answer Martin. Thanks heaps.http://stackoverflow.com/questions/1463409/how-to-check-for-null-in-cComment by RWendi on How to check for NULL in c++?RWendi2009-09-23T01:15:56Z2009-09-23T01:15:56Z@ed swangren you're saying just by declaring the array, it will fill it up automatically?http://stackoverflow.com/questions/1463409/how-to-check-for-null-in-cComment by RWendi on How to check for NULL in c++?RWendi2009-09-23T01:14:52Z2009-09-23T01:14:52ZBecause not every item will be initialized.http://stackoverflow.com/questions/333004/best-cure-for-sore-eyes-during-prolonged-programming/333017#333017Comment by RWendi on Best cure for sore eyes during prolonged programming?RWendi2008-12-02T05:41:31Z2008-12-02T05:41:31Z@JaredPar: Love the theme!! thanks.http://stackoverflow.com/questions/3947/music-to-listen-to-while-coding/17227#17227Comment by RWendi on Music to listen to while codingRWendi2008-12-02T02:21:00Z2008-12-02T02:21:00ZBach is awesome!!http://stackoverflow.com/questions/171776/where-is-the-benefit-in-using-the-strategy-patternComment by RWendi on Where is the benefit in using the Strategy Pattern?RWendi2008-11-27T04:26:53Z2008-11-27T04:26:53ZHi gerald I think your example is a bad example of strategy pattern. yes its a strategy but in your case it would be better to have subclasses than implement strategy pattern. Im pretty sure martian clock would have different behaviour than earth clock, hence its worth subclassing the clock class.http://stackoverflow.com/questions/318999/how-many-function-parameters-is-too-many/319023#319023Comment by RWendi on How many function parameters is too many?RWendi2008-11-25T22:23:40Z2008-11-25T22:23:40ZAny reason why you prefer of using class to group variables? I thought a struct would be more sensible here.http://stackoverflow.com/questions/90851/is-it-just-me-or-are-interfaces-overused/90915#90915Comment by RWendi on Is it just me or are interfaces overused?RWendi2008-11-20T22:44:30Z2008-11-20T22:44:30ZMultiple Inheritance is dangerous... very evil indeedy.http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282342#282342Comment by RWendi on What are five things you hate about your favorite language?RWendi2008-11-13T13:17:48Z2008-11-13T13:17:48ZHi Jon can you elaborate more on why inheritance should be prohibited? If inheritance is designed into a class wouldn't that mean that the class would be very massive and represent multiple entities? I can see there will be many switch statements inside the class.http://stackoverflow.com/questions/267069/appealing-technical-career-path-options/267158#267158Comment by RWendi on Appealing technical career path optionsRWendi2008-11-06T22:00:08Z2008-11-06T22:00:08ZBut of course im not the best person to give career advice...http://stackoverflow.com/questions/267069/appealing-technical-career-path-options/267158#267158Comment by RWendi on Appealing technical career path optionsRWendi2008-11-06T21:58:49Z2008-11-06T21:58:49ZI always thought that If one has reached the highest desireable career posible in a company and not happy with it, maybe its time to change job to a bigger company. Being a senior technical architect in microsoft must feel different from being a senior technical architect in lesser companies.http://stackoverflow.com/questions/269893/best-place-to-store-config-files-and-log-files-on-windows-for-my-program/269910#269910Comment by RWendi on Best Place to Store Config Files and Log Files on Windows for My Program?RWendi2008-11-06T19:35:26Z2008-11-06T19:35:26ZPutting your app logs in Temp folder is a bad idea.http://stackoverflow.com/questions/237719/most-frustrating-programming-style-youve-encountered/237723#237723Comment by RWendi on Most frustrating programming style you've encounteredRWendi2008-10-26T18:46:24Z2008-10-26T18:46:24Zok, no worries...http://stackoverflow.com/questions/217614/whats-a-good-naming-convention-for-a-lookup-map-hash/217624#217624Comment by RWendi on What's a good naming convention for a lookup map/hash?RWendi2008-10-20T06:27:41Z2008-10-20T06:27:41ZI know its a bit long for a variable name, but its not ambigious, which I think is important...http://stackoverflow.com/questions/207038/best-way-to-remove-items-from-a-collection/207048#207048Comment by RWendi on Best way to remove items from a collectionRWendi2008-10-16T05:03:58Z2008-10-16T05:03:58ZThis would cause an exception because you're modifying the collection as you're using it...