User Kyle Cronin - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T03:46:20Z http://stackoverflow.com/feeds/user/658 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/91846/rails-or-django-or-something-else 25 Rails or Django? (or something else?) Kyle Cronin 2008-09-18T11:51:22Z 2009-11-18T22:47:04Z <p>I'm interested in learning a web framework. The two big ones, as I gather, are Rails and Django. Which one is better/faster? Is one better designed or more logically consistent than the other? Is there another framework I should look into? How easy is it to set up and administer a Rails or Django server, and how easy is it to find a shared hosting plan?</p> <p>To give a little background, the websites I'm currently used to making are in straight PHP (no framework) and I'd like to be able to manage some of the complexity that comes from feature creep. Outputting HTML with echo becomes a lot less fun the more you have to customize it. In addition, I don't know either Ruby or Python so I'm free to go either way.</p> <p>note: I'm not interested in ASP. I'd like to develop on a Mac and deploy to Linux/FreeBSD and I don't think that ASP fits the bill.</p> <p><hr /></p> <p>To everyone that's replied so far: thank you! Choosing a web framework can be a difficult thing, so I'll try to narrow down what I would like to do.</p> <p>First, I would like to build small, custom sites (hard to call them "apps") that serve data from a database, and optionally an administrative interface to manage everything behind the scenes. As an example, I have a website for my grandmother to showcase her artwork built in PHP. I've spent more time on the backend than the front end to enable her to reorder, relabel, and reprice her artwork as well as upload an image, tag it, and have it scaled and appear on her site.</p> <p>I notice both frameworks generate "scaffolding" that can be used as a rudimentary admin interface; how would they handle non-textual data (like images)?</p> <p>Also, when watching a Rails screencast, there was a casual mention that the framework does some singular/plural translation. This strikes me as quite odd - is this what is referred to as "magic" in Rails? If so, does Django (or any other framework) have a more sensible naming strategy?</p> http://stackoverflow.com/questions/291897/sqlite-non-exclusive-reserved-lock 1 SQLite non-exclusive RESERVED lock? Kyle Cronin 2008-11-15T00:43:31Z 2009-11-15T21:28:31Z <p>I've been looking into improving SQLite performance for my site, especially with regard to transactions. In essence what I'm looking for is a way to defer database writes in a process so that they can all be done at once. However, while I'm accumulating update queries, I would like other processes to be able to both read from and write to the database, and only lock the file for writing once a commit is issued in a process.</p> <p>In looking at the documentation, it seems as though once an update command is issued in a transaction the process gets a RESERVED lock, which (if I remember correctly) means that any other process that attempts to either add an update query to its own transaction or commit the transaction is unable to do so, and therefore blocks until the transaction commits on the process with the lock.</p> <p>I'm sure there are very good data integrity reasons against this particular feature. All I can say is that in my case there's no danger in performing these updates simultaneously.</p> <p>One solution is that in each process I could accumulate the text of the queries I wish to invoke in an array, then loop down it once I'm ready to write, but I'm wondering if it's possible the SQLite transaction can be made to do this for me automatically.</p> <p><strong>update:</strong> What I mean when I say "doing all my updates at once" is essentially using transactions in SQLite to only get an EXCLUSIVE lock and write to disk once per processes, rather than once per query. This leads to 100x speedups using SQLite.</p> <p>I've done some basic testing and it seems that once you have multiple processes adding queries to their transactions, once you hit an update query that process attempts to get the RESERVED lock. Since only once process can have the reserved lock, this means that any other processes attempting to get the lock will block until the process with the lock finished the transaction.</p> <p>I will admit that this problem might be a premature optimization as I have yet to encounter any performace penalties, but I have run some simple tests and 100 users each creating and running a transaction with 100 queries takes about 4 seconds in PHP on my machine.</p> http://stackoverflow.com/questions/177118/algorithm-to-determine-if-array-contains-n-nm 22 Algorithm to determine if array contains n...n+m? Kyle Cronin 2008-10-07T03:19:01Z 2009-11-06T19:23:14Z <p>I saw this question on Reddit, and there were no positive solutions presented, and I thought it would be a perfect question to ask here. This was in a thread about interview questions:</p> <blockquote> <p>Write a method that takes an int array of size m, and returns (True/False) if the array consists of the numbers n...n+m-1, all numbers in that range and only numbers in that range. The array is not guaranteed to be sorted. (For instance, {2,3,4} would return true. {1,3,1} would return false, {1,2,4} would return false.</p> <p>The problem I had with this one is that my interviewer kept asking me to optimize (faster O(n), less memory, etc), to the point where he claimed you could do it in one pass of the array using a constant amount of memory. Never figured that one out.</p> </blockquote> <p>Along with your solutions please indicate if they assume that the array contains unique items. Also indicate if your solution assumes the sequence starts at 1. (I've modified the question slightly to allow cases where it goes 2, 3, 4...)</p> <p><strong>edit:</strong> I am now of the opinion that there does not exist a linear in time and constant in space algorithm that handles duplicates. Can anyone verify this?</p> <p>The duplicate problem boils down to testing to see if the array contains duplicates in O(n) time, O(1) space. If this can be done you can simply test first and if there are no duplicates run the algorithms posted. So can you test for dupes in O(n) time O(1) space?</p> http://stackoverflow.com/questions/46586/goto-still-considered-harmful 24 GOTO still considered harmful? Kyle Cronin 2008-09-05T19:05:18Z 2009-10-24T06:14:57Z <p>Everyone is aware of Dijkstra's <a href="http://portal.acm.org/citation.cfm?doid=362947" rel="nofollow">Letters to the editor: go to statement considered harmful</a> (also <a href="http://www.cs.utexas.edu/~EWD/transcriptions/EWD02xx/EWD215.html" rel="nofollow">here</a> .html transcript and <a href="http://www.cs.utexas.edu/users/EWD/ewd02xx/EWD215.PDF" rel="nofollow">here</a> .pdf) and there has been a formidable push since that time to eschew the goto statement whenever possible. While it's possible to use goto to produce unmaintainable, sprawling code, it nevertheless remains in <a href="http://msdn.microsoft.com/en-us/library/13940fs2%28VS.71%29.aspx" rel="nofollow">modern programming languages</a>. Even the advanced <a href="http://en.wikipedia.org/wiki/Goto#Continuations" rel="nofollow">continuation</a> control structure in Scheme can be described as a sophisticated goto.</p> <p>What circumstances warrant the use of goto? When is it best to avoid?</p> <p>As a followup question: C provides a pair of functions, setjmp and longjmp, that provide the ability to goto not just within the current stack frame but within any of the calling frames. Should these be considered as dangerous as goto? More dangerous?</p> <p><hr /></p> <p>Dijkstra himself regretted that title, of which he was not responsible for. At the end of <a href="http://www.cs.utexas.edu/~EWD/transcriptions/EWD13xx/EWD1308.html" rel="nofollow">EWD1308</a> (also <a href="http://www.cs.utexas.edu/%7EEWD/ewd13xx/EWD1308.PDF" rel="nofollow">here</a> .pdf) he wrote:</p> <blockquote> <p>Finally a short story for the record. In 1968, the Communications of the ACM published a text of mine under the title "<em>The goto statement considered harmful</em>", which in later years would be most frequently referenced, regrettably, however, often by authors who had seen no more of it than its title, which became a cornerstone of my fame by becoming a template: we would see all sorts of articles under the title "X considered harmful" for almost any X, including one titled "Dijkstra considered harmful". But what had happened? I had submitted a paper under the title "<strong><em>A case against the goto statement</em></strong>", which, in order to speed up its publication, the editor had changed into a "letter to the Editor", and in the process he had given it a new title of his own invention! The editor was Niklaus Wirth.</p> </blockquote> <p>A well thought out classic paper about this topic, to be matched to that of Dijkstra, is <a href="http://eprints.kfupm.edu.sa/67246/" rel="nofollow">Structured Programming with go to Statements</a> (also <a href="http://pplab.snu.ac.kr/courses/adv%5Fpl05/papers/p261-knuth.pdf" rel="nofollow">here</a> .pdf), by Donald E. Knuth. Reading both helps to reestablish context and a non-dogmatic understanding of the subject. In this paper, Dijkstra's opinion on this case is reported and is even more strong:</p> <blockquote> <p><em>Donald E. Knuth:</em> I believe that by presenting such a view I am not in fact disagreeing sharply with Dijkstra's ideas, since he recently wrote the following: "Please don't fall into the trap of believing that I am terribly dogmatical about [the go to statement]. <strong>I have the uncomfortable feeling that others are making a religion out of it, as if the conceptual problems of programming could be solved by a single trick, by a simple form of coding discipline!</strong>"</p> </blockquote> http://stackoverflow.com/questions/4845/good-x86-assembly-book 12 Good x86 assembly book Kyle Cronin 2008-08-07T15:19:45Z 2009-10-18T13:18:11Z <p>I'm looking to teach myself basic hardware architecture; specifically, I'd like to learn x86 assembly for Linux or OSX. What books does this community recommend?</p> http://stackoverflow.com/questions/774772/django-on-centos 1 Django on CentOS Kyle Cronin 2009-04-21T21:47:43Z 2009-10-12T07:00:06Z <p>I'm looking to use Django on a shared host that's running an unknown version of CentOS. My main problem is trying to interface with a database. The server has MySQL installed, but not MySQL-python. I initially thought of suggesting running "yum install MySQL-python", but apparently the version of MySQL-python that's in the default repositories for CentOS is 1.2.1, and Django requires 1.2.1p2.</p> <p>This requirement first started with Django 0.96. In the <a href="http://docs.djangoproject.com/en/dev/releases/0.96/" rel="nofollow">release notes</a>, a deprecated interface called mysql_old was added for compatibility with older versions of MySQL-python. Last July this deprecated interface was unceremoniously <a href="http://code.djangoproject.com/changeset/7949" rel="nofollow">dropped</a>. The <a href="http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#MySQL%5Foldbackendremoved" rel="nofollow">announcement</a> of this change does not indicate a reason other than that it was old.</p> <p>Is it possible to resurrect this old interface in Django 1.1? Have there been any changes to the database interface since then? What would be the danger in forcing Django to skip the version check and using 1.2.1? Is it possible to compile a later version on another machine and copy the files over to the host? What would I need to know in order to do that?</p> <p>I also looked into SQLite, but CentOS ships with Python 2.4.3, and therefore would require the pysqlite2 extension, which (afaict) doesn't exist in the repository.</p> <p>Everything could be solved by simply installing from source, but that's rather messy and I have a much smaller chance of convincing the company to do that than getting them to install something from the repository. I realize that it seems like I should just get a different host, but you'll have to trust me that I have my reasons to try to make this work.</p> <p><em>note: I don't have any experience using CentOS or yum, so everything I've said about them is an informed guess. Please let me know if all I need to do is specify some settings or change repositories to get the updated versions of these packages. Thanks.</em></p> http://stackoverflow.com/questions/214452/what-surprised-you-the-most-about-the-software-industry 42 What surprised you the most about the software industry? Kyle Cronin 2008-10-18T02:47:39Z 2009-10-04T02:11:25Z <p>As someone that will be graduating from college in the near future, I'd like to get some perspective on the differences between academia and the software industry. As I've never taken an internship all I've known are school and personal projects.</p> <p>What is the biggest difference between college and the "real" world? What surprised you the most when you got out? Is there anything you wish you'd have known?</p> http://stackoverflow.com/questions/565963/hidden-limitations-of-google-app-engine 22 Hidden limitations of Google App Engine? Kyle Cronin 2009-02-19T15:56:21Z 2009-10-01T07:58:02Z <p>I've been looking into writing a web app that will run on Google App Engine, but before I commit myself to the platform I'd like to know what, if any, limitations there are. I'm aware of the basic CPU/bandwidth restrictions that Google places on the free service, but I'm wondering more about development restrictions like how BigTable compares to a standard relational database and what Python libraries aren't available on the GAE platform (and what alternatives Google provides).</p> <p>Basically I'm looking for any hidden roadblocks before I commit to the platform. Thanks for your help!</p> http://stackoverflow.com/questions/27267/delete-amazon-s3-buckets 2 Delete Amazon S3 buckets? Kyle Cronin 2008-08-26T02:12:06Z 2009-09-24T18:21:19Z <p>I've been interacting with Amazon S3 through <a href="https://addons.mozilla.org/en-US/firefox/addon/3247" rel="nofollow">S3Fox</a> and I can't seem to delete my buckets. I select a bucket, hit delete, confirm the delete in a popup, and... nothing happens. Is there another tool that I should use?</p> http://stackoverflow.com/questions/315340/practical-non-turing-complete-languages 6 Practical non-Turing-complete languages? Kyle Cronin 2008-11-24T20:27:35Z 2009-09-10T09:35:06Z <p>Nearly all programming languages used are <a href="http://en.wikipedia.org/wiki/Turing_Complete" rel="nofollow">Turing Complete</a>, and while this affords the language to represent any <a href="http://en.wikipedia.org/wiki/Computability_theory_(computer_science)" rel="nofollow">computable</a> algorithm, it also comes with its own set of <a href="http://en.wikipedia.org/wiki/Halting_problem" rel="nofollow">problems</a>. Seeing as all the algorithms I write are intended to halt, I would like to be able to represent them in a language that guarantees they will halt.</p> <p><a href="http://en.wikipedia.org/wiki/Regular_Expression" rel="nofollow">Regular expressions</a> used for matching strings and <a href="http://en.wikipedia.org/wiki/Finite_state_machine" rel="nofollow">finite state machines</a> are used when <a href="http://en.wikipedia.org/wiki/Lexing" rel="nofollow">lexing</a>, but I'm wondering if there's a more general, broadly language that's not Turing complete?</p> <p><strong>edit:</strong> I should clarify, by 'general purpose' I don't necessarily want to be able to write all halting algorithms in the language (I don't think that such a language would exist) but I suspect that there are common threads in halting proofs that can be generalized to produce a language in which all algorithms are guaranteed to halt.</p> <p>There's also another way to tackle this problem - eliminate the need for theoretically infinite memory. Once you limit the amount of memory the machine is allowed, the number of states the machine is in is finite and countable, and therefore you can determine if the algorithm will halt (by not allowing the machine to move into a state it's been in before).</p> http://stackoverflow.com/questions/505559/closures-in-python 5 Closures in Python Kyle Cronin 2009-02-03T00:13:06Z 2009-09-04T15:39:47Z <p>Hi, I've been trying to learn Python, and while I'm enthusiastic about using closures in Python, I've been having trouble getting some code to work properly:</p> <pre><code>def memoize(fn): def get(key): return (False,) def vset(key, value): global get oldget = get def newget(ky): if key==ky: return (True, value) return oldget(ky) get = newget def mfun(*args): cache = get(args) if (cache[0]): return cache[1] val = apply(fn, args) vset(args, val) return val return mfun def fib(x): if x&lt;2: return x return fib(x-1)+fib(x-2) def fibm(x): if x&lt;2: return x return fibm(x-1)+fibm(x-2) fibm = memoize(fibm) </code></pre> <p>Basically, what this is supposed to do is use closures to maintain the memoized state of the function. I realize there are probably many faster, easier to read, and in general more 'Pythonic' ways to implement this; however, my goal is to understand exactly how closures work in Python, and how they differ from Lisp, so I'm not interested in alternative solutions, just why my code doesn't work and what I can do (if anything) to fix it.</p> <p>The problem I'm running into is when I try to use <code>fibm</code> - Python insists that <code>get</code> isn't defined:</p> <pre><code>Python 2.6.1 (r261:67515, Feb 1 2009, 11:39:55) [GCC 4.0.1 (Apple Inc. build 5488)] on darwin Type "help", "copyright", "credits" or "license" for more information. &gt;&gt;&gt; import memoize &gt;&gt;&gt; memoize.fibm(35) Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; File "memoize.py", line 14, in mfun cache = get(args) NameError: global name 'get' is not defined &gt;&gt;&gt; </code></pre> <p>Seeing as I'm new to Python, I don't know if I've done something wrong, or if this is just a limitation of the language. I'm hoping it's the former. :-)</p> http://stackoverflow.com/questions/61085/sqlite-php-read-only 2 SQLite/PHP read-only? Kyle Cronin 2008-09-14T03:04:29Z 2009-08-29T19:58:26Z <p>I've been trying to use SQLite with the PDO wrapper in PHP with mixed success. I can read from the database fine, but none of my updates are being committed to the database when I view the page in the browser. Curiously, running the script from my shell does update the database. I suspected file permissions as the culprit, but even with the database providing full access (chmod 777) the problem persists. Should I try changing the file owner? If so, what to?</p> <p>By the way, my machine is the standard Mac OS X Leopard install with PHP activated.</p> <p>@<a href="#61102" rel="nofollow">Tom Martin</a></p> <p>Thank you for your reply. I just ran your code and it looks like PHP runs as user _www. I then tried chowning the database to be owned by _www, but that didn't work either.</p> <p>I should also note that PDO's errorInfo function doesn't indicate an error took place. Could this be a setting with PDO somehow opening the database for read-only? I've heard that SQLite performs write locks on the entire file. Is it possible that the database is locked by something else preventing the write?</p> <p>I've decided to include the code in question. This is going to be more or less a port of <a href="http://beta.stackoverflow.com/questions/6936/using-what-ive-learned-from-stackoverflow-html-scraper" rel="nofollow">Grant's script</a> to PHP. So far it's just the Questions section:</p> <pre><code>&lt;?php $db = new PDO('sqlite:test.db'); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://beta.stackoverflow.com/users/658/kyle"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_COOKIE, "shhsecret=1293706652"); $page = curl_exec($ch); preg_match('/summarycount"&gt;.*?([,\d]+)&lt;\/div&gt;.*?Reputation/s', $page, $rep); $rep = preg_replace("/,/", "", $rep[1]); preg_match('/iv class="summarycount".{10,60} (\d+)&lt;\/d.{10,140}Badges/s', $page, $badge); $badge = $badge[1]; $qreg = '/question-summary narrow.*?vote-count-post"&gt;&lt;strong.*?&gt;(-?\d*).*?\/questions\/(\d*).*?&gt;(.*?)&lt;\/a&gt;/s'; preg_match_all($qreg, $page, $questions, PREG_SET_ORDER); $areg = '/(answer-summary"&gt;&lt;a href="\/questions\/(\d*).*?votes.*?&gt;(-?\d+).*?href.*?&gt;(.*?)&lt;.a)/s'; preg_match_all($areg, $page, $answers, PREG_SET_ORDER); echo "&lt;h3&gt;Questions:&lt;/h3&gt;\n"; echo "&lt;table cellpadding=\"3\"&gt;\n"; foreach ($questions as $q) { $query = 'SELECT count(id), votes FROM Questions WHERE id = '.$q[2].' AND type=0;'; $dbitem = $db-&gt;query($query)-&gt;fetch(PDO::FETCH_ASSOC); if ($dbitem['count(id)'] &gt; 0) { $lastQ = $q[1] - $dbitem['votes']; if ($lastQ == 0) { $lastQ = ""; } $query = "UPDATE Questions SET votes = '$q[1]' WHERE id = '$q[2]'"; $db-&gt;exec($query); } else { $query = "INSERT INTO Questions VALUES('$q[3]', '$q[1]', 0, '$q[2]')"; echo "$query\n"; $db-&gt;exec($query); $lastQ = "(NEW)"; } echo "&lt;tr&gt;&lt;td&gt;$lastQ&lt;/td&gt;&lt;td align=\"right\"&gt;$q[1]&lt;/td&gt;&lt;td&gt;$q[3]&lt;/td&gt;&lt;/tr&gt;\n"; } echo "&lt;/table&gt;"; ?&gt; </code></pre> http://stackoverflow.com/questions/339048/do-you-use-the-home-row 4 Do you use the home row? Kyle Cronin 2008-12-03T22:58:25Z 2009-08-26T21:31:29Z <p>When I was taught keyboarding in school, much emphasis was made on keeping your fingers centered on the 'home row', with your left hand on ASDF and your right hand on JKL; However, this placement was never comfortable for me so I continued to use the tried-and-true hunt-and-peck. Years later I'm able to type much faster and without looking down at all, and while I'm not a speed demon, I type fast enough (about 65WPM) for my needs.</p> <p>One interesting side effect is that I find the so-called 'ergonomic' keyboard absolutely intolerable, as the keys aren't where I'm used to them being, and some of the keys I'm 'supposed' to hit with one hand I sometimes hit with the other, making the ergonomic split rather frustrating.</p> <p>Are there are any other developers out there that don't use the traditional hand posture for touch-typing? Am I the only one?</p> <p><strong>Followup question</strong>: The only online typing speed tests I've found require you to type paragraphs of text. A better test for programmers would be to have the user type out source code for a simple program. I suspect that home-row typists are at more of a disadvantage than I am when it comes to hitting some of the symbols around the edge of the keyboard because they try to stretch their hand instead of move it.</p> <p>So my question is: how well does the typing speed of a paragraph of text compare with the typing speed of a block of code, and does using the home row introduce a disadvantage when attempting to type symbols instead of letters? (all this assumes use of QWERTY, of course)</p> http://stackoverflow.com/questions/1151742/function-to-return-3k-in-n1-calls/1151753#1151753 5 Answer by Kyle Cronin for Function to return 3^k in n+1 calls Kyle Cronin 2009-07-20T04:51:50Z 2009-07-20T15:05:18Z <p>Here is the algorithm in <strong>untested</strong> C/C++:</p> <pre><code>int 3pow(x) { switch(x) { case 1: return 3; case 2: return 9; case 3: return 27; } int remain = x % 3, recur = 3pow((x-remain)/3), combine = recur * recur * recur; switch (remain) { case 0: return combine; case 1: return combine * 3; default: return combine * 9; } } </code></pre> <p>(<strong>I have not compiled, run, or otherwise tested this code. There may be syntax errors and other bugs. But it's sufficient to get the point across.</strong>)</p> <p>What's different about this algorithm is that it recurses by dividing by 3 instead of 2. This function is rather ugly by necessity, as abstracting away some of the pattern would likely involve more recursion. Still, this algorithm is now O(log<sub>3</sub>n). Here's a table of a given x from 1-50 and the number of recursive calls required (as a two-element lisp list):</p> <pre><code>(1 1) (2 1) (3 1) (4 2) (5 2) (6 2) (7 2) (8 2) (9 2) (10 2) (11 2) (12 3) (13 3) (14 3) (15 3) (16 3) (17 3) (18 3) (19 3) (20 3) (21 3) (22 3) (23 3) (24 3) (25 3) (26 3) (27 3) (28 3) (29 3) (30 3) (31 3) (32 3) (33 3) (34 3) (35 3) (36 4) (37 4) (38 4) (39 4) (40 4) (41 4) (42 4) (43 4) (44 4) (45 4) (46 4) (47 4) (48 4) (49 4) (50 4) (51 4) (52 4) (53 4) (54 4) (55 4) (56 4) (57 4) (58 4) (59 4) (60 4) (61 4) (62 4) (63 4) (64 4) (65 4) (66 4) (67 4) (68 4) (69 4) (70 4) (71 4) (72 4) (73 4) (74 4) (75 4) (76 4) (77 4) (78 4) (79 4) (80 4) (81 4) (82 4) (83 4) (84 4) (85 4) (86 4) (87 4) (88 4) (89 4) (90 4) (91 4) (92 4) (93 4) (94 4) (95 4) (96 4) (97 4) (98 4) (99 4) (100 4) </code></pre> <p>You can see that even as we get up over 100 it only take 4 recursive calls.</p> http://stackoverflow.com/questions/1080328/append-in-scheme/1080356#1080356 3 Answer by Kyle Cronin for Append! in Scheme? Kyle Cronin 2009-07-03T18:07:05Z 2009-07-03T18:18:59Z <p>Mutation, though allowed, is strongly discouraged in Scheme. PLT even went so far as to remove <code>set-car!</code> and <code>set-cdr!</code> (though they "replaced" them with <code>set-mcar!</code> and <code>set-mcdr!</code>). However, a spec for <code>append!</code> appeared in <a href="http://srfi.schemers.org/srfi-1/srfi-1.html#append!" rel="nofollow">SRFI-1</a>. This <code>append!</code> is a little different than yours. In the SRFI, the implementation <em>may</em>, but is not <em>required</em> to modify the cons cells to append the lists.</p> <p>If you want to have an <code>append!</code> that is <em>guaranteed</em> to change the structure of the list that's being appended to, you'll probably have to write it yourself. It's not hard:</p> <pre><code>(define (my-append! a b) (if (null? (cdr a)) (set-cdr! a b) (my-append! (cdr a) b))) </code></pre> <p>To keep the definition simple, there is no error checking here, but it's clear that you will need to pass in a list of length at least 1 as <code>a</code>, and (preferably) a list (of any length) as <code>b</code>. The reason <code>a</code> must be at least length 1 is because you can't <code>set-cdr!</code> on an empty list.</p> <p>Since you're interested in how this works, I'll see if I can explain. Basically, what we want to do is go down the list <code>a</code> until we get to the last <code>cons</code> pair, which is <code>(&lt;last element&gt; . null)</code>. So we first see if <code>a</code> is already the last element in the list by checking for <code>null</code> in the <code>cdr</code>. If it is, we use <code>set-cdr!</code> to set it to the list we're appending, and we're done. If not, we have to call <code>my-append!</code> on the <code>cdr</code> of <code>a</code>. Each time we do this we get closer to the end of <code>a</code>. Since this is a mutation operation, we're not going to return anything, so we don't need to worry about forming our modified list as the return value.</p> http://stackoverflow.com/questions/1045910/how-can-i-import-load-a-sql-or-csv-file-into-sqlite/1045921#1045921 1 Answer by Kyle Cronin for How can I import load a .sql or .csv file into sqlite? Kyle Cronin 2009-06-25T19:59:11Z 2009-06-25T19:59:11Z <p>Try doing it from the command like:</p> <pre><code>cat dump.sql | sqlite3 database.db </code></pre> <p>This will obviously only work with SQL statements in dump.sql. I'm not sure how to import a CSV.</p> http://stackoverflow.com/questions/1035916/how-do-you-define-a-constant-in-plt-scheme/1035994#1035994 2 Answer by Kyle Cronin for How do you define a constant in PLT Scheme? Kyle Cronin 2009-06-24T00:58:56Z 2009-06-24T00:58:56Z <p>As far as I know, this isn't possible in Scheme. And, for all intents and purposes, it's not strictly necessary. Just define the value at the toplevel like a regular variable and then <em>don't change it</em>. To help you remember, you can adopt a convention for naming these kinds of constants - I've seen books where toplevel variables are defined with <code>*stars*</code> around their name.</p> <p>In other languages, there is a danger that some library will override the definition you've created. However, Scheme's lexical scoping coupled with PLT's module system ensure this will never happen.</p> http://stackoverflow.com/questions/1035320/what-is-the-time-complexity-of-assoc-function-in-scheme/1035341#1035341 6 Answer by Kyle Cronin for What is the time complexity of 'assoc' function in scheme? Kyle Cronin 2009-06-23T21:27:03Z 2009-06-23T21:41:38Z <p>I would assume that <code>assoc</code> is O(n)*, assuming that <code>equal?</code> is O(1) in your usage of the function. This is because it's trivial to write your own version of <code>assoc</code>:</p> <pre><code>(define (my-assoc v lst) (cond ((null? lst) #f) ((equal? v (caar lst)) (car lst)) (else (my-assoc v (cdr lst))))) </code></pre> <p>You can see this simply slides down the list <code>lst</code> until a match is found. If none is found, <code>#f</code> is returned.</p> <p>* technically <code>equal?</code> is O(n) where n is the size of the smaller input, so if you're comparing huge list structures using <code>assoc</code>, your runtime will be O(n*m) where <code>n</code> is the size of the list provided to <code>assoc</code> and <code>m</code> is the size of <code>v</code>.</p> http://stackoverflow.com/questions/1025436/popularity-algorithm/1025448#1025448 5 Answer by Kyle Cronin for Popularity Algorithm Kyle Cronin 2009-06-22T04:27:42Z 2009-06-22T04:41:11Z <p>Typically Digg and Reddit-like sites go by the date of the submission and not the times of the votes. This way all it takes is a simple SQL query to find the top submissions for X time period. Here's a pseudo-query to find the 10 most popular links from the past 24 hours using this method:</p> <pre><code>select * from submissions where (current_time - post_time) &lt; 86400 order by score desc limit 10 </code></pre> <p>Basically, this query says to find all the submissions where the number of seconds between now and the time it was posted is less than 86400, which is 24 hours in UNIX time.</p> <p>If you really want to measure popularity within X time interval, you'll need to store the post and time for every vote in another table:</p> <pre><code>create table votes ( post foreign key references submissions(id), time datetime, vote integer); -- +1 for upvote, -1 for downvote </code></pre> <p>Then you can generate a list of the most popular posts between X and Y times like so:</p> <pre><code>select sum(vote), post from votes where X &lt; time and time &lt; Y group by post order by sum(vote) desc limit 10; </code></pre> <p>From here you're just a hop, skip, and inner join away from getting the post data tied to the returned ids.</p> http://stackoverflow.com/questions/1025390/how-do-i-get-mit-scheme-to-return-a-floating-point-number/1025395#1025395 9 Answer by Kyle Cronin for How do I get mit-scheme to return a floating point number? Kyle Cronin 2009-06-22T03:44:11Z 2009-06-22T03:44:11Z <p>An easy way would be to make sure that one of the numbers in the calculation is already a floating-point number:</p> <pre><code>&gt; (/ 4.0 3) 1.3333333333333333 </code></pre> <p>Another way would be to use <code>exact-&gt;inexact</code>:</p> <pre><code>&gt; (exact-&gt;inexact (/ 4 3)) 1.3333333333333333 </code></pre> http://stackoverflow.com/questions/1024051/how-could-one-keep-a-dob-field-private-when-displaying-the-users-age-in-years/1024090#1024090 1 Answer by Kyle Cronin for How could one keep a DOB field private when displaying the user's age in years? Kyle Cronin 2009-06-21T14:54:08Z 2009-06-21T15:08:18Z <p>I can't speak conclusively, but I know that the age in my SO profile rolled over, as expected, on my birthday. I suppose someone could scan the SO profiles daily and record the ages, then identify someone's birthday by when they change, but if someone wants to know <em>that badly</em>, I guess they can know. If you're really concerned about your privacy, don't put in your real birthday (or don't put one in at all).</p> <p>Also, either intentionally or unintentionally, the user ages provided in the data dump aren't always accurate. I suspect that it's (current year)-(birth year), which leads to an age in the dump (22, in my case) that's 1 more than the user's actual age (I'm actually 21).</p> http://stackoverflow.com/questions/1011009/update-randomly-selected-row-in-sqlite/1011021#1011021 1 Answer by Kyle Cronin for Update randomly selected row in SQLite Kyle Cronin 2009-06-18T06:03:46Z 2009-06-18T06:10:33Z <p>Hmm, I just made a sample table and your query seems to work as written:</p> <pre><code>sqlite&gt; create table statuses (word_id, status default -1); sqlite&gt; insert into statuses (word_id) values (1); sqlite&gt; insert into statuses (word_id) values (2); sqlite&gt; insert into statuses (word_id) values (3); sqlite&gt; insert into statuses (word_id) values (4); sqlite&gt; insert into statuses (word_id) values (5); sqlite&gt; select * from statuses; 1|-1 2|-1 3|-1 4|-1 5|-1 sqlite&gt; UPDATE statuses SET status = 0 ...&gt; WHERE word_id = ( ...&gt; SELECT word_id FROM statuses WHERE status = -1 ORDER BY RANDOM() LIMIT 1 ...&gt; ); sqlite&gt; select * from statuses; 1|-1 2|-1 3|0 4|-1 5|-1 </code></pre> <p>So, in other words, your query is right - your error is probably elsewhere in your code.</p> http://stackoverflow.com/questions/143760/what-books-should-i-read-to-have-an-undergraduate-education-in-computer-science 22 What books should I read to have an undergraduate education in Computer Science? Kyle Cronin 2008-09-27T15:02:14Z 2009-06-17T05:24:59Z <p>I've always been a largely independent learner gleaning what I can from Wikipedia and various books. However, I fear that I may have biased my self-education by inadvertent omission of topics and concepts. My goal is to teach myself the equivalent of an undergraduate degree in Computer Science from a top university (doesn't matter which one). </p> <p>To that end, I've purchased and started reading a few academic textbooks:</p> <ul> <li><a href="http://rads.stackoverflow.com/amzn/click/0262011530" rel="nofollow">Structure and Interpretation of Computer Programs</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/0262032937" rel="nofollow">Introduction to Algorithms</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/0137903952" rel="nofollow">Artificial Intelligence: A Modern Approach</a></li> </ul> <p>As well as a few textbooks I have left over from classes I've taken at a mediocre-at-best state university:</p> <ul> <li><a href="http://rads.stackoverflow.com/amzn/click/0805377581" rel="nofollow">An Introduction to Computer Simulation Methods</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/007330929X" rel="nofollow">Calculus: Concepts and Connections</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/0131856448" rel="nofollow">Computer Organization and Architecture</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/0471694665" rel="nofollow">Operating System Concepts</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/013600637X" rel="nofollow">A First Course in Database Systems</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/0763737984" rel="nofollow">Formal Languages and Automata</a></li> </ul> <p>My questions are:</p> <ul> <li>What topics aren't covered by this collection?</li> <li>Are there any books that are more rigorous or thorough (or even easier to read) than a book listed here?</li> <li>Are there any books that are a waste of my time?</li> <li>In what order should I read the books?</li> <li>What does an MIT or Stanford (or UCB or CMU ...) undergrad learn that I might miss?</li> </ul> <p><em>Software engineering books are welcome, but in the context of academic study only please. I'm aware of Code Complete and the Pragmatic Programmer, but I'm looking for a more theoretical approach. Thanks!</em> </p> http://stackoverflow.com/questions/192793/what-is-your-favorite-programmer-t-shirt/993824#993824 4 Answer by Kyle Cronin for What is your favorite "programmer" t-shirt? Kyle Cronin 2009-06-14T21:41:54Z 2009-06-14T21:41:54Z <p><a href="http://www.zazzle.com/stackoverflow%5Fhacker%5Fbadge%5Ftshirt-235107061298688216" rel="nofollow"><img src="http://modos.org/hackerbadgeshirt.jpg" alt="alt text" /></a></p> http://stackoverflow.com/questions/746319/what-ever-happened-to-textmate-2/762873#762873 7 Answer by Kyle Cronin for What ever happened to Textmate 2? Kyle Cronin 2009-04-18T04:19:09Z 2009-06-14T16:29:17Z <p>From the <a href="http://wiki.macromates.com/FAQ/TextMate2" rel="nofollow">wiki</a>:</p> <blockquote> <p><strong>Q: Is TextMate 2 still in development, or has it been abandoned?</strong></p> <p>TM2 is being actively developed. If this text is still here, that is still the case. (Last updated April 7, 2009. Allan stresses that no release is "around the corner" yet.)</p> </blockquote> <p>The author, Allan Odgaard, has updated the TextMate blog with <a href="http://blog.macromates.com/2009/working-on-it/" rel="nofollow">this post</a>:</p> <blockquote> <h2>Working on It</h2> <p>Over the past two years, posts on this blog have slowed to just a trickle, and a number of TextMate users have asked about TextMate’s status, or publicly worried about its future. This blog post, the first I’ve written here in a long time, is an attempt to assuage those concerns and answer some of the most frequent questions.</p> <p>In short, TextMate development is going strong: TextMate 2 isn’t done yet, but progress is steady, it is starting to take shape, and the end is in sight. The rewrite has been a slow and careful process, but the ideas behind it are exciting. I hope to publicly describe some new abstractions in the coming weeks and months. Moreover, the community continues to churn out new bundles and features for TextMate 1.5, and I’ve been building up a backlog of posts describing them. While I am not writing to announce a release date for TextMate 2, I do hope that this post will be the first in a series showing a bit more transparency.</p> <p>The requests for TextMate 1 have mostly been incremental additions such as split views, chunked undo, and editing over SFTP. But TextMate 2 is about more than new surface features. Every part has been completely rewritten to take advantage of the lessons learned from the years of version 1. Not only are the low-level data structures chosen for increased flexibility, but the abstractions on which TextMate is built—snippets, scope-based language grammars, context-dependent settings—have been rethought and are more powerful than ever. In the coming months, I’ll try to describe some of these new abstractions, but for now, know that I am excited about the new ideas involved.</p> <p>So where does development stand for 2.0? It feels to me like most of the modules are getting close, say 90%. But as they say, on the horizon, mountains look small. While I use 2.0 for my own work, day-to-day, and the basic infrastructure is pretty solid, much of the front-end still needs work, and for now it’s all lacking the spit and polish of a finished app. Hopefully an alpha version will be ready before too long, but I can’t make any promises about dates.</p> <p>And why haven’t I been better about keeping the world informed? It is a combination of many things really, but the main issue is that I am not good at writing for a large audience. I am more into informal conversations, for instance over mailing lists or on IRC. So while I started a lot of posts, I end up unhappy with them halfway through, and they don’t get finished or published. I am taking measures: I have enlisted a technical writer to help bring this blog back to life, and I’ll try to communicate more of TextMate’s status and direction through him.</p> <p>Bigger than either of those problems though, as I mentioned, is that TextMate 2 is no minor facelift. It’s a major undertaking with a long timeline and its final form isn’t fully settled. I don’t want to hype vaporware, and I don’t want to get anyone’s hopes up before I know I can meet their expectations.</p> <p>Furthermore, I haven’t wanted to throw ideas onto the internet without having a chance to implement them myself. I’m humbled that TextMate has served as inspiration for many other products, and I hope that it continues to be a model for other developers in the future, but I want to see my ideas done my way first, before I feed them to the competition.</p> <p>I am trying to slowly turn this boat. With this post, I hopefully am showing that a hand is at the wheel. I know I’ve been quiet too long about my plans. I can’t make up for that, but going forward, I aim to do better.</p> </blockquote> http://stackoverflow.com/questions/989618/how-do-i-make-a-lazy-list-in-an-eager-language/991696#991696 3 Answer by Kyle Cronin for How do I make a Lazy List in an Eager Language? Kyle Cronin 2009-06-13T22:45:00Z 2009-06-13T23:50:55Z <p>If you don't want to go the macro route, you could always just abandon <code>cons-stream</code> and rewrite <code>lazy-list</code> as follows:</p> <pre><code>(define (lazy-list from) (cons from (λ() (lazy-list (+ from 1))))) </code></pre> <p>This is probably the easiest, most pragmatic solution, but it's only good for making lazy lists of incrementing numbers. You could generalize this by passing in a function that will generate successive elements of the list when called:</p> <pre><code>(define (lazy-list-gen generator) (cons (generator) (λ() (lazy-list-gen generator)))) (define (lazy-list from) (lazy-list-gen (λ() (let ((ret from)) (set! from (+ from 1)) ret)))) </code></pre> <p>This works pretty well:</p> <pre><code>&gt; (define x (lazy-list 1)) &gt; (car-stream x) 1 &gt; (car-stream (cdr-stream x)) 2 </code></pre> <p>But there's a bug in the code:</p> <pre><code>... continuing from above ... &gt; (car-stream (cdr-stream x)) 3 </code></pre> <p>This error happens because the call to <code>cdr-stream</code> calls <code>generator</code> again. We can solve this by caching the return value of the lambda:</p> <pre><code>(define (lazy-list-gen generator) (cons (generator) (let ((gen-cache #f)) (λ() (cond ((not gen-cache) (set! gen-cache (lazy-list-gen generator)))) gen-cache)))) </code></pre> <p>Now it works as it should:</p> <pre><code>&gt; (define x (lazy-list 1)) &gt; (car-stream x) 1 &gt; (car-stream (cdr-stream x)) 2 &gt; (car-stream (cdr-stream x)) 2 &gt; (car-stream (cdr-stream (cdr-stream x))) 3 &gt; (car-stream (cdr-stream x)) 2 </code></pre> http://stackoverflow.com/questions/980396/is-there-a-ajax-or-json-interface-to-retrieve-the-stackoverflow-com-userid-for-a/991286#991286 1 Answer by Kyle Cronin for Is there a AJAX or JSON interface to retrieve the stackoverflow.com userId for a given username? Kyle Cronin 2009-06-13T19:03:31Z 2009-06-13T19:03:31Z <p>This won't be possible. At best, you'll get a list of userIDs that have the given username, because usernames are not unique, as I've demonstrated by changing mine (temporarily) to Huxi. </p> <p>You could ask for a username + email address, do a search for the username using the users filter:</p> <pre><code>http://stackoverflow.com/users/filter/huxi </code></pre> <p>Then MD5 the email address and match to the Gravatars, and you have your userID.</p> <p>This will work maybe 90% of the time. It will NOT work, however, when the username is common (the "API" will return at most 35 possibilities), or when the user has not provided an email address to StackOverflow. With these limitations in mind, it's probably easier just to ask the user to locate their ID themselves.</p> http://stackoverflow.com/questions/990851/stackoverflow-data-in-mysql/990902#990902 2 Answer by Kyle Cronin for Stackoverflow data in MySQL Kyle Cronin 2009-06-13T15:48:17Z 2009-06-13T15:48:17Z <p>It's not MySQL, but I have imported the data from the dump into a SQLite database:</p> <p><a href="http://sof.modos.org/forum/viewtopic.php?f=7&amp;t=4" rel="nofollow">http://sof.modos.org/forum/viewtopic.php?f=7&amp;t=4</a></p> <p>If you're interested in analyzing the data, you can use the same sort of queries that you'd use in MySQL in SQLite. I'm also working on making the script I used to import the data work with other databases, so keep an eye on the (unofficial) forum for updates.</p> http://stackoverflow.com/questions/977332/is-emacs-worth-the-trouble/977393#977393 0 Answer by Kyle Cronin for Is Emacs Worth The Trouble? Kyle Cronin 2009-06-10T18:30:50Z 2009-06-10T18:30:50Z <p>I have that book and it's a pretty good start with Emacs. Also, if you're going to be using it mainly for programming, there are whole chapters you can skip, so it's definitely not as long as you think.</p> http://stackoverflow.com/questions/961222/whats-the-easiest-way-to-retrieve-the-contents-of-a-webpage-via-php/961226#961226 4 Answer by Kyle Cronin for What's the easiest way to retrieve the contents of a webpage via PHP? Kyle Cronin 2009-06-07T04:53:04Z 2009-06-07T10:07:12Z <p>The easiest way is <a href="http://us2.php.net/file%5Fget%5Fcontents" rel="nofollow">file_get_contents</a>, which does exactly what you want:</p> <pre><code>$url = "http://example.com"; $pageContent = file_get_contents($url); </code></pre> http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454 Comment by Kyle Cronin on RegEx match open tags except XHTML self-contained tags Kyle Cronin 2009-11-17T02:08:02Z 2009-11-17T02:08:02Z Congratulations, this is now the highest-voted post on the site :-) http://stackoverflow.com/questions/177118/algorithm-to-determine-if-array-contains-n-nm Comment by Kyle Cronin on Algorithm to determine if array contains n...n+m? Kyle Cronin 2009-11-07T01:30:56Z 2009-11-07T01:30:56Z @AndreyT: no, it's not, it's just used as a way to describe the sequence http://stackoverflow.com/questions/1652748/whats-the-deal-with-mailing-lists Comment by Kyle Cronin on What's the deal with mailing lists? Kyle Cronin 2009-10-30T23:38:43Z 2009-10-30T23:38:43Z @Buggabill: Meta is for STACK OVERFLOW discussion. This is not a Meta question. http://stackoverflow.com/questions/162896/emacs-on-mac-os-x-leopard-key-bindings/162907#162907 Comment by Kyle Cronin on Emacs on Mac OS X Leopard key bindings Kyle Cronin 2009-10-06T16:33:54Z 2009-10-06T16:33:54Z @wic: Don't those characters have their own keys? http://stackoverflow.com/questions/1439132/why-do-programers-help-each-other-without-pay/1439166#1439166 Comment by Kyle Cronin on Why do programers help each other without pay? Kyle Cronin 2009-09-17T14:53:59Z 2009-09-17T14:53:59Z @Angel: This doesn't belong on Meta. Don't know why people moved it there. http://stackoverflow.com/questions/1255650/is-the-art-of-computer-programming-worth-it/1255666#1255666 Comment by Kyle Cronin on Is The Art of Computer Programming worth it? Kyle Cronin 2009-08-10T15:58:18Z 2009-08-10T15:58:18Z @Martin: True. I guess there's a minimum threshold for using the site that's expected to even get help. http://stackoverflow.com/questions/1255650/is-the-art-of-computer-programming-worth-it/1255666#1255666 Comment by Kyle Cronin on Is The Art of Computer Programming worth it? Kyle Cronin 2009-08-10T15:49:23Z 2009-08-10T15:49:23Z This is not the place to ask for help. Try <a href="http://meta.stackoverflow.com/" rel="nofollow">meta.stackoverflow.com</a> http://stackoverflow.com/questions/746319/what-ever-happened-to-textmate-2/1242818#1242818 Comment by Kyle Cronin on What ever happened to Textmate 2? Kyle Cronin 2009-08-07T03:59:23Z 2009-08-07T03:59:23Z I copied the post into my answer: <a href="http://stackoverflow.com/questions/746319/what-ever-happened-to-textmate-2/762873#762873" rel="nofollow" title="what ever happened to textmate 2">stackoverflow.com/questions/746319/&hellip;</a> http://stackoverflow.com/questions/1213806/pasting-code-from-stackoverflow-to-visual-studio Comment by Kyle Cronin on Pasting code from StackOverflow to Visual Studio Kyle Cronin 2009-07-31T17:24:27Z 2009-07-31T17:24:27Z When this does get moved, it should be noted that it is a duplicate: <a href="http://meta.stackoverflow.com/questions/11428/pasting-code-from-stackoverflow-to-notepad-loses-line-breaks-using-ie" rel="nofollow" title="pasting code from stackoverflow to notepad loses line breaks using ie">meta.stackoverflow.com/questions/11428/&hellip;</a> http://stackoverflow.com/questions/54998/how-scalable-is-sqlite/62220#62220 Comment by Kyle Cronin on How Scalable is SQLite? Kyle Cronin 2009-07-23T17:03:05Z 2009-07-23T17:03:05Z @porneL: True, but SQLite without indexes was an order of magnitude slower than MySQL without indexes, and I also included a bit about transactions in my second edit. I still think that the progression of the answer makes some sense - it shows my initial naive use of SQLite and how relatively bad the performance was. I expect that those new to the platform will encounter similar problems, and I would hope that they can identify with the first paragraph, then read the following edits and realize that there are ways of speeding up SQLite to have acceptable performance. http://stackoverflow.com/questions/1151742/function-to-return-3k-in-n1-calls/1151753#1151753 Comment by Kyle Cronin on Function to return 3^k in n+1 calls Kyle Cronin 2009-07-20T04:58:13Z 2009-07-20T04:58:13Z indeed - it's a typo http://stackoverflow.com/questions/194304/whats-the-best-way-to-write-0-100-in-c/194307#194307 Comment by Kyle Cronin on What's the best way to write [0..100] in C#? Kyle Cronin 2009-07-13T17:14:12Z 2009-07-13T17:14:12Z @Sam: Works for me, what's bad about it? http://stackoverflow.com/questions/1114582/stackoverflow-badges-earning-scholar-and-self-learner Comment by Kyle Cronin on StackOverflow Badges: Earning "Scholar" and "Self-Learner" Kyle Cronin 2009-07-11T20:44:04Z 2009-07-11T20:44:04Z I suggest people flag this as spam http://stackoverflow.com/questions/61553/track-your-reputation Comment by Kyle Cronin on Track your reputation Kyle Cronin 2009-07-10T17:08:14Z 2009-07-10T17:08:14Z @Alex B: I'll happily move it as soon as I'm sure that it won't cost me tons of badges and rep ;-) http://stackoverflow.com/questions/315340/practical-non-turing-complete-languages Comment by Kyle Cronin on Practical non-Turing-complete languages? Kyle Cronin 2009-07-05T04:16:55Z 2009-07-05T04:16:55Z OK, I'll admit that &quot;general purpose&quot; is sort of unclear and subjective. However, as developers, we try to have all our programs halt (otherwise they would be of limited use). Given this, would it be possible to write said programs in a language that guaranteed such a property?