User davenpcj - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T04:37:47Z http://stackoverflow.com/feeds/user/4777 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/544398/properly-bind-a-windows-forms-datagrid-to-an-array 0 Properly bind a Windows Forms Datagrid to an array davenpcj 2009-02-13T01:39:19Z 2009-10-25T20:06:23Z <p>I'm trying to use a windows forms datagrid (.NET 1.1) to update the elements of a two dimensional array. Using the microsoft documentation, I've been able to get the datagrid to display the array properly.</p> <p>EDIT: The MS instructions I followed are at <a href="http://support.microsoft.com/kb/315786" rel="nofollow">http://support.microsoft.com/kb/315786</a>.</p> <pre><code>class myrow { private int a, b; public int A {get { return a; } set {a = value;}} public int B {get { return b; } set {b = value;}} } myrow[] myRows = new myrow[5] { new myrow(3,2), new myrow(2,2), new myrow(1,2), new myrow(3,3), new myrow(3,1), } myDataGrid.SetDataBinding(myRows, ""); </code></pre> <p>I've also got the DataGrid's TableStyle.MappingName property set to <code>"myrow[]"</code>.</p> <p>What's been driving me crazy is that I can't update it. I enter a new value in a cell on the form, say "1123", and hit enter or tab, and the cursor moves to the next cell and the value changes back to the original value.</p> <p>How can I get it to take the updates?</p> http://stackoverflow.com/questions/169293/what-are-some-good-java-make-utilities 8 What are some good java make utilities? davenpcj 2008-10-03T23:21:51Z 2009-10-24T05:56:31Z <p>I'm looking for a make utility for building large java programs. I'm aware of ANT already, but want to see what else is available.</p> <p>Ideally, it should be able to handle the .java->.class package directory weirdness that fouls up GNU Make.</p> <p>Win32, but cross platform is a plus.</p> <p><strong>EDIT:</strong> I see some cons to using ANT, which is why I wanted to see other options, though I'll probably end up using it anyway, just because it works.</p> <ul> <li>requires nontrivial XML makefiles, "HelloWorld" is already 25 lines, and any more reasonable program gets large quickly. <ul> <li>The ant tutorials show comparisons of ant build.xml files that are roughly identical to big .bat files that just run all the java commands, only longer. <a href="http://ant.apache.org/manual/tutorial-HelloWorldWithAnt.html" rel="nofollow">http://ant.apache.org/manual/tutorial-HelloWorldWithAnt.html</a>, I've already got one of those.</li> <li>Xml means that every single dependency, variable, target, rule and project has extra cruft on it, it just makes lines hard to read. <a href="http://www.codinghorror.com/blog/archives/001114.html" rel="nofollow">The Angle Bracket Tax</a></li> </ul></li> <li>solves all the wrong problems for me. <ul> <li>ant makes writing jar and javac command lines easier, generating manifests easier, specifying .java source files easier, specifying jvm/java properties easier, writing custom build tools easier.</li> <li>ant does not make java class dependencies easier, and does not seem to have a more powerful variable system, both things usually solved by make utilities.</li> </ul></li> </ul> <p>I'd use gnu make, but it can't figure out where the .class file for a .java file with a package declaration is going to end up.</p> http://stackoverflow.com/questions/1505960/best-fastest-way-to-write-a-parser-in-c/1510343#1510343 0 Answer by davenpcj for Best/fastest way to write a parser in c# davenpcj 2009-10-02T15:42:18Z 2009-10-02T15:42:18Z <p>Lex and yacc are still my favorites. Obscure if you're just starting out, but extremely simple, fast, and easy once you've got the lingo down.</p> <p>You can make it do whatever you want; generate C# code, build other grammars, emulate instructions, whatever.</p> <p>It's not pretty, it's a text based format and LL1, so your syntax has to accomodate that.</p> <p>On the plus side, it's everywhere. There are great O'reilly books about it, lots of sample code, lots of premade grammars, and lots of native language libraries.</p> http://stackoverflow.com/questions/1154315/javascript-firebug-cannot-access-optimized-closure-what-does-it-mean/1313724#1313724 0 Answer by davenpcj for Javascript + Firebug : "cannot access optimized closure" What does it mean? davenpcj 2009-08-21T19:07:14Z 2009-09-12T01:38:52Z <p>A closure is a function with context. If you dynamically create a new function, then you create a closure.</p> <pre><code>function makeAdder(int num) { return function(int num2) { return num + num2; } } adder = makeAdder(5); adder(7) // returns (5+7) = 12 adder(2) // returns (5+2) = 7 </code></pre> <p>Here, the closure is the inner function, as returned by makeAdder, along with the '5' that was passed.</p> <p>The javascript engine might choose to optimize away the function shown above, to make things run faster, never generating or running that code, so it can't be debugged or referenced. Optimizers are supposed to be very careful to ensure there's no impact, so I'd guess this one made a mistake.</p> http://stackoverflow.com/questions/707447/single-xmlhttprequest-object-to-make-multiple-requests/1183722#1183722 0 Answer by davenpcj for Single XMLHTTPRequest object to make multiple requests. davenpcj 2009-07-26T04:18:48Z 2009-07-26T04:26:45Z <p>You can reuse the object after the first request completes to issue a second request, and change onreadystatechange to a different function.</p> <p>Not parallel, but very quick.</p> <p>A note of caution, IE can't reuse XMLHTTPRequest objects, even in the native XMLHTTP implemented in IE7 and IE8.</p> <p>For parallel requests, create multiple XMLHTTPRequest objects, and distribute your calls across them.</p> <p>Another note of caution, when creating multiple objects in parallel, browsers may limit your usage of concurrent XMLHTTPRequest objects. Often in a very bad way by losing requests or transparently refusing to send them, so you'll want to test that carefully.</p> <p>The safest way to do things is to create one request, use it, then dispose of it and create a new one. One at a time. </p> http://stackoverflow.com/questions/951832/what-license-should-be-on-sample-code 7 What license should be on sample code? [closed] davenpcj 2009-06-04T17:01:29Z 2009-07-08T14:58:55Z <p>I noticed today that stackoverflow's cc-wiki (aka creative commons attribution/share alike license) does not allow the answers to questions to be used in commercial products.</p> <p>Very specificially, and perhaps I've misunderstood the license, it has a share-alike clause, meaning any derivative work would also be share-alike.</p> <p>Corporations eschew such clauses, because while the answer might be necessary, or even key, they must retain the rights to their own work. Not just corporations, but anyone who holds a copyright.</p> <p>So what's the right license to put on sample code? I don't want people ripping off my code or productizing it with little to no work of their own and making tons of cash. But I also want larger projects to be able to use it.</p> <p><strong>EDIT:</strong> Some clarification. I actually want commercial usage to be ok. Supposing I write a good caching algorithm in answer to a question; I don't mind if some larger project like Mozilla or IE wants to use it, even a commercial product, but I don't want someone to take the algorithm and start selling it.</p> <p>IE, it's ok if they want to USE the algorithm in their product, not OK if their product is the algorithm. </p> http://stackoverflow.com/questions/1075666/how-do-i-create-and-use-a-byte-array-in-perl 2 How do I create and use a byte array in perl? davenpcj 2009-07-02T17:27:16Z 2009-07-02T19:21:35Z <p><code>$var = pack "C2", 0x20, 0x30;</code> </p> <p>seems to work well enough, but now how do I address the elements of the array? Make changes to elements? In-place if possible. The pack/unpack semantics are not very friendly.</p> <p>Currently I'm using <code>substr($var, $index, 1, substr($var, $index, 1) + 10)</code> to add 10 to elements in-place.</p> <p>And for intializers, if I need a 100 byte array of 0x20, what's the best way? <code>$var = "\x20" x 100</code> works, is it the 'right' way?</p> http://stackoverflow.com/questions/485612/interview-question-101-binary-number-interpretation/1045738#1045738 1 Answer by davenpcj for Interview Question 101 - Binary Number Interpretation davenpcj 2009-06-25T19:20:54Z 2009-06-25T19:20:54Z <p>If you honestly wanted to get the right answer, you'd need to know the encoding of the bits. Bits are just bits until you decide on their meaning.</p> <p>The encoding is an equation that tells you the value given the digits.. You could assume it's <code>d[0]*2^7+d[1]*2^6+d[2]*2^5+...</code> (regular unsigned 8 bit int)</p> <p>Similarly, the digits 1 8 1 may represent apples/oranges/pears with different values each, or the number 181, or the number 1.81, or -81, or +81, or just about anything you could possibly care to think about.</p> <p>I probably would have answered 181, and just argued with the guy if he seemed to think I was wrong, since his answer can't be right any more than mine can.</p> http://stackoverflow.com/questions/978052/githow-can-i-make-my-local-repository-available-for-git-pull/996497#996497 0 Answer by davenpcj for [Git]How can I make my local repository available for git-pull? davenpcj 2009-06-15T14:40:10Z 2009-06-15T14:40:10Z <p>I recently changed one of my git projects to replicate itself to an HTTP server using sitecopy to do the actual file uploads.</p> <p>It's pretty easy, just use <code>git update-server-info</code> then mirror the .git directory to some http-accessible directory on your server. I used 'project.git', which is fairly common.</p> <p>Git pull from <a href="http://site/project-git" rel="nofollow">http://site/project-git</a> works like a champ, and I don't have to have anything on the server except FTP access, though sitecopy supports webdav as well.</p> <p>I don't recommend using sitecopy, however, as it doesn't keep multiple machines in sync well. For my project, the HTTP repository is readonly, and gold updates come from just one machine, so it works well enough.</p> http://stackoverflow.com/questions/990725/is-there-a-general-rule-that-code-in-the-code-editor-should-not-be-wider-that-72/990739#990739 0 Answer by davenpcj for Is there a general rule that code in the code editor should not be wider that 72 columns? davenpcj 2009-06-13T14:05:00Z 2009-06-13T14:05:00Z <p>That's just leftover from the 80 column text window days. (and punch cards before that!)</p> <p>However, since lines do get harder to read the longer they get, it does make sense to limit the line length of your code, and 70-80 columns is very widely used, not just in code, but in other media like webpages, email, books.</p> <p>Varies, of course, to a pretty wide degree. Stackoverflow, for example, is using about 100 character wide posts.</p> http://stackoverflow.com/questions/990473/repository-structure-when-having-two-configs-of-the-same-base-repo/990685#990685 1 Answer by davenpcj for Repository structure when having two "configs" of the same base repo? davenpcj 2009-06-13T13:37:42Z 2009-06-13T13:37:42Z <p>Many source control systems support the idea of branches containing largely identical files. It might not be a problem for you to have the base files in one branched repository.</p> <p>You can also create branches just for the config stuff in the second repo. switch between branches before you apply your fixes.</p> <p>Another approach, if you have any sort of build or checkout process, check out the two branches (or two repositories) of the config stuff to separate directories, and then copy the correct one to the right place during your build.</p> http://stackoverflow.com/questions/986627/detect-if-app-was-downloaded-from-android-market/990659#990659 0 Answer by davenpcj for Detect if app was downloaded from Android Market davenpcj 2009-06-13T13:24:43Z 2009-06-13T13:24:43Z <p>Perhaps you could add a setting to your app for "developer mode".</p> <p>Another possibility, have it look for a special file or configuration file on the SD card, and key off of that.</p> http://stackoverflow.com/questions/489950/can-i-indicate-to-clients-that-spnego-is-supported-but-ntlm-is-not-for-http-reque/979238#979238 1 Answer by davenpcj for Can I indicate to clients that SPNEGO is supported but NTLM is not for HTTP requests? davenpcj 2009-06-11T03:49:08Z 2009-06-11T03:49:08Z <p>The initial WWW-Authenticate header only specifies negotiate. It can't say anything more, such as "no NTLM".</p> <p>I think it's possible to respond to the first Authenticate: {Base64 NTLMSSP} header sent by the client with 401 unauthorized and a second Negotiate header, which can include a response token, possibly including a SupportedMechanisms that specifies Kerberos Only.</p> <p>But I suspect that will only get you "unauthorized", because it was falling back to NTLM in the first place.</p> http://stackoverflow.com/questions/127324/gssacquirecred-returning-key-table-entry-not-found-error/979208#979208 1 Answer by davenpcj for gss_acquire_cred returning Key table entry not found error davenpcj 2009-06-11T03:41:21Z 2009-06-11T03:41:21Z <p>Ok. Keytabs are supposed to contain the Service principal name, in this case "HTTP/srvnfssol1.dev.local@DEV.LOCAL" and the encryption key. I see where the MS docs say just to echo that to a file, but I don't think that's right.</p> <p>You'll need to use the ktpass utility to create the keytab. The MS docs are <a href="http://technet.microsoft.com/en-us/library/cc776746%28WS.10%29.aspx" rel="nofollow">here</a>.</p> <p>In particular, you'll need to specify <code>KRB5_NT_SRV_HST</code>, and most of the rest of the options can be default.</p> <p>Sample of it on my machine:</p> <pre><code>C:\&gt;ktpass /out test.keytab /princ HTTP/srvnfssol1.dev.local@DEV.LOCAL /ptype KRB5_NT_SRV_HST /pass * Type the password for HTTP/srvnfssol1.dev.local: Key created. Output keytab to test.keytab: Keytab version: 0x502 keysize 62 HTTP/srvnfssol1.dev.local@DEV.LOCAL ptype 3 (KRB5_NT_SRV_HST) vno 1 etype 0x1 (DES-CBC-CRC) keylength 8 (0xa7f1fb38041c199e) </code></pre> <p>If the active directory server is the KDC, you'll need to use the <code>/map &lt;name&gt;</code> argument, where <code>&lt;name&gt;</code> is the computer account in active directory representing the server. </p> <p>Some details on how all this works. When you browse to the website it should respond with a WWW-Authenticate: Negotiate header, and your browser will send a request to the KDC (active directory server) to get a kerberos ticket for the service. The AD server will look up the encryption key for the ticket using the service principal name, and send that back to the browser. Once the browser has the service ticket, it'll reissue the HTTP request with an authenticate header containing the ticket. The apache server will look up its key in the keytab, decrypt the ticket, and grant access.</p> <p>The "key table entry not found" error happens because apache isn't finding itself in the keytab. Can also happen if the name resolution/realms aren't set up right.</p> <p>You should be able to see all the kerberos requests AP-REQ/AP-REP/TGS-REQ/TGS-REP using wireshark on the client, tcp or udp port 88.</p> http://stackoverflow.com/questions/27972/are-httponly-cookies-a-viable-option-for-an-ajax-website/975881#975881 0 Answer by davenpcj for Are HttpOnly cookies a viable option for an AJAX website? davenpcj 2009-06-10T14:17:48Z 2009-06-10T14:17:48Z <p>There's a bit more to this.</p> <p>Ajax doesn't strictly require cookies, but they can be useful as other posters have mentioned. Marking a cookie HTTPOnly to hide it from scripts only partially works, because not all browsers support it, but also because there are common workarounds.</p> <p>It's odd that the XMLHTTPresponse headers are giving the cookie, technically the server doesn't have to return the cookie with the response. Once it's set on the client, it stays set until it expires. Though there are schemes in which the cookie is changed with every request to prevent re-use. So you may be able to avoid that workaround by changing the server to not provide the cookie on the XMLHTTP responses.</p> <p>In general though, I think HTTPOnly should be used with some caution. There are cross site scripting attacks where an attacker arranges for a user to submit an ajax-like request originating from another site, using simple post forms, without the use of XMLHTTP, and your browser's still-active cookie would authenticate the request.</p> <p>If you want to be sure that an AJAX request is authenticated, the request itself AND the HTTP headers need to contain the cookie. Eg through the use of scripts or unique hidden inputs. HTTPOnly would hinder that.</p> <p>Usually the interesting reason to want HTTPOnly is to prevent third-party content included on your webpage from stealing cookies. But there are many interesting reasons to be very cautious about including third-party content, and filter it aggressively.</p> http://stackoverflow.com/questions/85992/how-do-i-enumerate-the-properties-of-a-javascript-object 5 How do I enumerate the properties of a javascript object? davenpcj 2008-09-17T18:10:18Z 2009-04-08T21:13:48Z <p>I actually want to list all the defined variables and their values, but I've learned that defining a variable actually creates a property of the window object.</p> http://stackoverflow.com/questions/656226/why-does-setting-a-static-method-result-in-a-stack-overflow/667632#667632 1 Answer by davenpcj for Why does setting a static method result in a stack overflow? davenpcj 2009-03-20T19:30:17Z 2009-03-20T19:30:17Z <p>I think I see a different interpretation of the question. Where the question isn't why the overflow happens, but why accessors can cause overflows. In this case, the accessor is a function call just like any other, and so it does consume stack space.</p> <p>If you're using public members with no accessors, <code>MyClass.myint</code> doesn't become a function call, and can't overflow the stack.</p> http://stackoverflow.com/questions/544398/properly-bind-a-windows-forms-datagrid-to-an-array/546293#546293 0 Answer by davenpcj for Properly bind a Windows Forms Datagrid to an array davenpcj 2009-02-13T15:07:45Z 2009-02-13T15:07:45Z <p>There's a workaround, if you change the array to an ArrayList or other collection class, then the updates work.</p> <p>Not a true answer, because that's still not using the object array, and still doesn't fit well with a regular 2D array of data.</p> http://stackoverflow.com/questions/240353/convert-a-preprocessor-token-to-a-string 2 Convert a preprocessor token to a string davenpcj 2008-10-27T15:43:19Z 2008-10-28T14:59:16Z <p>I'm looking for a way to convert a preprocessor token to a string.</p> <p>Specifically, I've somewhere got:</p> <pre><code>#define MAX_LEN 16 </code></pre> <p>and I want to use it to prevent buffer overrun:</p> <pre><code>char val[MAX_LEN+1]; // room for \0 sscanf(buf, "%"MAX_LEN"s", val); </code></pre> <p>I'm open to other ways to accomplish the same thing, but standard library only.</p> http://stackoverflow.com/questions/240353/convert-a-preprocessor-token-to-a-string/240361#240361 2 Answer by davenpcj for Convert a preprocessor token to a string davenpcj 2008-10-27T15:45:33Z 2008-10-27T15:45:33Z <p>I found an answer online.</p> <blockquote> <blockquote> <pre><code>#define VERSION_MAJOR 4 #define VERSION_MINOR 47 #define VERSION_STRING "v" #VERSION_MAJOR "." #VERSION_MINOR </code></pre> <p>The above does not work but hopefully illustrates what I would like to do, i.e. make VERSION_STRING end up as "v4.47".</p> </blockquote> <p>To generate the proper numeric form use something like</p> <pre><code>#define VERSION_MAJOR 4 #define VERSION_MINOR 47 #define STRINGIZE2(s) #s #define STRINGIZE(s) STRINGIZE2(s) #define VERSION_STRING "v" STRINGIZE(VERSION_MAJOR) \ "." STRINGIZE(VERSION_MINOR) #include &lt;stdio.h&gt; int main() { printf ("%s\n", VERSION_STRING); return 0; } </code></pre> </blockquote> http://stackoverflow.com/questions/191592/how-do-i-get-rid-of-the-mouse-cursor-in-full-screen-exclusive-mode/192075#192075 1 Answer by davenpcj for How do I get rid of the mouse cursor in full-screen exclusive mode? davenpcj 2008-10-10T16:12:37Z 2008-10-10T16:23:02Z <p>One developer found a way around it by creating a one pixel cursor out of a transparent GIF.</p> <p><a href="http://sevensoft.livejournal.com/23460.html" rel="nofollow">http://sevensoft.livejournal.com/23460.html</a></p> <p>I know you tried that, but his is specifically addressing the issue of full-screen mode, exactly as you say, so perhaps there's something he's done that you haven't.</p> http://stackoverflow.com/questions/131406/what-is-the-best-method-to-convert-to-an-integer-in-javascript/131421#131421 3 Answer by davenpcj for What is the best method to convert to an Integer in JavaScript? davenpcj 2008-09-25T04:00:09Z 2008-10-07T15:32:53Z <p>You can use Number(a).toFixed(0);</p> <p>Or even just a.toFixed(0);</p> <p><strong>Edit:</strong></p> <p>That's rounding to 0 places, slightly different than truncating, and as someone else suggested, toFixed returns a string, not a raw integer. Useful for display purposes.</p> <pre><code>var num = 2.7; // typeof num is "Number" num.toFixed(0) == "3" </code></pre> http://stackoverflow.com/questions/32897/do-java-multi-line-comments-account-for-strings/143915#143915 0 Answer by davenpcj for Do Java multi-line comments account for strings? davenpcj 2008-09-27T16:06:11Z 2008-09-27T16:06:11Z <p>I often use only <code>//</code> for inline commments, and use <code>/* */</code> only for commenting out large blocks the way you have.</p> <p>A lot of developers will still use /* */ for inline comments, because that's what they're familiar with, but they all run into problems like this one, in C it didn't matter as much because you could #if 0 the stuff away.</p> http://stackoverflow.com/questions/141758/gdi-has-been-accelerated-does-anyone-know-when-this-happened/142705#142705 1 Answer by davenpcj for GDI has been accelerated. Does anyone know when this happened? davenpcj 2008-09-27T01:27:02Z 2008-09-27T07:47:25Z <p>A lot of the 2D stuff has been accelerated for some time, each new major version of windows has changed the way display drivers have worked. I believe it was with XP that windows revamped it's window manager layer. Hard to compare, really, since XP is more similar to windows 2000/NT than any earlier versions.</p> <p>Some more info on wikipedia, <a href="http://en.wikipedia.org/wiki/Development_of_Windows_XP" rel="nofollow">Development of Windows XP</a>.</p> <p>Windows 2000, certainly, was the first NT-kernel-based windows to include DirectX, and had some graphical improvements as well. <a href="http://en.wikipedia.org/wiki/Windows_2000" rel="nofollow">Windows 2000 (wikipedia)</a></p> <p>I don't believe there have been major changes to the display driver model/2D subsystem between releases. So if you noticed a change like that, it's likely due to something nVidia did.</p> http://stackoverflow.com/questions/142693/how-can-i-write-software-that-does-bank-account-transfers/142715#142715 1 Answer by davenpcj for How can I write software that does bank account transfers? davenpcj 2008-09-27T01:34:36Z 2008-09-27T01:34:36Z <p>Paypal has a fairly accessible API you can use within your program to accomplish some of this.</p> http://stackoverflow.com/questions/141769/what-is-the-best-tool-for-creating-user-guides-with-screenshots-on-windows/142671#142671 0 Answer by davenpcj for What is the best tool for creating user guides with screenshots on Windows? davenpcj 2008-09-27T01:06:29Z 2008-09-27T01:06:29Z <p>Tip for creating user guide screen shots: Alt+printscreen will put a screenshot of only the current window on the clipboard. Very useful for dialog boxes and the like.</p> http://stackoverflow.com/questions/142508/how-do-i-check-os-with-a-preprocessor-directive/142522#142522 0 Answer by davenpcj for How do I check OS with a preprocessor directive? davenpcj 2008-09-26T23:52:06Z 2008-09-26T23:52:06Z <p>Some compilers will generate #defines that can help you with this. Read the compiler documentation to determine what they are. MSVC defines one that's <code>__WIN32__</code>, GCC has some you can see with --show-defines.</p> http://stackoverflow.com/questions/142261/mangling-file-and-line-in-code-for-quoting/142376#142376 0 Answer by davenpcj for mangling __FILE__ and __LINE__ in code for quoting? davenpcj 2008-09-26T22:35:41Z 2008-09-26T22:35:41Z <p>A simpler solution would be to keep a global static "error location" variable.</p> <pre><code>#ifdef DEBUG #define trace_here(version) printf("[%d]%s:%d {%d}\n", version, __FILE__, __LINE__, errloc++); #else #define trace_here(version) printf("{%lu}\n", version&lt;&lt;16|errloc++); #endif </code></pre> <p>Or without the printf.. Just increment the errloc everytime you cross a tracepoint. Then you can correlate the value to the line/number/version spit out by your debug builds pretty easily.</p> <p>You'd need to include version or build number, because those error locations could change with any build.</p> <p>Doesn't work well if you can't reproduce the code paths.</p> http://stackoverflow.com/questions/142261/mangling-file-and-line-in-code-for-quoting/142344#142344 0 Answer by davenpcj for mangling __FILE__ and __LINE__ in code for quoting? davenpcj 2008-09-26T22:25:03Z 2008-09-26T22:25:03Z <p>Well... you could use something like:</p> <pre><code>((*(int*)__FILE__ &amp;&amp; 0xFFFF0000) | version &lt;&lt; 8 | __LINE__ ) </code></pre> <p>It wouldn't be perfectly unique, but it might work for what you want. Could change those ORs to +, which might work better for some things.</p> <p>Naturally, if you can actually create a hashcode, you'll probably want to do that.</p> http://stackoverflow.com/questions/142016/c-c-structure-offset 5 C/C++ Structure offset davenpcj 2008-09-26T21:15:16Z 2008-09-26T21:32:15Z <p>I'm looking for a piece of code that can tell me the offset of a field within a structure without allocating an instance of the structure.</p> <p>IE: given</p> <pre><code>struct mstct { int myfield; int myfield2; }; </code></pre> <p>I could write:</p> <pre><code>mstct thing; printf("offset %lu\n", (unsigned long)(&amp;thing.myfield2 - &amp;thing)); </code></pre> <p>And get "offset 4" for the output. How can I do it without that "mstct thing" declaration/allocating one?</p> <p>I know that &amp;&lt;struct&gt; does not always point at the first byte of the first field of the structure, I can account for that later.</p> http://stackoverflow.com/questions/544398/properly-bind-a-windows-forms-datagrid-to-an-array/1621930#1621930 Comment by davenpcj on Properly bind a Windows Forms Datagrid to an array davenpcj 2009-11-04T17:43:01Z 2009-11-04T17:43:01Z I usually prefer to write for the broadest audience possible. Since mainstream support ended October 2008, you're probably right. MS continues to support .Net 1.1 until July 2015. But at the time I wrote the question, 1.1 was all I had, and I didn't want to download the 354MB for the 2.0 SDK. Or the entire VS2005 setup. http://stackoverflow.com/questions/1291309/css-issue-ahover-not-working-with-ie-css-ninja-needed/1291327#1291327 Comment by davenpcj on CSS issue: a:hover not working with IE (css Ninja needed) davenpcj 2009-10-01T16:48:53Z 2009-10-01T16:48:53Z I've been trying to find an answer for hover on button elements in IE7 everywhere; and everyone has the same &quot;use javascript&quot; answer I don't like. Adding the HTML 4.0 DTD worked like a champ. Thanks! http://stackoverflow.com/questions/1226144/firebug-net-panel-logs/1226237#1226237 Comment by davenpcj on Firebug Net Panel Logs davenpcj 2009-08-21T18:34:47Z 2009-08-21T18:34:47Z Does work with Firebug 1.4.2 on FF 3.5.2, I was trying to use it to track data transferred by a frame that reloads itself. It didn't work for my purposes, but it did track successive page loads in firefox. HttpWatch did what I wanted, though the output isn't as nice as firebug. http://stackoverflow.com/questions/707447/single-xmlhttprequest-object-to-make-multiple-requests/707479#707479 Comment by davenpcj on Single XMLHTTPRequest object to make multiple requests. davenpcj 2009-07-26T04:12:05Z 2009-07-26T04:12:05Z Multiple subsequent requests can be made with a single XMLHTTPRequest object. Though it really is much more reliable to create a new one. http://stackoverflow.com/questions/951832/what-license-should-be-on-sample-code/1098626#1098626 Comment by davenpcj on What license should be on sample code? davenpcj 2009-07-08T15:22:27Z 2009-07-08T15:22:27Z <a href="http://www.gnu.org/copyleft/lesser.html" rel="nofollow">gnu.org/copyleft/lesser.html</a> Upvoted, because I think it's as close as I can find, but it still has some issues. Producing a &quot;Combined Work&quot; requires providing enough of your application in linkable form to relink it (Clause 4d). 4d1 allows using a shared library instead, which is closer, but that doesn't work all the time, because some projects don't have replacable libraries. Think firmware, kiosks, phone apps, anywhere the base platform is closed. http://stackoverflow.com/questions/1075666/how-do-i-create-and-use-a-byte-array-in-perl/1075885#1075885 Comment by davenpcj on How do I create and use a byte array in perl? davenpcj 2009-07-08T14:35:41Z 2009-07-08T14:35:41Z From the perldoc on cpan: &quot;Since this module has to pack() for each STORE and unpack() for each FETCH, it is much slower than the native array&quot;, so I'm not sure that's much better, even if it is much friendlier than naked pack/unpack. http://stackoverflow.com/questions/343675/what-are-your-pros-and-cons-of-git-after-having-used-it/343691#343691 Comment by davenpcj on What are your pros and cons of git after having used it? davenpcj 2009-06-13T14:00:47Z 2009-06-13T14:00:47Z TortiseGIT seems to work great, if you like Explorer integration. http://stackoverflow.com/questions/27972/are-httponly-cookies-a-viable-option-for-an-ajax-website/29171#29171 Comment by davenpcj on Are HttpOnly cookies a viable option for an AJAX website? davenpcj 2009-06-11T12:35:01Z 2009-06-11T12:35:01Z But you didn't answer the question? http://stackoverflow.com/questions/951832/what-license-should-be-on-sample-code Comment by davenpcj on What license should be on sample code? davenpcj 2009-06-06T19:46:00Z 2009-06-06T19:46:00Z @Shree: The problem is not sale, but the legal burden of having to provide the rest of your proprietary code. http://stackoverflow.com/questions/951832/what-license-should-be-on-sample-code Comment by davenpcj on What license should be on sample code? davenpcj 2009-06-04T20:06:04Z 2009-06-04T20:06:04Z Share Alike — If you alter, transform, or build upon this work, you may distribute the resulting work only under the same or similar license to this one. Meaning you can't distribute your larger work under your own for-fee nontransferrable license. http://stackoverflow.com/questions/951832/what-license-should-be-on-sample-code/951935#951935 Comment by davenpcj on What license should be on sample code? davenpcj 2009-06-04T19:00:09Z 2009-06-04T19:00:09Z Part of the reason I wanted to ask here is because I suspect the cc-wiki license SO is using might be improved. http://stackoverflow.com/questions/15496/hidden-features-of-java/64618#64618 Comment by davenpcj on Hidden Features of Java davenpcj 2009-06-03T20:00:14Z 2009-06-03T20:00:14Z This seems like more of a &quot;gotcha&quot; than a hidden feature, though there are ways it could be used as one, using this method wouldn't be a good idea. http://stackoverflow.com/questions/85992/how-do-i-enumerate-the-properties-of-a-javascript-object/731883#731883 Comment by davenpcj on How do I enumerate the properties of a javascript object? davenpcj 2009-04-21T15:00:45Z 2009-04-21T15:00:45Z Interesting, I suppose that means it's possible to NOT call the callback when redefining the forEach function, which could make enumerating the properties break. http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/36839#36839 Comment by davenpcj on Should a function have only one return statement ? davenpcj 2009-03-20T19:37:35Z 2009-03-20T19:37:35Z That's a complexity metric. Creates more edges (paths between blocks of code) http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/36714#36714 Comment by davenpcj on Should a function have only one return statement ? davenpcj 2009-03-20T19:35:39Z 2009-03-20T19:35:39Z I find this form to be much more readable as compared to having } } return; } at the end of the function. Takes its toll on compilers too, every level of nesting costs time and complexity to compile. Used to be that compilers only supported 8. I've seen code that made me wish that was still true.