User Onorio Catenacci - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T17:00:06Zhttp://stackoverflow.com/feeds/user/2820http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1766020/how-to-change-list-of-chars-to-string1How To Change List of Chars To String?Onorio Catenacci2009-11-19T19:44:47Z2009-11-20T16:02:40Z
<p>In F# I want to transform a list of chars into a string. Consider the following code:</p>
<pre><code>let lChars = ['a';'b';'c']
</code></pre>
<p>If I simply do <em>lChars.ToString</em>, I get <em>"['a';'b';'c']"</em>. I'm trying to get <em>"abc"</em>. I realize I could probably do a List.reduce to get the effect I'm looking for but it seems like there should be some primitive built into the library to do this. </p>
<p>To give a little context to this, I'm doing some manipulation on individual characters in a string and when I'm done, I want to display the resulting string. </p>
<p>I've tried googling this and no joy that way. Do I need to just bite the bullet and build a List.reduce expression to do this transformation or is there some more elegant way to do this?</p>
http://stackoverflow.com/questions/32282/regex-testing-tools18Regex Testing ToolsOnorio Catenacci2008-08-28T13:34:55Z2009-11-19T19:46:21Z
<p>Hi all,</p>
<p>I know of <a href="http://sourceforge.net/projects/regulator" rel="nofollow">The Regulator</a> for testing regular expressions. And there's also <a href="http://gskinner.com/RegExr/" rel="nofollow">RegExr</a> for testing regular expressions as well. Does anyone know of other regex testing tools? Do any of these tools allow you to specify which RE engine you're testing against?</p>
<p><hr></p>
<p>I changed this question to community wiki</p>
http://stackoverflow.com/questions/166884/array-vs-linked-list12Array Vs. Linked ListOnorio Catenacci2008-10-03T13:35:53Z2009-11-01T06:17:32Z
<p>I apologize--this question may be a bit open-ended but I think there are probably definite, quantifiable answers to it so I'll post it anyway.</p>
<p>A person I know is trying to learn C++ and software development (+1 to him) and he asked me why someone would want to use a linked list in preference to an array. Coding a linked list is, no doubt, a bit more work than using an array and he wondered what would justify the additional effort. </p>
<p>I gave him the answer I know: insertion of new elements is trivial in linked list but it's a major chore in an array. But then I got to thinking about it a bit more. Besides the ease of insertion of a new element into a linked list are there other advantages to using a linked list to store a set of data vs. storing it in an array? </p>
<p>As I said, I'm not meaning to start a long and drawn-out discussion. I'm just looking for other reasons that a developer might prefer a linked list to an array. </p>
http://stackoverflow.com/questions/1642795/expression-to-test-that-all-items-in-sequence-are-the-same0Expression To Test That All Items In Sequence Are The Same Onorio Catenacci2009-10-29T10:33:54Z2009-11-01T03:40:50Z
<p>Hi all,</p>
<p>Is there a multiple instances pattern in F# somewhere?</p>
<p>Consider that I'm working on a list. I have the following pattern matching</p>
<pre><code>match l with
| [] | [_] -> l //if the list is empty or contains only one item, simply return it
|
//is there a pattern to test if all of the elements are identical?
</code></pre>
<p>In other words passing [] or [1] should simply return the list and so should [1;1;1;...] but I can't figure out how to pattern match that last pattern. Is this possible? Or is there a better approach that I might use? I haven't found anything anywhere about a <em>repeating</em> pattern.</p>
http://stackoverflow.com/questions/999056/ethics-of-robots-txt17Ethics of Robots.txtOnorio Catenacci2009-06-16T00:02:22Z2009-10-30T01:16:13Z
<p>I have a serious question. I'm not trying to start a flamewar or to incite any violence--but here goes. </p>
<p>Is it ever ethical to ignore the presence of a robots.txt file on a website? These are some of the considerations I've got in mind:</p>
<p>1.) If someone puts a web site up they're expecting some visits. Granted, web crawlers are using bandwidth without clicking on ads that may support the site but the site owner is putting their site on the web, right, so how reasonable is it for them to expect that they'll never get visited by a bot? </p>
<p>2.) Some sites apparently use a robots.txt exactly in order to keep their site from being crawled by Google or some other utility that might grab prices and therefore allow people to do price comparisons easily. They have private search engines on the site so they obviously want people to be able to search the site; apparently they just don't want people to be able to easily compare their information with other vendors.</p>
<p>As I said, I'm not trying to be argumentative and I'm not trying to start a big argument; I would just like to know if anyone has ever come up with a case where it's ethically permissible to ignore the presence of a robots.txt file? I cannot think of a case where it's permissible to ignore the robots.txt mainly because people (or businesses) are paying money to put up their web sites so they should be able to tell the Googles/Yahoos/Other SE's of the world that they don't want to be on their indices. </p>
<p>To put this discussion in context, I'd like to create a price comparison website and one of the major vendors has a robots.txt that basically prevents anyone from grabbing their prices. I'd like to be able to get their information but, as I said, I can't justify simply ignoring the wishes of the site owner. </p>
<p>I am making this a community wiki question exactly because I believe it might generate some spirited debate. Or maybe not. </p>
<p>I suspect this discussion may belong elsewhere and if it does, just let me know. I have seen some very sharp discussion here and that's why I would like to hear the opinions of developers that follow Stack Overflow. </p>
<p>By the way, there is some discussion of this topic on a <a href="http://news.ycombinator.com/item?id=205937" rel="nofollow">Hacker News question</a> but they seem to mainly focus on the legal aspects of this. </p>
http://stackoverflow.com/questions/1631321/vb6-collection-remove-doesnt-fire-classterminate0VB6 Collection Remove Doesn't Fire Class_TerminateOnorio Catenacci2009-10-27T14:47:00Z2009-10-27T17:16:21Z
<p>I apologize in advance; this is a long question. I've tried to simplify as much as I can but it's still a bit more long-winded than I'd care to see.</p>
<p>In some legacy code, we've got a VB6 collection. This collection adds objects via the .Add method and removes them via the .Remove method. However, via tracing I can see that sometimes when the .Remove is called it appears that the class terminate for the object isn't called. But it's not consistent; it happens only rarely and I can't isolate the circumstances under which it fails to fire the class terminate. </p>
<p>Consider the following demonstration code:</p>
<pre><code>Option Explicit
Private Const maxServants As Integer = 15
Private Const className As String = "Master"
Private Sub Class_Initialize()
Debug.Print className & " class constructor "
Set g_coll1 = New Collection
Dim i As Integer
For i = 1 To maxServants
Dim m_servant As Servant
Set m_servant = New Servant
m_servant.InstanceNo = i
g_coll1.Add Item:=m_servant, Key:=CStr(i)
Debug.Print "Adding servant " & m_servant.InstanceNo
Next
End Sub
Private Sub Class_Terminate()
Dim i As Integer
For i = maxServants To 1 Step -1
g_coll1.Remove (CStr(i))
Next
Debug.Print className & " class terminator "
Set g_coll1 = Nothing
Exit Sub
End Sub
</code></pre>
<p>and </p>
<pre><code>Option Explicit
Private Const className As String = "Servant"
Private m_instanceNo As Integer
Private Sub Class_Initialize()
m_instanceNo = 0
Debug.Print className & " class constructor "
End Sub
Public Property Get InstanceNo() As Integer
InstanceNo = m_instanceNo
End Property
Public Property Let InstanceNo(newInstanceNo As Integer)
m_instanceNo = newInstanceNo
End Property
Private Sub Class_Terminate()
Debug.Print className & " class terminator for " & CStr(Me.InstanceNo)
End Sub
</code></pre>
<p>and this is the test harness code:</p>
<pre><code>Option Explicit
Global g_coll1 As Collection
Public Sub Main()
Dim a As Master
Set a = New Master
End Sub
</code></pre>
<p>Now, for every run, the class_terminate of Servant is always invoked. And I can't see anything in the production code which should keep the object in the collection referenced. </p>
<p>1.) Is there any way to force the class terminate on the Remove? That is, can I call Obj.Class_Terminate and be assured it will work every time?</p>
<p>2.) On my production code (and my little test app) the classes are marked "Instancing - 5 MultiUse". I realize this may be some sort of threading issue; is there an effective way to prove (or disprove) that multi-threading is the cause of this issue--some sort of tracing I might add or some other sort of test I might perform?</p>
<p><hr /></p>
<p>EDIT: Per MarkJ's insightful comment below, I should add that the test posted above and the production code are both ActiveX exe's--part of the reason I ask about mulit-threading.</p>
http://stackoverflow.com/questions/1609851/multiple-exits-from-f-function2Multiple Exits From F# FunctionOnorio Catenacci2009-10-22T20:46:37Z2009-10-26T02:45:26Z
<p>I could do this easily in C++ (note: I didn't test this for correctness--it's only to illustrate what I'm trying to do):</p>
<pre><code> const int BadParam = -1;
const int Success = 0;
int MyFunc(int param)
{
if(param < 0)
{
return BadParam;
}
//normal processing
return Success;
}
</code></pre>
<p>But I cannot figure out how to exit a routine early in F#. What I want to do is to exit the function on a bad input but continue if the input is ok. Am I missing some fundamental property of F# or am I approaching the problem in the wrong way since I'm just learning FP?
Is a <em>failwith</em> my only option here?</p>
<p>This is what I've got so far and it compiles ok:</p>
<pre><code> #light
module test1
(* Define how many arguments we're expecting *)
let maxArgs = 2;;
(* The indices of the various arguments on the command line *)
type ProgArguments =
| SearchString = 0
| FileSpec = 1;;
(* Various errorlevels which the app can return and what they indicate *)
type ProgReturn =
| Success = 0
| WrongNumberOfArgumentsPassed = 1;;
[<EntryPoint>]
let main (args:string[]) =
printfn "args.Length is %d" args.Length
let ProgExitCode = if args.Length <> maxArgs then
printfn "Two arguments must be passed"
int ProgReturn.WrongNumberOfArgumentsPassed
(* Want to exit "main" here but how? *)
else
int ProgReturn.Success
let searchstring, filespec = args.[int ProgArguments.SearchString],args.[int ProgArguments.FileSpec];
printfn "searchstring is %s" searchstring
printfn "filespec is %s" filespec
ProgExitCode;;
</code></pre>
<p>Is there an FP way of dealing with this sort of thing? </p>
http://stackoverflow.com/questions/29044/good-free-alternative-to-ms-access32Good Free Alternative To MS AccessOnorio Catenacci2008-08-26T21:57:21Z2009-10-17T21:01:15Z
<p>Consider the need to develop a lightweight desktop DB application on the Microsoft platforms.</p>
<p>It could be done fairly easily with MS Access but I'd like to be able to distribute it to others and I don't want to pay for a runtime license. </p>
<p>Requirements:</p>
<ul>
<li>easy distribution to others</li>
<li>no runtime licensing issues</li>
</ul>
<p>Considerations and Candidates:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/OpenOffice.org%5FBase" rel="nofollow">Base from the OpenOffice suite</a>. My concerns were around its stability. </li>
<li><a href="http://dev.mysql.com/downloads/" rel="nofollow">MySQL</a> + writing custom DB code in C++ or Python or whatever seems like a rather heavy-handed solution. </li>
</ul>
<p><strong>Question</strong>: What are the low cost or free database alternatives to MS Access?</p>
<p><hr /></p>
<p><strong>See Also:</strong> <a href="http://stackoverflow.com/questions/126622/open-source-reporting-engines">Open Source Reporting Engines</a></p>
<p><hr /></p>
http://stackoverflow.com/questions/1563550/project-euler-problem-2-in-f0Project Euler Problem 2 in F#Onorio Catenacci2009-10-13T23:42:35Z2009-10-13T23:49:14Z
<p>I'm a bit stuck on the last step of getting the solution to <a href="http://projecteuler.net/index.php?section=problems&id=2" rel="nofollow">problem 2</a> on Project Euler. This is the source I've gotten so far. </p>
<pre><code>#light
module pe2 (* Project Euler Problem 2 solution *)
open System
let Phi = 1.6180339887;;
let invPhi = 1.0/Phi;;
let rootOfFive = 2.236067977;;
let maxFib = 4000000.0;
let Fib n =
System.Math.Round((Phi**n - invPhi**n)/rootOfFive);;
let FibIndices = Seq.unfold(fun i -> Some(i, i+3.0)) 3.0;;
let FibNos = FibIndices |> Seq.map(fun index -> Fib(index));;
let setAllowedFibNos = FibNos |> Seq.filter(fun fn -> (fn <= maxFib));;
// let answer = setAllowedFibNos |> Seq.fold (+) 0.0;
</code></pre>
<p>When I uncomment the last line, the process never seems to finish. So I was hoping that someone could give me a gentle nudge in the right direction. I did look at setAllowedFibNos and it looks right but it's also an infinite sequence so I only see the first three terms.</p>
<p>Also, could someone point me to the right way to chain the various sequences together? I tried something like this:</p>
<pre><code>let answer = Seq.unfold(fun i-> Some(i, i + 3.0)) 3.0
|> Seq.map (fun index -> Fib(index))
|> Seq.filter(fun fn -> (fn <= maxFib))
|> Seq.fold (+) 0.0;;
</code></pre>
<p>But that didn't work. As you can probably guess I'm just learning F# so please go gentle and if this sort of question has been asked and answered before, please post a link to the answer and I'll withdraw this one.</p>
http://stackoverflow.com/questions/1203150/bizarre-vb6-make-error1Bizarre VB6 Make ErrorOnorio Catenacci2009-07-29T21:25:33Z2009-07-31T11:03:41Z
<p>Hi all,</p>
<p>I've got a really strange error and any light that anyone can shed on this would be greatly appreciated. We're under the gun (as usual) and I need to find an answer for this quickly.</p>
<p>I made some changes to some VB6 source which builds a COM object. The automated build which builds our app returned an error. No problem I thought--I'll just back out my changes. Well backing out my changes isn't making the problem go away. </p>
<p>Specifically when I attempt to build the app via a .vbg file, with a command line like
path to vb6\vb6 ProjectFile.vbg /make</p>
<p>I get a message </p>
<p>"Compile Error in File '', Line :
Object library invalid or contains references to object definitions that could not be found."</p>
<p>As I said, I reverted the source code so I'm really stumped as to why this error is still occurring. Any VB6 gurus around who might be able to point me at an answer? I can post the exact code in question but the fact that it was building correctly, stopped building correctly and now refuses to build correctly makes me think this is not a problem with my code but rather some problem in the environment. Like something got put in the registry as a result of the previous build error. </p>
<p>Any tips, hints, or suggestions greatly welcome. I realize my question is a bit sketchy but I'm not even sure what's important to include and what isn't. </p>
<p>EDIT:</p>
<p>Thanks for the excellent suggestions guys. I think it is something to do with VB6 doing some sort of auto-registration. </p>
<p>Just to add a bit more detail: this problem does not occur when I build the referenced vbp file from the IDE. It only happens on the make on the .vbg which contains the vbp. Also the build tool in question automatically pulls latest source and the error happens on both my local box and the dedicated build box. </p>
<p>EDIT 2:</p>
<p>Hi again all,</p>
<p>The release engineering fellow figured out how to get this to build in his build environment so it's currently ok. Once we're past this crunch, I'll try to interrogate him about what he did and share the details with everyone. Thanks again for all the great suggestions. This is what's so great about SO; that is, I asked about a 10-year-old technology and I got several great and on-point ideas. </p>
http://stackoverflow.com/questions/1158748/creativity-in-software-development-any-book-recommendations/1158767#11587674Answer by Onorio Catenacci for Creativity in software development: any book recommendations?Onorio Catenacci2009-07-21T12:01:43Z2009-07-21T12:01:43Z<p>I believe that Steve McConnell recommends <a href="http://rads.stackoverflow.com/amzn/click/0738205370" rel="nofollow" title="Conceptual Blockbusting"><em>Conceptual Blockbusting</em></a> in his excellent book <em>Code Complete</em>. Not necessarily directly related to creating software but a good general treatment of ways to free up a person's creativity. </p>
http://stackoverflow.com/questions/1143301/how-to-enumerate-processes-from-vb-6-on-win-20030How To Enumerate Processes From VB 6 on Win 2003?Onorio Catenacci2009-07-17T13:34:20Z2009-07-18T19:16:07Z
<p>I've got some old VB6 code part of which enumerates the running processes on the machine via a call to CreateToolhelpSnapshot. I'm attempting to run this code on Win 2003 R2 and I have reason to be a little suspicious of the list of processes that it's returning. I found <a href="http://www.freevbcode.com/ShowCode.asp?ID=163" rel="nofollow">this article</a> which leads me to think I might need to use a different API call on 2003. However I cannot find the Microsoft KnowledgeBase article that he mentions. Or I can't find the English version anyway. I did find <a href="http://support.microsoft.com/kb/175030/de" rel="nofollow">the article in German</a> but I can't read German. I think it's advising me to use an API called EnumProcs but I don't find any such API in the Microsoft API docs (at least not at msdn.microsoft.com).</p>
<p>So, should I be using CreateToolhelpSnapshot on Win 2003 or is there some other API which I should use? And does anyone have any idea where I might find a copy of that KB article in English? </p>
http://stackoverflow.com/questions/1130682/open-source-net-wiki/1130770#11307700Answer by Onorio Catenacci for open source .Net wiki?Onorio Catenacci2009-07-15T11:07:07Z2009-07-15T11:07:07Z<p>Another thing--just found this site yesterday and it might be helpful to you:</p>
<p><a href="http://www.osalt.com/" rel="nofollow">Open Source As Alternative</a></p>
http://stackoverflow.com/questions/973386/android-adverse-to-dynamic-languages0Android Adverse To Dynamic LanguagesOnorio Catenacci2009-06-10T02:01:50Z2009-07-04T08:41:07Z
<p>Hi all,</p>
<p>I believe I read at some point that due to Android running on the Dalvik VM, that dynamic languages for the JVM (Clojure, Jython, JRuby etc.) would be hard pressed to obtain good performance on Dalvik (and hence on Android). If I recall correctly, the reasoning was that under the hood, in order to achieve the dynamic typing, there was quite a bit of fiddling done with the java bytecode and that the bytecode->dalvik translation wouldn't pick this up easily.</p>
<p>So should I avoid a dynamic JVM language if I want to develop for Android?</p>
<p><hr /></p>
<p>EDIT: I guess I should have provided a bit more context. I was considering using Clojure to develop apps for Android. I was thinking about using Clojure for a few reasons: </p>
<ul>
<li><p>I want to learn FP</p></li>
<li><p>I don't really care to learn Java</p></li>
<li><p>Clojure seems to have some very
interesting language concepts (STM
for example).</p></li>
</ul>
<p>However, when I tried to write apps for Android in Clojure, I found that there is a performance issue that is unacceptable. But I found a blog posting that said that dynamically typed languages (Clojure for example) would have problems due to the bytecode manipulation needed to get the dynamic typing. So I was sort of looking for independent confirmation that this is true or it isn't. I should have known better than to make the assumption that in this particular issue all dynamically typed JVM languages could be treated as the same. I guess I did ask a fairly broad question so I guess I shouldn't be surprised that people didn't quite understand what I was asking.</p>
http://stackoverflow.com/questions/1068161/volatile-in-c/1068182#10681820Answer by Onorio Catenacci for volatile in cOnorio Catenacci2009-07-01T09:25:44Z2009-07-01T09:25:44Z<p>Google is your friend:</p>
<p><a href="http://www.netrino.com/node/80" rel="nofollow">How To Use C's volatile Keyword</a></p>
<p><a href="http://www.ee.nmt.edu/~rison/ee308%5Fspr01/supp/010228/volatile.html" rel="nofollow">Using the volatile keyword in C</a></p>
http://stackoverflow.com/questions/1066861/free-open-online-projects/1066939#10669394Answer by Onorio Catenacci for free open online projects?Onorio Catenacci2009-07-01T01:44:30Z2009-07-01T01:44:30Z<p>Here's an open source C# project: <a href="http://www.mono-project.com/Main%5FPage" rel="nofollow">Mono</a>. You might also check here: <a href="http://www.codeplex.com/" rel="nofollow">Codeplex</a></p>
http://stackoverflow.com/questions/1028313/how-to-find-checked-out-files1How To Find Checked Out FilesOnorio Catenacci2009-06-22T16:54:29Z2009-06-22T17:15:42Z
<p>Hi all,</p>
<p>I'm using Visual Source Safe 6.0d (work requirement) and I've been trying to hack together a little shell script to allow me to easily remove a source tree or warn me if I've got files checked out so I can make sure I don't accidentally delete work. Is there any way to tell if files are checked out other than checking the read-only bit on the files themselves? </p>
<ol>
<li>VSS doesn't seem to be writing any file (I took a snapshot of the dir before and after checking out a file and there was no difference in the files listed) </li>
<li>I can't seem to find anything by Googling. </li>
<li>I also checked the vssver.scc for differences and didn't find anything.</li>
</ol>
<p>Mind you, checking for writeable files isn't the worst thing in the world but it seems as if VSS makes several files in the source tree (*.ncb, *.scc, *.sln) writeable without me having checked anything out. I can simply exclude the files but I'm trying to find a bit more elegant solution.</p>
http://stackoverflow.com/questions/1025029/how-to-use-win32-apis-with-python/1025093#10250932Answer by Onorio Catenacci for How to use win32 API's with python?Onorio Catenacci2009-06-22T00:06:39Z2009-06-22T00:06:39Z<p>You may also want to check <a href="http://sourceforge.net/projects/pywin32/" rel="nofollow">Python for Windows extension at SourceForge</a>.</p>
http://stackoverflow.com/questions/286924/how-do-i-build-a-vb6-console-app3How do I build a VB6 Console AppOnorio Catenacci2008-11-13T13:41:04Z2009-06-21T22:03:43Z
<p>I did some googling to try to answer this question but even after that I'm not quite clear about something. Is it possible to create a console app from VB6? </p>
<p>I've got a VB6 app that doesn't put up a window. I always assumed that it was a console app. However, I want to be able to use the Windows API SetConsoleCtrlHandler function from within it. I believe that with C++/MFC apps you have to set a linker switch to create a console app. And one of my fellow developers told me that VB6 doesn't create a true console app and therefore this would not work. So is it possible to create a console app that Windows will recognize as a console app from VB6?</p>
<p>Platform: Windows XP SP2</p>
<p>Development Platform: VB6</p>
http://stackoverflow.com/questions/1019739/xampp-and-amf0XAMPP and AMF?Onorio Catenacci2009-06-19T19:46:31Z2009-06-19T19:46:31Z
<p>Hi all,</p>
<p>Is there any open source package along the lines of <a href="http://en.wikipedia.org/wiki/XAMPP" rel="nofollow">XAMPP</a> that would give a developer support for <a href="http://en.wikipedia.org/wiki/Action%5FMessage%5FFormat" rel="nofollow">AMF</a> "out of the box" as it were?</p>
http://stackoverflow.com/questions/1017624/when-is-a-function-name-too-long/1017743#10177433Answer by Onorio Catenacci for When is a function name too long?Onorio Catenacci2009-06-19T12:38:05Z2009-06-19T12:38:05Z<p>From <a href="http://en.wikipedia.org/wiki/Code%5FComplete" rel="nofollow">Code Complete</a> (1st Edition, page 188)</p>
<p>"Gorla, Benander and Benander found that the effort required to debug a COBOL program was minimized when variables had names that averaged 10 to 16 characters (1990). Programs with names averaging 8 to 20 characters were almost as easy to debug." </p>
<p>This constitutes the only empirical discussion of a reasonable guideline for variable name length I've ever seen. Everything else is down to opinion and comfort. </p>
http://stackoverflow.com/questions/126622/open-source-reporting-engines5Open Source Reporting EnginesOnorio Catenacci2008-09-24T11:35:36Z2009-06-18T19:04:51Z
<p>As a followup to <a href="http://stackoverflow.com/questions/29044/good-free-alternative-to-ms-access">this question</a> can anyone give me pointers to free/open-source report engines? I'd prefer something that I can use in C++ but I'm sure almost anything could be made to work with C++ given enough time and effort. I gather there's one in <a href="http://www.eclipse.org/birt/phoenix/" rel="nofollow">BIRT</a> but are there others available? This would be part of the open source software stack to replace MS Access with a free (as in freedom)/open alternative. Oh and because it came up with that other question, everything being contained in one file is not an important criteria in this particular case. </p>
http://stackoverflow.com/questions/1011712/what-are-your-tips-for-keeping-track-and-avoiding-bugs-in-loops/1011784#10117840Answer by Onorio Catenacci for What are your tips for keeping track and avoiding bugs in loops ?Onorio Catenacci2009-06-18T09:40:48Z2009-06-18T09:40:48Z<p>As in this as in many things, there's some excellent advice in Steve McConnell's <a href="http://www.cc2e.com/" rel="nofollow">Code Complete</a>. It would be well worth your time to read what he's got to say about building good looping code. I don't have my copy of the book handy here but the whole book is worth your time.</p>
http://stackoverflow.com/questions/998808/net-library-for-parsing-source-code-files/998845#9988450Answer by Onorio Catenacci for .Net Library for parsing source code files?Onorio Catenacci2009-06-15T22:53:03Z2009-06-15T22:53:03Z<p>Would <a href="http://sharptoolbox.com/tools/antlr" rel="nofollow">Antlr</a> meet your needs?</p>
http://stackoverflow.com/questions/923998/functional-development-on-the-clr1Functional Development On The CLROnorio Catenacci2009-05-29T01:23:39Z2009-06-12T11:37:02Z
<p>If this has already been asked and answered, please point me to the existing Q & A and I'll delete this question. I did look and didn't see this one answered.</p>
<p>Are there mainly functional languages (like LISP, Scheme, Haskell and so forth) besides F# for the CLR platform? I say "mainly functional" because realize there are CLR languages that have functional constructs like (Iron)Python but I wouldn't consider Python as a functional language. </p>
<p>I'm asking because I'm doing a presentation on FP and concurrency for some other developers at work and they're asking me about F# (we use a Microsoft tool stack) and I want to make sure they're aware of all possible options.</p>
<p><hr /></p>
<p>EDIT</p>
<p>From the answers below:</p>
<p><a href="http://www.codeplex.com/IronScheme" rel="nofollow">IronScheme</a></p>
<p><a href="http://hackage.haskell.org/cgi-bin/hackage-scripts/package/hs-dotnet" rel="nofollow">hsdotNet</a></p>
<p><a href="http://www.scala-lang.org" rel="nofollow">Scala</a> (for .Net)</p>
<p><a href="http://nemerle.org/Main%5FPage" rel="nofollow">Nemerle</a></p>
<p>And I've seen stuff about a CLR version of <a href="http://www.clojure.org" rel="nofollow">Clojure</a>. Thanks everyone for your input. </p>
http://stackoverflow.com/questions/305036/setting-up-alerts-in-sharepoint/982957#982957-1Answer by Onorio Catenacci for Setting up Alerts in SharePointOnorio Catenacci2009-06-11T18:58:00Z2009-06-11T18:58:00Z<p>Etienne,</p>
<p>It might be worth your while to repost this question over on <a href="http://serverfault.com/">ServerFault</a>. This question seems like it would be more in keeping with their knowledge base. </p>
http://stackoverflow.com/questions/980672/vb6-auto-completion-intellisense-is-suddenly-taking-forever/980760#9807601Answer by Onorio Catenacci for VB6 auto completion (intellisense) is suddenly taking forever... Onorio Catenacci2009-06-11T12:16:05Z2009-06-11T12:16:05Z<p>If I were you I'd get a copy of Sysinternals <a href="http://technet.microsoft.com/en-us/sysinternals/bb896642.aspx" rel="nofollow">Filemon</a> utility (or <a href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx" rel="nofollow">Procmon</a> if it's appropriate) and see if you can figure out which files VB6's Intellisense is accessing. Then I would rename then to different names so the VB6 intellisense mechanism might re-create them and see if that fixes anything. Just a suggestion. </p>
http://stackoverflow.com/questions/978674/employer-wont-let-me-make-websites-as-a-hobby-freetime-and-now-i-got-laid-off/978682#9786829Answer by Onorio Catenacci for Employer won't let me make websites as a hobby/freetime and now I got laid off?Onorio Catenacci2009-06-10T23:52:39Z2009-06-11T00:04:44Z<p>You know at the risk of sounding nasty--I would seek advice from an employment lawyer. While people here may have some ideas, there are a lot of legal ins and outs; you really want someone who knows what they're talking about to advise you.</p>
http://stackoverflow.com/questions/973288/how-to-persuade-on-important-software-development-issues/973359#9733592Answer by Onorio Catenacci for How to persuade on important software development issuesOnorio Catenacci2009-06-10T01:51:22Z2009-06-10T01:51:22Z<p>One thing you might try--organize a "lunch and learn". Invite your fellow developers to have lunch as a group and do a little presentation on a topic (automated unit tests for example) that they may want to know about. This has worked for me, as well as others with whom I'm acquainted, in the past. It's a nice, gentle introduction to a new idea and it might get your fellow developers to think about it without feeling as if you're preaching to them.</p>
http://stackoverflow.com/questions/541407/lisp-code-formatting14Lisp Code FormattingOnorio Catenacci2009-02-12T14:15:02Z2009-05-11T21:11:38Z
<p>One of the people who took the time to comment on <a href="http://stackoverflow.com/questions/535277/the-clojure-or-lisp-equivalent-of-a-compound-boolean-test">my other question</a> about Clojure/LISP syntax pointed out that I had not written my sample code in the standard LISP way. So he was kind enough to rewrite the code snippet and that's a big help. But it raised another question in my mind. Why would this:</p>
<pre><code>(if (= a something)
(if (= b otherthing)
(foo)))
</code></pre>
<p>which is standard LISP formatting be preferrable to this form:</p>
<pre><code>(if (= a something)
(if (= b otherthing)
(foo)
)
)
</code></pre>
<p>which is the way I would have naively formatted this code because of my C++ development background. I'm wondering if there's any benefit to the latter formatting or it's just an entrenched standard (like a QWERTY keyboard). I'm not trying to be argumentative--it's just difficult for me to understand why the first form would be preferable. The second form helps me to see the code structure more easily. </p>
http://stackoverflow.com/questions/1786969/pitfalls-disadvantages-of-functional-programmingComment by Onorio Catenacci on pitfalls/disadvantages of functional programmingOnorio Catenacci2009-11-24T00:15:16Z2009-11-24T00:15:16ZCommunity wiki.http://stackoverflow.com/questions/1766020/how-to-change-list-of-chars-to-string/1769997#1769997Comment by Onorio Catenacci on How To Change List of Chars To String?Onorio Catenacci2009-11-20T11:55:12Z2009-11-20T11:55:12ZOne thing @ssp, I did try concatenating a string with the ^ operator and the compiler gave me a warning about OCaml compatibility. That is, it warned me that I should use + to concatenate strings.http://stackoverflow.com/questions/1766020/how-to-change-list-of-chars-to-string/1766038#1766038Comment by Onorio Catenacci on How To Change List of Chars To String?Onorio Catenacci2009-11-19T21:03:06Z2009-11-19T21:03:06Z@JaredPar, thanks! Just what the doctor ordered. I figured there must be some simple way to get at the string I wanted.
@Juliet, you should have posted that as an answer :-) I would have voted it up because it's also an excellent suggestion.
http://stackoverflow.com/questions/1703869/how-does-language-oriented-programming-compare-to-oop-functional-in-the-real-wo/1703989#1703989Comment by Onorio Catenacci on How does "Language Oriented Programming" compare to OOP/Functional in the real worldOnorio Catenacci2009-11-12T14:02:09Z2009-11-12T14:02:09ZHi Chris,
Got your book and I'm really liking it so far. :-) Hoping to really ratchet up my F# game by the time I work through it.http://stackoverflow.com/questions/1658573/how-to-use-f-with-mono-on-linuxComment by Onorio Catenacci on How to use F# with mono on linux?Onorio Catenacci2009-11-03T16:08:56Z2009-11-03T16:08:56Z@keke, I realize that English may not be your native tongue but maybe you might want to throw a "please" and/or a "thank you" in there. As far as I know, everyone here is volunteering their time to help and you're coming across slightly demanding.http://stackoverflow.com/questions/174044/are-there-any-hardware-books-or-articles-that-can-help-with-programming/174092#174092Comment by Onorio Catenacci on Are there any hardware books or articles that can help with programming?Onorio Catenacci2009-11-02T17:17:40Z2009-11-02T17:17:40Z@Fedyashev Nikita, I'm not sure this is <i>exactly</i> the same but it's close: <a href="http://www.intel.com/design/pentiumii/manuals/243502.htm" rel="nofollow">intel.com/design/pentiumii/…</a>http://stackoverflow.com/questions/1642795/expression-to-test-that-all-items-in-sequence-are-the-same/1642989#1642989Comment by Onorio Catenacci on Expression To Test That All Items In Sequence Are The Same Onorio Catenacci2009-10-29T12:00:42Z2009-10-29T12:00:42Z@cfern, You're right. I do need to be careful about the terminology I use. I tend to use "List" and "Sequence" as if they were synonyms--and in F# they're definitely not synonymous. I am working with a list.http://stackoverflow.com/questions/1631321/vb6-collection-remove-doesnt-fire-classterminateComment by Onorio Catenacci on VB6 Collection Remove Doesn't Fire Class_TerminateOnorio Catenacci2009-10-27T18:32:49Z2009-10-27T18:32:49Z@Pavel, thanks for the link.http://stackoverflow.com/questions/1631321/vb6-collection-remove-doesnt-fire-classterminate/1631439#1631439Comment by Onorio Catenacci on VB6 Collection Remove Doesn't Fire Class_TerminateOnorio Catenacci2009-10-27T17:06:21Z2009-10-27T17:06:21Z@MarkJ, Bingo. Yes, I should add that to my description above. Yes the app in question is an ActiveX exe.http://stackoverflow.com/questions/1631321/vb6-collection-remove-doesnt-fire-classterminate/1631439#1631439Comment by Onorio Catenacci on VB6 Collection Remove Doesn't Fire Class_TerminateOnorio Catenacci2009-10-27T15:22:29Z2009-10-27T15:22:29Z@Ant, reason I ask about multi-threading is because the trace logs look as if I'm getting multiple threads of execution. http://stackoverflow.com/questions/1625882/what-is-f-being-used-forComment by Onorio Catenacci on What is F# being used for?Onorio Catenacci2009-10-27T11:33:28Z2009-10-27T11:33:28ZEither this should be community wiki or it should be closed. The question strikes me as a discussion question. Downvoted.http://stackoverflow.com/questions/1609851/multiple-exits-from-f-functionComment by Onorio Catenacci on Multiple Exits From F# FunctionOnorio Catenacci2009-10-26T14:06:47Z2009-10-26T14:06:47Z@Benjol, thanks--exactly the sort of thing I was looking for.http://stackoverflow.com/questions/1621754/statically-typed-languages-vs-dynamically-typed-languagesComment by Onorio Catenacci on Statically typed languages vs. dynamically typed languagesOnorio Catenacci2009-10-25T19:21:30Z2009-10-25T19:21:30ZSounds like a homework assignment to me.http://stackoverflow.com/questions/1609851/multiple-exits-from-f-function/1610737#1610737Comment by Onorio Catenacci on Multiple Exits From F# FunctionOnorio Catenacci2009-10-23T01:29:43Z2009-10-23T01:29:43Z@Pavel Minaev, I hope that soon I understand F# well enough to understand your answer. :-) Thanks for taking the time to answer my question. http://stackoverflow.com/questions/1609851/multiple-exits-from-f-function/1610041#1610041Comment by Onorio Catenacci on Multiple Exits From F# FunctionOnorio Catenacci2009-10-23T00:56:40Z2009-10-23T00:56:40Z@Nathan Sanders, actually that's what I had done initially--a set of integer constants. But they did seem more like an enumerated set of possible returns than a series of constants. 6 of one, 1/2 dozen of another I guess. Still it's good to know what's not considered idiomatic when one is trying to learn a new language.