User olavk - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T19:07:24Zhttp://stackoverflow.com/feeds/user/7488http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/84102/what-is-idiomatic-code/84406#844069Answer by olavk for What is idiomatic code?olavk2008-09-17T15:22:49Z2009-10-17T13:58:21Z<p>Some examples:</p>
<p><strong>Resource management</strong>, non idiomatic:</p>
<pre><code>StreamReader sr = File.OpenText(path);
string content = sr.ReadToEnd();
sr.Close();
</code></pre>
<p>Idiomatic:</p>
<pre><code>string content;
using (StreamReader sr = File.OpenText(path)) {
content = sr.ReadToEnd();
}
</code></pre>
<p><strong>Iteration</strong>, non idiomatic:</p>
<pre><code>for (int i=0;i<list.Count; i++) {
DoSomething(list[i]);
}
</code></pre>
<p>Also non-idiomatic:</p>
<pre><code>IEnumerator e = list.GetEnumerator();
do {
DoSomenthing(e.Current);
} while (e.MoveNext());
</code></pre>
<p>Idiomatic:</p>
<pre><code>foreach (Item item in list) {
DoSomething(item);
}
</code></pre>
<p><strong>Filtering</strong>, non-idiomatic:</p>
<pre><code>List<int> list2 = new List<int>();
for (int num in list1) {
if (num>100) list2.Add(num);
}
</code></pre>
<p>idiomatic:</p>
<pre><code>var list2 = list1.Where(num=>num>100);
</code></pre>
http://stackoverflow.com/questions/1450674/is-it-better-to-reset-password-or-send-lost-password-back/1450678#14506780Answer by olavk for Is it better to reset password or send lost password back?olavk2009-09-20T09:48:51Z2009-09-20T10:36:50Z<p>It is more safe to reset the password, since a third party could intercept the mailed password.</p>
<p>Edit: By reset, I assume you mean the common pattern of sending the user a token which allows the user to define a new password. Obviously if you just generate a new password and send it in the mail, it is just as insecure as just sending the original password. The token should of course only be usable once, otherwise it will be just as good as a password. </p>
<p>Only risk here is that a third party intercepts the token <em>and</em> change the password <em>before</em> the user does. This is lower risk than sending the password, since an intercepted password will be useful as long as the password is in use, while the token will only be useful once, <em>and</em> you will discover if someone has used the token.</p>
<p>Note that the highest risk is probably not people eavesdropping on the email traffic, but rather someone looking through your mail later, or hacking into your webmail account, so it it really bad to have still-valid passwords in your mailbox.</p>
http://stackoverflow.com/questions/1449265/does-iframe-runs-on-the-same-thread-as-the-owner/1449270#14492700Answer by olavk for Does iframe runs on the same thread as the owner?olavk2009-09-19T19:13:24Z2009-09-19T19:27:04Z<p>JavaScript is single-treaded. Separate tabs or windows may run in separate threads or processes depending on the browser, however you cannot communicate between these windows, so there is no way you can explicitly utilize more than one thread or process in JavaScript.</p>
<p>If it is a question of UI responsiveness, Rushakoff have a good answer. While JavaScript is running, no HTML rendering happens and the UI is not responsive. By using timeouts, control can be released back to the rendering/UI-thread periodically, giving a more responsive feel, even if it still only runs single-threaded.</p>
http://stackoverflow.com/questions/297037/what-tricks-do-you-use-to-get-yourself-in-the-zone/1367290#13672902Answer by olavk for What tricks do you use to get yourself "in the zone"?olavk2009-09-02T12:01:59Z2009-09-02T12:01:59Z<p>I disconnnect the network for an hour.</p>
http://stackoverflow.com/questions/1344015/what-is-a-predicate/1344029#134402914Answer by olavk for What is a predicate?olavk2009-08-27T22:12:20Z2009-08-27T22:21:54Z<p>A statement which is either true or false. In programming it is typically a function which return a boolean for some input.</p>
<p>Most commonly (I guess) used in the context of higher-order function. E.g. <code>filter</code> is a function in many languages which takes a <em>predicate</em> and a <em>list</em> as arguments, and returns the items in the list for which the predicate is true.</p>
<p>Example in javascript:</p>
<pre><code>lessThanTen = function(x) { return x < 10; }
[1,7,15,22].filter(lessThanTen) --> [1,7]
</code></pre>
<p>the function <code>lessThanTen</code> is the predicate here, which is applied to each item in the list. Of course a boolean expression could be used as predicate in place of a function, e.g <code>filter(true)</code> will return the full list, <code>filter(false)</code> an empty list.</p>
http://stackoverflow.com/questions/1295763/emulated-macros-in-haskell/1295818#12958184Answer by olavk for (emulated) Macros in Haskell?olavk2009-08-18T18:57:20Z2009-08-19T15:13:28Z<p><s>You want to mutate the list? You should go back to lisp ;-)</p>
<p>Values are immutable in Haskell. The Haskell-way is to create a new list which is equivalent to the old list except for the last element. </p>
<p>(There are some tricks involving monads where you can simulate mutable values and pointers, but that is probably not what you want here.)</s></p>
<p>EDIT: Not totally sure I understand the edited question, but you can handle function and argument separately as data and then "apply" later, eg.;</p>
<pre><code>do
let ns = [(print, 1), (print, 2), (print, 3)]
sequence_ $ map (\(f,a)->f a) ns
</code></pre>
http://stackoverflow.com/questions/1295882/is-it-possible-to-create-arbitrary-java-objects-from-javascript-in-ie/1295937#12959373Answer by olavk for Is it possible to create arbitrary Java objects from JavaScript in ie?olavk2009-08-18T19:24:09Z2009-08-18T19:24:09Z<p>You are using LiveConnect which is a Mozilla-specific JavaScript/Java bridge. It is not supported in other browsers.</p>
http://stackoverflow.com/questions/1207385/how-to-reach-css-zen/1294340#12943403Answer by olavk for How to reach CSS zen ?olavk2009-08-18T14:41:55Z2009-08-18T14:41:55Z<p>Understand the basic layout model of CSS.</p>
<p>The basic unit is <strong>the box</strong>. Block-level HTML-elements like BODY, P, H*n* etc. corresponds to a box in the layout.</p>
<p>A <strong>box is rectangular</strong>, and by default expands horizontally to the available width. Vertically they are stacked. Boxed can be nested, e.g. a P-box will at least be nested inside a BODY-box.</p>
<p>Boxes can have margin, border and padding, according to <strong>the box model</strong>: <a href="http://www.timofejew.ca/2006/css-box-model-hierarchy/" rel="nofollow">http://www.timofejew.ca/2006/css-box-model-hierarchy/</a></p>
<p>So, you have a <strong>vertical stack</strong> (or column) of nested boxes. If you want some boxes to move outside the main column, e.g. as a sidebar, you <em>float</em> (<code>float: left|right</code>) it and it is moved to the left or right edge of the containing block, and the main stack wraps around. </p>
<p>If you want boxes to be laid out horizontally (rather than vertically), you use <code>display:inline-block</code>.</p>
<p>If you need a grid where edges of boxes are aligned in two dimensions, you use <code>display:table</code>. But since IE before version 8 doesn't support that, you may choose to "cheat" and use HTML-markup tables to create the grid. </p>
<p>If you want to place a box completely independent of the flow of boxes, you use absolute positioning, which will place the box exactly where you want - possibly overlapping other content.</p>
http://stackoverflow.com/questions/1259754/html-file-upload-preview-by-javascript/1259768#12597681Answer by olavk for Html file upload preview by Javascript olavk2009-08-11T11:24:43Z2009-08-11T11:32:47Z<p>This if for security reasons, so you cannot read files from the users system using JavaScript.</p>
<p>If you happen find a workaround, there will probably be security patches released by browser vendors sooner rather than later. I know because in earlier versions if IE, it was possible to read the full path and hence display a preview, at least if the file was an image. I used that in a CMS UI, but of course that nifty feature was ruined by an IE service release :-/</p>
<p>In general the file upload control is somewhat of a "black box" for security reasons. You have only very limited access to scripting and styling it. This is so you can't snoop or upload files without the user knowing, or so you cannot trick the user into uploading files with a deceptive interface.</p>
http://stackoverflow.com/questions/1232802/what-is-the-fastest-way-to-join-dictionarystring-string-into-querystring/1236237#12362370Answer by olavk for What is the fastest way to join Dictionary<string,string> into querystring?olavk2009-08-05T23:15:06Z2009-08-05T23:21:19Z<p>Never mind performance, this is not going to be a bottleneck. Eric Smiths version seem to be the simplest and cleanest - go for that.</p>
<p><strong>But remember</strong> to <code>UrlEncode</code> the values, otherwise you will get a problem if a value happen to contain <code>&</code> or whitespace or other illegal characters.</p>
http://stackoverflow.com/questions/1227529/smart-html-encoding/1227671#12276710Answer by olavk for Smart HTML encoding olavk2009-08-04T13:53:04Z2009-08-04T15:06:23Z<p>You are probably trying to solve the wrong problem. (I know this is not what you want to hear.)</p>
<p>If users are allowed to write unencoded <code>>></code> and <code><<</code> into HTML then presumably they would also be able to write <code><></code> or <code><b></code>, and in that case there is no way you can reliable distinguish between text and markup. (Never mind that this makes you vulnerable to XSS attacks.)</p>
<p>You really have to intercept the text and encode it <em>before</em> it is interpolated into HTML. Probably you should explain the workflow leading to you problem. There must be a better way to solve it.</p>
<p>Edit in response to comment: There is simply no way to reliably encode input which can be either text or HTML at the same time. Anyway, if users are technical enough to enter raw HTML, presumably they are able to write entities - otherwise the shouldn't be entering raw HTML in the first place. If HTML input is only for advanced users, then you could have a check-box which indicated if the input is text or HTML. But you should probably look into using a rich-text editor.</p>
http://stackoverflow.com/questions/1092923/automatic-html-standardization/1092993#10929931Answer by olavk for Automatic HTML Standardization?olavk2009-07-07T15:24:31Z2009-07-07T15:41:00Z<p>Note that <em>both</em> the strings you provide are valid, standard compliant HTML. What you probably want to is to transform equivalent presentational markup into a canonical format. I dont know a tool which does this automatically, but you can use XSLT to solve it.</p>
<p>Edit: sixlettervariables points out that you cannot parse CSS in XSLT. So the trick would be to transform <code><b></code> into <code><span style="font-weight:bold"></code> rather than the other way around :-)</p>
http://stackoverflow.com/questions/1064403/when-to-rewrite-a-code-base-from-scratch/1074631#10746311Answer by olavk for When to rewrite a code base from scratcholavk2009-07-02T14:15:04Z2009-07-02T14:20:24Z<p>Start by writing a technical spec. If the code is that awful, then I bet there isn't a real spec either. So write a comprehensive and detailed spec - you need to write a spec anyway if you want to rewrite from scratch, so the time is a good investment. Be careful to include all details about the functionality. Since you are able to investigate the actual behavior of the app, this should be easy. Feel free to include improvement suggestions, but be sure to capture all details of the current behavior.</p>
<p>As part of the investigation you might consider writing some automated tests of to system to investigate and document expected behavior. Focus on black-box/integration testing rather than unit-testing (which the code will probably not allow anyway if it is that ugly).</p>
<p><em>When</em> you have this spec you will likely discover that the app is actually much more complex than your first impression, and reconsider rewriting from scratch. If you decide to gradually refactor instead, the spec and tests will help you a lot. But if you still decide to go forward and rewrite, then you have a good spec to work from now, and a suite of integration tests which will telly you when your work is complete.</p>
http://stackoverflow.com/questions/1053215/how-defensively-should-i-program/1053236#105323625Answer by olavk for How defensively should I program?olavk2009-06-27T17:22:24Z2009-07-02T12:02:55Z<p>Manually checking for a configuration and throwing an exception is no better than just letting the framework throw the exception if the configuration is missing. You are just duplicating precondition checks which happens inside the framework methods anyway, and it makes you code verbose with no benefit. (Actually you might be <em>removing</em> information by throwing everything as the base Exception class. The exceptions thrown by the framework are typically more specific.)</p>
<p>Edit: This answer seem to be somewhat controversial, so a bit of elaboration: Defensive programming means "prepare for the unexpected" (or "be paranoid") and one of the ways to do that is to make lots of precondition checks. In many cases this is good practice, however as with all practices cost should be weighed against benefits.</p>
<p>For example it does not provide any benefit to throw a "Could not obtain connection from factory" exception, since it doesn't say anything about <em>why</em> the provider couldn't be obtained - and the very next line will throw an exception anyway if the provider is null. So the cost of the precondition check (in development time and code complexity) is not justified.</p>
<p>On the other hand the check to verify that the connection string configuration is present <em>may</em> be justified, since the exception can help tell the developer how to resolve the problem. The null-exception you will get in the next line anyway does not tell the name of the connection string that is missing, so your precondition check does provide some value. If your code is part of a component for example, the value is quite big, since the user of the component might not know which configurations the component requires.</p>
<p>A different interpretation of defensive programming is that you should not just detect error conditions, you should also try to recover from any error or exception that may occur. I don't believe this is a good idea in general.</p>
<p>Basically you should only handle exceptions that you can <em>do</em> something about. Exceptions that you cannot recover from anyway, should just be passed upwards to the top level handler. In a web application the top level handler probably just shows a generic error page. But there is not really much to do in most cases, if the database is off-line or some crucial configuration is missing.</p>
<p>Some cases where that kind of defensive programming makes sense, is if you accept user input, and that input can lead to errors. If for example the user provides an URL as input, and the application tries to fetch something from that URL, then it is quite important that you check that the URL looks correct, and you handle any exception that may result from the request. This allows you to provide valuable feedback to the user.</p>
http://stackoverflow.com/questions/1049947/should-utf-16-be-considered-harmful/1049984#10499847Answer by olavk for Should UTF-16 be considered harmful?olavk2009-06-26T16:14:27Z2009-06-27T13:22:18Z<p>There is nothing wrong with Utf-16 encoding. But languages that treat the 16-bit units as characters should probably be considered badly designed. Having a type named '<code>char</code>' which does not always represent a character is pretty confusing. Since most developers will expect a char type to represent a code point or character, much code will probably break when exposed to characters beyound BMP.</p>
<p>Note however that even using utf-32 does not mean that each 32-bit code point will always represent a character. Due to combining characters, an actual character may consist of several code points. Unicode is never trivial.</p>
<p>BTW. There is probably the same class of bugs with platforms and applications which expect characters to be 8-bit, which are fed Utf-8.</p>
http://stackoverflow.com/questions/1008802/converting-symbols-accent-letters-to-english-alphabet/1052731#10527311Answer by olavk for Converting Symbols, Accent Letters to English Alphabet.olavk2009-06-27T12:04:57Z2009-06-27T12:19:52Z<p>There is no easy or general way to do what you want because it is just your subjective opinion that these letters look loke the latin letters you want to convert to. They are actually separate letters with their own distinct names and sounds which just happen to superficially look like a latin letter. </p>
<p>If you want that conversion, you have to create your own translation table based on what latin letters you think the non-latin letters should be converted to.</p>
<p>(If you only want to remove diacritial marks, there are some answers in this thread: <a href="http://stackoverflow.com/questions/249087/how-do-i-remove-diacritics-accents-from-a-string-in-net">http://stackoverflow.com/questions/249087/how-do-i-remove-diacritics-accents-from-a-string-in-net</a> However you describe a more general problem)</p>
http://stackoverflow.com/questions/865168/what-could-go-wrong-in-switching-html-encoding-from-utf-8-to-utf-16/1051551#10515511Answer by olavk for What could go wrong in switching HTML encoding from UTF-8 to UTF-16?olavk2009-06-26T22:26:53Z2009-06-26T22:26:53Z<p>As far as I know all modern browsers support UTF-16 encoding. But as others have pointed out, you should declare the encoding explicitly. Not all browsers and platforms will support all unicode characters, but I think this is regardless of which encoding you use.</p>
<p>However, if bandwith is a big issue you should probably consider gzipping the HTML. This will save much more bandwidth than switching encoding.</p>
http://stackoverflow.com/questions/1012573/how-to-learn-haskell/1024741#10247412Answer by olavk for How to learn Haskellolavk2009-06-21T21:01:56Z2009-06-21T21:01:56Z<p>If you only have experience with imperative/OO languages, I suggest using a more conventional functional language as a stepping stone. Haskell is <em>really</em> different and you have to understand a lot of different concepts to get anywhere. I suggest tackling a ML-style language (like e.g. F#) first. </p>
http://stackoverflow.com/questions/1003734/programmatically-detecting-most-important-content-on-a-page/1018007#10180070Answer by olavk for Programmatically detecting "most important content" on a page...olavk2009-06-19T13:39:47Z2009-06-19T13:57:51Z<p>I would look for sentences with punctuation. Menus, headers, footers etc. usually contains seperate words, but not sentences ending containing commas and ending in period or equivalent punctuation. </p>
<p>You could look for the first and last element containing sentences with punctuation, and take everything in between. Headers are a special case since they usually dont have punctuation either, but you can typically recognize them as Hn elements immediately before sentences.</p>
http://stackoverflow.com/questions/941283/when-does-big-o-notation-fail/941581#9415812Answer by olavk for When does Big-O notation fail?olavk2009-06-02T19:58:02Z2009-06-02T20:08:30Z<p>Big O does <em>not</em> say e.g. that algorithm A runs faster than algorithm B. It can say that the time or space used by algorithm A grows at a different rate than algorithm B, when the input grows. However, for any specific input size, big O notation does not say anything about the performance of one algorithm relative to another.</p>
<p>For example, A may be slower per operation, but have a better big-O than B. B is more performant for smaller input, but if the data size increases, there will be some cut-off point where A becomes faster. Big-O in itself does not say anything about where that cut-off point is.</p>
http://stackoverflow.com/questions/908014/could-someone-explain-these-haskell-functions-to-me/908024#9080244Answer by olavk for Could someone explain these Haskell functions to me?olavk2009-05-25T20:53:24Z2009-05-25T21:22:06Z<p>I think the definition of <code>myLength</code> misses the case where the list is empty:</p>
<pre><code>myLength [] = 0
myLength (x:xs) = 1 + myLength (xs)
</code></pre>
<p>With this definition, the <code>myLength</code> of an empty list is 0. The <code>(x:xs)</code> patten unpacks a list into the first item, <code>a</code>, and a list with the rest of the items, <code>xs</code>. If the list has one item, then <code>xs</code> is an empty list, so the result is 1 + 0. And so on. </p>
<p>Recursion is easiest to understand when you look at the base case first, and then see how each level of recursion builds on the result. (The base case is the case where the function does not call itself. If a recursive function doesn't have a base case, the output will be infinite.)</p>
<p>In the second example, the base case (the last case in the case-statment) is also an empty list. So pre will always be appended to a list, which will yield a new, longer, list.</p>
http://stackoverflow.com/questions/787239/why-c-is-not-dynamic-language/787259#7872591Answer by olavk for Why C# is not dynamic language?olavk2009-04-24T19:35:48Z2009-04-24T20:01:10Z<p>The words <strong>static</strong> and <strong>dynamic</strong> are not cleary defined.</p>
<p>However, what is most often meant is two issues:</p>
<p>1) In static languages, the <strong>type of a variable</strong> (that is, the type of value the variable can contain or point to) cannot change during the course of a program. For example in C#, you declare the type of a variable when you define it, like:</p>
<pre><code>int a;
</code></pre>
<p>Now <code>a</code> can only ever hold an <code>int</code> value - if you try to assign a string to it, or call a method on it, you will get a compile type error. </p>
<p>2) In static language the <strong>type of an object</strong> cannot change. In dynamic languages, an object can change in that you can attach or remove methods and properties, thereby basically turning it into a completely different object.</p>
http://stackoverflow.com/questions/599527/scripting-and-programming/599586#59958621Answer by olavk for Scripting and Programmingolavk2009-03-01T10:10:03Z2009-03-01T12:42:57Z<p>The distinction was meaningful once, but the line is getting increasingly blurred to the point where I dont think it is useful today.</p>
<ul>
<li><p>historically, scripting languages are interpreted, programming langauages are compiled. But with the advent of VM's and JIT, the line is increasingly blurred.</p></li>
<li><p>scripting is when an existing application or tool is manipulated programatically (e.g. office macros), rather than building an app from scratch. Again the line is getting blurred, because libraries and frameworks means that everybody is building on existing tools. Also, API's allow you to use traditional compiled languages to manipulate applications, eg. in Office you can now automate using .net, which I supppose means you can write Excel macros in managed C++.</p></li>
<li><p>languages tend to outgrow their niche. Perl was concieved as a scripting language for text manipulation, but has since grown into a full-fledged programming language.</p></li>
<li><p>scripting languages have traditionally been higher-level with features like garbage collection and implicit typing which allowed the developer to focus on the task rather than the metal. Real programming languages like C forced you to be more concerned about memory management and machine architecture. Again, the line is being blurred by newer languages. For example, C# has high-level features like garbage-collection and dynamic types, and low-level features like pointers.</p></li>
</ul>
<p>For these reasons <em>scripting</em> has been seen as more accessible, where <em>programming</em> has been seen as more demanding and hard-core. Therefore the term <em>scripting</em> can be used disparagingly, like in "JavaScript is just a scripting languague, not a real programming language" or "he is just a scripter, not a real programmer".</p>
http://stackoverflow.com/questions/575278/how-does-python-close-files-that-have-been-gced/575383#5753830Answer by olavk for How does python close files that have been gc'ed?olavk2009-02-22T18:22:23Z2009-02-22T18:28:38Z<p>Python uses reference counting and deterministic destruction in addition to garbage collection. When there is no more references to an object, the object is released immediately. Releasing a file closes it.</p>
<p>This is different than e.g. Java where there is only nondeterministic garbage collection. This means you connot know when the object is released, so you will have to close the file manually.</p>
<p>Note that reference counting is not perfect. You can have objects with circular references, which is not reachable from the progam. Thats why Python has garbage collection in addition to reference counting.</p>
http://stackoverflow.com/questions/548978/how-to-be-a-better-database-developer-in-12-months/549040#5490405Answer by olavk for How to be a better database developer in 12 monthsolavk2009-02-14T12:27:34Z2009-02-14T14:56:21Z<p>Learn to understand the fundamentals of relational databases:</p>
<ul>
<li><p>understand relational algebra. This a branch of math with operations that work on sets rather than e.g. numbers. It is actually pretty simple, and if you get the concept of always working with sets, you will be able to use SQL much more efficiently.</p></li>
<li><p>understand the concept of normalization. This is the rules for how to structure tables such that you avoid redundancy and integrity errors. Again, this is a pretty simple concept, but may be hard to grasp since it is often presented in very dense language in textbooks.</p></li>
<li><p>understand the concept of logical versus physical tables. This allows you to optimize database access e.g. by using materialized views, without compromising integrity. </p></li>
</ul>
<p>If you understand these concept (which are actually pretty simple), you are already <em>far</em> ahead of many database developers.</p>
http://stackoverflow.com/questions/548877/converting-request-querystring-to-integer/549073#5490730Answer by olavk for Converting Request.QueryString to integerolavk2009-02-14T12:46:54Z2009-02-14T12:46:54Z<p>The problem is that the value passed in the query string with the RID parameter is not a number, so it cant be parsed to an int. E.g you have <code>?RID=hello</code> or maybe no RID parameter at all (in which case the value is null). Inspect the querystring to see the actual value passed.</p>
http://stackoverflow.com/questions/144397/what-are-the-best-practices-for-handling-unicode-strings-in-c/144411#1444111Answer by olavk for What are the best practices for handling Unicode strings in C#?olavk2008-09-27T20:33:36Z2009-02-09T05:25:10Z<p>Only think about encoding when reading and writing streams. Use TextReader and TextWriters to read and write text in different encodings. Always use utf-8 if you have a choice.</p>
<p>Don't get confused by languages and cultures - that's a completely separate issue from unicode.</p>
http://stackoverflow.com/questions/505439/json-is-used-only-for-javascript/508358#508358-1Answer by olavk for JSON is used only for JavaScript?olavk2009-02-03T18:39:33Z2009-02-03T18:39:33Z<p>You shouldn't use either JSON or XML for storing data in a relational database. JSON and XML are serialization formats which are useful for storing data in files or sending over the wire. </p>
<p>If you want to store a set of properties, just create a table for it, with each row beeing a property. That way you can query the data using ordinary SQL.</p>
http://stackoverflow.com/questions/500827/css-tips-which-every-beginning-developer-should-know-about/500836#5008368Answer by olavk for CSS tips which every beginning developer should know about?olavk2009-02-01T13:46:25Z2009-02-01T13:57:53Z<ul>
<li><p>Understand the <a href="http://arston.com/wp-content/uploads/2007/04/3d-box-model.png" rel="nofollow">layers of the
box-model</a>.</p>
<p>Note that paddings are cumulative,
while margins collapse (i.e. the
distance between two adjacent boxes
is the largest of the two margins -
not the sum of both margins.)</p></li>
<li><p>Remember to use a <a href="http://www.alistapart.com/articles/doctype/" rel="nofollow">doctype</a> that
triggers standards mode. Note that
the doctype must be the first tag - a
comment or XML-declaration before the
doctype may (or may not, depending on
the browser) trigger quirks mode.</p></li>
</ul>
http://stackoverflow.com/questions/500760/help-for-oracle-query/500801#5008010Answer by olavk for help for oracle queryolavk2009-02-01T13:29:55Z2009-02-01T13:29:55Z<p>You should probably clarify what you are trying to achieve. Do you want every row where flds3 starts with the substring "something"? Or do you just want every unique combination of flds1 and flds2 ?</p>
http://stackoverflow.com/questions/1344015/what-is-a-predicate/1344029#1344029Comment by olavk on What is a predicate?olavk2009-08-27T22:18:11Z2009-08-27T22:18:11Zyeah, but since the predicate may rely on variables it it probably more natural to think of it as a function.http://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard/156722#156722Comment by olavk on Regexp recognition of email address hard?olavk2009-08-27T09:48:36Z2009-08-27T09:48:36Z@Adam: If you go down that road you have to do it correctly. See eg. janm's explanation of how you can have more than one @ in a valid email address.http://stackoverflow.com/questions/1228176/what-are-your-c-commandments/1228237#1228237Comment by olavk on What are your C# Commandments?olavk2009-08-06T08:13:50Z2009-08-06T08:13:50Z@mP: FogBugz was originally written in VBScript which was a language without a real type/class system, hence the use of hungarian. The question is about C# which has a real type system.http://stackoverflow.com/questions/1227529/smart-html-encoding/1227671#1227671Comment by olavk on Smart HTML encoding olavk2009-08-04T15:13:36Z2009-08-04T15:13:36Z@Drejc: You should probably add this info to the original question.http://stackoverflow.com/questions/1207457/convert-unicode-to-string-in-python-containing-extra-symbolsComment by olavk on Convert Unicode to String in Python (containing extra symbols)olavk2009-07-30T15:48:24Z2009-07-30T15:48:24ZWhat do you mean by "a python string"? Do you want to encode the unicode string? http://stackoverflow.com/questions/1049947/should-utf-16-be-considered-harmful/1049996#1049996Comment by olavk on Should UTF-16 be considered harmful?olavk2009-07-02T15:50:12Z2009-07-02T15:50:12Z@Malcolm: This issue is that some people apparently have names containing these rare symbols, even though they does not otherwise occur in regular language. http://stackoverflow.com/questions/1049947/should-utf-16-be-considered-harmful/1049996#1049996Comment by olavk on Should UTF-16 be considered harmful?olavk2009-06-29T16:42:44Z2009-06-29T16:42:44Z@Malcolm: The issue is more complex than that. See eg. <a href="http://www.jbrowse.com/text/unij.html" rel="nofollow">jbrowse.com/text/unij.html</a>http://stackoverflow.com/questions/1053215/how-defensively-should-i-program/1053286#1053286Comment by olavk on How defensively should I program?olavk2009-06-27T18:47:30Z2009-06-27T18:47:30ZYou should not remove valuable information from exceptions! Rather, you should ensure that the top-level handler doesn't show the actual exception and stack trace to the end user.http://stackoverflow.com/questions/865168/what-could-go-wrong-in-switching-html-encoding-from-utf-8-to-utf-16/865179#865179Comment by olavk on What could go wrong in switching HTML encoding from UTF-8 to UTF-16?olavk2009-06-26T22:38:56Z2009-06-26T22:38:56ZThe OP mentions large amounts of chinese and japanese text, but good point about the markup.http://stackoverflow.com/questions/865168/what-could-go-wrong-in-switching-html-encoding-from-utf-8-to-utf-16/865179#865179Comment by olavk on What could go wrong in switching HTML encoding from UTF-8 to UTF-16?olavk2009-06-26T21:38:16Z2009-06-26T21:38:16ZOr bandwith consumption might nearly halve.http://stackoverflow.com/questions/865168/what-could-go-wrong-in-switching-html-encoding-from-utf-8-to-utf-16/865213#865213Comment by olavk on What could go wrong in switching HTML encoding from UTF-8 to UTF-16?olavk2009-06-26T21:33:55Z2009-06-26T21:33:55Zre 3: That issue is independant of whether the characters are encoded in UTF-8 or UTF-16.http://stackoverflow.com/questions/1049947/should-utf-16-be-considered-harmful/1049996#1049996Comment by olavk on Should UTF-16 be considered harmful?olavk2009-06-26T21:28:59Z2009-06-26T21:28:59ZBut you might not know in advance if your application need to handle characters outside BMP, if the application accepts data like names. For example some asian names might be written with characters outside of BMP.http://stackoverflow.com/questions/748503/how-do-you-introduce-unit-testing-into-a-large-legacy-c-c-codebase/748554#748554Comment by olavk on How do you introduce unit testing into a large, legacy (C/C++) codebase?olavk2009-04-19T17:14:52Z2009-04-19T17:14:52ZVery good advice! With good integration tests in place, he can start refactoring the code to be more modular and more unit-testable. Without any tests at all, it would be far too risky to start refactoring into more unit-testable code.http://stackoverflow.com/questions/246701/what-is-normalisation-or-normalization-why-is-it-important/246751#246751Comment by olavk on What is Normalisation (or Normalization)? Why is it important?olavk2009-02-21T10:15:30Z2009-02-21T10:15:30Z@Bill: Why do you think the example I provide is not correct? Do you know of a definition of 1NF where the example would be OK?http://stackoverflow.com/questions/548978/how-to-be-a-better-database-developer-in-12-months/549040#549040Comment by olavk on How to be a better database developer in 12 monthsolavk2009-02-14T13:54:25Z2009-02-14T13:54:25Z@Kirkham: SQL supports relational algebra AFAIK, it's just that it also supports a bunch of non-relational features like tables with duplicate rows. Regardless, knowing relational algebra will help you understand SQL and its limitations much better.