User Marcin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T15:49:49Zhttp://stackoverflow.com/feeds/user/21640http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/197481/is-it-possible-to-teach-several-languages-paradigms-at-once/197555#1975550Answer by Marcin for Is it possible to teach several languages/paradigms at once?Marcin2008-10-13T13:17:39Z2009-10-18T16:58:18Z<p>I would suggest that one should start with functional programming to get the basic ideas, then move quickly to something more "cool" like programming in e.g. seaside to get them using OO without really realising, and doing some imperative programming.</p>
<p>From there you can either get students to be better at using the skills they have, comparing the approaches available, understanding efficiency, etc, or move them to some other paradigms, so that they at least know what is out there.</p>
http://stackoverflow.com/questions/148968/windows-batch-files-bat-vs-cmd/160278#160278-1Answer by Marcin for Windows batch files: .bat vs .cmd?Marcin2008-10-01T23:51:03Z2009-10-08T21:52:40Z<p>Slightly off topic, but have you considered <a href="http://en.wikipedia.org/wiki/Windows%5FScript%5FHost" rel="nofollow">Windows Scripting Host</a>? You might find it nicer.</p>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/254033#2540331Answer by Marcin for What non-programming books should programmers read?Marcin2008-10-31T16:04:22Z2009-08-21T20:03:44Z<p><a href="http://en.wikipedia.org/wiki/Language,%5FTruth,%5Fand%5FLogic" rel="nofollow">Language, Truth, and Logic</a> by AJ Ayer. </p>
<p>Why? Because it will help you avoid saying things that don't mean anything in a literal sense, and get you thinking about the meaningfulness of claims. </p>
<p>Don't take it too strongly - the author has an extensive introduction qualifying his claims.</p>
http://stackoverflow.com/questions/407227/how-to-select-a-programming-language-for-a-project/408509#4085090Answer by Marcin for How to select a programming language for a project?Marcin2009-01-03T02:35:13Z2009-01-03T02:35:13Z<p>First of all, the components of code quality are familiarity with the task, with the language, and with the toolset available apart from the language. Once there is passable knowledge of a sane programming language, that is the least important element for productivity (if you need to be a wizard to get anything done, then that suggests that libraries or the language are not sane).</p>
<p>So, next of all, one would choose based on what support there is for the kinds of tasks one needs to do: in general, any environment that requires less boilerplate is going to be more productive.</p>
<p>Finally, one needs to consider the tradeoffs between using a new, more desirable element (language, tool, or library) as against the costs of doing that. If the team does that task all the time, then upgrading is likely to be valuable; by contrast if the team is in a state of chaos, the costs may be particularly high.</p>
http://stackoverflow.com/questions/327751/how-do-you-handle-exceptional-cases/327809#3278090Answer by Marcin for How do you handle exceptional casesMarcin2008-11-29T18:20:33Z2008-11-29T18:20:33Z<p>Well, if all it is is that you have two options that are special, and then anything else is dealt with in the same way, then store your options as strings, and if either of the two special ones appears in that list, then show the appropriate stuff for that special item.</p>
<p>Just check your list of items for the two special ones. Nothing fancy.</p>
http://stackoverflow.com/questions/324043/how-best-to-switch-from-template-mess-to-clean-classes-architecture-c/324096#3240960Answer by Marcin for How best to switch from template mess to clean classes architecture (C++)?Marcin2008-11-27T15:55:20Z2008-11-27T15:55:20Z<p>As mentioned, unit tests are a good idea. Indeed, rather than breaking your code by introducing "simple" changes that are likely to ripple out, just focus on creating a suite of tests, and fixing non-compliance with the tests. Have an activity to update the tests when bugs come to light.</p>
<p>Beyond that, I would suggest upgrading your tools, if possible, to help with debugging template-related problems.</p>
http://stackoverflow.com/questions/192725/why-is-erlang-crashing-on-large-sequences/193033#1930332Answer by Marcin for Why is Erlang crashing on large sequences?Marcin2008-10-10T21:11:06Z2008-11-03T15:57:28Z<p>Also, both windows and linux have limits on the maximum amount of memory an image can occupy
As I recall on linux it is half a gigabyte. </p>
<p>The real question is why these operations aren't being done lazily ;)</p>
http://stackoverflow.com/questions/254935/storing-social-security-numbers/254973#2549731Answer by Marcin for Storing Social Security NumbersMarcin2008-10-31T21:11:03Z2008-11-01T00:13:59Z<p>Well, you haven't given any information on what you are going to do with these numbers. If you ever need to retrieve an SSN, then basically there's almost no point in doing anything with this - store it in clear. Any form of encryption where you have the ciphertext and key in the same place is going to only slow down an attacker a little. This only matters to attackers who can't take huge amounts of data, or who can't just take your whole computer, or who are not competent to join the dots. If you are dealing with the latter case, actual access control in the first place is rather more important.</p>
<p>If, however, you get an SSN externally and want to find out whose account that is, you could use a one-way hash to do that.</p>
http://stackoverflow.com/questions/254613/semantic-html-markup-for-a-copyright-notice/254642#254642-1Answer by Marcin for Semantic HTML markup for a copyright noticeMarcin2008-10-31T19:22:05Z2008-10-31T19:22:05Z<p>Why not use the CC format, but indicate that no rights are granted?</p>
<p>In any case, the main problem with the use of the CC formats is that people do not clearly identify which elements of the webpage that they appear on they apply to.</p>
http://stackoverflow.com/questions/38838/two-way-password-encryption-without-ssl/254045#2540450Answer by Marcin for Two-way password encryption without sslMarcin2008-10-31T16:09:04Z2008-10-31T16:09:04Z<p>An ssl certificate that is self-signed doesn't cost money. For a free twitter service, that is probably just fine for users.</p>
http://stackoverflow.com/questions/246808/when-is-object-oriented-not-the-correct-solution/251692#2516920Answer by Marcin for When is Object Oriented not the correct solution?Marcin2008-10-30T20:41:42Z2008-10-30T20:41:42Z<p>Well, OOP is not especially orthogonal to anything (except perhaps other ways of getting polymorphism) so...uh...whatever.</p>
http://stackoverflow.com/questions/244898/wikipedia-pseudocode-and-ip/245282#2452820Answer by Marcin for Wikipedia Pseudocode and IPMarcin2008-10-28T23:41:52Z2008-10-28T23:41:52Z<p>The answer is that you should go to a legal bookshop, and walk to the section on intellectual property law, and pick out a good introduction to intellectual property law, take it to the checkout, buy it, and read it. Alternatively, you could keep doing what you're doing, and pay a lawyer to tell you the answer. What you should not do is ask a bunch of programmers on the internet.</p>
http://stackoverflow.com/questions/239863/what-is-a-unit/239887#2398876Answer by Marcin for What is a "Unit"?Marcin2008-10-27T13:34:49Z2008-10-27T13:34:49Z<p>A unit is any element that can be tested in isolation. Thus, one will almost always be testing methods in an OO environment, and some class behaviours where there is close coupling between methods of that class.</p>
http://stackoverflow.com/questions/239241/what-are-the-disadvantages-of-arrays/239254#2392540Answer by Marcin for What are the disadvantages of arrays?Marcin2008-10-27T07:09:30Z2008-10-27T07:09:30Z<p>An array, if defined as a fixed-length structure (in the sense that it would need to be explicitly resized) holding the same data in contiguous cells, has the disadvantage that one cannot insert a new item without destroying the data at the cell where the insert takes place, or engaging in expensive memory copy operations.</p>
<p>The advantages are cheap random access, and cheap iteration.</p>
http://stackoverflow.com/questions/238668/proprietary-system-documentation-leaks-and-how-to-stop-them/238705#2387052Answer by Marcin for Proprietary system documentation 'leaks' and how to stop them?Marcin2008-10-26T22:12:43Z2008-10-26T22:12:43Z<p>Not trying to prevent third party technologies from being compatible with yours.</p>
<p>Seriously, if you lack the confidence to let third parties make replacements that are compatible, then think about whether that many people will find your product that valuable in the first place.</p>
http://stackoverflow.com/questions/232681/what-does-it-take-to-be-a-better-oo-programmer/232751#2327512Answer by Marcin for What does it take to be a better OO programmer?Marcin2008-10-24T07:30:45Z2008-10-24T07:30:45Z<p>Practice functional programming, in both dedicated functional programming languages, and object-oriented languages. This is will increase your appreciation of how reusable algorithms help encourage well-defined interfaces, which leads to easier-to-work-with programme elements.</p>
http://stackoverflow.com/questions/232736/code-obfuscator-for-php/232738#2327380Answer by Marcin for Code obfuscator for php?Marcin2008-10-24T07:27:49Z2008-10-24T07:27:49Z<p>Why would you need an obfuscator for code that lives on your own server?
(Not that there is any point to an obfuscator in any other circumstance).</p>
http://stackoverflow.com/questions/224867/what-programming-language-do-you-wish-would-quietly-retire/227661#227661-1Answer by Marcin for What programming language do you wish would quietly retire?Marcin2008-10-22T21:47:07Z2008-10-22T21:47:07Z<p>Java, and by extension C#.</p>
http://stackoverflow.com/questions/102911/whats-a-good-functional-language-to-learn-first/140779#140779-1Answer by Marcin for What's a good Functional language to learn first?Marcin2008-09-26T17:24:13Z2008-10-22T21:03:14Z<p>C++, Smalltalk, and python.</p>
<p>That's right - you can use functional programming techniques in all of those languages.</p>
<p>I wouldn't recommend them as your only functional programming languages, because using languages focused on functional programming helps inform taste. In the end the choice between FP-oriented languages is minimal if you just want to learn. Common lisp is the least clean, though.</p>
http://stackoverflow.com/questions/227340/software-protection-by-encryption/227392#2273920Answer by Marcin for Software protection by encryptionMarcin2008-10-22T20:20:36Z2008-10-22T20:20:36Z<p>Basically, you will need to use a commercial solution. The approach here is different from a dongle, and you cannot expect to simply replicate a dongle.</p>
<p>Instead, the main solution is to use some kind of key that is calculated in part from things about the computer that is running the software. Keygens that do the same thing can be made by crackers, but so it goes. They could have simply patched your software to not look for a dongle.</p>
http://stackoverflow.com/questions/223040/what-methods-do-wikis-use-for-merging-concurrent-edits/223698#2236980Answer by Marcin for What methods do wikis use for merging concurrent edits?Marcin2008-10-21T22:07:42Z2008-10-21T22:07:42Z<p>Well now, I think that that would be a terrible, terrible idea. Let's be honest: merging is pretty dicey in code, and that at least has elements that might be isolated. Don't do this - human intelligence will always be better. Instead you are trying to replace it with an automatic solution that can result in output that is not sane, for no benefit.</p>
http://stackoverflow.com/questions/219958/working-with-seaside-continuations1Working with Seaside continuationsMarcin2008-10-20T21:16:28Z2008-10-21T22:01:39Z
<p>How do I get a BlockClosure in Squeak (I want to use BlockClosure>>callCC)?</p>
<p>When I write [#foo] that is a BlockContext, what's the deal?</p>
<p>Update: I have worked out that BlockClosure is a thing mainly of new compiler.</p>
<p>Instead how do I work with seaside Continuations? I'm having problems, and any examples would be appreciated.</p>
<p>Further update: The purpose of this is not to use seaside (at least not directly) but rather to write traversals and other such things in a way that is easier than rolling my own state-tracking iterators.</p>
http://stackoverflow.com/questions/222970/scalability-on-the-web/223636#223636-2Answer by Marcin for Scalability on the webMarcin2008-10-21T21:51:34Z2008-10-21T21:51:34Z<p>The answer is...you don't have this problem. If you have this problem, you can afford to pay an expert to come up with the answer.</p>
http://stackoverflow.com/questions/220775/always-check-parameters-and-throw-exceptions/221150#2211500Answer by Marcin for Always check parameters and throw exceptionsMarcin2008-10-21T08:26:15Z2008-10-21T08:26:15Z<p>Well, it depends. If your code is going to pick up the null anyway, and throw an exception then, it probably makes more sense to ensure that you have sensible clean-up code. If it might not be detected otherwise, or clean-up may be long running, or there might be an out-of-process call (e.g. database) you are probably better off not trying to change the world incorrectly, then change it back.</p>
http://stackoverflow.com/questions/93097/is-object-oriented-modeling-different-from-object-oriented-programming/215781#2157810Answer by Marcin for Is Object-Oriented Modeling different from Object-Oriented Programming?Marcin2008-10-19T00:32:12Z2008-10-19T00:32:12Z<p>Well, given that code is a means of communicating, object-oriented programming in an object-oriented programming language is a form of modelling.</p>
<p>One can however model at a more abstract level using modelling languages that are less expressive, but perhaps more useful for other purposes. For the purposes of developing software, modelling not relatively closely tied to programmes is mainly an exercise for a certain class of person who thinks it is terribly important, and is paid as if it were, but it is not.</p>
http://stackoverflow.com/questions/15376/whats-the-best-uml-diagramming-tool/215776#2157763Answer by Marcin for What's the best UML diagramming tool?Marcin2008-10-19T00:26:57Z2008-10-19T00:26:57Z<p>Pen and paper. If you can get the scan into a vector format, that may be useful when making minor amendments.</p>
http://stackoverflow.com/questions/215759/how-do-i-validate-the-class-diagram-for-a-given-domain/215771#2157713Answer by Marcin for How do I validate the class diagram for a given domain?Marcin2008-10-19T00:19:41Z2008-10-19T00:19:41Z<p>The short answer is that this is not very important. </p>
<p>Use your domain class diagrams to keep a note of what you think is in the domain, that is all. It is not your god, and it will not hurt you to change it as you go.</p>
http://stackoverflow.com/questions/212310/when-does-a-project-not-require-an-application-architect/212375#2123750Answer by Marcin for When does a project not require an application architect?Marcin2008-10-17T14:28:03Z2008-10-17T14:28:03Z<p>It depends what you mean by "architect." If you mean what CVertex means, then indeed, that is correct. If you mean "a fat* person who doesn't code but likes UML a lot, and kisses management behind" then the main risk is that the project will work and not be supported by management, rather than the other way around.</p>
<p>* In my experience a lot of these no-code people have even more excess weight than I do. I see plenty of skinny programmers, though.</p>
http://stackoverflow.com/questions/207701/python-tutorial-for-total-beginners/207746#2077461Answer by Marcin for Python tutorial for total beginners?Marcin2008-10-16T08:10:50Z2008-10-16T08:10:50Z<p>As always, I recommend at least dipping into the classics - try taking stuff from SICP for when you want to detour into a little bit of computer-science magic. </p>
http://stackoverflow.com/questions/195651/any-open-sourced-websites/195716#1957160Answer by Marcin for Any open sourced websites?Marcin2008-10-12T17:13:14Z2008-10-12T17:13:14Z<p>All of the seaside-based systems on squeaksource.com</p>
http://stackoverflow.com/questions/373501/has-there-been-any-serious-effort-made-to-reverse-engineer-the-amazon-mp3-store-a/373597#373597Comment by Marcin on Has there been any serious effort made to reverse engineer the Amazon MP3 store azn file format?Marcin2009-01-03T02:40:17Z2009-01-03T02:40:17ZDave - while I believe that you are correct on that legal point, I had vaguely heard that that had changed because of european directives on copyright. Not sure though, would check it if you were ever going to rely on it.http://stackoverflow.com/questions/278735/should-one-learn-a-non-legacy-language-before-learning-fortran/278787#278787Comment by Marcin on Should one learn a non-legacy language before learning Fortran?Marcin2008-11-29T18:38:24Z2008-11-29T18:38:24ZI think you may not be familiar with modern fortran. Of course, it is likely that your friend's teachers were also unaware of it.http://stackoverflow.com/questions/268751/what-ever-happened-to-apl/307075#307075Comment by Marcin on What ever happened to APL?Marcin2008-11-27T16:00:13Z2008-11-27T16:00:13ZYes, yes I do love that tradeoff. So, I think would most people for the majority of tasks.http://stackoverflow.com/questions/287517/encrypting-hashing-plain-text-passwords-in-database/287522#287522Comment by Marcin on Encrypting/Hashing plain text passwords in databaseMarcin2008-11-13T17:34:11Z2008-11-13T17:34:11ZThose collisions don't really reduce the security of the password scheme, particularly given that one will be using a salt.http://stackoverflow.com/questions/172303/is-there-a-regular-expression-to-detect-a-valid-regular-expression/172316#172316Comment by Marcin on Is there a regular expression to detect a valid regular expression?Marcin2008-11-11T20:09:02Z2008-11-11T20:09:02ZIf it's recursive, it ain't a regex.http://stackoverflow.com/questions/171719/functional-languages-when-to-use/171729#171729Comment by Marcin on Functional languages - when to use?Marcin2008-11-03T14:27:53Z2008-11-03T14:27:53ZWell, arguably many multi-paradigm languages give you the mediocre-to-poor of all worlds. I would definitely say that goes for python (except in relation to OO, where it is fairly solid, but not the best by any means).http://stackoverflow.com/questions/254613/semantic-html-markup-for-a-copyright-notice/254710#254710Comment by Marcin on Semantic HTML markup for a copyright noticeMarcin2008-11-03T13:35:23Z2008-11-03T13:35:23ZScott, you still seem not to understand what it is you are trying to describe. You should probably have a conversation with your employer's lawyers.http://stackoverflow.com/questions/254613/semantic-html-markup-for-a-copyright-notice/254642#254642Comment by Marcin on Semantic HTML markup for a copyright noticeMarcin2008-11-03T13:34:13Z2008-11-03T13:34:13ZThat would be incorrect. Have an empty field (unless the convention treats that stupidly).http://stackoverflow.com/questions/254613/semantic-html-markup-for-a-copyright-noticeComment by Marcin on Semantic HTML markup for a copyright noticeMarcin2008-10-31T21:15:55Z2008-10-31T21:15:55ZUnless you have an identifiable consumer for this data in mind, there is no real point in making it "semantic" as you are not conveying any particular information unless there is a licence in place. Otherwise, everyone already knows that they can't just jack your text in most jurisdictions. http://stackoverflow.com/questions/254613/semantic-html-markup-for-a-copyright-notice/254710#254710Comment by Marcin on Semantic HTML markup for a copyright noticeMarcin2008-10-31T21:13:11Z2008-10-31T21:13:11ZWhat's "ordinary Copyright?"http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/48341#48341Comment by Marcin on What non-programming books should programmers read?Marcin2008-10-31T15:53:34Z2008-10-31T15:53:34ZWhy on earth would you recommend the KJV? If nothing else, other editions have better footnotes.http://stackoverflow.com/questions/246808/when-is-object-oriented-not-the-correct-solutionComment by Marcin on When is Object Oriented not the correct solution?Marcin2008-10-30T20:40:25Z2008-10-30T20:40:25ZAOP is not orthogonal to OO.http://stackoverflow.com/questions/134569/c-exception-throwing-stdstringComment by Marcin on c++ exception : throwing std::stringMarcin2008-10-29T14:10:32Z2008-10-29T14:10:32ZIt would be legal, but not moral.http://stackoverflow.com/questions/246859/http-1-0-vs-1-1Comment by Marcin on HTTP 1.0 vs 1.1Marcin2008-10-29T14:07:44Z2008-10-29T14:07:44ZGood on you for going to the source. It sounds like you don't kno wmuch about networking in general, if you don't understand that summary. Perhaps you should research those terms as well.http://stackoverflow.com/questions/244788/what-do-you-wear-to-an-interview-for-an-engineering-position/245016#245016Comment by Marcin on What do you wear to an interview (for an engineering position)?Marcin2008-10-29T00:09:57Z2008-10-29T00:09:57ZWell, I disagree on the last part - if you look good in your three-piece suit, it doesn't matter too much. Similarly, if you only own a crap suit, then don't wear a suit.