User Mark Harrison - Stack Overflowmost recent 30 from stackoverflow.com2009-12-14T23:32:10Zhttp://stackoverflow.com/feeds/user/116http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1899091/how-to-find-memory-leaks-in-source-code/1899443#18994430Answer by Mark Harrison for How to find memory leaks in source codeMark Harrison2009-12-14T07:24:59Z2009-12-14T07:24:59Z<p><strong>Purify will do a seemingly miraculous job of doing this</strong></p>
<p>Not only memory leaks, but many other kinds of memory errors.</p>
<p>It works by instrumenting your machine code in real time, so you don't need source or need to compile with any particular options.</p>
<p>Just instrument your code with Purify (simplest way to do this: <code>CC="purify cc" make</code>), run your program, and get a nice gui that will show your leaks and other errors.</p>
<p>Available for Windows, Linux, and various flavors of Unix. There's a free trial download available.</p>
<blockquote>
<p><a href="http://www.ibm.com/software/awdtools/purify" rel="nofollow">http://www.ibm.com/software/awdtools/purify</a></p>
</blockquote>
http://stackoverflow.com/questions/1892373/iphone-how-to-get-safari-to-recognize-a-vcard0iPhone: how to get safari to recognize a vcard?Mark Harrison2009-12-12T05:07:00Z2009-12-12T05:07:00Z
<p>I'm trying to create a QR code so that iPhone users can import my address book information. I'm doing this by:</p>
<ul>
<li>putting a VCF (vcard) file on my web server</li>
<li>creating a QR image that contains this URL.</li>
</ul>
<p><a href="http://markharrison.net/mh.vcf" rel="nofollow">
<img src="http://markharrison.net/mh-vcf-small.png">
</a></p>
<p>This is working on my desktop browser (it opens the vcard with the address book app).</p>
<p>On the iPhone, the QR reader successfully tells safari to access the vcard, but then safari complains it does not know how to handle the vcard. I've confirmed that <code>Content-Type: text/x-vcard</code> is being sent.</p>
<p>So, my questions:</p>
<ul>
<li>How do I get Safari to recognize my vcard?</li>
<li>Is there another card format that safari recognizes?</li>
</ul>
http://stackoverflow.com/questions/1891326/executing-dynamic-sql-in-oracle-pl-sql-and-ensuring-security/1891484#18914841Answer by Mark Harrison for Executing Dynamic SQL in Oracle (PL/SQL) and Ensuring Security....Mark Harrison2009-12-11T23:10:48Z2009-12-11T23:10:48Z<p>In oracle, you can just check to see that the first word is "select". This is due to PL/SQl's Ada heritage, which requires compound statements to be in begin/end blocks, so that the usual SQL injection techniques just cause syntax errors.</p>
http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes79Computer Language puns and jokesMark Harrison2008-08-20T07:27:48Z2009-12-10T11:11:11Z
<p>I'm looking for some funny jokes and puns that occur in computer languages. I'll post an oldie to kick things off... What are some others?</p>
<p>update: Especially looking for code-related jokes... the ones that only make sense to programmers reading code. </p>
http://stackoverflow.com/questions/758771/error-trying-to-connect-to-oracle-from-rails-on-os-x/770959#7709590Answer by Mark Harrison for Error trying to connect to Oracle from Rails on OS XMark Harrison2009-04-21T03:42:18Z2009-11-29T04:59:57Z<p>You should have either the <strong>host:</strong> line or the <strong>database:</strong> line, but not both.</p>
<p>Use the <strong>database:</strong> line if you have a TNS entry.</p>
<pre><code>database: orcl ## orcl is an entry in tnsnames.ora
</code></pre>
<p>Otherwise use the <strong>host:</strong> format.</p>
<pre><code>host: dbhost.example.com/orcl # dbhost: network address of the database host
# orcl: database instance name
</code></pre>
<p>More notes here:</p>
<p><a href="http://stackoverflow.com/questions/764887/how-to-configure-ruby-on-rails-with-oracle">http://stackoverflow.com/questions/764887/how-to-configure-ruby-on-rails-with-oracle</a></p>
http://stackoverflow.com/questions/1793915/oracle-speeding-up-count0Oracle: speeding up count(*)?Mark Harrison2009-11-25T00:24:26Z2009-11-28T08:41:46Z
<p>I've got an application being put together with cake/php. It's
pretty nice, but their data pager does this:</p>
<pre><code>SELECT COUNT(*) AS COUNT
FROM foo f
LEFT JOIN bar b
ON (f.asset_group_id = b.asset_group_id)
WHERE 1 = 1
</code></pre>
<p>Any way possible to speed this up?</p>
<p><strong>update:</strong> table definitions (extra columns removed):</p>
<pre><code>create table bar (
last_modified_by varchar2(16),
asset_group_id number(10,0) not null enable,
folder varchar2(512) not null enable,
name varchar2(512) not null enable,
kind varchar2(16),
-- exta fields deleted
constraint bar_pk primary key (folder, name) enable
);
create index bar_last_modified_date on bar (last_modified_date desc) ;
create index bar_asset_group_id on bar (asset_group_id desc) ;
create index bar_folder on bar (folder) ;
create index bar_kind on bar (kind) ;
create unique index bar_pk on bar (folder, name) ;
create table foo (
created_date date not null enable,
asset_group_id number(10,0) not null enable,
keyword varchar2(4000) not null enable,
-- exta fields deleted
constraint foo_pk primary key (asset_group_id, keyword) enable
) enable row movement ;
create index foo_created on foo (created_date desc) ;
create unique index foo_pk on foo (asset_group_id, keyword) ;
</code></pre>
http://stackoverflow.com/questions/1811562/rolling-my-own-version-control/1811688#18116882Answer by Mark Harrison for Rolling my own "Version Control"Mark Harrison2009-11-28T05:34:54Z2009-11-28T05:34:54Z<p>Since you seem to be approaching this as a learning project, you might want to investigate using <a href="http://www.gnu.org/software/rcs/" rel="nofollow">RCS</a> for your low-level file manipulation. After you're comfortable manipulating things in RCS, you can then investigate replacing that layer if you're still interested.</p>
<p>For learning purposes, you might also investigate <a href="http://www.perforce.com" rel="nofollow">Perforce</a>, which is free for small-scale use such as yours.</p>
http://stackoverflow.com/questions/1520985/what-is-a-command-line-compiler/1788578#17885781Answer by Mark Harrison for What is a command line compiler?Mark Harrison2009-11-24T08:09:03Z2009-11-24T08:09:03Z<p><strong>A command-line compiler is one that you run from the command line.</strong></p>
<p>You type in <code>gcc filename.c</code> to compile a file (or something like that). Almost all compilers have a command-line version, and many have GUIs where you never see the command line, but the command line is still there. – Bill K Oct 5 at 16:27</p>
<p><em>(Bill K provided a nice answer in the comments... copied here and lightly edited by Mark Harrison, set to community wiki so as not to get rep.)</em></p>
http://stackoverflow.com/questions/1776887/what-database-tool-made-these-nice-looking-diagrams4What database tool made these nice-looking diagrams?Mark Harrison2009-11-21T21:40:27Z2009-11-21T22:25:24Z
<p>I was impressed with the nice-looking database diagrams on this web page. Does anybody know what package made them?</p>
<blockquote>
<p><a href="http://richarddingwall.name/2009/11/20/the-trouble-with-soft-delete/" rel="nofollow">http://richarddingwall.name/2009/11/20/the-trouble-with-soft-delete/</a>
<img src="http://markharrison.net/stackoverflow/nice-looking-db-doc.png"></p>
</blockquote>
http://stackoverflow.com/questions/1776887/what-database-tool-made-these-nice-looking-diagrams/1776992#17769920Answer by Mark Harrison for What database tool made these nice-looking diagrams?Mark Harrison2009-11-21T22:25:24Z2009-11-21T22:25:24Z<p>Thanks all for the pointer... Scruffy is nifty!</p>
<p>Here's the link to the "real" image (%XX substituted) on the Scruffy site:</p>
<pre><code>http://yuml.me/diagram/scruffy/class/
[Product|Name VARCHAR(255);...;DeletedAt DATETIME;DeletedByUserID INT;]
</code></pre>
<p><a href="http://yuml.me/diagram/scruffy/class/%5BProduct|Name%20VARCHAR%28255%29%3B...%3BDeletedAt%20DATETIME%3BDeletedByUserID%20INT%3B%5D" rel="nofollow">
<img src="http://yuml.me/diagram/scruffy/class/%5BProduct|Name%20VARCHAR%28255%29%3B...%3BDeletedAt%20DATETIME%3BDeletedByUserID%20INT%3B%5D">
</a></p>
http://stackoverflow.com/questions/1772532/fastest-web-server-for-static-dynamic-content0fastest web server for static, dynamic content? [closed]Mark Harrison2009-11-20T18:52:51Z2009-11-20T18:57:53Z
<p>I'm looking for the fastest http server available for:</p>
<ol>
<li><p>serving static content -- huge set of large images. Minimal features need, just as fast as possible.</p></li>
<li><p>dispatching dynamic content plugins -- think a web server that does on-the-fly watermarking or image transcoding. I'm looking for the fastest, lowest-overhead way of dispatching this.</p></li>
</ol>
<p>Environment: linux or OS/X. any language acceptable.</p>
http://stackoverflow.com/questions/1078043/why-didnt-ada-make-it/1745245#17452455Answer by Mark Harrison for Why didn't Ada make it?Mark Harrison2009-11-16T22:23:35Z2009-11-16T22:23:35Z<p><strong>It was used on Government Projects, and Ada Vendors charged that way</strong></p>
<p>For example, when we bought Sparcworks C/C++ for the Sun, the list price was $2,000/seat. For Sparcworks Ada (which as far as I could tell was identical in features) the list price was $10,000/seat.</p>
<p>This dampened a lot of (non-vendor) commercial enthusiasm, coz nobody wants to be stuck with toolsets priced for the government!</p>
http://stackoverflow.com/questions/1737947/code-golf-permutations/1738237#17382374Answer by Mark Harrison for Code Golf: PermutationsMark Harrison2009-11-15T17:46:24Z2009-11-15T17:46:24Z<p><strong>Prolog</strong></p>
<pre><code>perm(List,[H|Perm]):-delete(H,List,Rest),perm(Rest,Perm).
perm([],[]).
delete(X,[X|T],T).
delete(X,[H|T],[H|NT]):-delete(X,T,NT).
</code></pre>
http://stackoverflow.com/questions/29744/how-do-you-manage-schema-upgrades-to-a-production-database15How do you manage schema upgrades to a production database?Mark Harrison2008-08-27T08:36:37Z2009-11-11T23:21:47Z
<p>This seems to be an overlooked area that could really use some insight. What are your best practices for:</p>
<ul>
<li>making an upgrade procedure</li>
<li>backing out in case of errors</li>
<li>syncing code and database changes</li>
<li>testing prior to deployment</li>
<li>mechanics of modifying the table</li>
</ul>
<p>etc... </p>
http://stackoverflow.com/questions/1690284/getting-started-with-arduino8Getting started with Arduino?Mark Harrison2009-11-06T20:42:50Z2009-11-09T16:14:16Z
<p>I'm going to get an Arduino starter kit like the one below.</p>
<ul>
<li>What else do I need to get started? </li>
<li>What are some good Arduino programming resources?</li>
<li>What else can I buy/acquire to make my first embedded programming experience more pleasant?</li>
<li>What are some good beginner projects?</li>
</ul>
<blockquote>
<p><a href="http://www.sparkfun.com/commerce/product_info.php?products_id=9284" rel="nofollow">http://www.sparkfun.com/commerce/product_info.php?products_id=9284</a></p>
</blockquote>
http://stackoverflow.com/questions/764871/installing-oracle-instantclient-on-linux-without-setting-environment-variables0installing Oracle Instantclient on Linux without setting environment variables?Mark Harrison2009-04-19T05:16:35Z2009-11-09T14:36:10Z
<p>Oracle's instructions specify setting LD_LIBRARY_PATH. This makes my application dependent on random users' configuration and is very troublesome to set up.</p>
<p>How can I avoid having to set any environment variables?</p>
<p><a href="http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/linuxx86_64soft.html" rel="nofollow">http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/linuxx86_64soft.html</a></p>
<p>related note for OS/X: <a href="http://stackoverflow.com/questions/684352">http://stackoverflow.com/questions/684352</a></p>
http://stackoverflow.com/questions/1659620/why-is-python-a-favourite-among-people-working-in-animation-industry/1659716#16597166Answer by Mark Harrison for Why is Python a favourite among people working in animation industry?Mark Harrison2009-11-02T06:27:48Z2009-11-02T06:27:48Z<p>I work in this industry, and here's what I've observed:</p>
<ul>
<li><p>It's a nice, tidy language that's not hard to pick up. You don't have to be a language guru to use it.</p></li>
<li><p>It embeds nicely in C/C++ applications.</p></li>
<li><p>It has data types, so numeric operations can be done without type shimmering.</p></li>
<li><p>Speaking of numeric operations, <a href="http://numpy.scipy.org/" rel="nofollow">NumPy</a>!</p></li>
<li><p>Network effect -- everybody else uses it, so we get a virtuous cycle of interoperable scripting.</p></li>
</ul>
http://stackoverflow.com/questions/1218335/stop-words-list-for-english2"stop words" list for english?Mark Harrison2009-08-02T07:19:16Z2009-10-30T22:30:35Z
<p>I'm generating some statistics for some english-language text and I would like to skip uninteresting words such as "a" and "the".</p>
<ul>
<li>Where can I find some lists of these uninteresting words?</li>
<li>Is a list of these words the same as a list of the most frequently used words in English?</li>
</ul>
<p>update: these are apparently called "stop words" and not "skip words".</p>
http://stackoverflow.com/questions/1636031/oracle-oci-change-notification-should-host-be-the-client-machine1Oracle OCI Change Notification -- should HOST= be the client machine?Mark Harrison2009-10-28T09:14:11Z2009-10-28T21:31:26Z
<p>I have an example program that works fine with one database and doesn't get a callback invocation on another database.</p>
<p>I noticed that in the working case <code>SELECT CALLBACK FROM USER_CHANGE_NOTIFICATION_REGS</code> returns a string that references the client IP address, which seems to intuitively match what the callback needs.</p>
<pre><code> (46, 4, 'net8://(ADDRESS=(PROTOCOL=tcp)(HOST=172.16.252.1)(PORT=49406))?PR=0',
0, 0, 1800, 'MH.CBDEMO')
# 172.16.252.1 = client machine
</code></pre>
<p>In the busted case, the host string is filled in with the IP address of the database host.</p>
<pre><code> (271, 4, 'net8://(ADDRESS=(PROTOCOL=tcp)(HOST=138.72.249.167)(PORT=50966))?PR=0',
0, 0, 1800, 'MH.CBDEMO')
# 138.72.249.167 = database host
</code></pre>
<p>So, two questions:</p>
<ol>
<li><p>is it truly the case that the HOST= parm should refer to the OCI client?</p></li>
<li><p>what's the best way to figure out where the HOST= parm is being incorrectly filled in?</p></li>
</ol>
<p>environment:</p>
<ul>
<li>client: Mac OSX, OCI, Python+cx_Oracle; database: 10.2.0.4.0</li>
<li>good server: linux on vmware, 10.2.0.4.0</li>
<li>failing server: linux RAC, 10.2.0.4.0</li>
</ul>
http://stackoverflow.com/questions/1628541/generate-database-tables-schema-ddl-on-oracle-pl-sql/1628701#16287011Answer by Mark Harrison for generate database & tables schema (ddl) on Oracle pl-sqlMark Harrison2009-10-27T04:00:56Z2009-10-27T04:00:56Z<p>If you just need to dump your schema, this free package does a very nice job. We use it in daily production.</p>
<blockquote>
<p><a href="http://sourceforge.net/projects/cx-oracletools" rel="nofollow">http://sourceforge.net/projects/cx-oracletools</a></p>
</blockquote>
<p>If you need to convert from Oracle to SQL Server, this software might do a better job. We've used it to convert between Oracle, MySql, and Postgreqsql.</p>
<blockquote>
<p><a href="http://www.spectralcore.com/fullconvert" rel="nofollow">http://www.spectralcore.com/fullconvert</a></p>
</blockquote>
http://stackoverflow.com/questions/437589/how-do-i-unload-reload-a-python-module10How do I unload (reload) a Python module?Mark Harrison2009-01-13T00:33:36Z2009-10-19T22:29:35Z
<p>I have a long-running python server and would like to be able to upgrade a service without restarting the server. What's the best way do do this?</p>
<pre><code>if foo.py has changed:
unimport foo <-- how do I do this?
import foo
myfoo=foo.Foo()
</code></pre>
http://stackoverflow.com/questions/24886/is-there-a-performance-difference-between-i-and-i-in-c30Is there a performance difference between i++ and ++i in C? Mark Harrison2008-08-24T06:48:23Z2009-10-17T10:03:25Z
<p>Is there a performance difference between i++ and ++i if the resulting value is not used?</p>
http://stackoverflow.com/questions/6957/has-anybody-used-google-performance-tools1Has anybody used Google Performance Tools?Mark Harrison2008-08-10T00:01:18Z2009-10-11T12:48:22Z
<p>Looking for feedback on :</p>
<p><a href="http://code.google.com/p/google-perftools/wiki/GooglePerformanceTools" rel="nofollow">http://code.google.com/p/google-perftools/wiki/GooglePerformanceTools</a></p>
http://stackoverflow.com/questions/1525723/killing-an-oracle-job-10g-specific/1529101#15291010Answer by Mark Harrison for Killing an Oracle job. 10g specificMark Harrison2009-10-07T01:47:54Z2009-10-07T01:54:58Z<ul>
<li><p>You can get the PID from the job tables and kill the stuck process via the normal OS commands.</p></li>
<li><p>You can kill jobs on any instance. On 10g, you need to know on which instance the stuck job is running, and connect to that instance:</p></li>
</ul>
<p>To get your instance and pid:</p>
<pre><code>select inst_id, process from gv$session where ...
</code></pre>
<p>Connect to a specific instance:</p>
<pre><code>sqplus admin@node3 as sysdba
alter system kill session ...
</code></pre>
http://stackoverflow.com/questions/6209/split-a-string-ignoring-quoted-sections/6386#63863Answer by Mark Harrison for Split a string ignoring quoted sectionsMark Harrison2008-08-08T21:07:28Z2009-10-01T21:54:30Z<p><strong>Python:</strong></p>
<pre><code>import csv
reader = csv.reader(open("some.csv"))
for row in reader:
print row
</code></pre>
http://stackoverflow.com/questions/1490039/calling-objective-c-functions-from-python1calling Objective C functions from Python?Mark Harrison2009-09-29T00:47:28Z2009-09-29T04:58:47Z
<p>Is there a way to dynamically call an Objective C function from Python?</p>
<p>For example, On the mac I would like to call this Objective C function</p>
<pre><code>[NSSpeechSynthesizer availableVoices]
</code></pre>
<p>without having to precompile any special Python wrapper module.</p>
http://stackoverflow.com/questions/1489800/getting-list-of-mac-text-to-speech-voices-programmatically0Getting list of Mac text-to-speech voices programmatically?Mark Harrison2009-09-28T23:06:12Z2009-09-29T04:47:58Z
<p>The mac command <strong><code>say</code></strong> can specify the voice used with the <strong>-v</strong> flag.</p>
<pre><code>say -v Alex "compile completed, put your swords down."
</code></pre>
<p>The available voices can be seen in System Preferences/Speech/Text to Speech. How can I get this list programmatically?</p>
http://stackoverflow.com/questions/1489800/getting-list-of-mac-text-to-speech-voices-programmatically/1489991#14899910Answer by Mark Harrison for Getting list of Mac text-to-speech voices programmatically?Mark Harrison2009-09-29T00:26:32Z2009-09-29T04:47:58Z<p><strong>Shell Version</strong>, no hack too cheap!</p>
<p>(Don't actually use this, use the python version instead.)</p>
<pre><code>ls /System/Library/Speech/Voices | sed 's/.SpeechVoice$//'
Agnes
Albert
Alex
BadNews
Bahh
Bells
Boing
...
</code></pre>
http://stackoverflow.com/questions/1489800/getting-list-of-mac-text-to-speech-voices-programmatically/1490611#14906110Answer by Mark Harrison for Getting list of Mac text-to-speech voices programmatically?Mark Harrison2009-09-29T04:47:10Z2009-09-29T04:47:10Z<p><strong>Python Version</strong>, courtesy of <a href="http://stackoverflow.com/questions/1490039/calling-objective-c-functions-from-python/1490461#1490461">Barry Wark</a>:</p>
<pre><code>from AppKit import NSSpeechSynthesizer
print NSSpeechSynthesizer.availableVoices()
</code></pre>
http://stackoverflow.com/questions/1122172/shell-scripting-for-godaddy-coupon-codes-how-does-this-script-work/1122285#11222852Answer by Mark Harrison for Shell scripting for godaddy coupon codes - how does this script work?Mark Harrison2009-07-13T21:50:46Z2009-09-27T10:09:56Z<p><strong>Legal and Ethical</strong></p>
<ul>
<li>Assuming you are in the U.S., there aren't any laws restricting the access of a website by a script such as yours.</li>
<li>Those pages are not referenced in <code>robots.txt</code>.</li>
<li>And for godaddy in particular, it's not an ethical problem... When I swapped my registration service over to them I called their sales number, told them what I wanted to do, and they told me on the phone the best code to use.</li>
</ul>
http://stackoverflow.com/questions/1793915/oracle-speeding-up-countComment by Mark Harrison on Oracle: speeding up count(*)?Mark Harrison2009-11-28T07:37:52Z2009-11-28T07:37:52Zupdated with table defs...http://stackoverflow.com/questions/594/cxoracle-what-is-the-best-way-to-iterate-over-a-result-set/595#595Comment by Mark Harrison on cx_Oracle - what is the best way to iterate over a result set?Mark Harrison2009-11-27T20:25:49Z2009-11-27T20:25:49ZI think SScursor is for MySQL. But anything that has a fetchall() will probably have the same memory usage, as it returns a list of all the rows returned.http://stackoverflow.com/questions/544657/unusual-programming-interview-questions/548038#548038Comment by Mark Harrison on Unusual programming interview questionsMark Harrison2009-11-22T22:07:29Z2009-11-22T22:07:29Z@mrduclaw, a[i] is defined as *(a+i). So, it goes like this: a[i] == *(a+i) == *(i+a) == i[a]. so, 2["hello"] == "hello"[2] = 'l'.http://stackoverflow.com/questions/1776887/what-database-tool-made-these-nice-looking-diagramsComment by Mark Harrison on What database tool made these nice-looking diagrams?Mark Harrison2009-11-21T22:02:43Z2009-11-21T22:02:43Z@mrduclaw, no, but if you're gonna copy an image off of somebody's blog it seems right to include a link... :-)http://stackoverflow.com/questions/1776887/what-database-tool-made-these-nice-looking-diagramsComment by Mark Harrison on What database tool made these nice-looking diagrams?Mark Harrison2009-11-21T22:02:10Z2009-11-21T22:02:10Z@ChrisF, by the time I refreshed the page to see my comment... amazing!http://stackoverflow.com/questions/1776887/what-database-tool-made-these-nice-looking-diagramsComment by Mark Harrison on What database tool made these nice-looking diagrams?Mark Harrison2009-11-21T21:45:13Z2009-11-21T21:45:13ZCoz (a) I think I can get a faster answer here, and (b) I want to spread the knowledge.http://stackoverflow.com/questions/29744/how-do-you-manage-schema-upgrades-to-a-production-databaseComment by Mark Harrison on How do you manage schema upgrades to a production database?Mark Harrison2009-11-11T23:22:04Z2009-11-11T23:22:04Zgood idea, thanks!
http://stackoverflow.com/questions/1628541/generate-database-tables-schema-ddl-on-oracle-pl-sql/1628701#1628701Comment by Mark Harrison on generate database & tables schema (ddl) on Oracle pl-sqlMark Harrison2009-11-04T16:51:43Z2009-11-04T16:51:43ZNo problem for 10.2, that's what we have also.http://stackoverflow.com/questions/1636031/oracle-oci-change-notification-should-host-be-the-client-machineComment by Mark Harrison on Oracle OCI Change Notification -- should HOST= be the client machine?Mark Harrison2009-10-28T21:32:41Z2009-10-28T21:32:41Zboth linux, the failing server is part of a RAC cluster. The client uses DHCP, but I think talks to the non-failing server over a vmware virtual network.http://stackoverflow.com/questions/1536479/asking-for-opinions-one-sequence-for-all-tables/1536530#1536530Comment by Mark Harrison on Asking for opinions : One sequence for all tablesMark Harrison2009-10-28T18:08:49Z2009-10-28T18:08:49ZRunning out of numbers shouldn't be an issue if you use NUMBER. Running at a trillion transactions/sec, you are good for 31.6 million millenia.http://stackoverflow.com/questions/17512/computer-language-puns-and-jokesComment by Mark Harrison on Computer Language puns and jokesMark Harrison2009-10-15T03:56:20Z2009-10-15T03:56:20Z@Cletus, it's asking for jokes that make sense in the context of a computer language.http://stackoverflow.com/questions/1489800/getting-list-of-mac-text-to-speech-voices-programmatically/1489829#1489829Comment by Mark Harrison on Getting list of Mac text-to-speech voices programmatically?Mark Harrison2009-09-29T04:50:59Z2009-09-29T04:50:59Zyou're right, I've copied the incanation below... thanks a bunch!!http://stackoverflow.com/questions/1489800/getting-list-of-mac-text-to-speech-voices-programmatically/1489829#1489829Comment by Mark Harrison on Getting list of Mac text-to-speech voices programmatically?Mark Harrison2009-09-29T00:44:09Z2009-09-29T00:44:09Znice! This wouldn't be callable via python by any chance?http://stackoverflow.com/questions/544364/junior-engineer-interviewing-senior-engineer-need-questions/544389#544389Comment by Mark Harrison on Junior Engineer Interviewing Senior Engineer - Need QuestionsMark Harrison2009-09-24T05:58:57Z2009-09-24T05:58:57Zlol, sometimes both!
http://stackoverflow.com/questions/1459673/how-does-one-make-a-zip-bomb/1459690#1459690Comment by Mark Harrison on How does one make a Zip bomb?Mark Harrison2009-09-23T10:44:52Z2009-09-23T10:44:52Z+1 funny!