User Robert - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T00:05:22Z http://stackoverflow.com/feeds/user/3534 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1604790/what-is-haskell-actually-useful-for/1604922#1604922 3 Answer by Robert for What is Haskell actually useful for? Robert 2009-10-22T03:48:43Z 2009-10-22T04:11:09Z <p>From <a href="http://www.haskell.org/haskellwiki/Haskell%5Fin%5Findustry" rel="nofollow">the Haskell Wiki</a>:</p> <blockquote> <p>Haskell has a diverse range of use commercially, from aerospace and defense, to finance, to web startups, hardware design firms and lawnmower manufacturers. This page collects resources on the industrial use of Haskell.</p> </blockquote> <p>According to Wikipedia, the <a href="http://en.wikipedia.org/wiki/Haskell%5F%28programming%5Flanguage%29" rel="nofollow">Haskell</a> language was created out of the need to consolidate existing functional languages into a common one which could be used for future research in functional-language design.</p> <p>It is apparent based on the information available that it has outgrown it's original purpose and is used for much more than research. It is now considered a general purpose functional programming language.</p> <p>If you're still asking yourself, "Why should I use it?", then read the <a href="http://www.haskell.org/haskellwiki/Introduction#Why%5Fuse%5FHaskell.3F" rel="nofollow"><em>Why use it?</em></a> section of the Haskell Wiki Introduction.</p> http://stackoverflow.com/questions/58306/graph-algorithm-to-find-all-connections-between-two-arbitrary-vertices 10 Graph Algorithm To Find All Connections Between Two Arbitrary Vertices Robert 2008-09-12T04:36:51Z 2009-10-21T07:17:43Z <p>I am trying to find out what is the best (time efficient) algorithm to accomplish the task described below.</p> <p>I have a set of records. For this set of records I have connection data which indicates how pairs of records from this set connect to one another (basically a graph, the records being the vertices and the connection data the edges).</p> <p>All of the records in the set have connection information (i.e. no orphan records are present; each record in the set connects to one or more other records in the set).</p> <p>I want to choose any two (arbitrary) records from the set and be able to show all ways possible the chosen records connect (either directly or through other connections). </p> <p>For example:</p> <pre> If I have the following records: A, B, C, D, E and the following represents the connections: (A,B),(A,C),(B,A),(B,D),(B,E),(B,F),(C,A),(C,E), (C,F),(D,B),(E,C),(E,F),(F,B),(F,C),(F,E) [where (A,B) means record A connects to record B] </pre> <p>If I chose B as my starting record and E as my ending record, I would want to find all paths through the record connections that would connect record B to record E.</p> <pre> All paths connecting B to E: B->E B->F->E B->F->C->E B->A->C->E B->A->C->F->E </pre> <p>This is an example, in practice I may have sets containing hundreds of thousands of records.</p> http://stackoverflow.com/questions/1581473/when-is-it-time-to-move-from-an-in-ide-build-system-to-a-script-based-build 1 When is it time to move from an in-IDE build system to a script-based build? Robert 2009-10-17T05:12:10Z 2009-10-19T08:00:50Z <p>When should a developer move from using the default build capability of their IDE to writing and using custom build scripts?</p> <p>I realize this is subjective and I am interested in hearing all opinions; hence the community wiki.</p> http://stackoverflow.com/questions/1581466/how-to-write-an-evaluator-for-a-string-like-13-5-4-and-get-a-numeric-r/1581547#1581547 8 Answer by Robert for How to write an evaluator for a string like "(1+3 * ( 5 / 4)) and get a numeric result. Robert 2009-10-17T06:06:24Z 2009-10-17T06:06:24Z <p>Take a look at the <a href="http://en.wikipedia.org/wiki/Shunting-yard%5Falgorithm" rel="nofollow">shunting yard algorithm</a>.</p> <blockquote> <p>The shunting yard algorithm is a method for parsing mathematical equations specified in infix notation. It can be used to produce output in Reverse Polish notation (RPN) or as an abstract syntax tree (AST). The algorithm was invented by Edsger Dijkstra and named the "shunting yard" algorithm because its operation resembles that of a railroad shunting yard.</p> </blockquote> http://stackoverflow.com/questions/1507923/does-microsoft-have-a-best-practices-document-regarding-the-storage-of-app-data-v 1 Does Microsoft have a best practices document regarding the storage of App Data vs User Data on different Windows Platforms? Robert 2009-10-02T05:52:53Z 2009-10-03T00:28:23Z <p>When creating an application that will be targeted to many versions of Windows what is the best practice to determine where application specific data should be stored. Specifically:</p> <ul> <li>Application Specific Data (e.g. app config data)</li> <li>User Specific Data/Settings</li> </ul> <p>I know on Windows Vista for instance there are environment variables, like %APPDATA%, that could be used, but what about Windows 7, Windows XP, Windows 98.</p> <p>My main question is, does Microsoft have a best practices doc for this, outlining the file system locations for the different types of data (app vs. user) and the security implications that need to be kept in mind when reading/writing to these locations?</p> <p>I'm also interested in how this pertains to not only .NET applications (where ApplicationSettingsBase can be utilized) but also in unmanaged C/C++ applications.</p> <p>Thanks to Pax and Remus for both of the great answers. I've found this item as well (specific to XP):</p> <p><a href="http://support.microsoft.com/kb/310294" rel="nofollow" title="How to write a Windows XP Application that stores user and application data in the correct location by using Visual C++">How to write a Windows XP Application that stores user and application data in the correct location by using Visual C++</a></p> http://stackoverflow.com/questions/1468148/initialization-between-types-const-int-const-and-int-is-not-allowed-why 1 Initialization between types "const int** const" and "int**" is not allowed, why? Robert 2009-09-23T19:37:40Z 2009-09-23T22:12:03Z <p>Using V1.8 z/OS XL C compiler, with warnings jacked-up using INFO(ALL), I get the following warning on line 4 of the code below:</p> <pre><code>WARNING CCN3196 Initialization between types "const int** const" and "int**" is not allowed. 1 int foo = 0; 2 int *ptr = &amp;foo; 3 const int * const fixed_readonly_ptr = ptr; 4 const int ** const fixed_ptr_to_readonly_ptr = &amp;ptr; </code></pre> <p>I can't wrap my head around why I'm getting this warning. If I can assign an int pointer to a const pointer to const int (line 3), then why can't I assign the address of an int pointer to a const pointer to pointer to const int? What am I missing?</p> <p>Note the code above is a slimmed down example just showing the issue I'm encountering in a small amount of code. The real context is that I have a const pointer to pointer to struct (struct s** const) and am passing it as an argument to a function who's parameter is defined as a const pointer to pointer to const struct (const struct s** const). This is because the function will not modify the data in the struct (hence the first const) and it does not modify the pointer parameter which always holds the address passed in (hence the second const). The value of the pointer pointed to may be changed by the way (which is why there is NOT a third const in between the **).</p> http://stackoverflow.com/questions/1463609/ftp-error-in-powershell/1463659#1463659 1 Answer by Robert for FTP error in powershell Robert 2009-09-23T02:20:44Z 2009-09-23T02:20:44Z <p>You need to put quotes around "-s:upload.txt". I believe it has something to do with the colon in the option. If anyone could clarify why that would be great.</p> http://stackoverflow.com/questions/1458131/remove-extra-white-space-from-inside-a-c-string/1458400#1458400 0 Answer by Robert for Remove extra white space from inside a C string? Robert 2009-09-22T06:19:14Z 2009-09-22T06:19:14Z <p>You could read a line then scan it to find the start of each column. Then use the column data however you'd like.</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;string.h&gt; #include &lt;ctype.h&gt; #define MAX_COL 3 #define MAX_REC 512 int main (void) { FILE *input; char record[MAX_REC + 1]; char *scan; const char *recEnd; char *columns[MAX_COL] = { 0 }; int colCnt; input = fopen("input.txt", "r"); while (fgets(record, sizeof(record), input) != NULL) { memset(columns, 0, sizeof(columns)); // reset column start pointers scan = record; recEnd = record + strlen(record); for (colCnt = 0; colCnt &lt; MAX_COL; colCnt++ ) { while (scan &lt; recEnd &amp;&amp; isspace(*scan)) { scan++; } // bypass whitespace if (scan == recEnd) { break; } columns[colCnt] = scan; // save column start while (scan &lt; recEnd &amp;&amp; !isspace(*scan)) { scan++; } // bypass column word *scan++ = '\0'; } if (colCnt &gt; 0) { printf("%s", columns[0]); for (int i = 1; i &lt; colCnt; i++) { printf("#%s", columns[i]); } printf("\n"); } } fclose(input); } </code></pre> <p>Note, the code could still use some robust-ification: check for file errors w/ferror; ensure eof was hit w/feof; ensure entire record (all column data) was processed. It could also be made more flexible by using a linked list instead of a fixed array and could be modified to not assume each column only contains a single word (as long as the columns are delimited by a specific character).</p> http://stackoverflow.com/questions/25/how-to-use-the-c-socket-api-in-c-on-z-os/867088#867088 2 Answer by Robert for How to use the C socket API in C++ on z/OS Robert 2009-05-15T05:27:09Z 2009-09-19T02:43:50Z <p>See the <em>Using z/OS UNIX System Services sockets</em> section in the z/OS XL C/C++ Programming Guide. Make sure you're including the necessary header files and using the appropriate #defines.</p> http://stackoverflow.com/questions/1315094/why-is-it-that-internet-explorer-is-still-the-most-popular-browser/1315195#1315195 1 Answer by Robert for Why is it that Internet Explorer is STILL the most popular browser? Robert 2009-08-22T05:13:43Z 2009-08-22T05:13:43Z <p>Philisophically speaking, your question should be:</p> <blockquote> <p>"Why, as a web developer, am I not using a framework that removes from my mind, the burdenous-tragedy which yields cross-browser deliciousness, so that I may attain a higher form of enlightenment?"</p> </blockquote> http://stackoverflow.com/questions/1282138/can-i-do-this-in-powershell-read-the-registry-write-out-binary-contents-to-fil/1282377#1282377 3 Answer by Robert for Can I do this in powershell? Read the Registry, write out binary contents to file. Robert 2009-08-15T17:23:00Z 2009-08-15T17:41:51Z <pre><code>$a = gp 'HKLM:\HARDWARE\ACPI\DSDT\HP____\8510x\0001000' '00000000' if ( test-path 8510x.orig ) { echo 'File 8510x.orig already exists.' } else { [System.IO.File]::WriteAllBytes("8510x.orig",$a."00000000") echo 'Wrote 8510x.orig' } </code></pre> <p>I'm leaving my previous answer (above) as an example of accessing .NET objects from PowerShell; but after seeing keith-hill's answer I had to revise mine to use set-content as well:</p> <pre><code>$a = gp HKLM:\HARDWARE\ACPI\DSDT\HP____\8510x\0001000 00000000 if ( test-path 8510x.orig ) { echo 'File 8510x.orig already exists.' } else { $a.'00000000' | Set-Content 8510x.orig -enc byte echo 'Wrote 8510x.orig' } </code></pre> http://stackoverflow.com/questions/1182396/c-array-excercise-help-needed/1182539#1182539 1 Answer by Robert for C++ array excercise-help needed Robert 2009-07-25T17:16:55Z 2009-07-25T17:31:27Z <blockquote> <p>I assume then I don't have to include conditional statement for range of numbers (10 to 100 inclusive), as this will be read from the keyboard and input by me. Therefore why was this instruction included?</p> </blockquote> <p>Sure, in this case you wrote the code and know to enter numbers within the range expected; however, it is a standard best-practice to always validate input data from a user, <strong>always</strong>. That way erroneous values are handled gracefully (with an appropriate error message) and helps to make your program more robust.</p> <blockquote> <p>Also at the end it says </p> <blockquote> <p>use the smallest possible array</p> </blockquote> <p>I assume the max size has to be 20,,,</p> </blockquote> <p>I think what they might have been getting at here is that you could have used an array of 91 bytes as shown below.</p> <pre><code>int cnt = 0; // count of unique values entered byte values[91]; // values entered indicator array int valIdx; // used as values array index memset((void *)values, 0, sizeof(values)); // initialize array to all zeros while ( cnt &lt; 20 ) { // [code for the following comments not shown] // have user input a number // validate the number (&gt;= 10 &amp;&amp; &lt;= 100) // subtract 10 from the number and store it in valIdx // (now valIdx will contain a number &gt;= 0 &lt;= 90) if ( !values[valIdx] ) { values[valIdx] = 1; ++cnt; } } // then to show the unique values... for ( valIdx = 0; valIdx &lt; sizeof(values); valIdx++ ) { if ( values[valIdx] ) { cout &lt;&lt; valIdx + 10 &lt;&lt; endl; } } </code></pre> <p>That solution however, would not have met the "use the smallest array possible" requirement. </p> <p>Back to your code... </p> <p>I would go ahead and add the user input validation, just for completeness (and to <strong>get into the habit of never trusting users</strong> (especially yourself).</p> <p>As far as improvements go, here is one thing to think about. The compare routine goes through every array element when a unique number has been entered. It only needs to check against those that have a stored value in them. Making that change should lead you to refactor the contents of your while loop as well.</p> http://stackoverflow.com/questions/1070388/editors-that-can-enforce-exact-not-maximum-line-length 1 Editors that can enforce exact (not maximum) line length ? Robert 2009-07-01T17:32:40Z 2009-07-06T13:12:33Z <p>Does anyone know of an editor that has the ability to enforce exact line lengths (bonus if it allows association of maximum line lengths by file name/extension)?</p> <p>What I mean by <em>exact line lengths</em> is that the editor will always save each line padded to a maximum line length (defined by the user). For example, if a file should have a 120-character line length every line in the file will be 120-characters long, padded with blanks if needed, follow by the appropriate newline indicator. When someone edits a line the editor will prevent them from typing if the line length hits the max length.</p> <p>Platform is Win XP/Vista.</p> http://stackoverflow.com/questions/33893/determining-width-of-a-printed-string-by-a-webapp/33919#33919 6 Answer by Robert for Determining width of a printed string by a webapp Robert 2008-08-29T03:43:14Z 2009-06-28T02:16:21Z <p>Here's another take on it and you don't have to live without the ellipsis!</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;style&gt; div.sidebox { width: 25%; } div.sidebox div.qrytxt { height: 1em; line-height: 1em; overflow: hidden; } div.sidebox div.qrytxt span.ellipsis { float: right; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div class="sidebox"&gt; &lt;div class="qrytxt"&gt; &lt;span class="ellipsis"&gt;&amp;hellip;&lt;/span&gt; Some long text which will arbitrarily be cut off at whatever word fits best but will have an ellipsis at the end. &lt;/div&gt; &lt;div class="qrytxt"&gt; &lt;span class="ellipsis"&gt;&amp;hellip;&lt;/span&gt; Some more long text which will arbitrarily be cut off at whatever word fits best but will have an ellipsis at the end. &lt;/div&gt; &lt;div class="qrytxt"&gt; &lt;span class="ellipsis"&gt;&amp;hellip;&lt;/span&gt; Short text. Fail! &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>There is one flaw with this, if the text is short enough to be fully displayed, the ellipses will still be displayed as well.</p> <p>[EDIT: 6/26/2009]</p> <p>At the suggestion of Power-Coder I have revised this a little. There are really only two changes, the addition of the doctype (see notes below) and the addition of the "display: inline-block" attribute on the qrytxt div. Here is what it looks like now...</p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;style&gt; div.sidebox { width: 25%; } div.sidebox div.qrytxt { height: 1em; line-height: 1em; overflow: hidden; display: inline-block; } div.sidebox div.qrytxt span.ellipsis { float: right; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div class="sidebox"&gt; &lt;div class="qrytxt"&gt; &lt;span class="ellipsis"&gt;&amp;hellip;&lt;/span&gt; Some long text which will arbitrarily be cut off at whatever word fits best but will have an ellipsis at the end. &lt;/div&gt; &lt;div class="qrytxt"&gt; &lt;span class="ellipsis"&gt;&amp;hellip;&lt;/span&gt; Some more long text which will arbitrarily be cut off at whatever word fits best but will have an ellipsis at the end. &lt;/div&gt; &lt;div class="qrytxt"&gt; &lt;span class="ellipsis"&gt;&amp;hellip;&lt;/span&gt; Short text. FTW &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Notes:</p> <ul> <li><p>Viewed in IE 8.0, Opera 9, FF 3</p></li> <li><p>A doctype is required for IE to get the "display: inline-block" to work correctly.</p></li> <li><p>If the qrytxt div's overflow occurs on a long word, there is going to be a wide gap between the ellipsis and the last visible word. You can see this by viewing the example and resizing your browser width in small increments. (this probably existed in the original example as well, I just may have not noticed it then)</p></li> </ul> <p>So again, an imperfect CSS-only solution. Javascript may be the only thing that can get the effect perfect.</p> <p>[EDIT: 6/27/2009]</p> <p>Here is another alternative which uses browser specific extensions.</p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;style&gt; div.sidebox { width: 26%; } div.sidebox div.qrytxt { height: 1em; line-height: 1em; overflow: hidden; text-overflow:ellipsis; -o-text-overflow:ellipsis; -ms-text-overflow:ellipsis; -moz-binding:url(ellipsis-xbl.xml#ellipsis); white-space:nowrap; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div class="sidebox"&gt; &lt;div class="qrytxt"&gt; Some long text which will arbitrarily be cut off at whatever word fits best but will have an ellipsis at the end. &lt;/div&gt; &lt;div class="qrytxt"&gt; Some more long text which will arbitrarily be cut off at whatever word fits best but will have an ellipsis at the end. &lt;/div&gt; &lt;div class="qrytxt"&gt; Short text. FTW &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Note that in order for the above example to work, you must create the xml file referenced by the -moz-binding rule, <strong><em>ellipsis-xbl.xml</em></strong>. It's should contain the following xml:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;bindings xmlns="http://www.mozilla.org/xbl" xmlns:xbl="http://www.mozilla.org/xbl" xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"&gt; &lt;binding id="ellipsis"&gt; &lt;content&gt; &lt;xul:window&gt; &lt;xul:description crop="end" xbl:inherits="value=xbl:text"&gt;&lt;children/&gt;&lt;/xul:description&gt; &lt;/xul:window&gt; &lt;/content&gt; &lt;/binding&gt; &lt;/bindings&gt; </code></pre> http://stackoverflow.com/questions/1047537/text-editor/1047637#1047637 1 Answer by Robert for text editor Robert 2009-06-26T06:31:18Z 2009-06-26T06:31:18Z <p>You could use <a href="http://www.eclipse.org/" rel="nofollow">Eclipse</a>. See <a href="http://wiki.eclipse.org/FAQ%5FHow%5Fdo%5FI%5Fcreate%5Fmy%5Fown%5Feditor%3F" rel="nofollow">http://wiki.eclipse.org/FAQ How do I create my own editor?</a></p> http://stackoverflow.com/questions/998162/is-it-possible-to-disable-stderr-in-c/998191#998191 10 Answer by Robert for Is it possible to disable stderr in C++? Robert 2009-06-15T20:24:31Z 2009-06-15T20:24:31Z <p>Use freopen to redirect to dev/null:</p> <pre><code>freopen("/dev/null", "w", stderr); </code></pre> http://stackoverflow.com/questions/989859/css-inline-element-stretch-to-fill-available-horizontal-space-of-container/989953#989953 0 Answer by Robert for CSS: Inline element stretch to fill available horizontal space of container Robert 2009-06-13T04:10:01Z 2009-06-13T16:28:11Z <p>Can't you just set the widths like so...</p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;test css button stretch&lt;/title&gt; &lt;style&gt; #btn_container { width: 200px; } #btn_container button { width: 20%; } #btn_container button.stretch { width: 58%; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="btn_container"&gt; &lt;p&gt;last button stretch...&lt;/p&gt; &lt;button type="button"&gt;eat&lt;/button&gt; &lt;button type="button"&gt;drink&lt;/button&gt; &lt;button class="stretch" type="button"&gt;sleep&lt;/button&gt; &lt;br&gt; &lt;p&gt;first button stretch...&lt;/p&gt; &lt;button class="stretch" type="button"&gt;eat&lt;/button&gt; &lt;button type="button"&gt;drink&lt;/button&gt; &lt;button type="button"&gt;sleep&lt;/button&gt; &lt;br&gt; &lt;p&gt;middle button stretch...&lt;/p&gt; &lt;button type="button"&gt;eat&lt;/button&gt; &lt;button class="stretch" type="button"&gt;drink&lt;/button&gt; &lt;button type="button"&gt;sleep&lt;/button&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>This seems to get the desired effect, is fluid (if the div button container's width is changed or set to a %), and works in IE, Firefox and Opera.</p> <p>edit: removed the redundant btn class; bumped up the width % for the stretch class; added the doctype. Left the types on, could technically haved removed for just an example, but meh.</p> <p>@rpflo: the types are in there because my buttons in this example are not submit buttons. If these were part of a form and were submitting, I'd have left them off since the default is type=submit. (<a href="http://www.w3.org/TR/html401/interact/forms.html#adef-type-BUTTON" rel="nofollow" title="W3C HTML BUTTON">W3C HTML BUTTON</a>)</p> http://stackoverflow.com/questions/989383/what-portability-issues-are-associated-with-byte-level-access-to-pointers-in-c/989787#989787 1 Answer by Robert for What portability issues are associated with byte-level access to pointers in C? Robert 2009-06-13T02:32:33Z 2009-06-13T02:32:33Z <p>If you don't need the pointer values for some other reason beside keeping track of allocated memory, why not get rid of the hash table altogether and just store a magic number along with the memory allocated as in the example below. The magic number being present alongside the memory allocated indicates that it is still "alive". When freeing the memory you clear the stored magic number before freeing the memory.</p> <pre><code>#pragma pack(1) struct sMemHdl { int magic; byte firstByte; }; #pragma pack() #define MAGIC 0xDEADDEAD #define MAGIC_SIZE sizeof(((struct sMemHdl *)0)-&gt;magic) void *get_memory( size_t request ) { struct sMemHdl *pMemHdl = (struct sMemHdl *)malloc(MAGIC_SIZE + request); pMemHdl-&gt;magic = MAGIC; return (void *)&amp;pMemHdl-&gt;firstByte; } void free_memory ( void *mem ) { if ( isgood_memory(mem) != 0 ) { struct sMemHdl *pMemHdl = (struct sMemHdl *)((byte *)mem - MAGIC_SIZE); pMemHdl-&gt;magic = 0; free(pMemHdl); } } int isgood_memory ( void *Mem ) { struct sMemHdl *pMemHdl = (struct sMemHdl *)((byte *)Mem - MAGIC_SIZE); if ( pMemHdl-&gt;magic == MAGIC ) { return 1; /* mem is good */ } else { return 0; /* mem already freed */ } } </code></pre> <p>This may be a bit hackish, but I guess I'm in a hackish mood...</p> http://stackoverflow.com/questions/946116/problems-with-memset-in-metal-c/968225#968225 0 Answer by Robert for problems with memset in Metal C Robert 2009-06-09T05:00:56Z 2009-06-09T13:23:31Z <p>Are you missing the closing brace '}' for the function? How about any missing semi-colon line terminators? When missing braces/semi-colons the z/OS C compiler throws some strange/misleading messages sometimes. I don't have it to try out, but I'm assuming Metal does as well.</p> http://stackoverflow.com/questions/934089/uploading-to-mainframe-using-ftp/968278#968278 0 Answer by Robert for Uploading to mainframe using FTP Robert 2009-06-09T05:22:58Z 2009-06-09T05:22:58Z <p>You should be able to specify the data set allocation parameters using the site command.</p> <p>site u=SYSDA rec=VB lr=6144 blk=0 ucount=2 tr pri=3000 sec=200</p> <p>That translates to:</p> <ul> <li>unit=SYSDA</li> <li>record format=variable block</li> <li>logical record length=6144</li> <li>block size=0</li> <li>unit count=2</li> <li>track (allocation units)</li> <li>primary space=3000</li> <li>secondary space=200</li> </ul> http://stackoverflow.com/questions/953931/ie7-not-playing-nice-with-my-floating-sidebar/953978#953978 1 Answer by Robert for IE7 Not Playing Nice with My Floating Sidebar Robert 2009-06-05T02:07:02Z 2009-06-05T02:07:02Z <p>First, make sure you are using a doctype that will put IE7 into strict mode (see <a href="http://hsivonen.iki.fi/doctype/" rel="nofollow">http://hsivonen.iki.fi/doctype/</a> for an explaination). if that doesn't do it, it may be that you need some play in your margin widths.</p> <p>The reason why you have to have the sidebar div first, is since div is a displayed as a block element anything after it, will be below it (unless you float the main div).</p> <p>By floating the sidebar div and putting it first, the browser knows it can display the main div to the right of the sidebar. You could get a similar effect by adding float left to the main div and removing the float from the sidebar div and moving it after the main div.</p> http://stackoverflow.com/questions/953869/is-the-return-worth-the-investment-in-learning-fortran/953880#953880 1 Answer by Robert for Is the return worth the investment in learning Fortran? Robert 2009-06-05T01:27:53Z 2009-06-05T01:27:53Z <p>I think learning new languages in general is always a good thing. That said, if you're learning to enhance your own value (and not just for the fun of it), it's probably better to just learn something a little more relevant/in demand in your job search area. This will give you a better return for your time investment, IMHO.</p> http://stackoverflow.com/questions/953664/sort-excel-grouped-rows/953870#953870 2 Answer by Robert for Sort Excel Grouped Rows Robert 2009-06-05T01:22:03Z 2009-06-05T01:22:03Z <p>If I understand your question correctly, I have a way you can accomplish what you want (don't know if there is a more efficient method).</p> <p>Write code which will, for each company header row, copy the number of employess and revenue data into two of the chosen unused columns. The data needs to be copied into the columns for both the header company row and detail employee rows.</p> <p>In the third column assign a sequence number. This is to keep data together and in order when sorting by employee/revenue.</p> <p>Now you can sort by either the newly created number of employees and/or revenue columns (along with the sequence column to maintain ordering within company).</p> <p>After the sort you can delete the extra copied data rows.</p> <p>So if your data looked like this to start with...</p> <pre><code>A B C Penetrode 200 750000 Micheal Bolton mbolton@pene.com 555-555-3333 Samir N samirn@pene.com Initech 500 500000 Bill Lumbergh umumyeah@init.com 555-555-1212 Peter Gibbons pgibbons@init.com 555-555-2222 </code></pre> <p>Your code would then copy the employee count and revenue data and sequencify the rows using three unused columns.</p> <pre><code>A B C D E F Penetrode 200 750000 200 750000 1 Micheal Bolton mbolton@pene.com 555-555-3333 200 750000 2 Samir N samirn@pene.com 555-555-3334 200 750000 3 Initech 500 500000 500 500000 4 Bill Lumbergh umumyeah@init.com 555-555-1212 500 500000 5 Peter Gibbons pgibbons@init.com 555-555-2222 500 500000 6 </code></pre> <p>Then you can code a sort on any of the column combos: (D,F), (E,F), (D,E,F), or (E,D,F)</p> http://stackoverflow.com/questions/706426/teaching-my-self-z-os-assembler/867045#867045 3 Answer by Robert for teaching my self Z/OS assembler? Robert 2009-05-15T05:06:54Z 2009-05-15T05:06:54Z <p>None of the following are tutorial-like, just reference material. All will eventually come in handy though, so good to know; of interest would be:</p> <ul> <li>HLASM Programmer's Guide</li> <li>HLASM Language Reference</li> <li>HLASM General Information</li> <li>MVS Program Management: User's Guide and Reference</li> <li>MVS Assembler Services Guide</li> <li>MVS Authorized Assembler Services Guide</li> <li>z/Architecture Principles of Operation</li> </ul> <p>You can find the books for the z/OS version you're on at IBM doc library:</p> <ul> <li><a href="http://www-03.ibm.com/systems/z/os/zos/bkserv/" rel="nofollow">http://www-03.ibm.com/systems/z/os/zos/bkserv/</a></li> </ul> <p>z/Architecture Principles of Operation ("the POP manual") is the system bible. Of immediate interest in that book would be chapter 7 which lists the instructions and instruction formats.</p> <p>For tutorial material though I can recommend (these are all on my bookshelf) any of the following:</p> <ul> <li>Mainframe Assembler Programming by Bill Qualls (this one comes with an emulator, PC/370, for compiling and running assembler)</li> <li>MVS Assembler Language by Kevin McQuillen and Anne Prince</li> </ul> <p>And after you've mastered the basics:</p> <ul> <li>Advanced Assembler Language and MVS Interfaces For IBM Systems and Application Programmers by Carmine A. Cannatello</li> </ul> <p>If you have questions you can, use stackoverflow of course, but for a more mainframe-centric pool of brains to pick, try <a href="http://ibmmainframeforum.com/" rel="nofollow">http://ibmmainframeforum.com/</a>. It isn't highly active, but the moderators know the dark arts.</p> <p>Have fun!</p> http://stackoverflow.com/questions/82915/any-other-mainframers-here/131567#131567 6 Answer by Robert for Any other mainframers here? Robert 2008-09-25T05:11:24Z 2008-09-25T05:11:24Z <p>Another mainframer here. I write online and batch applications and tools on z/OS in C, HLASM, REXX, CLIST; however, my language of choice is C (for great justice). Although I'm not proud of my development environment, or lack thereof: ISPF editor via a TN3270 emulator (can you say green screens). To avoid tearing my eyes from their sockets I dabble alot in my free time in other languages and technologies.</p> <p>I agree as far as online communities go. What's out there is scarce. I recommend looking into some of the mainframe-centric magazines that exist, I particularly enjoy <a href="http://www.zjournal.com/" rel="nofollow">z/Journal</a>.</p> http://stackoverflow.com/questions/69115/char-to-hex-string-exercise/69218#69218 3 Answer by Robert for char[] to hex string exercise Robert 2008-09-16T03:42:49Z 2008-09-16T03:42:49Z <p>At the cost of more memory you can create a full 256-entry table of the hex codes:</p> <pre><code>static const char _hex2asciiU_value[256][2] = { {'0','0'}, {'0','1'}, /* ..., */ {'F','E'},{'F','F'} }; </code></pre> <p>Then direct index into the table, no bit fiddling required.</p> <pre><code>const char *pHexVal = pHex[*pChar]; pszHex[0] = pHexVal[0]; pszHex[1] = pHexVal[1]; </code></pre> http://stackoverflow.com/questions/58306/graph-algorithm-to-find-all-connections-between-two-arbitrary-vertices/58487#58487 0 Answer by Robert for Graph Algorithm To Find All Connections Between Two Arbitrary Vertices Robert 2008-09-12T08:12:41Z 2008-09-12T08:12:41Z <p>Another improvement would be to memoize the connections that lead to the end. For example, if I know F->E and C->F then I know C->E without having to visit every vertex adjacent to F to find the F->E connection.</p> http://stackoverflow.com/questions/58306/graph-algorithm-to-find-all-connections-between-two-arbitrary-vertices/58480#58480 -1 Answer by Robert for Graph Algorithm To Find All Connections Between Two Arbitrary Vertices Robert 2008-09-12T08:07:59Z 2008-09-12T08:07:59Z <p>@<a href="#58444" rel="nofollow">Christian</a>: Seems I was on the same train of thought. My real problem is exactly as I described, only with much larger sets. I agree this seems to grow exponentially with the size of the set. I figure I can try to make it more efficient by removing connections that are single-way from each vertex and do not lead to the destination vertex. These connections would be removed the first time they are seen. For instance in my previous example, record D could be removed since it leads to no other record. That way record D is only seen once, regardless of how many times record B happens to be part of a valid path (from start to end).</p> <p>@<a href="#58446" rel="nofollow">Casey Watson</a>: I'll take a closer look at that when my eyes are less tired. Thanks!</p> http://stackoverflow.com/questions/58306/graph-algorithm-to-find-all-connections-between-two-arbitrary-vertices/58461#58461 1 Answer by Robert for Graph Algorithm To Find All Connections Between Two Arbitrary Vertices Robert 2008-09-12T07:48:29Z 2008-09-12T07:48:29Z <p>Here is the pseudocode I came up with. This is not any particular pseudocode dialect, but should be simple enough to follow.</p> <p>Anyone want to pick this apart.</p> <ul> <li><p>[p] is a list of vertices representing the current path.</p></li> <li><p>[r] is a list of paths where meet the criteria</p></li> <li><p>[s] is the source vertex</p></li> <li><p>[d] is the destination vertex</p></li> <li><p>[c] is the current vertex (argument to the PathFind routine)</p></li> </ul> <p>Assume there is an efficient way to look up the adjacent vertices (line 6).</p> <pre> 1 PathList [p] 2 ListOfPathLists [x] 3 Vertex [s], [d] 4 PathFind ( Vertex [c] ) 5 Add [c] to tail end of list [p] 6 For each Vertex [v] adjacent to [c] 7 If [v] is equal to [d] then 8 Save list [p] in [x] 9 Else If [v] is not in list [p] 10 PathFind([v]) 11 Next For 12 Remove tail from [p] 13 Return </pre> http://stackoverflow.com/questions/58306/graph-algorithm-to-find-all-connections-between-two-arbitrary-vertices/58350#58350 0 Answer by Robert for Graph Algorithm To Find All Connections Between Two Arbitrary Vertices Robert 2008-09-12T05:14:24Z 2008-09-12T05:14:24Z <p>@<a href="#58308" rel="nofollow">marxidad</a>: I've read that all, while at the same time keeping my head from exploding. It sounds very interesting and seems like what I need, but I'll have to research it more and possibly find a code example of this at work. I'm not a mathematician so formal description of the algorithm is (sadly) over my head. Unfortunately, I'm in one of those time crunch situations as well, so I may need to go with a good-enough-for-now solution. I've definitely added this to my research list. Thanks!</p> <p>@<a href="#58310" rel="nofollow">Blorgbeard</a>: yes, cyclic connections would have to be filtered out.</p> <p>@<a href="#58321" rel="nofollow">Peter Morris</a>: what you describe is sort of what I'm trying to work out on paper (pseudocode and desk checking). After which will come timing tests. If you'd like to post pseudocode that be cool. When I'm done I'll probably post mine as well, for feedback.</p> <p>I was hoping someone may know the best algorithmic solution and possibly point me to a pseudocode example (or language specific example as long as it doesn't hide the implementation; as I need to write my implementation in C).</p> http://stackoverflow.com/questions/1790278/parsing-a-csv-file-problems-c/1790581#1790581 Comment by Robert on Parsing a CSV file problems C# Robert 2009-12-04T01:21:43Z 2009-12-04T01:21:43Z Murph, have you (or anyone else here) used FileHelpers? Would you recommend it for processing large (~10-50GB) delimited files that may possibly contain malformed records (e.g. quote mismatches, incorrect number of fields per record, etc)? http://stackoverflow.com/questions/1712955/help-in-implementing-a-team-overall-rating-system Comment by Robert on help in implementing a team overall rating system Robert 2009-11-11T04:51:15Z 2009-11-11T04:51:15Z That should have been, &quot;Please rephrase as an <b>actual</b> question.&quot; http://stackoverflow.com/questions/1712955/help-in-implementing-a-team-overall-rating-system Comment by Robert on help in implementing a team overall rating system Robert 2009-11-11T04:41:42Z 2009-11-11T04:41:42Z The way you currently have your &quot;question&quot; structured, it's hard to tell what exactly you need help with. Please rephrase as an actually question. http://stackoverflow.com/questions/1652735/coping-strategies-for-when-your-totally-awesome-project-is-unfairly-canceled-for/1652751#1652751 Comment by Robert on Coping strategies for when your totally awesome project is unfairly canceled for stupid reasons beyond your control Robert 2009-10-31T05:57:41Z 2009-10-31T05:57:41Z That would be a sad loop. http://stackoverflow.com/questions/1604540/how-do-i-move-from-being-a-software-developer-to-being-a-software-architect/1604550#1604550 Comment by Robert on How do I move from being a software developer to being a software architect? Robert 2009-10-22T03:06:06Z 2009-10-22T03:06:06Z Just don't end up like this guy: <a href="http://www.youtube.com/watch?v=4YBxeDN4tbk" rel="nofollow">youtube.com/watch?v=4YBxeDN4tbk</a> http://stackoverflow.com/questions/1581473/when-is-it-time-to-move-from-an-in-ide-build-system-to-a-script-based-build/1581481#1581481 Comment by Robert on When is it time to move from an in-IDE build system to a script-based build? Robert 2009-10-17T05:39:44Z 2009-10-17T05:39:44Z BTW, nice blog. I've added you to my reader. http://stackoverflow.com/questions/1581473/when-is-it-time-to-move-from-an-in-ide-build-system-to-a-script-based-build/1581481#1581481 Comment by Robert on When is it time to move from an in-IDE build system to a script-based build? Robert 2009-10-17T05:32:33Z 2009-10-17T05:32:33Z Thanks for your answer. As far as language goes I'm speaking mainly of compiled languages where you are building binaries; not scripting languages. Why do you say it depends on the IDE and OS? Do you mean from a tool availability standpoint? I'm looking for general guidelines on when you should or shouldn't be using build scripts (like what you've listed in bullet-points) not what specific tools one could use. http://stackoverflow.com/questions/1563280/programmer-not-a-blogger Comment by Robert on Programmer, not a blogger Robert 2009-10-14T02:23:01Z 2009-10-14T02:23:01Z @DVK +1 for launching all zigs; even though the proper dialect should be: Somebody set us up the blog! http://stackoverflow.com/questions/1552728/why-cant-the-nodes-be-linked-together/1552774#1552774 Comment by Robert on Why can't the Nodes be linked together? Robert 2009-10-12T05:53:33Z 2009-10-12T05:53:33Z @derrdji: The argument should be passed as needed by the function. As a general rule, your functions should be well defined and should exhibit expected behaviour. A function which returns the size of a stack would not be expected to modify the stack; therefore the stack argument should not be passed by reference to that function. On the flip-side, functions like push/pop should modify the stack and will need the stack argument passed by reference. http://stackoverflow.com/questions/54423/best-net-podcasts Comment by Robert on Best .NET Podcasts Robert 2009-10-11T22:04:28Z 2009-10-11T22:04:28Z This thread would be a better resource if answers were limited to one podcast per answer (use multiple answers for different podcasts) and vote up existing entries instead of duplicating. http://stackoverflow.com/questions/1551603/what-is-the-funniest-function-name-you-have-ever-seen Comment by Robert on What is the funniest function name you have ever seen? Robert 2009-10-11T20:25:39Z 2009-10-11T20:25:39Z die_you_thread_closing_gravy_sucking_pig_dogs ;) http://stackoverflow.com/questions/1302484/screen-scraping-a-mainframe-screen-in-c-without-3rd-party-utilities/1303058#1303058 Comment by Robert on Screen scraping a mainframe screen in C# *without* 3rd Party Utilities Robert 2009-09-30T02:44:32Z 2009-09-30T02:44:32Z That <a href="http://www.open3270.net/" rel="nofollow">open3270.net</a> link is worse than dead... its now the home of &quot;Dr. Pooter treats computers.&quot; http://stackoverflow.com/questions/1469575/converting-array-characters-in-c-programming/1469581#1469581 Comment by Robert on Converting array characters in C Programming Robert 2009-09-24T03:23:52Z 2009-09-24T03:23:52Z @metashockwave s[3] is a character refrence so you need to change the %s to %c to print just that character. http://stackoverflow.com/questions/1468148/initialization-between-types-const-int-const-and-int-is-not-allowed-why Comment by Robert on Initialization between types "const int** const" and "int**" is not allowed, why? Robert 2009-09-24T02:47:50Z 2009-09-24T02:47:50Z Pavel and Charles have made it perfectly clear why the compiler is warning me. I upvoted both of you, but gave the credit to Charles for breaking it down from C point of view (although both answers are very similar and show why the warning is issued). http://stackoverflow.com/questions/1468148/initialization-between-types-const-int-const-and-int-is-not-allowed-why/1468267#1468267 Comment by Robert on Initialization between types "const int** const" and "int**" is not allowed, why? Robert 2009-09-23T20:27:05Z 2009-09-23T20:27:05Z &quot;fixed_ptr_to_readonly_ptr can only point to non-const pointers&quot; I agree and that is what I'm doing; note that &amp;ptr is what is being assigned to fixed_ptr_to_readonly_ptr. ptr is a &quot;non-const pointer&quot; so why can't i use fixed_ptr_to_readonly_ptr to point at it. If I was trying to assign fixed_readonly_ptr to fixed_ptr_to_readonly_ptr I would take your argument as vaild.