User James Dean - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T10:13:46Z http://stackoverflow.com/feeds/user/7743 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1797817/can-one-configure-gdb-ddd-to-never-step-into-certain-functions 2 Can one configure gdb/ddd to never step into certain functions? James Dean 2009-11-25T15:45:26Z 2009-11-26T06:52:23Z <p>I have some infrastructure C++ code (containers, memory managers etc.) and I want the debugger to never step into those methods while debugging an application issue.</p> <p>I know this can be done with Visual Studio and I have used that before on other projects:</p> <p><a href="http://stackoverflow.com/questions/626744/is-there-a-way-to-automatically-avoiding-stepping-into-certain-functions-in-visua">http://stackoverflow.com/questions/626744/is-there-a-way-to-automatically-avoiding-stepping-into-certain-functions-in-visua</a></p> <p>Is this at all possible with gdb or ddd?</p> http://stackoverflow.com/questions/1675766/how-to-combine-pool-map-with-array-shared-memory-in-python-multiprocessing 2 How to combine Pool.map with Array (shared memory) in Python multiprocessing? James Dean 2009-11-04T18:32:20Z 2009-11-12T18:42:12Z <p>I have a very large (read only) array of data that I want to be processed by multiple processes in parallel.</p> <p>I like the Pool.map function and would like to use it to calculate functions on that data in parallel.</p> <p>I saw that one can use the Value or Array class to use shared memory data between processes. But when I try to use this I get a RuntimeError: 'SynchronizedString objects should only be shared between processes through inheritance when using the Pool.map function:</p> <p>Here is a simplified example of what I am trying to do:</p> <pre><code>from sys import stdin from multiprocessing import Pool, Array def count_it( arr, key ): count = 0 for c in arr: if c == key: count += 1 return count if __name__ == '__main__': testData = "abcabcs bsdfsdf gdfg dffdgdfg sdfsdfsd sdfdsfsdf" # want to share it using shared memory toShare = Array('c', testData) # this works print count_it( toShare, "a" ) pool = Pool() # RuntimeError here print pool.map( count_it, [(toShare,key) for key in ["a", "b", "s", "d"]] ) </code></pre> <p>Can anyone tell me what I am doing wrong here?</p> <p>So what i would like to do is pass info about a newly created shared memory allocated array to the processes after they have been created in the process pool.</p> http://stackoverflow.com/questions/1651351/clojure-call-a-function-for-each-element-in-a-vector-with-it-index 4 Clojure: Call a function for each element in a vector with it index James Dean 2009-10-30T17:51:45Z 2009-10-31T07:27:52Z <p>Say I have a vector:</p> <pre><code>(def data ["Hello" "World" "Test" "This"]) </code></pre> <p>And I want to populate a table somewhere that has an api:</p> <pre><code>(defn setCell [row col value] (some code here)) </code></pre> <p>Then what is the best way to get the following calls to happen:</p> <pre><code>(setCell 0 0 "Hello") (setCell 0 1 "World") (setCell 0 2 "Test") (setCell 0 3 "This") </code></pre> <p>I found that the following will work:</p> <pre><code>(let [idv (map vector (iterate inc 0) data)] (doseq [[index value] idv] (setCell 0 index value))) </code></pre> <p>But is there a faster way that does not require a new temporary datastructure idv?</p> http://stackoverflow.com/questions/1651351/clojure-call-a-function-for-each-element-in-a-vector-with-it-index/1652082#1652082 1 Answer by James Dean for Clojure: Call a function for each element in a vector with it index James Dean 2009-10-30T20:21:08Z 2009-10-30T20:21:08Z <p>I did a short comparison of the performance of the options sofar: </p> <pre><code>; just some function that sums stuff (defn testThis [i value] (def total (+ total i value))) ; our test dataset. Make it non-lazy with doall (def testD (doall (range 100000))) ; time using Arthur's suggestion (def total 0.0) (time (doall (map #(testThis %1 %2) (iterate inc 0) testD))) (println "Total: " total) ; time using Brian's recursive version (def total 0.0) (time (loop [d testD i 0] (when (seq d) (testThis i (first d)) (recur (rest d) (inc i))))) (println "Total: " total) ; with the idiomatic indexed version (def total 0.0) (time (let [idv (map vector (iterate inc 0) testD)] (doseq [[i value] idv] (testThis i value)))) (println "Total: " total) </code></pre> <p>Results on my 1 core laptop:</p> <pre><code> "Elapsed time: 598.224635 msecs" Total: 9.9999E9 "Elapsed time: 241.573161 msecs" Total: 9.9999E9 "Elapsed time: 959.050662 msecs" Total: 9.9999E9 </code></pre> <p>Preliminary Conclusion:</p> <p>Use the loop/recur solution.</p> http://stackoverflow.com/questions/1646544/clojure-how-do-i-get-a-list-of-combinations-of-coordinates 2 Clojure: How do I get a list of combinations of 'coordinates'? James Dean 2009-10-29T21:04:49Z 2009-10-29T21:49:21Z <p>Say i have a function that takes to coordinates, x and y.</p> <p>For x I have a sequence of values say [1 2 3] and for y I have another sequence of values say [4 5 6].</p> <p>How would I get a list with all the combinations of these?</p> <p>So the desired result would be something like:</p> <pre><code>(myfn [1 2 3] [4 5 6]) =&gt; [[1 4] [1 5] [1 6] [2 4] [2 5] [2 6] [3 4] [3 5] [3 6]] </code></pre> <p>Is there an existing function for something like this?</p> http://stackoverflow.com/questions/1638854/clojure-how-do-i-apply-a-function-to-a-subset-of-the-entries-in-a-hash-map 1 Clojure: How do I apply a function to a subset of the entries in a hash-map? James Dean 2009-10-28T17:37:14Z 2009-10-29T14:11:32Z <p>I am not to Clojure and attempting to figure out how to do this.</p> <p>I want to create a new hash-map that for a subset of the keys in the hash-map applies a function to the elements. What is the best way to do this?</p> <pre><code>(let [my-map {:hello "World" :try "This" :foo "bar"}] (println (doToMap my-map [:hello :foo] (fn [k] (.toUpperCase k))) </code></pre> <p>This should then result a map with something like</p> <pre><code>{:hello "WORLD" :try "This" :foo "BAR"} </code></pre> http://stackoverflow.com/questions/1633645/what-is-the-best-way-to-initialize-all-the-elements-of-a-jtable-with-clojure 1 What is the best way to initialize all the elements of a JTable with Clojure? James Dean 2009-10-27T21:01:24Z 2009-10-27T21:10:29Z <p>Sorry if this is a bit of a noob question but I am still getting used to functional programming.</p> <p>I want to write a simple Sudoku solver as an exercise.</p> <p>One of my plans is to create a JTable with 9 rows and 9 columns and initialize them all with the string "123456789" as a starting position.</p> <p>If I have a TableModel I can define a function to initialize a single cell like this:</p> <pre><code>(defn initCell "inits a cell with 123456789" [dm row col] (doto dm (.setValueAt "123456789" row col))) </code></pre> <p>Now what is the most Clojure like way to get this called for all cells in the 9x9 table?</p> http://stackoverflow.com/questions/1369086/is-it-possible-to-limit-textctrl-to-accept-numbers-only-in-wxpython 0 Is it possible to limit TextCtrl to accept numbers only in wxPython? James Dean 2009-09-02T17:27:01Z 2009-10-19T18:13:24Z <p>I want to have a text control that only accepts numbers. (Just integer values like 45 or 366)</p> <p>What is the best way to do this?</p> http://stackoverflow.com/questions/1099427/can-one-unroll-a-loop-when-working-with-an-integer-template-parameter 1 Can one unroll a loop when working with an integer template parameter? James Dean 2009-07-08T17:21:43Z 2009-10-12T16:30:02Z <p>I have the following code:</p> <pre><code>template &lt;int size&gt; inline uint hashfn( const char* pStr ) { uint result = *pStr; switch ( size ) { case 10: result *= 4; result += *pStr; case 9: result *= 4; result += *pStr; ... ... case 2: result *= 4; result += *pStr; } return result; } </code></pre> <p>This code is a hash function for DNA sequences of certain lenghts where the length is a template parameter. It is an unrolled loop with a switch statement to jump in at the right spot. The size is however a constant since it is a template parameter. Could I specialize this for certain size values? Maybe with something like:</p> <pre><code>template &lt;int 2&gt; inline uint hashfn( const char* pStr ) { uint result = *pStr; result *= 4; ++pStr; result += *pStr; return result; } </code></pre> http://stackoverflow.com/questions/1510188/can-seek-and-tell-work-with-utf-8-encoded-documents-in-python 0 Can seek and tell work with UTF-8 encoded documents in Python? James Dean 2009-10-02T15:17:21Z 2009-10-02T16:03:55Z <p>I have an application that generates some large log files > 500MB.</p> <p>I have written some utilities in Python that allows me to quickly browse the log file and find data of interest. But I now get some datasets where the file is too big to load it all into memory.</p> <p>I thus want to scan the document once, build an index and then only load the section of the document into memory that I want to look at at a time.</p> <p>This works for me when I open a 'file' read it one line at a time and store the offset with from file.tell(). I can then come back to that section of the file later with file.seek( offset, 0 ).</p> <p>My problem is however that I may have UTF-8 in the log files so I need to open them with the codecs module (<code>codecs.open(&lt;filename&gt;, 'r', 'utf-8')</code>). With the resulting object I can call seek and tell but they do not match up.</p> <p>I assume that codecs needs to do some buffering or maybe it returns character counts instead of bytes from tell?</p> <p>Is there a way around this?</p> http://stackoverflow.com/questions/233171/what-is-the-best-way-to-do-gui-in-clojure/1505404#1505404 1 Answer by James Dean for What is the best way to do Gui in Clojure? James Dean 2009-10-01T17:43:40Z 2009-10-01T17:43:40Z <p>Here is another very basic swing wrapping example.</p> <pre><code>; time for some swing (import '(javax.swing JFrame JTable JScrollPane)) (import '(javax.swing.table DefaultTableModel)) (let [frame (JFrame. "Hello Swing") dm (DefaultTableModel.) table (JTable. dm) scroll (JScrollPane. table)] (doto dm (.setNumRows 30) (.setColumnCount 5)) (.. frame getContentPane (add scroll)) (doto frame (.setDefaultCloseOperation JFrame/EXIT_ON_CLOSE) (.pack) (.setVisible true))) </code></pre> http://stackoverflow.com/questions/231229/how-to-generate-a-makefile-with-source-in-sub-directories-using-just-one-makefile 3 How to generate a Makefile with source in sub-directories using just one makefile. James Dean 2008-10-23T19:56:32Z 2009-09-16T00:43:39Z <p>I have source in a bunch of subdirectories like:</p> <pre><code>src/widgets/apple.cpp src/widgets/knob.cpp src/tests/blend.cpp src/ui/flash.cpp </code></pre> <p>In the root of the project I want to generate a single Makefile using a rule like:</p> <pre><code>%.o: %.cpp $(CC) -c $&lt; build/test.exe: build/widgets/apple.o build/widgets/knob.o build/tests/blend.o src/ui/flash.o $(LD) build/widgets/apple.o .... build/ui/flash.o -o build/test.exe </code></pre> <p>When I try this it does not find a rule for build/widgets/apple.o. Can I change something so that the %.o: %.cpp is used when it needs to make build/widgets/apple.o ?</p> http://stackoverflow.com/questions/1190579/what-happens-when-you-run-out-of-ram-with-mlockall-set 1 What happens when you run out of ram with mlockall set? James Dean 2009-07-27T21:01:20Z 2009-08-04T13:49:54Z <p>I am working on a C++ application that requires a large amounts of memory for a batch run. (> 20gb)</p> <p>Some of my customers are running into memory limits where sometimes the OS starts swapping and the total run time doubles or worse.</p> <p>I have read that I can use the mlockall to keep the process from being swapped out. What would happen when the process memory requirements approaches or exceeds the the available physical memory in this way?</p> <p>I guess the answer might be OS specific so please list the OS in your answer.</p> http://stackoverflow.com/questions/1008803/how-to-use-pure-in-d-2-0 7 How to use pure in D 2.0 James Dean 2009-06-17T18:31:54Z 2009-06-18T04:19:46Z <p>While playing around with D 2.0 I found the following problem:</p> <p>Example 1:</p> <pre><code>pure string[] run1() { string[] msg; msg ~= "Test"; msg ~= "this."; return msg; } </code></pre> <p>This compiles and works as expected.</p> <p>When I try to wrap the string array in a class I find I can not get this to work:</p> <pre><code>class TestPure { string[] msg; void addMsg( string s ) { msg ~= s; } }; pure TestPure run2() { TestPure t = new TestPure(); t.addMsg("Test"); t.addMsg("this."); return t; } </code></pre> <p>This code will not compile because the addMsg function is impure. I can not make that function pure since it alters the TestPure object. Am i missing something? Or is this a limitation?</p> <p>The following does compile:</p> <pre><code>pure TestPure run3() { TestPure t = new TestPure(); t.msg ~= "Test"; t.msg ~= "this."; return t; } </code></pre> <p>Would the ~= operator not been implemented as a impure function of the msg array? How comes the compiler does not complain about that in the run1 function?</p> http://stackoverflow.com/questions/1003948/what-debugger-can-be-used-with-d-2-0-on-windows-and-how-do-i-use-it 7 What debugger can be used with D 2.0 on windows and how do I use it? James Dean 2009-06-16T21:10:36Z 2009-06-17T00:36:45Z <p>I have been playing around with D 2.0 a bit today mostly because of the "The Case for D" in DDJ.</p> <p>I have downloaded D 2.0 for windows but have not figured out how to step through a running program in the debugger.</p> <p>I tried to get the shipped copy of windbg.exe to work but it is crashing on me all the time and does not seem to see the source code.</p> http://stackoverflow.com/questions/975420/quality-assurance-code-of-conduct/975969#975969 2 Answer by James Dean for Quality Assurance Code of Conduct James Dean 2009-06-10T14:34:36Z 2009-06-10T19:06:18Z <p>Spend a few minutes to talk to someone in person if possible and otherwise on the phone.</p> <p>Only using email of bug tracking systems can really lead to these kinds of situations where both parties feel frustrated about the issue.</p> <p>You need to get from communication at the level of</p> <p>'this thing sucks' </p> <p>to</p> <p>'I get really confused when I do this and that and then this happens etc.'</p> <p>You need to understand why and where people see problems and what minor issues may be causing enormous frustration for your testers and/or customers. </p> <p>You may also need to help them understand why things are the way they are. </p> <p>And that you may know that there are problems but that it can not be fixed right now because it would be risky or more important issues have priority.</p> http://stackoverflow.com/questions/939693/what-is-the-best-online-sql-tutorial-for-learning-to-write-complex-reporting-quer 2 What is the best online SQL tutorial for learning to write complex reporting queries? James Dean 2009-06-02T13:52:51Z 2009-06-08T22:36:42Z <p>My SQL skills are rather limited and since I find myself working with a DB (Oracle) a lot lately I would like to get beyond the basic select statements.</p> <p>I want to write queries that do things like get data from multiple tables, sum quantities, compare dates, group, filter etc.</p> <p>What sites can you recommend for getting SQL reporting skills to a more advanced level?</p> http://stackoverflow.com/questions/890207/how-to-pop-up-a-minimized-wxpython-window 0 How to pop up a minimized wxPython window. James Dean 2009-05-20T20:54:50Z 2009-05-21T21:14:47Z <p>I have a utility where I want it to pop up to the front of the screen from time to time to request user input.</p> <p>(I know it is very annoying general behavior but I have good reasons in this case.)</p> <p>I have found the RequestUserAttention method that can be used for a more pleasant request for input from the user but in my case I just want it to pop up a window. </p> <p>Maybe even modal on top of all the other windows.</p> <p>The platform here is XP if that makes any difference.</p> http://stackoverflow.com/questions/890170/how-do-i-detect-when-my-window-is-minimized-with-wxpython 3 How do I detect when my window is minimized with wxPython? James Dean 2009-05-20T20:49:43Z 2009-05-20T20:58:40Z <p>I am writing a small wxPython utility.</p> <p>I would like to use some event to detect when a user minimizes the application/window.</p> <p>I have looked around but did not find an event like wx.EVT_MINIMIZE that I could bind to.</p> <p>Anyone know of a way that can be used to detect this?</p> http://stackoverflow.com/questions/558274/how-to-log-make-output-without-buffering-from-stdout-and-stderr 0 How to log make output without buffering from stdout and stderr James Dean 2009-02-17T19:03:07Z 2009-05-06T06:44:02Z <p>I am having a problem with logging to output from an automated build.</p> <p>The build is done with a Makefile and the makefile utility.</p> <p>The problem is that normal output like compiler command lines go to stdout and compile errors go to stderr.</p> <p>I want to get the output from the build as it would show on the screen. So something like:</p> <pre><code>(stdout) CC -c file.cpp (stderr) Compile error at file.cpp line 232, blah blah blah (stdout) CC -c file2.cpp </code></pre> <p>What I tried (from a ksh script) is:</p> <p>make -k > build.log 2> build.log</p> <p>This results in a single log file but the problem is that the streams are buffered and so the result in the log file is all mixed up.</p> <p>I could capture the output into 2 separate log files but then I would have no info on how to glue them back together into a single log file.</p> <p>Is there a way to turn off buffering for stdout and stderr in this case?</p> http://stackoverflow.com/questions/774192/what-is-the-correct-way-to-represent-null-xml-elements/774286#774286 0 Answer by James Dean for What is the correct way to represent null XML elements? James Dean 2009-04-21T19:42:45Z 2009-04-21T19:42:45Z <p>In many cases the purpose of a Null value is to serve for a data value that was not present in a previous version of your application.</p> <p>So say you have an xml file from your application "ReportMaster" version 1.</p> <p>Now in ReportMaster version 2 a some more attributes have been added that may or not be defined.</p> <p>If you use the 'no tag means null' representation you get automatic backward compatibility for reading your ReportMaster 1 xml file.</p> http://stackoverflow.com/questions/757382/multiple-apps-with-common-code-how-to-approach-this/757561#757561 0 Answer by James Dean for Multiple apps with common code -- how to approach this? James Dean 2009-04-16T18:57:15Z 2009-04-16T18:57:15Z <p>I would create one source control branch for the common code representing the latest and greatest version.</p> <p>Then for each project have your own independent branch of that code where you can make quick fixes where needed or have stability when close to a release.</p> <p>You may want to have a Wiki where bugs found in the common code are listed so the other users of the shared code are aware of it and get time to fix it at their leisure.</p> <p>Git would work well for this since it is good at merging changes back to the 'master' branch.</p> http://stackoverflow.com/questions/752793/should-c-eliminate-header-files/753240#753240 7 Answer by James Dean for Should C++ eliminate header files? James Dean 2009-04-15T19:06:26Z 2009-04-15T19:22:48Z <p>If you want C++ without header files then I have good news for you.</p> <p>It already exists and is called D (<a href="http://www.digitalmars.com/d/index.html" rel="nofollow">http://www.digitalmars.com/d/index.html</a>)</p> <p>Technically D seems to be a lot nicer than C++ but it is just not mainstream enough for use in many applications at the moment.</p> http://stackoverflow.com/questions/752762/is-it-good-to-have-all-the-setter-functions-return-a-reference-to-the-object-in-c/752843#752843 2 Answer by James Dean for Is it good to have all the setter functions return a reference to the object in c++? James Dean 2009-04-15T17:29:13Z 2009-04-15T18:19:02Z <p>The typical purpose for this style is in use for object construction.</p> <pre><code>Person* pPerson = &amp;(new Person())-&gt;setAge(34).setId(55).setName("Jack"); </code></pre> <p>instead of</p> <pre><code>Person* pPerson = new Person( 34, 55, "Jack" ); </code></pre> <p>Using the second more traditional style one might forget if the first value passed to the constructor was the age or the id? This may also lead to multiple constructors based on the validity of some properties.</p> <p>Using the first style one might forget to set some of the object properties and and may lead bugs where objects are not 'fully' constructed. (A class property is added at a later point but not all the construction locations got updated to call the required setter.)</p> <p>As code evolves I really like the fact that I can use the compiler to help me find all the places where an object is created when changing the signature of a constructor. So for that reason I prefer using regular C++ constructors over this style.</p> <p>This pattern might work well in applications that maintain their datamodel over time according to rules similar to those used in many database applications:</p> <ul> <li>You can add a field/attribute to a table/class that is NULL by default. (So upgrading existing data requires just a new NULL column in the database.)</li> <li>Code that is not changes should still work the same with this NULL field added.</li> </ul> http://stackoverflow.com/questions/748503/how-do-you-introduce-unit-testing-into-a-large-legacy-c-c-codebase/748783#748783 3 Answer by James Dean for How do you introduce unit testing into a large, legacy (C/C++) codebase? James Dean 2009-04-14T18:24:56Z 2009-04-14T18:24:56Z <p>I have worked on both Green field project with fully unit tested code bases and large C++ applications that have grown over many years and with many different developers on them.</p> <p>Honestly, I would not bother an attempt to get a legacy code base to the state where units tests and test first development can add a lot of value.</p> <p>Once a legacy code base gets to a certain size and complexity getting it to the point where unit test coverage provides you with a lot of benefits becomes a task equivalent to a full rewrite.</p> <p>The main problem is that as soon as you start refactoring for testability you will begin introducing bugs. And only once you get high test coverage can you expect all those new bugs to be found and fixed.</p> <p>That means that you either go very slowly and carefully and you do not get the benefits of a well unit tested code base until years from now. (probably never since mergers etc happen.) In the mean time you are probably introducing some new bugs with no apparent value to the end user of the software.</p> <p>Or you go fast but have an unstable code base until all you have reached high test coverage of all your code. (So you end up with 2 branches, one in production, one for the unit-tested version.)</p> <p>Of cause this all a matter of scale for some projects a rewrite might just take a few weeks and can certainly be worth it.</p> http://stackoverflow.com/questions/726096/accessing-private-members/726361#726361 2 Answer by James Dean for Accessing private members James Dean 2009-04-07T15:32:24Z 2009-04-07T15:39:37Z <p>I have had this happen to me since there was a very crappy source control system in place where for old versions of the application making changes to header files was pretty much impossible.</p> <p>If some cases you just need to do a hack.</p> <p>In the source file from which you need to access the private data member you can put in this as a first line:</p> <pre><code>#define private public #define protected public </code></pre> <p>and access anything you want.</p> http://stackoverflow.com/questions/716904/preparing-for-the-next-c-standard/726330#726330 0 Answer by James Dean for Preparing for the next C++ standard James Dean 2009-04-07T15:26:38Z 2009-04-07T15:26:38Z <p>You may actually always prefer using the Boost version for a long time. Especially if you need to compile on multiple platforms.</p> <p>The Boost libraries are ported and tested on multiple platforms and behave the same there (most of the time.)</p> <p>The first vendor implementations of the new C++ libraries may still contain minor bugs and performance differences just like it was such a mess when STL and the std namespace were added. </p> http://stackoverflow.com/questions/714242/opinions-on-unladen-swallow/714920#714920 1 Answer by James Dean for Opinions on Unladen Swallow? James Dean 2009-04-03T17:36:00Z 2009-04-03T17:36:00Z <p>I think that a 5 times speed improvement is not all that important for me personally.</p> <p>It is not an order of magnitude change. Although if you consume CPU power at the scale of Google it can be a worth while investment to have some of your staff work on it.</p> <p>Many of the speed improvements will likely make it into cpython eventually.</p> <p>Getting rid of the GIL is interesting in principle but will likely reveal lots of problems with modules that are not thread safe once the GIL is removed.</p> <p>I do not think I will use Unladen Swallow any time soon but like how giving attention to performance may improve the regular Python versions.</p> http://stackoverflow.com/questions/674317/exceptions-vs-special-return-values/674488#674488 1 Answer by James Dean for Exceptions vs Special return values James Dean 2009-03-23T17:50:57Z 2009-03-23T18:07:57Z <p>As in many issues related to programming it all depends...</p> <p>I find that one really should first try to define your API so exceptional cases can not happen in the first place.</p> <p>Using Design By Contract can help in doing this. Here one would insert functions that throw an error or crash and indicate a programming error (not user error). (In some cases these checks are removed in release mode.)</p> <p>Then keep you exceptions for generic failures that can not be avoided like, DB connection failed, optimistic transaction failed, disk write failed.</p> <p>These exceptions should then typically not need to be caught until they reach the 'user'. And will result in the user to need to try again.</p> <p>If the error is a user error like a typo in a name or something then deal with that directly in the application interface code itself. Since this is then a common error it would need to be handle with a user friendly error message potentially translated etc.</p> <p>Application layering is also useful here. So lets take the example of transfering cash from one account an other account:</p> <pre><code>transferInternal( int account_id_1, int account_id_2, double amount ) { // This is an internal function we require the client to provide us with // valid arguments only. (No error handling done here.) REQUIRE( accountExists( account_id_1 ) ); // Design by contract argument checks. REQUIRE( accountExists( account_id_2 ) ); REQUIRE( balance( account_id_1 ) &gt; amount ); ... do the actual transfer work } string transfer( int account_id_1, int account_id_2, double amount ) { DB.start(); // start transaction string msg; if ( !checkAccount( account_id_1, msg ) ) return msg; // common checking code used from multiple operations. if ( !checkAccount( account_id_2, msg ) ) return msg; if ( !checkBalance( account_id_1, amount ) ) return msg; transferInternal( account_id_1, account_id_2, amount ); DB.commit(); // This could fail with an exception if someone else changed the balance while this transaction was active. (Very unlikely but possible) return "cash transfer ok"; } </code></pre> http://stackoverflow.com/questions/657791/whats-the-difference-between-file-stream-in-c-and-iostream-in-c/658244#658244 3 Answer by James Dean for What's the difference between File stream in C and iostream in C++? James Dean 2009-03-18T13:27:08Z 2009-03-18T13:27:08Z <p>This article gives a good overview of the different output stream available to you in C++.</p> <p><a href="http://accu.org/index.php/journals/1539" rel="nofollow">http://accu.org/index.php/journals/1539</a></p> <p>It compares:</p> <ul> <li>FILE</li> <li>std::stream</li> <li>Boost.Format</li> <li>FastFormat(done by the Author of the Article Matthew Wilson who wrote the Imperfect C++ book.)</li> </ul> http://stackoverflow.com/questions/1675766/how-to-combine-pool-map-with-array-shared-memory-in-python-multiprocessing/1721911#1721911 Comment by James Dean on How to combine Pool.map with Array (shared memory) in Python multiprocessing? James Dean 2009-11-13T20:05:35Z 2009-11-13T20:05:35Z The assert on pickling the shared data array seems to be an artificial constraint on using the shared resource with multi-processing but given that constraint you have provided some reasonable workarounds so I will give you the points for accepted answer. http://stackoverflow.com/questions/1675766/how-to-combine-pool-map-with-array-shared-memory-in-python-multiprocessing Comment by James Dean on How to combine Pool.map with Array (shared memory) in Python multiprocessing? James Dean 2009-11-13T15:32:55Z 2009-11-13T15:32:55Z I had a closer look at the source code and the information about the shared memory can be pickled (needed to get info about it over to the client process on windows) but that code has an assert to only run during process spawning. I wonder why that is. http://stackoverflow.com/questions/1675766/how-to-combine-pool-map-with-array-shared-memory-in-python-multiprocessing/1721911#1721911 Comment by James Dean on How to combine Pool.map with Array (shared memory) in Python multiprocessing? James Dean 2009-11-12T18:39:26Z 2009-11-12T18:39:26Z You are getting closer but there is still the issue that the toShare array length has to be fixed before the pool is created. So you are still creating the shared memory segment before the processes are created. What I really want to see as a general solution is a way to create a new variable length shared array after the pool is created, pass info about it to the worker process and have it read from it. http://stackoverflow.com/questions/1675766/how-to-combine-pool-map-with-array-shared-memory-in-python-multiprocessing/1721911#1721911 Comment by James Dean on How to combine Pool.map with Array (shared memory) in Python multiprocessing? James Dean 2009-11-12T14:41:40Z 2009-11-12T14:41:40Z So the real problem seems to be that how we can pickle the information about an Array so it can be send and connected to from the other process. http://stackoverflow.com/questions/1675766/how-to-combine-pool-map-with-array-shared-memory-in-python-multiprocessing/1721911#1721911 Comment by James Dean on How to combine Pool.map with Array (shared memory) in Python multiprocessing? James Dean 2009-11-12T14:10:38Z 2009-11-12T14:10:38Z Even on platforms with fork you can not insert new shared data into toShare after the fork since each process will have its own independent copy at that point. http://stackoverflow.com/questions/1675766/how-to-combine-pool-map-with-array-shared-memory-in-python-multiprocessing/1676328#1676328 Comment by James Dean on How to combine Pool.map with Array (shared memory) in Python multiprocessing? James Dean 2009-11-04T21:00:09Z 2009-11-04T21:00:09Z You are right that it is safe on fork based platforms. But I would like to know if there is a shared memory based way to share large amounts of data after the process pool is created. http://stackoverflow.com/questions/1675766/how-to-combine-pool-map-with-array-shared-memory-in-python-multiprocessing/1676328#1676328 Comment by James Dean on How to combine Pool.map with Array (shared memory) in Python multiprocessing? James Dean 2009-11-04T20:41:08Z 2009-11-04T20:41:08Z I do not believe the use of globals is safe and would certainly not work on windows where the processes are not forked. http://stackoverflow.com/questions/1651351/clojure-call-a-function-for-each-element-in-a-vector-with-it-index/1652082#1652082 Comment by James Dean on Clojure: Call a function for each element in a vector with it index James Dean 2009-11-04T15:26:13Z 2009-11-04T15:26:13Z I added (dotimes [n 100] ...) around my tests and got the same results it seems hotspot can not do much about these differences. Recur version takes about 230 msecs. Index vector about 690 msecs. http://stackoverflow.com/questions/1651351/clojure-call-a-function-for-each-element-in-a-vector-with-it-index/1652082#1652082 Comment by James Dean on Clojure: Call a function for each element in a vector with it index James Dean 2009-10-30T21:01:36Z 2009-10-30T21:01:36Z I guess i need to test with hot-spot optimized. I just ran the exact same test in Python and there it ran in 80 msec. http://stackoverflow.com/questions/1638854/clojure-how-do-i-apply-a-function-to-a-subset-of-the-entries-in-a-hash-map/1639379#1639379 Comment by James Dean on Clojure: How do I apply a function to a subset of the entries in a hash-map? James Dean 2009-10-28T21:06:56Z 2009-10-28T21:06:56Z Would you mind giving a statement by statement description for us new to Clojure? http://stackoverflow.com/questions/233171/what-is-the-best-way-to-do-gui-in-clojure/233271#233271 Comment by James Dean on What is the best way to do Gui in Clojure? James Dean 2009-10-01T17:41:19Z 2009-10-01T17:41:19Z Also note that in the more recent versions of closure you need to add a . in front of the member function calls in the todo block. http://stackoverflow.com/questions/1099427/can-one-unroll-a-loop-when-working-with-an-integer-template-parameter/1190933#1190933 Comment by James Dean on Can one unroll a loop when working with an integer template parameter? James Dean 2009-07-28T12:34:39Z 2009-07-28T12:34:39Z I like this one. Too bad my compiler does not compile it :-(. http://stackoverflow.com/questions/1190579/what-happens-when-you-run-out-of-ram-with-mlockall-set Comment by James Dean on What happens when you run out of ram with mlockall set? James Dean 2009-07-28T12:32:46Z 2009-07-28T12:32:46Z The platforms would be 64 bit linux, 64 bit AIX, 64 bit Solaris, 64 bit HP-UX. http://stackoverflow.com/questions/1099427/can-one-unroll-a-loop-when-working-with-an-integer-template-parameter Comment by James Dean on Can one unroll a loop when working with an integer template parameter? James Dean 2009-07-08T20:29:04Z 2009-07-08T20:29:04Z Maybe my compiler is not so smart (VC++.Net 2003) but it was not unrolling the loop for the longer sequences. On my computer with my compiler there was a 20% speed improvement by manually unrolling the loop. http://stackoverflow.com/questions/1099427/can-one-unroll-a-loop-when-working-with-an-integer-template-parameter Comment by James Dean on Can one unroll a loop when working with an integer template parameter? James Dean 2009-07-08T17:30:19Z 2009-07-08T17:30:19Z The loop is already unrolled. This is a very specialized hash function. Character values are just 0,1,2,3 .