User Dinah - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T11:20:48Z http://stackoverflow.com/feeds/user/356 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1800153/single-vs-multiple-linq2sql-repositories 0 Single vs. multiple Linq2sql repositories Dinah 2009-11-25T21:40:14Z 2009-11-26T01:34:55Z <p>I have a Users table, Events table, and a mapping of UserEvents. In some parts of my code, I just need user-based stuff. In other parts, I need all of this information. (Especially: given a user, what are the details of each event they are subscribed to?)</p> <p>If I have one repository just for users and another for users + events + userevents, then the auto-created users object is duplicated and the code won't compile until I rename one of them. This is possible but inconvenient. On the other hand, if I only have one repository with all 3 tables, when I just want user info, will it be expensive due to linq getting all the associated data with that user id?</p> <p>In Linq2Sql, is it more expensive if you have more tables in a single dbml/repository?</p> http://stackoverflow.com/questions/772596/black-hat-knowledge-for-white-hat-programmers 38 Black hat knowledge for white hat programmers Dinah 2009-04-21T13:29:35Z 2009-11-23T07:14:33Z <p>There's always skepticism from non-programmers when honest developers learn the techniques of black hat hackers. Obviously though, we need to learn many of their tricks so we can keep our own security up to par.</p> <p>To what extent do you think an honest programmer needs to know the methods of malicious programmers?</p> http://stackoverflow.com/questions/1575285/applescript-to-open-url-files-on-os-x-firefox 0 Applescript to open .url files on OS X Firefox Dinah 2009-10-15T21:45:43Z 2009-11-21T21:17:46Z <p>For reasons that only the developers can understand, Firefox will create and open .url files on Windows and .webloc files on OS X but won't allow the Windows version of Firefox to open .webloc files or the OS X version of Firefox to open .url files. (.url files open in Safari but that's not good enough for reasons that aren't worth going into here.) As part of my efforts to use either filetype on either system, I'm writing an applescript to open .url files on OS X Firefox.</p> <pre><code>on open the_droppings set filePath to the_droppings set fp to open for access filePath set fileContents to read fp close access fp set secondLine to paragraph 2 of fileContents set tid to AppleScript's text item delimiters set AppleScript's text item delimiters to "=" set URLstring to last text item of secondLine set AppleScript's text item delimiters to tid tell application "Firefox" activate OpenURL URLstring end tell end open </code></pre> <p>I thought this would work but in the 3rd to last line it says "Expected end of line, etc. but found identifier." Why is this?</p> <p><strong>EDIT</strong> sakra's answer below mostly works but breaks on urls containing "=" such as: <a href="http://example.com?foo=a&amp;bar=z" rel="nofollow">http://example.com?foo=a&amp;bar=z</a></p> http://stackoverflow.com/questions/1770616/tips-for-developing-in-several-languages-at-once/1770744#1770744 1 Answer by Dinah for Tips for developing in several languages at once Dinah 2009-11-20T14:23:57Z 2009-11-20T14:23:57Z <p>Yes! My job has me going back and forth between C# and VB6. The languages and the IDEs are painful to switch between but we have legacy Classic ASP systems which we can't get rid of yet even though all of our other sites are ASP.NET. Oh yeah, and there's another legacy app written in VBA in Access.</p> <p>Then for additional fun, my current personal projects are ASP.NET MVC + SQL Server and PHP + MySQL. I started dabbling in Objective C but it was one thing too many for now.</p> http://stackoverflow.com/questions/1725975/no-symbol-table-in-go 4 No symbol table in Go? Dinah 2009-11-12T22:52:15Z 2009-11-12T23:23:59Z <p>Google's new language "Go" says <a href="http://golang.org/doc/go_lang_faq.html#different_syntax" rel="nofollow">on its website</a>:</p> <blockquote> <p>the language has been designed to be easy to analyze and can be parsed without a symbol table</p> </blockquote> <p>I'm certainly no expert on these matters, but I thought a symbol table was a basic construct common to all compilers for languages that use variables, and Go clearly uses variables. What am I not understanding?</p> http://stackoverflow.com/questions/1724391/what-programs-languages-should-i-learn-for-a-career-in-web-programming-design/1724441#1724441 1 Answer by Dinah for What programs/languages should I learn for a career in web programming/design? Dinah 2009-11-12T18:41:39Z 2009-11-12T18:41:39Z <p>Just learn one and start making stuff. Then learn best practices, security concerns, and usability. Any language will do. To learn to play guitar, the guitar isn't as important as learning chords and scales.</p> http://stackoverflow.com/questions/1715723/no-code-or-little-code-website 2 No-code or little-code website Dinah 2009-11-11T15:00:02Z 2009-11-11T15:42:28Z <p>What is a (free) technology which requires the least amount of code for creating a website with the following requirements:</p> <ul> <li>Sign-up/login</li> <li>Form for adding your personal info. which gets databased</li> <li>Each person can view and edit their own info</li> <li>Admin can view and edit any</li> <li>The form needs to be easily customizable and extensible (by the website's owner, not during run-time)</li> </ul> <p>Is there a beginner tutorial for such a thing?</p> <p>(For me, this question is about a friend who wants me to do this, but I want him to do it himself so I don't have to get roped into maintenance. I also want to keep it more general for the sake of Stack Overflow and future readers.)</p> <p><strong>Edit</strong>: I thought I remembered some ASP.NET tutorials that were mostly drag/drop or things where it was all but made for you from the database schema (which can be made with SSMS's GUI) but I can't seem to find them now.</p> <p>Responding to posts below requesting specifics: this site will be for potential clients to sign-up and enter their company's info and fill out a form about their advertising needs.</p> <p>I thought about putting this on SU instead, but since there was likely going to be some coding involved (I assumed no-code was an unreachable goal) SO seemed more appropriate.</p> http://stackoverflow.com/questions/1658871/pretending-net-strings-are-value-type 6 Pretending .NET strings are value type Dinah 2009-11-02T00:11:59Z 2009-11-10T12:20:34Z <p>In .NET, strings are immutable and are reference type variables. This often comes as a surprise to newer .NET developers who may mistake them for value type objects due to their behavior. However, other than the practice of using <code>StringBuilder</code> for long concatenation esp. in loops, is there any reason in practice that one needs to know this distinction?</p> <p>What real-world scenarios are helped or avoided by understanding the value-reference distinction with regard to .NET strings vs. just pretending/misunderstanding them to be value types?</p> http://stackoverflow.com/questions/351733/can-you-write-object-oriented-code-in-c 16 Can you write object oriented code in C? Dinah 2008-12-09T04:02:40Z 2009-11-06T06:43:37Z <p>Can you write object oriented code in C? Especially with regard to polymorphism.</p> <p><hr /></p> <p>See also: <a href="http://stackoverflow.com/questions/415452/object-orientation-in-c">http://stackoverflow.com/questions/415452/object-orientation-in-c</a></p> http://stackoverflow.com/questions/1681444/how-to-write-linq-which-function-same-as-sql-like/1681483#1681483 2 Answer by Dinah for How to write LINQ which function same as SQL like? Dinah 2009-11-05T15:56:47Z 2009-11-05T15:56:47Z <p>From: <a href="http://blogs.microsoft.co.il/blogs/bursteg/archive/2007/10/16/linq-to-sql-like-operator.aspx" rel="nofollow">http://blogs.microsoft.co.il/blogs/bursteg/archive/2007/10/16/linq-to-sql-like-operator.aspx</a></p> <p>Digging into System.Data.Linq.SqlClient namespace, I found a little helper class called SqlMethods, which can be very usefull in such scenarios. SqlMethods has a method called Like, that can be used in a Linq to SQL query:</p> <pre><code>var query = from c in ctx.Customers where SqlMethods.Like(c.City, "L_n%") select c; </code></pre> <p>This method gets the string expression to check (the customer's city in this example) and the patterns to test against which is provided in the same way you'd write a LIKE clause in SQL.</p> <p>Using the above query generated the required SQL statement:</p> <pre><code>SELECT CustomerID, CompanyName, ... FROM dbo.Customers WHERE City LIKE [L_n%] </code></pre> http://stackoverflow.com/questions/125791/should-net-developers-really-be-spending-time-learning-c-for-low-level-exposur/1676058#1676058 0 Answer by Dinah for Should .NET developers *really* be spending time learning C for low-level exposure? Dinah 2009-11-04T19:30:33Z 2009-11-04T19:30:33Z <p>To be sufficiently advanced in writing C#, you need to understand the concepts in C, even if you don't learn the language proper.</p> <p>More generally though, if you're serious about <strong>any</strong> skill, you should know what goes on at least one abstraction level below your primary working level.</p> <ul> <li>Coding in jQuery should be paired with an understanding of JavaScript</li> <li>Designing circuits necessitates knowing physics</li> <li>Any good basketball player will learn about muscles, bones, and nutrition</li> <li>A violinist will learn about the interplay of rosin, friction, bow hairs, string, and wood dryness</li> </ul> http://stackoverflow.com/questions/1660106/block-controlaltdelete/1668949#1668949 0 Answer by Dinah for Block Control+Alt+Delete Dinah 2009-11-03T17:35:37Z 2009-11-03T17:35:37Z <p>You'll also want to block alt+F4 with something like this:</p> <pre><code>private void form_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.F4 &amp;&amp; e.Modifiers == Keys.Alt) e.Handled = true; base.OnKeyDown(e); } </code></pre> http://stackoverflow.com/questions/620733/memory-leak-in-c/1667751#1667751 1 Answer by Dinah for Memory Leak in C# Dinah 2009-11-03T14:40:55Z 2009-11-03T14:40:55Z <p>At my last job, we were using a 3rd party .NET SQLite library which leaked like a sieve.</p> <p>We were doing a lot of rapid data inserts in a weird situation where the database connection had to be opened and closed each time. The 3rd party lib did some of the same connection opening that we were supposed to do manually and didn't document it. It also held the references somewhere we never did find. The result was 2x as many connections being opened as were supposed to be and only 1/2 getting closed. And since the references were held, we had a memory leak.</p> <p>This is obviously not the same as a classic C/C++ memory leak but for all intents and purposes it was one to us.</p> http://stackoverflow.com/questions/752035/prerequisite-knowledge-for-asp-net-mvc 9 Prerequisite knowledge for ASP.NET MVC Dinah 2009-04-15T14:43:58Z 2009-10-30T01:41:27Z <p>After being frustrated in my attempts to learn the arcana that is ASP.NET, I decided to try ASP.NET MVC.</p> <p>I have extensive experience with C# 2.0 doing just about everything (WinForms, Windows Services, remoting, ...) except ASP.NET . I've been writing PHP for even longer than I've been coding .NET. With all of this experience, I thought I was ready for ASP.NET MVC. I now see I'm learning the following simultaneously and having a bit of a hard time with it:</p> <ul> <li>the MVC pattern in general</li> <li>ASP.NET</li> <li>ASP.NET MVC</li> <li>.NET 3.5.</li> </ul> <p>I'm currently about 1/2 way through the <a href="http://www.codeplex.com/nerddinner" rel="nofollow">NerdDinner</a> free book chapter. I don't feel completely lost but I do get the feeling that I'm not catching on to as much as I'd like to (due to the fact that I'm learning 4 things at once -- sometimes it's not clear which skills are from which abstraction layer).</p> <p>What prerequisite knowledge would you recommend for ASP.NET MVC? Any/all of those I listed above? Others? Or maybe I'm just slow and most people would be fine doing what I did.</p> http://stackoverflow.com/questions/1646355/its-possible-to-develop-for-which-platforms-with-sing/1646412#1646412 0 Answer by Dinah for It's Possible To Develop For Which Platforms With Sing# Dinah 2009-10-29T20:40:05Z 2009-10-29T20:40:05Z <p>Sing# is a derivative of C# that they made specifically to develop Singularity. I imagine it's just a specialized form for making an OS</p> <p><a href="http://www.microsoft-watch.com/content/operating_systems/microsofts_other_os.html" rel="nofollow">http://www.microsoft-watch.com/content/operating_systems/microsofts_other_os.html</a></p> http://stackoverflow.com/questions/1644468/does-net-have-any-built-in-constants-for-common-numbers-like-million-billion-et/1644507#1644507 0 Answer by Dinah for Does .Net have any built in constants for common numbers like million, billion etc? Dinah 2009-10-29T15:23:24Z 2009-10-29T15:23:24Z <p>Yes</p> <pre><code>int million = 1000000; int billion = 1000000000; </code></pre> <p>Just like <code>5</code>, <code>a</code>, and <code>-1</code>, these are constants.</p> http://stackoverflow.com/questions/1496819/right-to-left-email/1639371#1639371 0 Answer by Dinah for Right-to-Left Email Dinah 2009-10-28T19:00:52Z 2009-10-28T19:00:52Z <p>Right-to-left is something Microsoft and others imagine the world might need but it doesn't. The prominent software for writing these languages progresses through characters in that order, it doesn't store it LTR then transform it to RTL. Eg, typing a, b, c (underscore is the cursor):</p> <pre><code> _ _a _ba _cba </code></pre> <p><strong>NOT</strong></p> <pre><code>_ a_ ab_ abc_ [now use a stylesheet to reverse it] </code></pre> http://stackoverflow.com/questions/1626899/is-it-proper-for-a-parent-class-to-reference-a-property-that-exists-only-in-the-c/1626930#1626930 0 Answer by Dinah for Is it proper for a parent class to reference a property that exists only in the child? Dinah 2009-10-26T19:44:40Z 2009-10-26T19:44:40Z <p>You can create a virtual method hook in the parent class which can later be overridden by children.</p> http://stackoverflow.com/questions/201189/what-do-you-do-to-keep-learning/1625912#1625912 1 Answer by Dinah for What do you do to keep learning? Dinah 2009-10-26T16:53:52Z 2009-10-26T16:53:52Z <ul> <li><strong>Write something you've never done before.</strong> A compiler, a web server, an FTP client, implement an obscure sorting algo. Do stuff to keep your brain working in new ways. (Oh yeah, and when you're done, throw it away. You don't want to actually use a web server that was your first attempt at learning the stuff.)</li> <li><strong>Collaborate.</strong> If you're a solo developer, work on an open source project. You will grow in completely different ways when working with someone else's code, writing your code knowing it will be seen by others, learning from others, disagreeing with others, ...</li> <li><strong>Teach.</strong> At the very least, answer Stack Overflow questions. You learn crazy amounts by teaching.</li> <li><strong>Learn a language with a different style of syntax.</strong> If you only do C derivatives, try Python. If you've never worked with pointers, do that. Give Lisp a try. Try to make Excel play a simple game using VBA. The point isn't the quality of the language, the point is to stretch your brain.</li> <li><strong>Write quickly.</strong> Write an app a day week. Many of us are perfectionists who aren't happy until our app is solid and gold-plated. Force yourself to focus on how to make something work. Learn hacks and shortcuts. Don't do this too often or you'll build bad habits.</li> <li><strong>Learn 1s and 0s.</strong> Get comfortable with booleans, logical operators, and bit twiddling. Not only is this the stuff computers are made of, but there are a lot of programming problems which can be solved more efficiently with these methods that you won't even realize can be if your brain can't think in terms of boolean logic.</li> <li><strong>Get a different hobby.</strong> It might actually make life more interesting to have hobbies in addition to computers. More importantly though, you'll think of new types of programs you'll passionately want to write. :)</li> </ul> http://stackoverflow.com/questions/1615507/firefox-extension-for-file-dragdrop 0 Firefox extension for file drag+drop Dinah 2009-10-23T19:43:19Z 2009-10-23T19:47:08Z <p>I'm creating a Firefox add-on that does the following:</p> <ul> <li>Drag+drop a file into Firefox</li> <li>If the file has a certain extension and if FF is running on a certain OS, parse the file with regex</li> <li>Extract a url</li> <li>Go to that page</li> </ul> <p>The JavaScript for all of this is pretty straight-forward except for the drag+drop into FF part. How can that be done?</p> <p>I would just use the Options->Application to have the file open with a parsing app that can then open the url in FF, but FF doesn't recognize my file and won't allow me to associate an app for the file typs using 'always open with' (the checkbox is disabled).</p> http://stackoverflow.com/questions/1606798/php-as-a-desktop-programming-language/1609293#1609293 0 Answer by Dinah for PHP as a Desktop Programming Language Dinah 2009-10-22T18:57:59Z 2009-10-22T18:57:59Z <p>Check out <a href="http://winbinder.org/" rel="nofollow">WinBinder</a></p> http://stackoverflow.com/questions/1608914/so-what-is-the-best-language-to-learn-oop-on/1608960#1608960 1 Answer by Dinah for So, what is the best language to learn OOP on? Dinah 2009-10-22T18:01:28Z 2009-10-22T18:01:28Z <p>C# if you're interested in a good mainstream language with a great community. Smalltalk if you want to learn a more pure and academic version.</p> http://stackoverflow.com/questions/413820/visual-studio-on-a-mac/1608945#1608945 1 Answer by Dinah for Visual Studio on a Mac Dinah 2009-10-22T18:00:00Z 2009-10-22T18:00:00Z <p>I'm using a 2.66 dual-core MacBook Pro 4gb RAM, VS2008 + XP in Parallels and I'm not having the best experience. Sadly, another hard drive is not an option and if I were to get an external hard drive, I'm not sure why I wouldn't just go back to a Windows laptop that doesn't need extra hardware. Others seem to have had a good experience with this set up though so I'm going to continue to tweak my settings. So far I'm kinda regretting having bought a Mac but not quite enough yet to take the financial hit of selling it on eBay.</p> http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/1608861#1608861 2 Answer by Dinah for What's your favorite "programmer" cartoon? Dinah 2009-10-22T17:49:15Z 2009-10-22T17:49:15Z <p><img src="http://imgs.xkcd.com/comics/static.png" alt="I firmly believe that nothing can go wrong on a project if you're wearing one of those wrist things." /></p> http://stackoverflow.com/questions/774871/why-did-you-learn-c 18 Why did you learn C? Dinah 2009-04-21T22:14:02Z 2009-10-21T20:02:44Z <p>For those who know or are learning C: <strong>Why did you choose to learn C?</strong></p> <p>Was a school or job requirement? Curiosity? Boredom? Personal growth? ...</p> <p>I'm especially curious to know how many learned it to better understand the inner workings of their language of choice. If this is your reason, was it prompted by Joel's suggestions?</p> http://stackoverflow.com/questions/1603100/how-to-access-a-property-for-each-memebr-of-an-indexer-using-reflection-in-c-ne/1603203#1603203 0 Answer by Dinah for How to access a property for each memebr of an indexer using reflection in C# .net 2.0 Dinah 2009-10-21T19:54:44Z 2009-10-21T19:54:44Z <p>To loop through a list is the process of enumeration. It is easiest with an Enumerator. That is (in C#): anything that implements <code>IEnumberable</code>.</p> <p>If the object you are trying to loop through is one of your own making, I recommend implementing IEnumberable. If it isn't, can you give more info about this specific 3rd party object? Maybe there are others who've also needed to use it in this way and maybe their work can be found by one of us online.</p> http://stackoverflow.com/questions/1596957/why-is-c-a-rapid-application-development-rad-language/1596981#1596981 2 Answer by Dinah for Why is C# a rapid application development (RAD) language? Dinah 2009-10-20T20:06:11Z 2009-10-20T20:06:11Z <p>Mainly, .NET has big comprehensive libraries to abstract away the low level stuff for you.</p> http://stackoverflow.com/questions/1591836/c-storing-a-short-date-in-a-datetime-object/1591850#1591850 8 Answer by Dinah for C#; storing a short date in a DateTime object Dinah 2009-10-20T00:23:35Z 2009-10-20T00:23:35Z <p><code>DateTime</code> is an integer interpreted to represent both parts of DateTime (ie: date and time). You will always have both date and time in <code>DateTime</code>. Sorry, there's nothing you can do about it.</p> <p>You can use .Date to get the date part. In these cases, the time will always be 12:00 but you can just ignore that part if you don't want it.</p> http://stackoverflow.com/questions/1568658/html-tables-how-to-make-ie-not-break-lines-at-hyphens/1568680#1568680 3 Answer by Dinah for HTML Tables - How to make IE not break lines at hyphens Dinah 2009-10-14T20:09:42Z 2009-10-14T20:09:42Z <p>I'm sure there's a better CSS way but the old way is with a no-break: <code>&lt;nobr&gt;...&lt;/nobr&gt;</code> but using no-break will cause <strong>nothing</strong> to go to the next line.</p> <p>Another way is to use a <a href="http://www.fileformat.info/info/unicode/char/2011/index.htm" rel="nofollow">Non-breaking hyphen</a>. This way, you can still get wrapping, just not at the hyphen.</p> http://stackoverflow.com/questions/1568057/ascii-strings-and-endianness/1568124#1568124 1 Answer by Dinah for ASCII strings and endianness Dinah 2009-10-14T18:27:30Z 2009-10-14T18:27:30Z <p>I assume the professor was trying to make a point by analogy about the endian/NUXI problem, but you're right when you apply it to actual strings. Don't let that derail from the fact that he was trying to teach students a point and how to think about a problem a certain way.</p> http://stackoverflow.com/questions/1731152/job-requirements-what-does-kernel-developer-really-mean Comment by Dinah on Job Requirements: What does "Kernel Developer" REALLY mean? Dinah 2009-11-13T19:02:06Z 2009-11-13T19:02:06Z I hear ya. I've had the same experience with all kinds of phrases in job requirement lists that turned out to be not really what they were looking for. Apparently the recruiters often can't be bothered to learn the correct terms to list for tech jobs. http://stackoverflow.com/questions/1725975/no-symbol-table-in-go/1725983#1725983 Comment by Dinah on No symbol table in Go? Dinah 2009-11-12T23:03:59Z 2009-11-12T23:03:59Z That's what I thought. Then how can their claim be true? I assume it must be but I don't understand how. http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/1580402#1580402 Comment by Dinah on What's your favorite "programmer" cartoon? Dinah 2009-11-10T19:01:35Z 2009-11-10T19:01:35Z Why not? Everyone's submitting them one at a time anyway, right? http://stackoverflow.com/questions/1681444/how-to-write-linq-which-function-same-as-sql-like/1681483#1681483 Comment by Dinah on How to write LINQ which function same as SQL like? Dinah 2009-11-05T16:00:38Z 2009-11-05T16:00:38Z @Justin Niessner: no argument here. I did a Google search before any other answers were listed and this is what I found. http://stackoverflow.com/questions/1681285/pros-and-cons-explicitly-setting-enum-fields-values/1681304#1681304 Comment by Dinah on Pros and Cons explicitly setting enum field's values Dinah 2009-11-05T15:48:02Z 2009-11-05T15:48:02Z @Randolpho: enum.s are often used in wrapping APIs for other apps. Eg: C#/.NET wrapper around the Google Data API. It adds a great deal if you can enumerate all return values including negatives that the originator decided to use. http://stackoverflow.com/questions/1660106/block-controlaltdelete/1668949#1668949 Comment by Dinah on Block Control+Alt+Delete Dinah 2009-11-03T17:57:20Z 2009-11-03T17:57:20Z @Philip: awesome, I didn't know that would catch alt+F4 too. Thanks! http://stackoverflow.com/questions/1658871/pretending-net-strings-are-value-type/1658914#1658914 Comment by Dinah on Pretending .NET strings are value type Dinah 2009-11-03T14:53:20Z 2009-11-03T14:53:20Z Great answer! Thank you much http://stackoverflow.com/questions/620733/memory-leak-in-c/1667746#1667746 Comment by Dinah on Memory Leak in C# Dinah 2009-11-03T14:42:18Z 2009-11-03T14:42:18Z If anything, this should be a comment under the original question and not an answer. http://stackoverflow.com/questions/1644468/does-net-have-any-built-in-constants-for-common-numbers-like-million-billion-et/1644507#1644507 Comment by Dinah on Does .Net have any built in constants for common numbers like million, billion etc? Dinah 2009-10-29T15:38:09Z 2009-10-29T15:38:09Z @Adam: I don't know what's worse, that you are trying to lead me down the same rabbit hole or that part of me <i>really</i> wants to go there anyway ;) must.... resist.... http://stackoverflow.com/questions/1644468/does-net-have-any-built-in-constants-for-common-numbers-like-million-billion-et/1644507#1644507 Comment by Dinah on Does .Net have any built in constants for common numbers like million, billion etc? Dinah 2009-10-29T15:35:17Z 2009-10-29T15:35:17Z @Adam: noted, yet ironically, the identical humor got an equal number of upvotes in the same span and has yet to be downvoted. Baffling isn't it? http://stackoverflow.com/questions/1644468/does-net-have-any-built-in-constants-for-common-numbers-like-million-billion-et/1644507#1644507 Comment by Dinah on Does .Net have any built in constants for common numbers like million, billion etc? Dinah 2009-10-29T15:32:05Z 2009-10-29T15:32:05Z @Adam Robinson: since we're splitting hairs, technically we could eliminate taxes and scientists may even one day cheat death, but 'a' will always be 'a' and 5 will always be 5. http://stackoverflow.com/questions/1644468/does-net-have-any-built-in-constants-for-common-numbers-like-million-billion-et/1644507#1644507 Comment by Dinah on Does .Net have any built in constants for common numbers like million, billion etc? Dinah 2009-10-29T15:27:11Z 2009-10-29T15:27:11Z @Adam Robinson: I'd say there's nothing more constant than a literal. http://stackoverflow.com/questions/1641957/is-array-name-a-pointer-in-c Comment by Dinah on Is array name a pointer in C? Dinah 2009-10-29T15:06:11Z 2009-10-29T15:06:11Z These might also help in your understanding: <a href="http://stackoverflow.com/questions/381542/" rel="nofollow">stackoverflow.com/questions/381542</a> , <a href="http://stackoverflow.com/questions/660752/" rel="nofollow">stackoverflow.com/questions/660752</a> http://stackoverflow.com/questions/1632113/what-is-the-difference-between-sed-and-awk/1632133#1632133 Comment by Dinah on What is the difference between sed and awk ? Dinah 2009-10-27T16:43:19Z 2009-10-27T16:43:19Z @jldupont - are you referring to Rachel's original question or to Dani's reply? If it can apply to either than it can apply to both. http://stackoverflow.com/questions/1620707/what-has-been-your-greatest-programming-revelation/1620719#1620719 Comment by Dinah on What has been your greatest programming revelation? Dinah 2009-10-25T16:52:14Z 2009-10-25T16:52:14Z The worst code I've ever seen is my own ...6 months later.