User Jason Dagit - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T20:36:09Z http://stackoverflow.com/feeds/user/5113 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1178892/does-xcode-have-a-cursor-navigation-stack-like-visual-studio 0 Does XCode have a cursor navigation stack like Visual Studio? Jason Dagit 2009-07-24T16:58:32Z 2009-11-29T11:16:45Z <p>Visual Studio tracks cursor positions and lets you move forward and backward through these positions. For example, you can type Ctrl+- to navigate backwards and Ctrl+Shift- to navigate forwards.</p> <p>I see that XCode tracks the history of which files you've visited, but does it also allow me to go forward and backward through the cursor locations?</p> <p>The reason I ask is because I find that by using Command-Double left click, I visit function definitions (often in the same file), and then I want to quickly return to where I was previously in the same file. Because I'm in the same file the file history navigation is not useful. Currently I have to search through the code to figure out where I was, which is tedious.</p> <p>Thanks!</p> http://stackoverflow.com/questions/88302/macro-support-in-f/88328#88328 3 Answer by Jason Dagit for macro support in F# Jason Dagit 2008-09-17T22:26:48Z 2009-11-25T20:15:53Z <p>Well, F# is based on OCaml and OCaml has a rather <a href="http://www.ocaml-tutorial.org/camlp4%5F3.10" rel="nofollow">extensive macro system</a>. Given the syntactic and semantic similarities of F# and OCaml you may be able to port over the Ocaml macro system to F#.</p> <p>Other than stealing Ocaml's macro system I'm unaware of a canned macro system for F#.</p> http://stackoverflow.com/questions/124865/xml-schema-validation-tool 5 XML Schema validation tool? Jason Dagit 2008-09-24T01:19:54Z 2009-11-25T16:32:29Z <p>At the office we are currently writing an application that will generate XML files against a schema that we were given. We have the schema in an .XSD file.</p> <p>Are there tool or libraries that we can use for automated testing to check that the generated XML matches the schema?</p> <p>We would prefer free tools that are appropriate for commercial use although we won't be bundling the schema checker so it only needs to be usable by devs during development.</p> <p>Our development language is C++ if that makes any difference, although I don't think it should as we could generate the xml file and then do validation by calling a separate program in the test.</p> <p>Thanks!</p> http://stackoverflow.com/questions/68504/what-are-my-ide-editor-choices-for-haskell 25 What are my IDE/Editor choices for Haskell? Jason Dagit 2008-09-16T01:21:28Z 2009-11-25T14:08:51Z <p>I typically use Emacs with hasktags for editing Haskell but I would like to enumerate all the choices and hopefully get feedback on each.</p> <ul> <li><a href="http://www.haskell.org/haskell-mode/" rel="nofollow">Emacs</a></li> <li><a href="http://www.cs.kent.ac.uk/people/staff/cr3/toolbox/haskell/Vim/index.html" rel="nofollow">VIM</a></li> <li><a href="http://www.haskell.org/visualhaskell/" rel="nofollow">Visual Haskell</a></li> <li><a href="http://eclipsefp.sourceforge.net/" rel="nofollow">EclipseFP</a></li> <li><a href="http://leksah.org/" rel="nofollow">leksah</a></li> <li><a href="http://www.vim.org/scripts/script.php?script_id=2356" rel="nofollow">SHIM</a> (wasn't this for emacs originially? did the project die?)</li> <li><a href="http://www.haskell.org/haskellwiki/HIDE" rel="nofollow">HIDE</a></li> <li><a href="http://www.haskell.org/haskellwiki/Yi" rel="nofollow">yi</a></li> </ul> <p>If you've used one of the above, please tell me what you liked and didn't like about using it as a Haskell editor. I'm especially looking for something that gives me control over lots of the project management issues. Hopefully it can quickly navigate to source, show me haddock snippets on demand, look up type signatures and even help with refactoring. Further integration with hoogle and lambdabot are appreciated as well.</p> http://stackoverflow.com/questions/193469/how-to-make-visual-studio-pause-after-executing-a-console-app-in-debug-mode 8 How to make Visual Studio Pause after executing a console app in debug mode? Jason Dagit 2008-10-11T00:30:31Z 2009-11-12T23:46:24Z <p>I have a collection of boost unit tests I want to run as a console application.</p> <p>When I'm working on the project and I run the tests I would like to be able to debug the tests and I would like to have the console stay open after the tests run.</p> <p>I see that if I run in release mode the console window stays up after the program exits, but in debug mode this is not the case.</p> <p>I do not want to add 'system("pause");' or any other hacks like reading a character to my program. I just want to make Visual Studio pause after running the tests with debugging like it would if I were running in release mode. I would also like it if the output of tests were captured in one of Visual Studio's output windows but that also seems to be harder than it should be.</p> <p>How can I do this?</p> <p>Thanks!</p> http://stackoverflow.com/questions/118260/how-to-start-idle-python-editor-without-using-the-shortcut-on-windows-vista 2 How to start IDLE (Python editor) without using the shortcut on Windows Vista? Jason Dagit 2008-09-22T23:44:21Z 2009-10-08T11:30:52Z <p>I'm trying to teach Komodo to fire up <a href="http://en.wikipedia.org/wiki/IDLE%5F%28Python%29" rel="nofollow">IDLE</a> when I hit the right keystrokes. I can use the exact path of the shortcut in start menu in the Windows Explorer location bar to launch IDLE so I was hoping Komodo would be able to use it as well. But, giving this path to Komodo causes it to say that 1 is returned. This appears to be a failure as IDLE doesn't start up.</p> <p>I thought I'd avoid the shortcut and just use the exact path. I go to the start menu, find the shortcut for IDLE, right click to look at the properties. The target is grayed out, but says "Python 2.5.2". The "Start in" is set to, "C:\Python25\". The "Open File Location" button is also grayed out.</p> <p>How do I find out where this shortcut is really pointing? I have tried starting python.exe and pythonw.exe both in C:\Python25, but neither starts up IDLE.</p> http://stackoverflow.com/questions/105834/does-the-jvm-prevent-tail-call-optimizations 5 Does the JVM prevent tail call optimizations? Jason Dagit 2008-09-19T21:35:35Z 2009-06-20T19:12:37Z <p>I saw this on a <a href="http://stackoverflow.com/questions/105710">question</a>:</p> <blockquote> <p>Scala in particular doesn't support tail-call elimination except in self-recursive functions, which limits the kinds of composition you can do (this is a fundamental limitation of the JVM).</p> </blockquote> <p>Is this true? If so, what is it about the JVM that creates this fundamental limitation?</p> http://stackoverflow.com/questions/883998/how-to-determine-which-table-of-a-multitable-view-are-updatable 1 How to determine which table of a multitable view are updatable? Jason Dagit 2009-05-19T17:12:32Z 2009-05-27T23:44:42Z <p>Update: My problem doesn't seem to be with the SQL server. I executed an update statement inside the database manually against the view and I was able to update the Bar table. I'll close this and research the OleDbDataAdapters more since I think the problem lies with them.</p> <p>This question applies to MS SQL Server 2000. <strong>How do I determine which table of the multitable view can be modified?</strong></p> <p>I have the following view:</p> <pre><code>CREATE VIEW dbo.MyView AS SELECT dbo.Foo.Id, dbo.Bar.Id, dbo.Foo.column1, dbo.Foo.column2, dbo.Foo.column3, dbo.Bar.column1, dbo.Bar.column2, dbo.Bar.column3 FROM dbo.Bar INNER JOIN dbo.Foo ON dbo.Bar.Id = dbo.Foo.ForeignId </code></pre> <p>When I update this view, (using VB.NET OleDbDataAdapters), I can update columns of Foo, but not columns of Bar. My investigation into this tells me that in a multitable view like this that MS SQL server only allows you to update one of the tables. So my question is, how does SQL server determine which table can be updated?</p> <p>I tried a test where I edit the fields of a particular row from the view. Afterwards, I used the OleDbDataAdapter to update the view. Only the edits to the Foo table were accepted. The edits to the Bar table were ignored (no exception thrown).</p> <p><strong><em>Is there a way to predict which of the tables can be updated or a way to control which one?</em></strong> What if I wanted Bar to be the updateable table instead of Foo?</p> <p>Update: I found this on google, MS SQL Server 2000 Unleased:</p> <p><a href="http://books.google.com/books?id=G2YqBS9CQ0AC&amp;pg=RA1-PA713&amp;lpg=RA1-PA713&amp;dq=ms+sql+server+" rel="nofollow">http://books.google.com/books?id=G2YqBS9CQ0AC&amp;pg=RA1-PA713&amp;lpg=RA1-PA713&amp;dq=ms+sql+server+</a>"multitable+view"++updated&amp;source=bl&amp;ots=ZuQXIlEPbO&amp;sig=JbgdDe5yU73aSkxh-SLDdtMYZDs&amp;hl=en&amp;ei=b-0SSq-aHZOitgPB38zgDQ&amp;sa=X&amp;oi=book_result&amp;ct=result&amp;resnum=1#PRA1-PA713,M1</p> <p>(For some reason the URL I'm trying to paste doesn't work with this site, sorry that you have to copy&amp;paste.)</p> <p>Which says:</p> <ul> <li>An update through a multitable view <strong><em>cannot</em></strong> affect more than <strong><em>one</em></strong> underlying base table.</li> <li>A delete cannot be executed against multitable views.</li> </ul> <p>But, I don't yet see an answer to my question.</p> <p>Again, my question is: </p> <p><strong><em>How do I determine which table of the multitable view can be modified?</em></strong></p> <p>I realize I can write two update statements one for each table. My concern is different. I need to audit code that uses views like the one above and does updates on the views. I was hoping to find a way to determine which parts of the updates will be silently ignored.</p> <p>Example:</p> <p>I edit Bar.Column1 and then call the Update() method of the OleDbDataAdapter. This results in the Bar table not being modified nor is an exception thrown. If I edit Foo.Column2 then call Update() the Foo table does get modified.</p> http://stackoverflow.com/questions/917643/using-floats-in-windows-dll-function-parameters/917754#917754 0 Answer by Jason Dagit for Using floats in Windows DLL function parameters. Jason Dagit 2009-05-27T20:02:15Z 2009-05-27T20:02:15Z <p>The trick is to figure out how to "marshall" the value from the calling language into the type expected by the function in the dll. Many times the data type in the calling language will be similar but slightly different than the type used by C. When that happens you need a way to copy the value into the C type and then pass that to the DLL.</p> <p>Hopefully this article from the MSDN can get you started:</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.marshal.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.marshal.aspx</a></p> http://stackoverflow.com/questions/916492/visual-studio-2005-oledbconnection-throws-invalid-authorization-specification 0 Visual Studio 2005 - OleDbConnection throws "Invalid authorization specification" in Form Designer, how to avoid supplying a username/password? Jason Dagit 2009-05-27T15:43:37Z 2009-05-27T17:04:18Z <p>I have a form with an OleDbConnection object on it. This form fails to load in the Form Designer with the message:</p> <pre> One or more errors encountered while loading the designer. The errors are listed below. Some errors can be fixed by rebuilding your project, while others may require code changes. Invalid authorization specification at ADODB.ConnectionClass.Open(String ConnectionString, String UserID, String Password, Int32 Options) ... (stack trace continues into user code) </pre> <p>I've tracked this down to the OleDbConnection string. If I hardcode in the server IP, username/password/dbinstance into the constructor of the GUI form then the form will load in the designer. At run-time it is not an issue because we require the user to provide the login details.</p> <p><strong>The question:</strong></p> <p><strong>Is it possible to use the OleDbConnection and the Form designer without supplying the database credentials in the source code of the form?</strong> For example, is there a property of the OleDbConnection or Form that I can set so that it doesn't need to access the database during Form design?</p> <p>My concern is that if we ever move the database server or change the login that the code will stop working in the designer.</p> http://stackoverflow.com/questions/916492/visual-studio-2005-oledbconnection-throws-invalid-authorization-specification/916838#916838 0 Answer by Jason Dagit for Visual Studio 2005 - OleDbConnection throws "Invalid authorization specification" in Form Designer, how to avoid supplying a username/password? Jason Dagit 2009-05-27T16:50:10Z 2009-05-27T17:04:18Z <p>After even more debugging, I see that the problem is actually with an ADODB.Connection object.</p> <pre><code>Dim adoConn As New ADODB.Connection() adoConn.ConnectionString = MyProject.GetConnStr() adoConn.Open() ' This line throws the exception </code></pre> <p>If I have the above code in the constructor <strong><em>or</em></strong> the Load event then it cannot be opened in the Form Designer (I get the error "invalid authorization specification"). For now I'm looking for a way to move this bit of initialization code to a place that it still gets called consistently but is not found by the Form designer.</p> http://stackoverflow.com/questions/48905/fundeps-and-gadts-when-is-type-checking-decidable 8 Fundeps and GADTs: When is type checking decidable? Jason Dagit 2008-09-07T23:46:50Z 2009-04-20T18:14:11Z <p>I was reading a research paper about Haskell and how HList is implemented and wondering when the techniques described are and are not decidable for the type checker. Also, because you can do similar things with GADTs, I was wondering if GADT type checking is always decidable.</p> <p>I would prefer citations if you have them so I can read/understand the explanations.</p> <p>Thanks!</p> http://stackoverflow.com/questions/216037/what-tools-are-there-for-functional-programming-in-c/216047#216047 0 Answer by Jason Dagit for What tools are there for functional programming in C? Jason Dagit 2008-10-19T05:24:49Z 2008-10-19T05:24:49Z <p>The main thing that comes to mind is the use of code generators. Would you be willing to program in a different language that provided the functional programming and then generate the C code from that?</p> <p>If that's not an attractive option, then you could abuse CPP to get part of the way there. The macro system should let you emulate some functional programming ideas. I've heard tell that gcc is implemented this way but I've never checked.</p> <p>C can of course pass functions around using function pointers, the main problems are lack of closures and the type system tends to get in the way. You could explore more powerful macro systems than CPP such as M4. I guess ultimately, what I'm suggesting is that true C isn't up to the task without great effort but you could extend C to make it be up to the task. That extension would look the most like C if you use CPP or you could go to the other end of the spectrum and generate C code from some other language.</p> http://stackoverflow.com/questions/205957/how-to-deal-with-an-inept-and-self-centered-programmer/206003#206003 1 Answer by Jason Dagit for How to deal with an inept and self-centered programmer? Jason Dagit 2008-10-15T19:06:24Z 2008-10-15T19:06:24Z <blockquote> <ul> <li>he can't formulate a specific, concrete question i can help him with ... usually you have to pose a series of counter-question to get the specifics (eg "Which ID is it?" "What command are you using?" "Is it just one or all of them?" "When does it happen?" "Are you able to reproduce it?" "What brings you to this conclusion?")</li> <li>he is vague in describing his problems and answering questions (often his descriptions include: "maybe" "possibly" "could be" "i believe" "sometimes" ... i think he's hiding something, i'm just not sure what or why)</li> </ul> </blockquote> <p>I think these two points are just something you'll have to assume when dealing with most people. I can understand that if you're already frustrated with him that these exacerbate the problem and yet they seem like common communication hurdles.</p> <p>Have you tried having a meeting about these communication problems with him and his direct manager? If you could make your case in a minimally non-confrontational way I think that may help.</p> <p>Overall it sounds like this employee needs to grow and mature as a professional. You would be helping yourself and others if you could work to create an environment where this employee is more or less forced to grow. I guess the alternative is that he or she leaves.</p> http://stackoverflow.com/questions/199966/how-do-you-use-gcc-to-generate-assembly-code-in-intel-syntax/200028#200028 6 Answer by Jason Dagit for How do you use gcc to generate assembly code in Intel syntax? Jason Dagit 2008-10-14T04:36:30Z 2008-10-14T04:42:03Z <p>Have you tried this?</p> <pre><code>gcc -S -masm=intel test.c </code></pre> <p>Untested, but I found it in this <a href="http://bytes.com/forum/thread215327.html" rel="nofollow">forum</a> where someone claimed it worked for them.</p> <p>I just tried this on the mac and it failed, so I looked in my man page:</p> <pre><code> -masm=dialect Output asm instructions using selected dialect. Supported choices are intel or att (the default one). Darwin does not support intel. </code></pre> <p>It may work on your platform.</p> <p>I also see this <a href="http://giulio.hewle.com/gstuff/dev/att2intel.sed" rel="nofollow">sed script</a> which is not perfect, but may work for you.</p> http://stackoverflow.com/questions/61996/typesetting-programs/159250#159250 1 Answer by Jason Dagit for Typesetting programs Jason Dagit 2008-10-01T19:16:28Z 2008-10-01T19:16:28Z <p>I really like LaTeX for type setting, but I haven't been really impressed with using it to typeset code snippets. It seems like you should usually be able to just drop in some code and have a tool do the formatting or coloring.</p> <p>I'm currently writing a paper which involves a fair bit of Haskell code and for that purpose I'm using the <a href="http://www.pvv.ntnu.no/~berland/latex/docs/listings.pdf" rel="nofollow">listings package</a>, but really it just gives me a nice verbatim environment. No coloring, no cross linking. The most I can seem to get out of the listings package for my purpose is that you can replace some tokens in the source text with latex symbols.</p> <p>The best I've seen is something like <a href="http://qbnz.com/highlighter/" rel="nofollow">GeShi highlight</a>, but this assumes that php fits your type setting workflow.</p> http://stackoverflow.com/questions/125463/bad-oo-design-problem-i-need-some-general-functionality-in-java-but-dont-know/125494#125494 3 Answer by Jason Dagit for Bad OO design problem - I need some general functionality in Java but don't know how to implement it Jason Dagit 2008-09-24T05:01:23Z 2008-09-24T05:01:23Z <p>When I read your question it really seems like you are describing a place to use the <a href="http://en.wikipedia.org/wiki/Visitor_pattern" rel="nofollow">visitor pattern</a>.</p> <p>The reason the visitor pattern should work here is an idea known as double dispatch. Your UI code will make a call and pass a reference to itself, then the class or interface ends up calling the original caller. Since the class or interface is the one making the method call it knows its own type and how to do the work specific to its type.</p> <p>Of course, my description is insufficient to implement this technique so you'll want to read up on it. I think it is well documented. For example, I found this in about 2 seconds in java that should get you started: <a href="http://www.javaworld.com/javaworld/javatips/jw-javatip98.html" rel="nofollow">http://www.javaworld.com/javaworld/javatips/jw-javatip98.html</a></p> http://stackoverflow.com/questions/125269/how-would-you-handle-users-who-dont-read-dialog-boxes/125285#125285 1 Answer by Jason Dagit for How would you handle users who don't read dialog boxes? Jason Dagit 2008-09-24T03:37:32Z 2008-09-24T03:37:32Z <p>I think you probably want to read this paper: <a href="ftp://ftp.cs.orst.edu/pub/burnett/jvlc-interruptions-2006.pdf" rel="nofollow">"Impact of High-Intensity Negotiated-Style Interruptions on End-User Debugging"</a>, T. J. Robertson, Joseph Lawrance, and Margaret Burnett, Journal of Visual Languages and Computing 17(2), 187-202, April 2006.</p> <p>It asked a similar question. The result was, let the user know you want their attention and then sit back and wait for the user to respond. Don't interrupt the user though, that's not what he or she wants.</p> http://stackoverflow.com/questions/124865/xml-schema-validation-tool/124911#124911 0 Answer by Jason Dagit for XML Schema validation tool? Jason Dagit 2008-09-24T01:34:50Z 2008-09-24T02:39:38Z <p>I found this blog post by googling: <a href="http://marknelson.us/2002/01/01/xml-schema-validation/" rel="nofollow">http://marknelson.us/2002/01/01/xml-schema-validation/</a></p> <p>It's a bit dated, but looks like an alternative with code samples to using libxml.</p> http://stackoverflow.com/questions/119414/how-would-you-unittest-a-memory-allocator/119522#119522 10 Answer by Jason Dagit for How would you unittest a memory allocator? Jason Dagit 2008-09-23T07:16:06Z 2008-09-23T07:16:06Z <p>Highly testable code tends to be structured differently than other code.</p> <p>You describe several tasks that you want an allocator to do:</p> <ul> <li>coalescing free blocks</li> <li>reusing free blocks on next allocations</li> <li>returning excess free memory to the system</li> <li>asserting that the allocation policy (e.g. first-fit) really is respected</li> </ul> <p>While you might write your allocation code to be very coupled, as in doing several of those things inside one function body, you could also break each task out into code that is a testable chunk. This is almost an inversion of what you may be used to. I find that testable code tends to be very transparent and built from more small pieces.</p> <p>Next, I would say is that within reason automated testing of any sort is better than no automated testing. I would definitely focus more on making sure your tests do something useful than worrying if you've properly used mocks, whether you've ensured it's properly isolated and whether it's a true unit test. Those are all admirable goals that will hopefully make 99% of tests better. On the other hand, please use common sense and your best engineering judgment to get the job done.</p> <p>Without code samples I don't think I can be more specific.</p> http://stackoverflow.com/questions/110390/whats-a-good-common-lisp-implementation-for-windows/110394#110394 7 Answer by Jason Dagit for What's a good Common Lisp implementation for Windows? Jason Dagit 2008-09-21T06:28:19Z 2008-09-21T06:28:19Z <p>I think the best Common Lisp available is SBCL, but as you can see from the <a href="http://www.sbcl.org/platform-table.html" rel="nofollow">port page</a> the Win32 version is still considered in progress (although, I've used in just fine in windows in the past).</p> http://stackoverflow.com/questions/105710/what-is-a-good-functional-language-on-which-to-build-a-web-service/105783#105783 4 Answer by Jason Dagit for What is a good functional language on which to build a web service? Jason Dagit 2008-09-19T21:27:58Z 2008-09-21T01:27:12Z <p>Haskell:</p> <p>Take a look at this question: <a href="http://stackoverflow.com/questions/51022/">What is the simplest way to write web apps in Haskell?</a></p> <p>Basically, <a href="http://www.informatik.uni-freiburg.de/~thiemann/haskell/WASH/" rel="nofollow">WASH</a>, <a href="http://happs.org/" rel="nofollow">HAppS</a> and <a href="http://darcs.fh-wedel.de/janus" rel="nofollow">Janus</a> are the three big ones in Haskell at the moment. My vote is for HAppS which has the best <a href="http://happstutorial.com:5001/" rel="nofollow">tutorial</a> at the moment.</p> <p>There is also <a href="http://www.cs.chalmers.se/~d00nibro/hsp/" rel="nofollow">HSP</a> but I haven't looked at it or thought about it recently.</p> http://stackoverflow.com/questions/104960/are-threre-any-orm-tools-for-haskell/106236#106236 3 Answer by Jason Dagit for Are threre any ORM tools for Haskell? Jason Dagit 2008-09-19T22:48:34Z 2008-09-19T22:58:58Z <p>The library I have in mind is not an ORM, but it may still do what you want.</p> <p>If you want something that makes your database accesses safe while integrating things into your program nicely then try out <a href="http://www.haskell.org/haskellwiki/Applications_and_libraries/Database_interfaces/HaskellDB" rel="nofollow">HaskellDB</a>. It basically looks at your schema, generates some data structures, and then gives you type safe ways to query. It's been around for quite a while and the community opinion is that it's good and stable.</p> <p>To use it, you'll need some underlying Haskell DB library like HSQL.</p> <p>Good luck!</p> http://stackoverflow.com/questions/106058/practical-example-of-lisps-flexibility/106088#106088 5 Answer by Jason Dagit for Practical example of Lisp's flexibility? Jason Dagit 2008-09-19T22:16:07Z 2008-09-19T22:16:07Z <p>The best example I can think of that is widely available is the book by Paul Graham, <a href="http://www.paulgraham.com/onlisp.html" rel="nofollow">On Lisp</a>. The full PDF can be downloaded from the link I just gave. You could also try <a href="http://gigamonkeys.com/book/" rel="nofollow">Practical Common Lisp</a> (also fully available on the web).</p> <p>I have a lot of unpractical examples. I once wrote a program in about 40 lines of lisp which could parse itself, treat its source as a lisp list, do a tree traversal of the list and build an expression that evaluated to WALDO if the waldo identifier existed in the source or evaluate to nil if waldo was not present. The returned expression was constructed by adding calls to car/cdr to the original source that was parsed. I have no idea how to do this in other languages in 40 lines of code. Perhaps perl can do it in even fewer lines.</p> http://stackoverflow.com/questions/106033/how-do-i-call-a-net-assembly-from-c-c/106060#106060 0 Answer by Jason Dagit for How do I call a .NET assembly from C/C++? Jason Dagit 2008-09-19T22:10:52Z 2008-09-19T22:10:52Z <p>If the low level parts in in C++ then typically you call that from the C# code passing in the values that are needed. This should work in the standard way that you're probably accustomed to. You'll need to read up on marshalling for example.</p> <p>You could look at this <a href="http://blogs.msdn.com/deeptanshuv/archive/2005/06/26/432870.aspx" rel="nofollow">blog</a> to get some concrete details.</p> http://stackoverflow.com/questions/94952/python-implementation-of-parsec 3 Python implementation of Parsec? Jason Dagit 2008-09-18T17:54:39Z 2008-09-19T18:58:07Z <p>I recently wrote a parser in Python using Ply (it's a python reimplementation of yacc). When I was almost done with the parser I discovered that the grammar I need to parse requires me to do some look up during parsing to inform the lexer. Without doing a look up to inform the lexer I cannot correctly parse the strings in the language.</p> <p>Given than I can control the state of the lexer from the grammar rules I think I'll be solving my use case using a look up table in the parser module, but it may become too difficult to maintain/test. So I want to know about some of the other options.</p> <p>In Haskell I would use Parsec, a library of parsing functions (known as combinators). Is there a Python implementation of Parsec? Or perhaps some other production quality library full of parsing functionality so I can build a context sensitive parser in Python?</p> <p>EDIT: All my attempts at context free parsing have failed. For this reason, I don't expect ANTLR to be useful here.</p> http://stackoverflow.com/questions/98768/should-i-impose-a-maximum-length-on-passwords/98857#98857 2 Answer by Jason Dagit for Should I impose a maximum length on passwords? Jason Dagit 2008-09-19T02:04:19Z 2008-09-19T02:04:19Z <p>Allowing for completely unbounded password length has one major drawback if you accept the password from untrusted sources.</p> <p>The sender could try to give you such a long password that it results in a denial of service for other people. For example, if the password is 1GB of data and you spend all your time accept it until you run out of memory. Now suppose this person sends you this password as many times as you are willing to accept. If you're not careful about the other parameters involved this could lead to a DoS attack.</p> <p>Setting the upper bound to something like 256 chars seems overly generous by today's standards.</p> http://stackoverflow.com/questions/98650/what-is-the-strict-aliasing-rule/98666#98666 0 Answer by Jason Dagit for What is the strict aliasing rule? Jason Dagit 2008-09-19T01:33:31Z 2008-09-19T01:39:05Z <p>Strict aliasing is not allowing different pointer types to the same data.</p> <p><a href="http://www.cellperformance.com/mike_acton/2006/06/understanding_strict_aliasing.html" rel="nofollow">This article</a> should help you understand the issue in full detail.</p> http://stackoverflow.com/questions/97971/getting-started-with-an-ide/97994#97994 3 Answer by Jason Dagit for Getting Started with an IDE? Jason Dagit 2008-09-18T23:28:51Z 2008-09-18T23:28:51Z <p>One thing that helped me transition from Emacs to other IDEs was the idea that IDEs are terrible editors. I scoffed at that person but I now see their point.</p> <p>An editor, like Emacs or Vim, can really focus on being a good editor first and foremost.</p> <p>An IDE, like Visual Studio or Eclipse, really focuses on being a good project management tool with a built in way to modify files.</p> <p>I find that keeping the above in mind (and keeping Emacs handy) helps me to not get frustrated when the IDE du jour is not meeting my needs.</p> http://stackoverflow.com/questions/97388/what-is-the-best-exercise-for-good-posture/97436#97436 4 Answer by Jason Dagit for What is the Best Exercise for Good Posture? Jason Dagit 2008-09-18T21:59:56Z 2008-09-18T23:20:17Z <p>The best workout I've ever had for my muscular skeletal system was yoga by far. I'm sure taichi, pilates, and lots of other things are just as good. The main point is probably just to get out there and do something which is known to be healthy and not worry about picking the best.</p> <p>The main problem with doing weights and other forms of resistance training with respect to improving posture is that the muscles that need to be strengthened are typically unaffected by resistance training. Having a strong core will be good for you, but it's important to understand that your balance muscles need to improve as well.</p> <p>The balance muscles are hard to improve if you just go to the gym for 30 minutes a few times a week. I'm having a hard time finding the source where I learned this. Workouts like yoga and pilates force you to practice balance and they really do force you to work on these small muscles that traditional gym workouts tend to miss.</p> http://stackoverflow.com/questions/193469/how-to-make-visual-studio-pause-after-executing-a-console-app-in-debug-mode/1273876#1273876 Comment by Jason Dagit on How to make Visual Studio Pause after executing a console app in debug mode? Jason Dagit 2009-08-20T19:44:50Z 2009-08-20T19:44:50Z Please read the full question: &quot;I do not want to add 'system(&quot;pause&quot;);' or any other hacks like reading a character to my program. I just want to make Visual Studio pause after running the tests with debugging like it would if I were running in release mode.&quot; http://stackoverflow.com/questions/61996/typesetting-programs/159250#159250 Comment by Jason Dagit on Typesetting programs Jason Dagit 2009-08-11T15:09:28Z 2009-08-11T15:09:28Z Not really. That's just someone commenting on their blog that they use the listings package. http://stackoverflow.com/questions/1178892/does-xcode-have-a-cursor-navigation-stack-like-visual-studio/1179089#1179089 Comment by Jason Dagit on Does XCode have a cursor navigation stack like Visual Studio? Jason Dagit 2009-07-24T17:50:04Z 2009-07-24T17:50:04Z I just played with this feature (because you mentioned it). For me it works to activate the file level navigation, but it doesn't appear to track my cursor positions within a file. To see this, open a file, and use the pull down menu to visit a few function and click around all with one file. You'll see that the menu options for this are greyed out. Now visit a new file in the same window, it becomes active in the menu. http://stackoverflow.com/questions/870919/why-are-haskell-algebraic-data-types-closed/871240#871240 Comment by Jason Dagit on Why are Haskell algebraic data types "closed"? Jason Dagit 2009-05-27T19:54:05Z 2009-05-27T19:54:05Z I was going to add a reference to this. I'm glad to see someone else mentioning it! http://stackoverflow.com/questions/883998/how-to-determine-which-table-of-a-multitable-view-are-updatable Comment by Jason Dagit on How to determine which table of a multitable view are updatable? Jason Dagit 2009-05-19T19:36:24Z 2009-05-19T19:36:24Z I should add, that I understand that updating the view causes the base tables to be updated. I realize the view itself does not hold any data. Sorry if that was confusing in what I wrote! http://stackoverflow.com/questions/883998/how-to-determine-which-table-of-a-multitable-view-are-updatable/884264#884264 Comment by Jason Dagit on How to determine which table of a multitable view are updatable? Jason Dagit 2009-05-19T19:25:44Z 2009-05-19T19:25:44Z This only tells me how and when I can update multitable views. I'm more interested in understanding why the Bar table updates are ignored by the database and the Foo table updates are accepted. http://stackoverflow.com/questions/883998/how-to-determine-which-table-of-a-multitable-view-are-updatable/884278#884278 Comment by Jason Dagit on How to determine which table of a multitable view are updatable? Jason Dagit 2009-05-19T19:22:53Z 2009-05-19T19:22:53Z And, more to the point. I realize I can update the tables independently of the view. Instead, I wanted to find out how MS SQL Server determines which of the two tables I can update. The behavior I'm seeing is that changes to Bar are ignored but changes to Foo are saved. http://stackoverflow.com/questions/883998/how-to-determine-which-table-of-a-multitable-view-are-updatable/884278#884278 Comment by Jason Dagit on How to determine which table of a multitable view are updatable? Jason Dagit 2009-05-19T19:18:26Z 2009-05-19T19:18:26Z If I understand you, you are telling me to update each base table instead of updating the view. As far as I can tell, that defeats the purpose of the view, eg., the client code must know the structure of the base tables. http://stackoverflow.com/questions/883998/how-to-determine-which-table-of-a-multitable-view-are-updatable Comment by Jason Dagit on How to determine which table of a multitable view are updatable? Jason Dagit 2009-05-19T19:15:12Z 2009-05-19T19:15:12Z Because I use the the OleDbDataAdapter I'm not sure of the exact SQL syntax that is fed to the database. The data adapter pulls data directly from the view, so I had assumed it updates the view and not the individual tables. Do you know how I can check this? http://stackoverflow.com/questions/883998/how-to-determine-which-table-of-a-multitable-view-are-updatable/884025#884025 Comment by Jason Dagit on How to determine which table of a multitable view are updatable? Jason Dagit 2009-05-19T17:22:04Z 2009-05-19T17:22:04Z In my actual view I do include Bar.Id in the select. I'll update the question to match. Any other ideas? http://stackoverflow.com/questions/403218/does-c-net-support-idispatch-late-binding/489272#489272 Comment by Jason Dagit on Does C# .NET support IDispatch late binding? Jason Dagit 2009-03-19T00:06:42Z 2009-03-19T00:06:42Z This results in some truely ugly code, but at least it works :) http://stackoverflow.com/questions/403218/does-c-net-support-idispatch-late-binding Comment by Jason Dagit on Does C# .NET support IDispatch late binding? Jason Dagit 2009-03-19T00:05:56Z 2009-03-19T00:05:56Z This is a well written question. Thanks. http://stackoverflow.com/questions/282509/how-do-you-communicate-between-eclipse-declarative-services-and-views-contentpro/282519#282519 Comment by Jason Dagit on How do you communicate between eclipse declarative services and Views (ContentProviders) Jason Dagit 2008-11-11T23:35:39Z 2008-11-11T23:35:39Z I agree that singleton seems like a bad idea. I wish I could offer a real solution. http://stackoverflow.com/questions/215851/making-grub-automatically-boot-the-kernel Comment by Jason Dagit on Making GRUB automatically boot the kernel Jason Dagit 2008-10-19T10:27:24Z 2008-10-19T10:27:24Z I agree with Charles here. Put your OS an existing file system until your OS has a file system of its own. http://stackoverflow.com/questions/211216/hidden-features-of-haskell/213441#213441 Comment by Jason Dagit on Hidden features of Haskell Jason Dagit 2008-10-19T03:11:19Z 2008-10-19T03:11:19Z I think the following should still give this error: ignorefoo f = 1 where (Foo a) = f