User mmaibaum - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T01:42:29Zhttp://stackoverflow.com/feeds/user/12213http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/150638/ruby-off-the-rails/179997#1799971Answer by mmaibaum for Ruby off the railsmmaibaum2008-10-07T19:37:59Z2008-10-07T19:37:59Z<p>I wrote an order processing expert system (see DSL answer as well), converted 100k lines of customer specific perl into about 10k lines of ruby handling dozens of customers. No web components at all, no Rails.</p>
http://stackoverflow.com/questions/177799/what-is-a-good-pdf-report-generator-tool-for-python/177820#1778201Answer by mmaibaum for What is a good PDF report generator tool for python?mmaibaum2008-10-07T10:00:10Z2008-10-07T10:00:10Z<p>If you don't like ReportLab I would suggest generating HTML - there are dozens of ways to do this and converting to PDF for final output (html2pdf for example). </p>
http://stackoverflow.com/questions/177519/sql-server-2005-rowsize-effect-on-query-performance/177547#1775473Answer by mmaibaum for SQL Server 2005 - Rowsize effect on query performance?mmaibaum2008-10-07T08:06:21Z2008-10-07T08:06:21Z<p>Tuning the size of a row is only a major issue if the RDBMS is performing a full table scan of the row, if your query can select the rows using only indexes then the row size is less important (unless you are returning a very large number of rows where the IO of returning the actual result is significant). </p>
<p>If you are doing a full table scan or partial scans of large numbers of rows because you have predicates that are not using indexes then rowsize can be a major factor. One example I remember, On a table of the order of 100,000,000 rows splitting the largish 'data' columns into a different table from the columns used for querying resulted in an order of magnitude performance improvement on some queries. </p>
<p>I would only expect this to be a major factor in a relatively small number of situations. </p>
http://stackoverflow.com/questions/173839/what-is-your-demand-for-a-working-software-development-environment/173858#1738581Answer by mmaibaum for What is your demand for a working software development environment? mmaibaum2008-10-06T10:54:00Z2008-10-06T10:54:00Z<p>Offices with space for pair-programming</p>
http://stackoverflow.com/questions/173642/how-do-i-get-a-list-of-files-that-have-been-added-to-the-svn-since-a-certain-date/173669#1736691Answer by mmaibaum for How do I get a list of files that have been added to the SVN since a certain date?mmaibaum2008-10-06T09:24:46Z2008-10-06T09:24:46Z<p>Something like</p>
<p><code>svn log -v -r {"2008-01-01"}:HEAD . | grep ' A ' | sort -u</code></p>
<p>should get you going...</p>
http://stackoverflow.com/questions/166334/how-to-build-and-deploy-python-web-applications/166788#1667880Answer by mmaibaum for How to build and deploy Python web applicationsmmaibaum2008-10-03T13:17:07Z2008-10-03T13:17:07Z<p>Would SCons do what you want?</p>
<p><a href="http://www.scons.org/" rel="nofollow">http://www.scons.org/</a></p>
http://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard/156469#1564698Answer by mmaibaum for Regexp recognition of email address hard?mmaibaum2008-10-01T06:34:49Z2008-10-01T09:06:05Z<p>There are a number of perl modules (for example) that do this. Don't try and write your own regexp to do it. Look at</p>
<p>Mail::VRFY will do syntax and network checks (does and SMTP server somewhere accept this address)</p>
<p><a href="http://search.cpan.org/~jkister/Mail-VRFY-0.58/VRFY.pm" rel="nofollow">http://search.cpan.org/~jkister/Mail-VRFY-0.58/VRFY.pm</a></p>
<p>RFC::RFC822::Address - a recursive descent email address parser.</p>
<p><a href="http://search.cpan.org/~abigail/RFC_RFC822_Address-1.5/Address.pm" rel="nofollow">http://search.cpan.org/~abigail/RFC_RFC822_Address-1.5/Address.pm</a></p>
<p>Mail::RFC822::Address: regexp-based address validation, worth looking at just for the insane regexp</p>
<p><a href="http://ex-parrot.com/~pdw/Mail-RFC822-Address.html" rel="nofollow">http://ex-parrot.com/~pdw/Mail-RFC822-Address.html</a></p>
<p>Similar tools exist for other languages. Insane regexp below...</p>
<pre><code>(?:(?:\r\n)?[ \t])*(?:(?:(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t]
)+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:
\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(
?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[
\t]))*"(?:(?:\r\n)?[ \t])*))*@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\0
31]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\
](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+
(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:
(?:\r\n)?[ \t])*))*|(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z
|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)
?[ \t])*)*\<(?:(?:\r\n)?[ \t])*(?:@(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\
r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[
\t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)
?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t]
)*))*(?:,@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[
\t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*
)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t]
)+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*)
*:(?:(?:\r\n)?[ \t])*)?(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+
|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r
\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:
\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t
]))*"(?:(?:\r\n)?[ \t])*))*@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031
]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](
?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?
:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?
:\r\n)?[ \t])*))*\>(?:(?:\r\n)?[ \t])*)|(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?
:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?
[ \t]))*"(?:(?:\r\n)?[ \t])*)*:(?:(?:\r\n)?[ \t])*(?:(?:(?:[^()<>@,;:\\".\[\]
\000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|
\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>
@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"
(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*))*@(?:(?:\r\n)?[ \t]
)*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\
".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?
:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[
\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*|(?:[^()<>@,;:\\".\[\] \000-
\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(
?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)*\<(?:(?:\r\n)?[ \t])*(?:@(?:[^()<>@,;
:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([
^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\"
.\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\
]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*(?:,@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\
[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\
r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\]
\000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]
|\\.)*\](?:(?:\r\n)?[ \t])*))*)*:(?:(?:\r\n)?[ \t])*)?(?:[^()<>@,;:\\".\[\] \0
00-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\
.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,
;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?
:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*))*@(?:(?:\r\n)?[ \t])*
(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".
\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[
^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]
]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*\>(?:(?:\r\n)?[ \t])*)(?:,\s*(
?:(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\
".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)(?:\.(?:(
?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[
\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t
])*))*@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t
])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?
:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|
\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*|(?:
[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\
]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)*\<(?:(?:\r\n)
?[ \t])*(?:@(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["
()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)
?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>
@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*(?:,@(?:(?:\r\n)?[
\t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,
;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t]
)*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\
".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*)*:(?:(?:\r\n)?[ \t])*)?
(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".
\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)(?:\.(?:(?:
\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\[
"()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])
*))*@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])
+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\
.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z
|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*\>(?:(
?:\r\n)?[ \t])*))*)?;\s*)
</code></pre>
http://stackoverflow.com/questions/145969/sql-design-problem-items-in-multiple-sections/145988#1459880Answer by mmaibaum for Sql design problem - items in multiple sectionsmmaibaum2008-09-28T14:47:03Z2008-09-28T14:47:03Z<p>You need a third table, called a junction table, that provides the N to N relationship with 2 foreign keys pointing at the parent tables.</p>
http://stackoverflow.com/questions/135730/what-are-the-different-types-of-indexes-what-are-the-benefits-of-each/135753#1357533Answer by mmaibaum for What are the different types of indexes, what are the benefits of each?mmaibaum2008-09-25T20:16:14Z2008-09-25T20:16:14Z<p>I'll add a couple of index types</p>
<p>BITMAP - when you have very low number of different possible values, very fast and doesn't take up much space</p>
<p>PARTITIONED - allows the index to be partitioned based on some property usually advantageous on very large database objects for storage or performance reasons.</p>
<p>FUNCTION/EXPRESSION indexes - used to pre-calculate some value based on the table and store it in the index, a very simple example might be an index based on lower() or a substring function. </p>
http://stackoverflow.com/questions/135688/setting-environment-variables-in-os-x/135705#1357051Answer by mmaibaum for Setting environment variables in OS X?mmaibaum2008-09-25T20:09:14Z2008-09-25T20:09:14Z<p>for a single user modification, use ~/.profile of the ones you listed, the following link explains when the different files are read by bash</p>
<p><a href="http://telin.ugent.be/~slippens/drupal/bashrc_and_others" rel="nofollow">http://telin.ugent.be/~slippens/drupal/bashrc_and_others</a></p>
<p>if you want to set the environment variable for gui applications you need the ~/.MacOSX/environment.plist file</p>
http://stackoverflow.com/questions/135653/difference-between-drop-table-and-truncate-table/135663#1356632Answer by mmaibaum for Difference between drop table and truncate table?mmaibaum2008-09-25T20:04:07Z2008-09-25T20:04:07Z<p>truncate removes all the rows, but not the table itself, it is essentially equivalent to deleting with no where clause, but usually faster.</p>
http://stackoverflow.com/questions/134969/ruby-equivalent-of-python-str-method/135641#1356414Answer by mmaibaum for Ruby - equivalent of Python __str__() method?mmaibaum2008-09-25T20:00:04Z2008-09-25T20:00:04Z<p>FWIW, inspect is probably more like <code>__repr__()</code> than <code>__str__()</code></p>
<p>from the library reference...</p>
<p><strong>repr</strong>( self)</p>
<p><code>Called by the repr() built-in function and by string conversions (reverse quotes) to compute the ``official'' string representation of an object. If at all possible, this should look like a valid Python expression that could be used to recreate an object with the same value (given an appropriate environment). If this is not possible, a string of the form "<...some useful description...>" should be returned. The return value must be a string object. If a class defines __repr__() but not __str__(), then __repr__() is also used when an ``informal'' string representation of instances of that class is required.</code></p>
http://stackoverflow.com/questions/133782/how-can-i-find-employers-who-need-a-specific-skill-that-i-have/133803#1338031Answer by mmaibaum for How can I find employers who need a specific skill that I havemmaibaum2008-09-25T14:44:51Z2008-09-25T14:44:51Z<p>Find out if the vendor has a contractor/consultant list that they give out to clients, get on it. </p>
<p>If it is an open-source tool, be active in the community (mailing lists, IRC, etc)</p>
http://stackoverflow.com/questions/133051/what-is-the-difference-between-visibilityhidden-and-displaynone/133059#1330598Answer by mmaibaum for What is the difference between visibility:hidden and display:nonemmaibaum2008-09-25T12:39:43Z2008-09-25T12:39:43Z<p>display:none removes the element from the layout flow</p>
<p>visibility:none hides it but leaves the space</p>
http://stackoverflow.com/questions/132988/is-there-a-difference-between-and-is-in-python/133022#1330223Answer by mmaibaum for Is there a difference between `==` and `is` in python?mmaibaum2008-09-25T12:31:57Z2008-09-25T12:31:57Z<p><a href="http://docs.python.org/lib/comparisons.html" rel="nofollow">http://docs.python.org/lib/comparisons.html</a></p>
<p>is tests for identity
== tests for equality</p>
<p>Each (small) integer value is mapped to a single value, so every 3 is identical and equal. This is an implementation detail, not part of the language spec though</p>
http://stackoverflow.com/questions/132930/32-vs-64-bits-whats-the-big-deal/132973#1329731Answer by mmaibaum for 32 vs 64 bits... what's the big deal?mmaibaum2008-09-25T12:24:16Z2008-09-25T12:24:16Z<p>On OS X, you have a 64bit CPU if you have a G5 or almost any of the Intel machines (the very first Yonah based machines were 32bit, everything with a Core 2 is 64bit).</p>
<p>As far as the OS is concerned, Leapord is the first version of the OS to support 'GUI' 64bit programs. </p>
http://stackoverflow.com/questions/132585/installing-mysql-problem/132694#1326940Answer by mmaibaum for Installing mysql problemmmaibaum2008-09-25T11:20:48Z2008-09-25T11:20:48Z<p>To the first problem - I would imagine that Ruby gem is installing the ruby MySQL interface/drivers, not the MySQL server itself. It may be not present, or in a place the standard scripts can't find. </p>
<p>The second message indicates that the MySQL server is not running. Try starting it again, or examine any logs/messages for some indication as to why it might not be starting</p>
http://stackoverflow.com/questions/132564/whats-the-difference-between-an-element-and-a-node-in-xml/132572#1325720Answer by mmaibaum for What's the difference between an element and a node in XML?mmaibaum2008-09-25T10:51:21Z2008-09-25T10:51:21Z<p>A Node is a part of the DOM tree, an Element is a particular type of Node</p>
<p>e.g.
<code><foo> This is Text </foo></code></p>
<p>You have a foo Element, (which is also a Node, as Element inherits from Node) and a Text Node 'This is Text', that is a child of the foo Element/Node</p>
http://stackoverflow.com/questions/113609/why-is-enum-better-then-int/113710#1137100Answer by mmaibaum for Why is ENUM better then INTmmaibaum2008-09-22T07:57:39Z2008-09-22T07:57:39Z<p>On Oracle I would have a BITMAP index which is much faster than a hash-based lookup for such a small number of values. (So I presume a similar benefit in query optomisation or indexing is available for MySQL.) </p>
<p>Interestingly The MySQL docs suggest that using 'things that look like numbers' are a bad choice for the ENUM type because of potential confusion between the enum value and the enum index (<a href="http://dev.mysql.com/doc/refman/5.0/en/enum.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/enum.html</a>). </p>
http://stackoverflow.com/questions/113423/good-secure-backups-developers-at-home/113474#1134742Answer by mmaibaum for Good Secure Backups Developers at Homemmaibaum2008-09-22T06:32:51Z2008-09-22T06:32:51Z<p>My vote goes for cloud storage of some kind. The problem with nearly all 'home' backups is they stay in the home, that means any catastrophic damage to the system being backed up will probably damage the backups as well (fire, flood etc). My requirements would be </p>
<p>1) automated - manual backups get forgotten, usually just when most needed</p>
<p>2) off-site - see above</p>
<p>3) multiple versions - that is backup to more than one thing, in case that one thing fails. </p>
<p>As a developer, usually data sizes for backup are relatively small so a couple of free cloud backup accounts might do. They also often fulfil part 1 as they can usually be automated. I've heard good things about www.getdropbox.com/. </p>
<p>The other advantage of more than 1 account is you could have one on 'daily sync' and another on 'weekly sync' to give you some history. This is nowhere near as good as true incremental backups.</p>
<p>Personally I prefer a scripted backup (to local hard-drives, which I rotate to work as 'offsites'. This is in large part due to my hobby (photography) and thus my relatively lame internet upstream bandwith not coping with the data volume. </p>
<p>Take home message - don't rely on one solution and don't assume that your data is not important enough to think about the issues as deeply as the 'Enterprise' does. </p>
http://stackoverflow.com/questions/83329/how-can-i-extract-a-range-of-lines-from-a-text-file-on-unix/83359#833591Answer by mmaibaum for How can I extract a range of lines from a text file on unix?mmaibaum2008-09-17T13:43:22Z2008-09-17T13:43:22Z<p>perl -ne 'print if 16224..16482' file.txt > new_file.txt</p>
http://stackoverflow.com/questions/72879/refactoring-in-ruby/72946#729462Answer by mmaibaum for Refactoring in Rubymmaibaum2008-09-16T14:31:31Z2008-09-16T14:31:31Z<p>I believe net-beans and eclipse both support some refactoring within their 'ruby-mode' - also the emacs code browser (ECB) and the various ruby support tools (e.g. rinari) for emacs have some support. </p>
http://stackoverflow.com/questions/72564/multiple-return-values-to-indicate-success-failure/72634#726342Answer by mmaibaum for Multiple return values to indicate success/failure. mmaibaum2008-09-16T14:05:25Z2008-09-16T14:27:37Z<p>A more common approach I have seen when exceptions aren't available is to store the error type in a 'last_error' variable somewhere and then when a failure happens (ie it returns false) look up the error. </p>
<p>Another approach is to use the venerable unix tool approach numbered error codes - return 0 for success and any integer (that maps to some error) for the various error conditions. </p>
<p>Most of these suffer in comparison to exceptions when I've seen them used however.</p>
<p>Just to respond to Andrew's comment -
I agree that the last_error should not be a global and perhaps the 'somewhere' in my answer was a little vague - other people have suggested better places already so I won't bother to repeat them</p>
http://stackoverflow.com/questions/72699/is-it-better-to-join-two-fields-together-or-to-compare-them-each-to-the-same-con/72754#727540Answer by mmaibaum for Is it better to join two fields together, or to compare them each to the same constant?mmaibaum2008-09-16T14:15:48Z2008-09-16T14:15:48Z<p>I suspect this is going to depend on the tables, the data and the meta-data. I expect I could work up examples that would show results both ways - benchmark!</p>
http://stackoverflow.com/questions/72393/python-and-re/72521#725211Answer by mmaibaum for Python and "re"mmaibaum2008-09-16T13:56:13Z2008-09-16T13:56:13Z<p>You are probably being tripped up by the different methods re.search and re.match.</p>
http://stackoverflow.com/questions/72422/pythons-unittest-logic/72498#724980Answer by mmaibaum for Python's unittest logicmmaibaum2008-09-16T13:54:38Z2008-09-16T13:54:38Z<p>If I recall correctly in that test framework the setUp method is run before each test</p>
http://stackoverflow.com/questions/72401/what-perl-module-would-you-be-lost-without/72475#724751Answer by mmaibaum for What Perl module would you be lost without?mmaibaum2008-09-16T13:53:14Z2008-09-16T13:53:14Z<p>CGI and DBI hard to choose between them but most things I do have these somewhere near the bottom of the stack. </p>
http://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard/156469#156469Comment by mmaibaum on Regexp recognition of email address hard?mmaibaum2008-10-01T06:48:01Z2008-10-01T06:48:01ZThat wouldn't surprise me to be honest - that said all the attempts to validate an email via regexp to the actual standard that I've seen have been insane to some degree - I wouldn't even try and understand that one. A regexp a tenth the size of it probably means you shouldn't be using it ;)