User Jaywalker - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T05:45:36Zhttp://stackoverflow.com/feeds/user/6337http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/605346/any-news-of-the-devshock-smpp-component/1686631#16866311Answer by Jaywalker for Any news of the DevShock SMPP Component?Jaywalker2009-11-06T10:11:29Z2009-11-06T10:11:29Z<p>From <a href="http://www.aboutus.org/DevShock.com" rel="nofollow" title="aboutus.org">aboutus.org</a>, below is the contact info of the developer :)</p>
<p>aa@pla.net.py</p>
<p>Gral Garay 613 E/ Lillo y Bertoni<br>
Asuncion, PARAGUAY</p>
<p>+595 971230094, Fax: +1 571 434 4620</p>
http://stackoverflow.com/questions/1673583/the-practical-haskell-tutorial-for-a-programmer-coming-from-the-imperative-univer/1673875#16738751Answer by Jaywalker for The practical Haskell tutorial for a programmer coming from the imperative universeJaywalker2009-11-04T13:53:12Z2009-11-04T13:53:12Z<p>At some stage in learning Haskell, you'll come across and get stuck up at "monads." Bookmark the following link for future:</p>
<ul>
<li><a href="http://web.cecs.pdx.edu/~antoy/Courses/TPFLP/lectures/MONADS/Noel/research/monads.html" rel="nofollow">What the hell are monads?</a></li>
</ul>
http://stackoverflow.com/questions/1673843/common-issues-in-developing-cluster-aware-non-web-based-enterprise-applications0Common Issues in Developing Cluster Aware non-web-based Enterprise ApplicationsJaywalker2009-11-04T13:46:26Z2009-11-04T13:46:26Z
<p>I've to move a Windows based multi-threaded application (which uses global variables as well as an RDBMS for storage) to an NLB (i.e., network load balancer) cluster. The common architectural issues that immediately come to mind are</p>
<ul>
<li><p>Global variables (which are both read/ written) will have to be moved to a shared storage. What are the best practices here? Is there anything available in Windows Clustering API to manage such things?</p></li>
<li><p>My application uses sockets and persistent connections is a norm in the field I work. I believe persistent connections can and will not be load balanced. Again, what are the architectural recommendations in this regard? </p></li>
</ul>
http://stackoverflow.com/questions/388347/what-do-gurus-say-about-requirements-traceability-matrix4What do gurus say about Requirements Traceability Matrix?Jaywalker2008-12-23T07:16:11Z2009-09-17T10:26:03Z
<p>Our organization is at CMMI Level 2 and as part of the requirements of the level, we have to maintain an RTM which more or less contains the following entries for each requirement:</p>
<ul>
<li>Requirement Description</li>
<li>Reference Section Functional Specification Document</li>
<li>Reference Section Design Document</li>
<li>Reference Section Test Cases Document</li>
</ul>
<p>Now, this might be an overkill for a small project. But more importantly, this could be a nightmare to maintain when there are changing features, and documents are constantly updated.</p>
<p>What do the gurus say about this? And by using the term 'gurus', I am not talking of coding champs; rather people like Steve McConnel or others who have worked on commercial projects of medium to large scale.</p>
<p>Quotes/ book references/ articles will suit me.</p>
<p>EDIT: It's not just requirements that change. Design Document can change; well, even test cases may change. </p>
http://stackoverflow.com/questions/792351/c-2008-express-project-type-csproj-is-not-supported-by-this-version-of-the-a/1192821#1192821-1Answer by Jaywalker for C# 2008 Express: Project type (.csproj) is not supported by this version of the application. Jaywalker2009-07-28T08:57:42Z2009-07-28T08:57:42Z<p>I am facing similar issue, and that too on different machines for the same project that I have. In my case, it seems that the project has been developed using some community technology preview release of something or some framework which is not installed on my machines. I'll update my response as I find out more.</p>
http://stackoverflow.com/questions/856135/cvs-checkout-only-the-directory-structure0CVS: Checkout only the directory structureJaywalker2009-05-13T04:59:56Z2009-05-13T05:38:31Z
<p>How can I checkout only the directory structure of a project (without any files) in a CVS repository? This could be useful, e.g., to know the structure itself, and selectively checkout the folders later. I might not be interested in, say, the test cases folder which might take too much space on my local hard disk.</p>
http://stackoverflow.com/questions/331536/windows-threading-beginthread-vs-beginthreadex-vs-createthread-c/331711#3317112Answer by Jaywalker for Windows threading: _beginthread vs _beginthreadex vs CreateThread C++Jaywalker2008-12-01T18:21:10Z2008-12-01T18:21:10Z<p><a href="http://www.microsoft.com/msj/0799/win32/win320799.aspx" rel="nofollow">CreateThread() has memory leaks</a> when you use any CRT functions in your code. _beginthreadex() has same parameters as CreateThread() and it's more versatile than _beginthread(). So your choice should obviously be _beginthreadex().</p>
http://stackoverflow.com/questions/235984/the-halting-problem-in-the-field/320066#3200660Answer by Jaywalker for The Halting Problem in the FieldJaywalker2008-11-26T08:36:07Z2008-11-26T08:36:07Z<p>I was once working on an integration project in the ATM (Automated Teller Machines) domain. The client requested me to generate a report from my system for transactions sent by the country switch which were not received by my system!!</p>
http://stackoverflow.com/questions/284556/delete-or-virtual-delete/284565#28456511Answer by Jaywalker for delete or virtual delete?Jaywalker2008-11-12T16:45:37Z2008-11-12T16:45:37Z<p>Since you are abstracting the creation inside libname_newDevice(), which I believe isn't a good way either, you should destroy using something like libname_destroyDevice (obj).</p>
http://stackoverflow.com/questions/281363/changing-file-type-once-added-to-cvsnt0Changing File Type Once Added to CVSNTJaywalker2008-11-11T16:21:29Z2008-11-12T08:34:08Z
<p>Hi,</p>
<p>I am using WinCVS as client and CVSNT as my source control server. Some of the files I wanted to add to my CVS repo, were added as Unicode files. Now, I want to recommit the same as ANSI (aka ASCII) files. However, despite deleting the old files from the repo, every time I add the file with the same name, it automatically assigns Unicode encoding to the file. </p>
<p>Is there a way out? Or in other words, can I change the encoding of a file, once it is added to CVS?</p>
http://stackoverflow.com/questions/272764/what-is-the-quickest-path-to-writing-a-lightweight-gui-program-on-windows/272822#2728220Answer by Jaywalker for What is the quickest path to writing a lightweight GUI program on Windows?Jaywalker2008-11-07T17:21:39Z2008-11-07T17:21:39Z<p><a href="http://www.wxwidgets.org/" rel="nofollow">wxWidgets</a>; it's cross platform, free, open source and easy to learn</p>
http://stackoverflow.com/questions/271971/how-can-i-improve-replace-sprintf-which-ive-measured-to-be-a-performance-hotspo/272021#2720211Answer by Jaywalker for How can I improve/replace sprintf, which I've measured to be a performance hotspot?Jaywalker2008-11-07T13:07:36Z2008-11-07T13:33:32Z<p>How about caching the results? Isn't that a possibility? Considering that this particular sprintf() call is made too often in your code, I'm assuming that between most of these consecutive calls, the year, month and day do not change.</p>
<p>Thus, we can implement something like the following. Declare an old and a current SYSTEMTIME structure:</p>
<pre><code>SYSTEMTIME sysTime, oldSysTime;
</code></pre>
<p>Also, declare separate parts to hold the date and the time:</p>
<pre><code>char datePart[80];
char timePart[80];
</code></pre>
<p>For, the first time, you'll have to fill in both sysTime, oldSysTime as well as datePart and timePart. But subsequent sprintf()'s can be made quite faster as given below:</p>
<pre>sprintf (timePart, "%02d:%02d:%02d", sysTime.wHour, sysTime.wMinute, sysTime.wSecond);
if (oldSysTime.wYear == sysTime.wYear &&
oldSysTime.wMonth == sysTime.wMonth &&
oldSysTime.wDay == sysTime.wDay)
{
// we can reuse the date part
strcpy (buff, datePart);
strcat (buff, timePart);
}
else {
// we need to regenerate the date part as well
sprintf (datePart, "%4d-%02d-%02d", sysTime.wYear, sysTime.wMonth, sysTime.wDay);
strcpy (buff, datePart);
strcat (buff, timePart);
}
memcpy (&oldSysTime, &sysTime, sizeof (SYSTEMTIME));
</pre>
<p>Above code has some redundancy to make the code easier to understand. You can factor out easily. You can further speed up if you know that even hour and minutes won't change faster than your call to the routine.</p>
http://stackoverflow.com/questions/133919/how-best-to-integrate-several-systems/258624#2586240Answer by Jaywalker for How best to integrate several systems?Jaywalker2008-11-03T13:31:25Z2008-11-03T13:55:04Z<p>Directly interfacing via pushing/ poking databases exposes a lot of internal detail of one system to another. There are obvious disadvantages: upgrading one system can break the other. Moreover, there can be technical limitations in how one system can access the database of the other (consider how an application written in C on Unix will interact with a SQL Server 2005 database running on Windows 2003 Server).</p>
<p>The first thing you have to decide is the platform where the "master database" will reside, and the same for the middleware providing the much required glue. Instead of going towards API level middleware-integration (such as CORBA), I would suggest you to consider Message Oriented Middleware. MS Biztalk, Sun's eGate and Oracle's Fusion can be some of the options.</p>
<p>Your idea of a new database is a step in the right direction. You might like to read a little bit on <a href="http://msdn.microsoft.com/en-us/library/ms954596.aspx" rel="nofollow">Enterprise Entity Aggregation</a> pattern. </p>
<p>A combination of "data integration" with a middleware is the way to go.</p>
http://stackoverflow.com/questions/258548/what-is-the-most-important-thing-you-werent-taught-in-school/258584#25858427Answer by Jaywalker for What is the most important thing you weren't taught in school?Jaywalker2008-11-03T13:11:51Z2008-11-03T13:11:51Z<p>That the real world is unfair.</p>
http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/91080#9108026Answer by Jaywalker for Confessions of your worst WTF Moment. (What not to do.)Jaywalker2008-09-18T09:05:45Z2008-09-18T09:05:45Z<p>As a vendor, I was working inside a data center of a private ATM (automated teller machine) network. One of the customers PIN had to be reset as part of our maintenance work. I knew the encrypted PIN block of 1234 and wrote something like the following in SQL Query Analyzer:</p>
<p>update atm_card set pin = 'BA3452318689A190' <br>
where card_id = 5</p>
<p>and somehow I selected the first line and pressed F5!! I didn't realize my mistake till the call center started getting calls from customers that there PIN was not working. There were around 10 calls in 5 minutes. When somebody from the call center approached me, I realized the mistake and temporary delayed breaking the catastrophic news by saying that the PINs will work when the maintenance work was over.</p>
<p>I saved the day by looking for any backups the data center had taken that day; restoring the database with a separate name and running another update query referencing the external DB!</p>
<p>Lesson learnt: <b>Always, disconnect production servers and take database backup before making any changes</b></p>
http://stackoverflow.com/questions/1385576/making-two-tasks-be-as-close-as-possible-in-ms-projectComment by Jaywalker on Making two tasks be as close as possible in MS ProjectJaywalker2009-10-01T14:45:19Z2009-10-01T14:45:19ZOn one side, you have added constraints to "Dev Readiness" and on the other hand you want them to finish close together. Even if you just open up your plan and do a "level resources now" your plan gets squeezed. Perhaps, you need to provide further explanation as to what you mean by "try to make all the tasks as close together."http://stackoverflow.com/questions/1096531/how-to-start-blackberry-programming/1096582#1096582Comment by Jaywalker on How to start Blackberry Programming?Jaywalker2009-07-08T08:11:27Z2009-07-08T08:11:27Zdoes blackberry support some native programming? I don't think so. J2ME is the only option IMHOhttp://stackoverflow.com/questions/962925/c-class-common-string-constants/963827#963827Comment by Jaywalker on C++ Class Common String Constants.Jaywalker2009-06-08T08:42:52Z2009-06-08T08:42:52ZHorrible performance! One method call to get a static compile-time known string!http://stackoverflow.com/questions/856135/cvs-checkout-only-the-directory-structure/856237#856237Comment by Jaywalker on CVS: Checkout only the directory structureJaywalker2009-05-13T07:37:14Z2009-05-13T07:37:14ZPerhaps you meant "cvs ls -R"?http://stackoverflow.com/questions/856135/cvs-checkout-only-the-directory-structure/856197#856197Comment by Jaywalker on CVS: Checkout only the directory structureJaywalker2009-05-13T05:26:42Z2009-05-13T05:26:42ZYes but I would like to be able to export/ copy the structure in some text form. UI is good for viewing but bad for scripting.http://stackoverflow.com/questions/388347/what-do-gurus-say-about-requirements-traceability-matrix/388349#388349Comment by Jaywalker on What do gurus say about Requirements Traceability Matrix?Jaywalker2008-12-24T08:31:01Z2008-12-24T08:31:01ZIt's not just requirements that change. Design Document can change; well, even test cases may change.
By the way, I was looking for quotes/ opinions/ books from some big shots.http://stackoverflow.com/questions/320506/c-how-to-create-an-array-of-objects-on-the-stack/320512#320512Comment by Jaywalker on C++: how to create an array of objects on the stack ?Jaywalker2008-11-26T12:34:00Z2008-11-26T12:34:00ZThere is no direct way; you can use std::vector as mentioned in one of the answers below.http://stackoverflow.com/questions/290050/replace-data-in-comma-separated-tables/290141#290141Comment by Jaywalker on Replace data in comma-separated tablesJaywalker2008-11-14T14:12:04Z2008-11-14T14:12:04Zain't funny...he is asking a question!http://stackoverflow.com/questions/289873/is-it-a-good-idea-for-a-programmer-to-work-from-home/289887#289887Comment by Jaywalker on Is it a good idea for a programmer to work from home?Jaywalker2008-11-14T14:08:42Z2008-11-14T14:08:42Zthis could be a comment instead of a separate answerhttp://stackoverflow.com/questions/289688/t-sql-replace-on-text-fieldComment by Jaywalker on t-sql replace on text fieldJaywalker2008-11-14T10:15:51Z2008-11-14T10:15:51ZI think you need to provide more details. Do you want to update a single field of a single row? What's the problem with replace() itself?http://stackoverflow.com/questions/286677/what-code-changes-are-required-to-migrate-c-from-vs2003-to-vs2005/286736#286736Comment by Jaywalker on What code changes are required to migrate C++ from VS2003 to VS2005?Jaywalker2008-11-13T13:16:10Z2008-11-13T13:16:10ZYou are right, the most common work is related to the outside usage of a variable declared inside the for loop; VS 2005 fixed that and broke old code.http://stackoverflow.com/questions/286401/two-computers-finding-each-other-over-internetComment by Jaywalker on Two Computers Finding Each Other over InternetJaywalker2008-11-13T07:14:06Z2008-11-13T07:14:06ZCould be related to programming -- he could be interested in developing such a systemhttp://stackoverflow.com/questions/281363/changing-file-type-once-added-to-cvsnt/282726#282726Comment by Jaywalker on Changing File Type Once Added to CVSNTJaywalker2008-11-12T05:51:36Z2008-11-12T05:51:36ZThe last option (Macros|CVS|Change File Type) worked for me; you are cool, dude!
My text was ASCII any how and your macro was exactly what I was looking for; I don't think that the macro "actually converts the contents/ encoding of the file." Kindly correct me if I am wrong.