User namin - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T05:07:47Zhttp://stackoverflow.com/feeds/user/34596http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/391209/techniques-for-building-recommendation-engines6Techniques for building recommendation engines?namin2008-12-24T10:34:20Z2009-09-27T14:00:21Z
<p>The book <a href="http://rads.stackoverflow.com/amzn/click/0596529325" rel="nofollow">Programming Collective Intelligence</a> presents a technique for computing similar links/users based on the distance between the links/users in a huge metric space (user x bookmarked this link / link x was bookmarked by this user).</p>
<p>What other techniques have been developed for recommendation engines?</p>
http://stackoverflow.com/questions/1229590/seemingly-unnecessary-case-in-the-unification-algorithm-in-sicp/1381747#13817472Answer by namin for Seemingly unnecessary case in the unification algorithm in SICPnamin2009-09-04T22:06:10Z2009-09-17T12:35:43Z<p>That's a good question!</p>
<p>I think the reason is that you don't want to end up with circular bindings such as <code>{ ?x = ?y, ?y = ?x }</code>. In particular, unifying <code>(?x ?y)</code> with <code>(?y ?x)</code> would give you the circular frame above if you omitted the check. With the check, you get the frame { ?x = ?y } as expected.</p>
<p>Circular bindings in a frame are bad, because they may cause functions performing substitutions using the frame, such as <code>instantiate</code>, to run in an infinite loop.</p>
http://stackoverflow.com/questions/297860/would-you-recommend-the-book-programming-in-scala-for-an-experienced-developer11Would you recommend the book "Programming in Scala" for an experienced developer?namin2008-11-18T04:29:49Z2009-09-13T14:48:23Z
<p>I would like to learn Scala. In the past, I have used Java and F# extensively.</p>
<p>Would you recommend the book <a href="http://www.artima.com/shop/programming_in_scala" rel="nofollow">Programming in Scala</a> for someone like me? I really liked the book Expert F#, and I was hoping that Programming in Scala would be in a similar vein, but the few chapters that are online are rather disappointing.</p>
<p>Are there good resources online to learn Scala? I thought the <a href="http://www.scala-lang.org/node/104" rel="nofollow">Tour of Scala</a> was great, but a little brief. What else is out there?</p>
http://stackoverflow.com/questions/455077/how-to-create-a-right-click-context-shell-shortcut-edit-with-emacs6How to create a right-click context shell shortcut "edit with Emacs"?namin2009-01-18T12:51:48Z2009-09-11T20:46:54Z
<p>Notepad++ automatically adds a shell shortcut so that when you're in Windows Explorer, you can right-click on a file and select "edit with Notepad++". How can I do the same with emacs? I am using GNU Emacs 22.3 for Windows.</p>
http://stackoverflow.com/questions/1379540/learning-scala/1379640#13796403Answer by namin for Learning Scala.namin2009-09-04T14:31:45Z2009-09-04T14:31:45Z<p>I ported some nifty sample programs from F# to Scala.</p>
<ul>
<li><a href="http://github.com/namin/spots/blob/master/errorEstimation/errorEstimation.scala" rel="nofollow">Error estimation</a> showcases <code>implicit</code>.</li>
<li><a href="http://github.com/namin/spots/blob/master/probabilisticModeling/probabilisticModeling.scala" rel="nofollow">Probabilistic modeling</a> showcases monads in Scala. It also reveals a limitation of the type inference engine in Scala: I had to declare most arguments because Scala would otherwise infer that they are products.</li>
</ul>
http://stackoverflow.com/questions/325653/what-are-some-good-websites-for-programming-puzzles/1379575#13795750Answer by namin for What are some good websites for programming puzzles?namin2009-09-04T14:22:17Z2009-09-04T14:22:17Z<p><a href="http://programmingpraxis.com/" rel="nofollow">Programming Praxis</a> has some pretty sweet programming exercises, with official solutions in Scheme. Visitors also posts solutions, notably in Haskell.</p>
http://stackoverflow.com/questions/1376161/how-to-implement-generic-type-safe-deep-cloning-in-a-java-class-hierarchy1How to implement generic type-safe deep cloning in a Java class hierarchy?namin2009-09-03T21:53:37Z2009-09-04T08:41:34Z
<p>I have a base class, say <code>Base</code> which specifies the abstract method <code>deepCopy</code>, and a myriad of subclasses, say <code>A</code>, <code>B</code>, <code>C</code>, ... <code>Z</code>. How can I define <code>deepCopy</code> so that its signature is <code>public X deepCopy()</code> for each class <code>X</code>?</p>
<p>Right, now, I have:</p>
<pre><code>abstract class Base {
public abstract Base deepCopy();
}
</code></pre>
<p>Unfortunately, that means that if if I have an object from a subclass, say <code>a</code> of <code>A</code>, then I always have to perform an unchecked cast for a more specific deep copy:</p>
<pre><code>A aCopy = (A) a.deepCopy();
</code></pre>
<p>Is there a way, perhaps using generics, to avoid casting? I want to guarantee that any deep copy returns an object of the same runtime class.</p>
<p>Edit: Let me extend my answer as covariant typing isn't enough. Say, I then wanted to implement a method like:</p>
<pre><code>static <N extends Base> List<N> copyNodes(List<N> nodes) {
List<N> list = Lists.newArrayList();
for (N node : nodes) {
@SuppressWarnings("unchecked")
N copy = (N) node.deepCopy();
list.add(copy);
}
return list;
}
</code></pre>
<p>How could I avoid the unchecked warning?</p>
http://stackoverflow.com/questions/1352587/code-golf-morse-code/1372904#13729040Answer by namin for Code Golf: Morse codenamin2009-09-03T11:38:46Z2009-09-03T11:38:46Z<p><strong>Haskell</strong></p>
<pre><code>type MorseCode = String
program :: String
program = "__5__4H___3VS__F___2 UI__L__+_ R__P___1JWAE"
++ "__6__=B__/_XD__C__YKN__7_Z__QG__8_ __9__0 OMT "
decode :: MorseCode -> String
decode = interpret program
where
interpret = head . foldl exec []
exec xs '_' = undefined : xs
exec (x:y:xs) c = branch : xs
where
branch (' ':ds) = c : decode ds
branch ('-':ds) = x ds
branch ('.':ds) = y ds
branch [] = [c]
</code></pre>
<p>For example, <code>decode "-- --- .-. ... . -.-. --- -.. ."</code> returns <code>"MORSE CODE"</code>.</p>
<p>This program is from taken from the excellent article <a href="http://apfelmus.nfshost.com/fun-with-morse-code.html" rel="nofollow">Fun with Morse Code</a>.</p>
http://stackoverflow.com/questions/339782/for-what-applications-is-forth-best-suited7For what applications is Forth best suited?namin2008-12-04T07:22:01Z2009-07-16T12:37:18Z
<p>I am intrigued by stack-based languages like <a href="http://en.wikipedia.org/wiki/Forth_(programming_language)" rel="nofollow">Forth</a>. Are there situations where Forth is the best tool for the job or is it just an intellectual and historical curiosity? What about derivative languages like <a href="http://en.wikipedia.org/wiki/Factor_(programming_language)" rel="nofollow">Factor</a> or <a href="http://en.wikipedia.org/wiki/Joy_(programming_language)" rel="nofollow">Joy</a>? Which of these languages would you recommend learning? And for what purpose (apart from mind expansion)?</p>
http://stackoverflow.com/questions/282470/which-books-have-really-interesting-source-code-and-explain-it-well12Which books have really interesting source code and explain it well?namin2008-11-11T23:13:30Z2009-07-13T07:23:04Z
<p>I am looking for books that present interesting software system at the source code level. One such book which I loved is Building Problem Solvers. It presents a series of truth-maintenance systems written in Common Lisp. The book reads like an insightful and well-presented commentary of the code. Can you recommend any other books in this vein?</p>
http://stackoverflow.com/questions/443896/removing-code-from-github1Removing code from GitHubnamin2009-01-14T17:23:58Z2009-07-02T16:44:31Z
<p>Is there a way to entirely remove a directory and its history from GitHub?</p>
http://stackoverflow.com/questions/304375/whose-code-do-you-read-because-its-fun-useful-and-educational3Whose code do you read because it's fun, useful and educational?namin2008-11-20T05:07:00Z2009-06-01T19:33:05Z
<p>Whose code do you read because it's fun, useful and educational?</p>
<p>For example, I am really liking Peter Norvig's code. His python samples (<a href="http://norvig.com/sudoku.html" rel="nofollow">Solving Every Sudoku Puzzle</a>, <a href="http://norvig.com/spell-correct.html" rel="nofollow">How to Write a Spelling Corrector</a>) are short and beautiful. Plus, I am currently reading <a href="http://norvig.com/paip.html" rel="nofollow">Paradigms of Artificial Intelligence Programming</a>, which is full of insights.</p>
<p>So, anyone out there whose code you really like? What has it taught you?</p>
http://stackoverflow.com/questions/282431/software-for-classical-music-theory-composition-harmony-and-counterpoint3Software for Classical Music Theory / Composition / Harmony and Counterpointnamin2008-11-11T23:00:29Z2009-05-22T01:40:02Z
<p>Is there any software to help in learning / understanding / experimenting with the rules of harmony and counterpoint?</p>
http://stackoverflow.com/questions/288157/fast-element-lookup-for-a-functional-languagehaskell/288254#2882545Answer by namin for Fast element lookup for a functional language(Haskell)namin2008-11-13T20:56:25Z2009-05-17T08:09:16Z<p>You can use a <a href="http://cvs.haskell.org/Hugs/pages/libraries/base/Data-Set.html" rel="nofollow">Data.Set</a>. You add an element by creating a new set from the old one with <code>insert</code> and pass the new set around. You look up whether an element is a member of the set with <code>member</code>. Both operations are O(log n).</p>
<p>Perhaps, you could consider using a state monad to thread the passing of the set.</p>
http://stackoverflow.com/questions/409434/automatically-execute-an-excel-macro-on-a-cell-change3automatically execute an Excel macro on a cell changenamin2009-01-03T17:33:22Z2009-04-27T10:40:51Z
<p>How can I automatically execute an Excel macro each time a value in a particular cell changes?</p>
<p>Right now, my working code is:</p>
<pre><code>Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("H5")) Is Nothing Then Macro
End Sub
</code></pre>
<p>where <code>"H5"</code> is the particular cell being monitored and <code>Macro</code> is the name of the macro.</p>
<p>Is there a better way?</p>
http://stackoverflow.com/questions/304319/is-there-an-equivalent-of-which-on-windows8Is there an equivalent of 'which' on windows?namin2008-11-20T04:19:35Z2009-04-22T10:12:52Z
<p>I would like to find the full path to a program in Windows. Is there an equivalent to the UNIX command 'which'? On UNIX, <code>which command</code> prints the full path of the given command.</p>
http://stackoverflow.com/questions/282534/what-are-great-programming-related-online-talks-videos11What are great programming-related online talks / videos?namin2008-11-11T23:40:28Z2009-02-01T18:50:59Z
<p>Please recommend a particular programming-related talk / video and explain why you like it.</p>
http://stackoverflow.com/questions/355406/concepts-that-surprised-you-when-you-read-sicp/490325#4903251Answer by namin for Concepts that surprised you when you read SICP?namin2009-01-29T02:42:40Z2009-01-29T02:42:40Z<p>I was still in high school when I read SICP, and I had focused on the first and second chapters. For me at the time, I liked that you could express all those mathematical ideas in code, and have the computer do most of the dirty work.</p>
<p>When I was tutoring SICP, I got impressed by different aspects. For one, the conundrum that data and code are really the same thing, because code is executable data. The chapter on metalinguistic abstractions is mind-boggling to many and has many take-home messages. The first is that all the rules are arbitrary. This bothers some students, specially those who are physicists at heart. I think the beauty is not in the rules themselves, but in studying the consequence of the rules. A one-line change in code can mean the difference between lexical scoping and dynamic scoping.</p>
<p>Today, though SICP is still fun and insightful to many, I do understand that it's becoming dated. For one, it doesn't teach debugging skills and tools (I include type systems in there), which is essential for working in today's gigantic systems.</p>
http://stackoverflow.com/questions/284769/project-based-books-websites1Project-based books / websitesnamin2008-11-12T18:00:55Z2009-01-20T17:29:59Z
<p>What's your favorite project-based book or website?</p>
<p>I really like <a href="http://www1.idc.ac.il/tecs/" rel="nofollow">The Elements of Computing Systems</a>. This book will show you how to build a computing system from the ground up. In the process, you learn about combinatorial & sequential logic, ALU & memory chips, CPU & von Neumann architecture, machine & assembly language, assemblers, virtual machines, parsing and code generation. The hardware part is built using a freely provided Hardware Simulator and the software part can be tackled in any programming language(s) you choose. Each project comes with extensive test cases, giving you immediate feedback on your progress.</p>
<p>Can you recommend any book or website that has a similar learn-by-doing approach?</p>
http://stackoverflow.com/questions/435905/what-are-the-legal-ways-to-get-textbooks-programming-books-in-pdf-only-with-an-o4What are the legal ways to get textbooks/programming books in PDF only, with an option to always download it again?namin2009-01-12T16:10:09Z2009-01-18T12:54:11Z
<p>By searching for ebooks, one can usually find textbooks for free, but what options are they for those who want to do so legally?</p>
<p>What about old books that are still in print? I like to have electronic versions of textbooks. It doesn't seem reasonable to manually scan big tomes!</p>
http://stackoverflow.com/questions/438222/what-are-good-guidelines-for-writing-a-design-document-to-ease-transitioning3What are good guidelines for writing a design document to ease transitioning?namin2009-01-13T07:33:00Z2009-01-13T12:10:17Z
<p>I am transferring ownership of a project to a team far away. What are tips to smooth the transition? I am wondering about code-level transfer, so anything related to design docs, code-level documentation, etc. How do you document your prototyped code after the fact?</p>
http://stackoverflow.com/questions/415532/implementing-type-inference/415574#41557416Answer by namin for implementing type inferencenamin2009-01-06T05:39:48Z2009-01-06T13:32:53Z<p>I found the following resources helpful for understanding type inference, in order of increasing difficulty:</p>
<ol>
<li>Chapter 30 (Type Inference) of <a href="http://www.plai.org" rel="nofollow">the freely available book PLAI</a>, <em>Programming Languages: Application and Interpretation</em>, sketches unification-based type inference.</li>
<li>The summer course <a href="http://okmij.org/ftp/Computation/Computation.html#teval" rel="nofollow"><em>Interpreting types as abstract values</em></a> presents elegant evaluators, type checkers, type reconstructors and inferencers using Haskell as a metalanguage.</li>
<li>Chapter 7 (Types) of <a href="http://www.eopl3.com/" rel="nofollow">the book EOPL</a>, <em>Essentials of Programming Languages</em>. </li>
<li>Chapter 22 (Type Reconstruction) of <a href="http://www.cis.upenn.edu/~bcpierce/tapl/" rel="nofollow">the book TAPL</a>, <em>Types and Programming Languages</em>, and the corresponding OCaml implementations <a href="http://www.cis.upenn.edu/~bcpierce/tapl/checkers/recon/core.ml" rel="nofollow">recon</a> and <a href="http://www.cis.upenn.edu/~bcpierce/tapl/checkers/fullrecon/core.ml" rel="nofollow">fullrecon</a>.</li>
<li>Chapter 13 (Type Reconstruction) of <a href="http://dcpl.mit.edu/" rel="nofollow">the new book DCPL</a>, <em>Design Concepts in Programming Languages</em>.</li>
<li><a href="http://delicious.com/adnamin/type-inference+paper" rel="nofollow">Selection of academic papers</a>.</li>
</ol>
<p>However, since the best way to learn is to do, I strongly suggest implementing type inference for a toy functional language by working through a homework assignment of a programming languages course.</p>
<p>I recommend these two accessible homeworks in ML, which you can both complete in less than a day: </p>
<ol>
<li><a href="http://users.cs.fiu.edu/~smithg/cop4555/hw5.html" rel="nofollow">PCF Interpreter</a> (<a href="http://github.com/namin/spots/tree/master/pcf/interp1.sml" rel="nofollow">a solution</a>) to warm up.</li>
<li><a href="http://users.cs.fiu.edu/~smithg/cop4555/hw6.html" rel="nofollow">PCF Type Inference</a> (<a href="http://github.com/namin/spots/tree/master/pcf/type.sml" rel="nofollow">a solution</a>) to implement algorithm W for Hindley-Milner type inference.</li>
</ol>
<p><a href="http://www.cs.cmu.edu/~fp/courses/312/assignments.html" rel="nofollow">These assignments</a> are from a more advanced course:</p>
<ol>
<li><p><a href="http://www.cs.cmu.edu/~fp/courses/312/assignments/asst2/index.html" rel="nofollow">Implementing MiniML</a></p></li>
<li><p><a href="http://www.cs.cmu.edu/~fp/courses/312/assignments/asst5.pdf" rel="nofollow">Polymorphic, Existential, Recursive Types (PDF)</a></p></li>
<li><p><a href="http://www.cs.cmu.edu/~fp/courses/312/assignments/asst6/index.html" rel="nofollow">Bi-Directional Typechecking (PDF)</a></p></li>
<li><p><a href="http://www.cs.cmu.edu/~fp/courses/312/assignments/asst7.pdf" rel="nofollow">Subtyping and Objects (PDF)</a></p></li>
</ol>
http://stackoverflow.com/questions/404824/what-is-a-good-up-to-date-book-for-an-experienced-developer-to-learn-excel-vba2What is a good up-to-date book for an experienced developer to learn Excel VBA?namin2009-01-01T10:24:38Z2009-01-05T16:00:40Z
<p>I am an experienced developer notably in C#. I need to help a non-programmer friend get thigns done with Excel VBA. What is a good book for me to quickly pick Excel Macros & VBA up so that I can help my friend?</p>
<p>We're using Excel 2007.</p>
http://stackoverflow.com/questions/409732/python-alter-elements-of-a-list/410067#4100674Answer by namin for Python: Alter elements of a listnamin2009-01-03T23:11:59Z2009-01-03T23:11:59Z<pre><code>bool_list[:] = [False] * len(bool_list)
</code></pre>
<p>or</p>
<pre><code>bool_list[:] = [False for item in bool_list]
</code></pre>
http://stackoverflow.com/questions/409124/expert-f-experts-voice-in-net-is-this-a-worthy-book-to-learn-f-from/409166#4091664Answer by namin for Expert F# (Expert's Voice in .Net) - is this a worthy book to learn F# from?namin2009-01-03T15:06:57Z2009-01-03T15:06:57Z<p>For a fairly accomplished C# developer, Expert F# is the best book to learn F#.</p>
<p>The book is elegant, fun & practical. </p>
<p>The examples are genuinely interesting. My favorite ones are in chapter 9, Introducing Language-Oriented Programming: probabilistic workflows, schema compilation by reflecting on types, and using F# quotations for error estimation.</p>
<p>The book will really help you master techniques specific to F# and functional programming in general. For example, there's a section called "Using Continuations to Avoid Stack Overflows". Like the rest of the book, it's very clear and insightful.</p>
<p>(One issue is that the book was written before the F# CTP, so some of the examples might not work with the latest release. However, it is usually rather straightforward to update the samples.)</p>
<p>So, yes. Get this book and have fun :)</p>
http://stackoverflow.com/questions/408952/correct-formulation-of-the-a-algorithm/408977#4089773Answer by namin for Correct formulation of the A* algorithmnamin2009-01-03T12:22:08Z2009-01-03T12:30:02Z<p>The first approach is optimal only if the optimal path to any repeated state is always the first to be followed. This property holds if the heuristic function has the property of <strong>consistency</strong> (also called <strong>monoticity</strong>). A heuristic function is consistent if, for every node <code>n</code> and every successor <code>n'</code> of <code>n</code>, the estimated cost of reaching the goal from <code>n</code> is no greater than the step cost of getting to <code>n'</code> from <code>n</code> plus the estimated cost of reaching the goal from <code>n</code>.</p>
<p>The second approach is optimal if the heuristic function is merely admissible, that is, it never overestimates the cost to reach the goal. </p>
<p>Every consistent heuristic function is also admissible. Although consistency is a stricter requirement than admissibility, one has to work quite hard to concoct heuristic functions that are admissible but not consistent.</p>
<p>Thus, even though the second approach is more general as it works with a strictly larger subset of heuristic functions, the first approach is usually sufficient in practice.</p>
<p>Reference: the subsection <em>A</em> search: Minimizing the total estimated solution cost_ in section <em>4.1 Informed (Heuristic) Search Strategies</em> of the book <em>Artificial Intelligence: A Modern Approach</em>.</p>
http://stackoverflow.com/questions/405761/typed-fp-tuple-arguments-and-curriable-arguments/405773#4057733Answer by namin for Typed FP: Tuple Arguments and Curriable Argumentsnamin2009-01-02T01:04:16Z2009-01-02T02:50:57Z<p>At least one reason not to conflate curried and uncurried functional types is that it would be very confusing when tuples are used as returned values (a convenient way in these typed languages to return multiple values). In the conflated type system, how can function remain nicely composable? Would <code>a -> (a * a)</code> also transform to <code>a -> a -> a</code>? If so, are <code>(a * a) -> a</code> and <code>a -> (a * a)</code> the same type? If not, how would you compose <code>a -> (a * a)</code> with <code>(a * a) -> a</code>?</p>
<p>You propose an interesting solution to the composition issue. However, I don't find it satisfying because it doesn't mesh well with partial application, which is really a key convenience of curried functions. Let me attempt to illustrate the problem in Haskell:</p>
<pre><code>apply f a b = f a b
vecSum (a1,a2) (b1,b2) = (a1+b1,a2+b2)
</code></pre>
<p>Now, perhaps your solution could understand <code>map (vecSum (1,1)) [(0,1)]</code>, but what about the equivalent <code>map (apply vecSum (1,1)) [(0,1)]</code>? It becomes complicated! Does your fullest unpacking mean that the (1,1) is unpacked with apply's a & b arguments? That's not the intent... and in any case, reasoning becomes complicated.</p>
<p>In short, I think it would be very hard to conflate curried and uncurried functions while (1) preserving the semantics of code valid under the old system and (2) providing a reasonable intuition and algorithm for the conflated system. It's an interesting problem, though.</p>
http://stackoverflow.com/questions/405165/please-advise-on-ruby-vs-python-for-someone-who-likes-lisp-a-lot/405206#40520615Answer by namin for Please advise on Ruby vs Python (for someone who likes LISP a lot)namin2009-01-01T17:40:13Z2009-01-01T19:04:31Z<p><a href="http://norvig.com" rel="nofollow">Peter Norvig</a>, <a href="http://norvig.com/paip.html" rel="nofollow">a famous and great lisper</a>, converted to Python. He wrote the article <a href="http://norvig.com/python-lisp.html" rel="nofollow">Python for Lisp Programmers</a>, which you might find interesting with its detailed comparison of features.</p>
<p>Python looks like executable pseudo-code. It's easy to pick up, and often using your intuition will just work. Python allows you to easily put your ideas into code.</p>
<p>Now, for web development, Python might seem like a more scattered option than Ruby, with the plethora of Python web frameworks available. Still, in general, Python is a very nice and useful language to know. As Ruby and Python's niches overlap, I agree with Kiv that it is partly a matter of personal taste which one you pick.</p>
http://stackoverflow.com/questions/399975/create-an-excel-macro-which-searches-a-heading-and-copy-paste-the-column0Create an Excel macro which searches a heading and copy-paste the columnnamin2008-12-30T10:47:16Z2008-12-31T17:54:38Z
<p>I am new to Excel macros. I have some columns with headings scattered in many sheets. I would like to type a heading in some column which has the cursor and have the column with that heading copy-pasted to the column with the cursor. </p>
<p>Is it possible to do this by recording a macro? How? If not, how do I do it programmatically?</p>
http://stackoverflow.com/questions/396421/checking-if-two-strings-are-permutations-of-each-other-in-python/396438#3964388Answer by namin for Checking if two strings are permutations of each other in Pythonnamin2008-12-28T17:40:03Z2008-12-29T10:24:30Z<p>Here is a way which is O(n), asymptotically better than the two ways you suggest. </p>
<pre><code>import collections
def same_permutation(a, b):
d = collections.defaultdict(int)
for x in a:
d[x] += 1
for x in b:
d[x] -= 1
return not any(d.itervalues())
## same_permutation([1,2,3],[2,3,1])
#. True
## same_permutation([1,2,3],[2,3,1,1])
#. False
</code></pre>
http://stackoverflow.com/questions/1229590/seemingly-unnecessary-case-in-the-unification-algorithm-in-sicp/1381747#1381747Comment by namin on Seemingly unnecessary case in the unification algorithm in SICPnamin2009-09-17T12:34:26Z2009-09-17T12:34:26ZAh, you're right about the second point. I removed it.http://stackoverflow.com/questions/1376161/how-to-implement-generic-type-safe-deep-cloning-in-a-java-class-hierarchy/1376178#1376178Comment by namin on How to implement generic type-safe deep cloning in a Java class hierarchy?namin2009-09-03T22:24:28Z2009-09-03T22:24:28ZThanks! I guess you answered my original question, but didn't quite solve my problem. :-)http://stackoverflow.com/questions/413930/haskell-how-to-compose-not-with-a-function-of-arbitrary-arity/422818#422818Comment by namin on Haskell: How to compose `not` with a function of arbitrary arity?namin2009-01-08T10:29:04Z2009-01-08T10:29:04Zwhat a delightful and useful idea to have <code>a</code> seemingly free in <code>(Predicate b) => Predicate (a -> b)</code>...http://stackoverflow.com/questions/409434/automatically-execute-an-excel-macro-on-a-cell-change/415159#415159Comment by namin on automatically execute an Excel macro on a cell changenamin2009-01-06T04:37:58Z2009-01-06T04:37:58ZThanks, that helps a lot. I suspected my approach was rather fragile.http://stackoverflow.com/questions/411682/introduction-to-static-analysis/411764#411764Comment by namin on Introduction to Static Analysisnamin2009-01-05T07:43:08Z2009-01-05T07:43:08ZThe Polyglot framework looks great. Any experience using it?http://stackoverflow.com/questions/409434/automatically-execute-an-excel-macro-on-a-cell-change/409439#409439Comment by namin on automatically execute an Excel macro on a cell changenamin2009-01-03T21:38:59Z2009-01-03T21:38:59ZAn alternative: <code>Not (Intersect(Target, Range("H5")) Is Nothing) </code>. Is this how you would do it?http://stackoverflow.com/questions/409434/automatically-execute-an-excel-macro-on-a-cell-change/409439#409439Comment by namin on automatically execute an Excel macro on a cell changenamin2009-01-03T21:33:52Z2009-01-03T21:33:52ZThanks, it works. I check the range with, say, <code>Target.Address = Range("H5").Address</code>. Is there an easier way?http://stackoverflow.com/questions/408952/correct-formulation-of-the-a-algorithm/408977#408977Comment by namin on Correct formulation of the A* algorithmnamin2009-01-03T17:04:32Z2009-01-03T17:04:32ZNote that if your items in the closed list are just the nodes as is usually the case, then you can return to the closed list even if you don't have loops: e.g. if a node can be reached by more than one path.http://stackoverflow.com/questions/408952/correct-formulation-of-the-a-algorithm/408977#408977Comment by namin on Correct formulation of the A* algorithmnamin2009-01-03T16:43:38Z2009-01-03T16:43:38ZThe connection is that you don't need to replace states in the closed list if the first path to a state is the cheapest. The consistency property guarantees this condition holds.http://stackoverflow.com/questions/405761/typed-fp-tuple-arguments-and-curriable-arguments/405865#405865Comment by namin on Typed FP: Tuple Arguments and Curriable Argumentsnamin2009-01-02T02:51:24Z2009-01-02T02:51:24ZInteresting. I edited my answer to take this into account.http://stackoverflow.com/questions/405761/typed-fp-tuple-arguments-and-curriable-arguments/405773#405773Comment by namin on Typed FP: Tuple Arguments and Curriable Argumentsnamin2009-01-02T01:22:45Z2009-01-02T01:22:45ZBut how do you resolve "fullest possible" bindings in light of partial application?http://stackoverflow.com/questions/284769/project-based-books-websites/284781#284781Comment by namin on Project-based books / websitesnamin2009-01-01T19:58:33Z2009-01-01T19:58:33ZThanks. I read and actively reproduced the xUnit example, and it was fun and educational for sure.http://stackoverflow.com/questions/404824/what-is-a-good-up-to-date-book-for-an-experienced-developer-to-learn-excel-vba/404836#404836Comment by namin on What is a good up-to-date book for an experienced developer to learn Excel VBA?namin2009-01-01T16:44:08Z2009-01-01T16:44:08ZThanks. I checked out both books updated for Excel 2007, and I think I prefer the second one. The primer (Chapter 1) already succinctly put me on the right track to figure out many useful tricks.http://stackoverflow.com/questions/399975/create-an-excel-macro-which-searches-a-heading-and-copy-paste-the-column/401983#401983Comment by namin on Create an Excel macro which searches a heading and copy-paste the columnnamin2009-01-01T10:21:47Z2009-01-01T10:21:47ZIt works now. Thanks a lot. :)http://stackoverflow.com/questions/399975/create-an-excel-macro-which-searches-a-heading-and-copy-paste-the-column/401983#401983Comment by namin on Create an Excel macro which searches a heading and copy-paste the columnnamin2008-12-31T13:46:07Z2008-12-31T13:46:07ZThanks a lot for your time. Unfortunately, I get this error on the copying: Run-time error '1004': Copy method of Range class failed.