User Nick Retallack - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T16:50:12Z http://stackoverflow.com/feeds/user/2653 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/160863/whats-a-good-minimal-server-side-javascript-framework 5 What's a good Minimal Server-Side Javascript Framework? Nick Retallack 2008-10-02T04:15:37Z 2009-11-19T22:00:52Z <p>So I was writing a web app with web.py that uses plenty of client-side javascript, and my database is on couchdb so the queries are in javascript too, and eventually I just got to thinking, why not skip the python and go all javascript? Besides, some functions need to run once on the client and again on the server to make sure you're not spoofing, so why translate between javascript and python?</p> <p>So I'm looking for a simple lightweight javascript web framework. All I really need is the url routing, request and response stuff (standard wsgi?), and a way to hook into a big http server like nginx. What do you guys recommend?</p> http://stackoverflow.com/questions/1758269/how-do-you-make-a-django-form-for-a-model-and-all-of-its-children-following-a-par 0 How do you make a Django Form for a model and all of its children following a particular foreign key? Nick Retallack 2009-11-18T19:01:07Z 2009-11-18T22:57:38Z <p>For example, lets say you want to create a ModelForm for Supervisor that also allows you to create or update 3 or more Underlings in the same form.</p> <pre><code>from django.db import models class Supervisor(models.Model): name = models.CharField(max_length=100) class Underling(models.Model): supervisor = models.ForeignKey(Superisor, related_name="underlings") name = models.CharField(max_length=100) </code></pre> <p>This should be pretty standard, right? Just make a FormSet for the underlings, and... then what? The Django Admin interface does it, so how do I do it?</p> http://stackoverflow.com/questions/186290/best-static-website-generator 14 Best Static Website Generator Nick Retallack 2008-10-09T07:43:44Z 2009-11-08T20:01:21Z <p>In the age of dynamic websites built with layouts and templates, nobody wants to write plain old repetitive static html anymore. But now that you can outsource dynamic features to services like <a href="http://disqus.com/" rel="nofollow">Disqus</a>, and you could get slashdotted/dugg/reddited at any moment, sometimes a static website is best for scalability.</p> <p>There are quite a few static website generators out there that let you use templates, layouts, alternative markup languages, and other new age stuff. So this question is a bit of a survey. Which do you think is the best, and why?</p> <p>Here are a few examples to start us off:</p> <ol> <li><a href="http://webgen.rubyforge.org/" rel="nofollow">WebGen</a></li> <li><a href="http://staticmatic.rubyforge.org/" rel="nofollow">StaticMatic</a></li> <li><a href="http://static.newqdev.com/" rel="nofollow">Static</a></li> </ol> http://stackoverflow.com/questions/165783/opinion-in-html-possible-duplicate-ids-or-non-standard-attributes 4 Opinion: in HTML, Possible Duplicate IDs or Non-Standard Attributes? Nick Retallack 2008-10-03T05:28:11Z 2009-11-06T04:09:29Z <p>It seems pretty common to want to let your javascript know a particular dom node corresponds to a record in the database. So, how do you do it?</p> <p>One way I've seen that's pretty common is to use a class for the type and an id for the id:</p> <pre><code>&lt;div class="thing" id="5"&gt; &lt;script&gt; myThing = select(".thing#5") &lt;/script&gt; </code></pre> <p>There's a slight html standards issue with this though -- if you have more than one type of record on the page, you may end up duplicating IDs. But that doesn't do anything bad, does it?</p> <p>An alternative is to use data attributes:</p> <pre><code>&lt;div data-thing-id="5"&gt; &lt;script&gt; myThing = select("[data-thing-id=5]") &lt;/script&gt; </code></pre> <p>This gets around the duplicate IDs problem, but it does mean you have to deal with attributes instead of IDs, which is sometimes more difficult. What do you guys think?</p> http://stackoverflow.com/questions/49092/online-interactive-consoles 5 Online Interactive Consoles Nick Retallack 2008-09-08T03:00:53Z 2009-11-06T04:04:11Z <p>Where can I find an online interactive console for my favorite language/api?</p> <ul> <li><a href="http://tryruby.hobix.com/" rel="nofollow">Ruby</a></li> <li>Python?</li> <li>PHP?</li> <li>Perl?</li> <li>Scheme?</li> <li>Java?</li> <li>C?</li> </ul> http://stackoverflow.com/questions/49092/online-interactive-consoles/1685332#1685332 0 Answer by Nick Retallack for Online Interactive Consoles Nick Retallack 2009-11-06T04:03:49Z 2009-11-06T04:03:49Z <p><a href="http://www.skulpt.org/" rel="nofollow">Skulpt</a> is a Python implementation in JavaScript. Pretty cool.</p> http://stackoverflow.com/questions/1584370/how-to-merge-two-arrays-in-javascript/1584398#1584398 1 Answer by Nick Retallack for How to merge two arrays in Javascript Nick Retallack 2009-10-18T08:51:09Z 2009-10-18T19:11:34Z <p>Why don't you use an object? It looks like you're trying to model a set. This wont preserve the order, however.</p> <pre><code>var set1 = {"Vijendra":true, "Singh":true} var set2 = {"Singh":true, "Shakya":true} // Merge second object into first function merge(set1, set2){ for (var key in set2){ if (set2.hasOwnProperty(key)) set1[key] = set2[key] } return set1 } merge(set1, set2) // Create set from array function setify(array){ var result = {} for (var item in array){ if (array.hasOwnProperty(item)) result[array[item]] = true } return result } </code></pre> http://stackoverflow.com/questions/885589/what-video-conferencing-software-is-suitable-for-communicating-with-clients 0 What video conferencing software is suitable for communicating with clients? Nick Retallack 2009-05-19T23:45:58Z 2009-09-07T21:01:20Z <p>You're working freelance with several small remote clients and you want to have a meeting via webcam. What do you use?</p> <p>Please consider price, video quality, and minimum hassle for the clients. I'd prefer my clients don't have to pay anything or install anything for it to work. I'm already serving VNC in a Java applet, so something like that would be nice. </p> <p>Skype is awesome, and oovoo looks great, but I'd like to have more than one client on the line at once without them having to pay a subscription too.</p> <p>Something like Ustream.com or Justin.tv would be nice, but it would be better if all parties could talk.</p> <p>Related Questions: <a href="http://stackoverflow.com/questions/653633/can-someone-suggest-free-video-conferencing-tools">Can someone suggest free video conferencing tools</a></p> http://stackoverflow.com/questions/1344907/how-would-you-implement-undo-in-a-raster-drawing-program 2 How would you implement Undo in a raster drawing program? Nick Retallack 2009-08-28T03:37:42Z 2009-08-28T13:35:49Z <p>You're making a drawing program like Paint. You want to be able to undo/redo brush strokes. How would you implement this?</p> <p>Optimize for speed and memory.</p> http://stackoverflow.com/questions/1344984/drawing-a-smooth-line-from-tablet-input 0 Drawing a Smooth Line from Tablet Input Nick Retallack 2009-08-28T04:14:33Z 2009-08-28T04:40:02Z <p>As the user drags their stylus across the tablet, you receive a series of coordinates. You want to approximate the pen's path with a smooth line, trailing only a few sample points behind it. How would you do this?</p> <p>In other words, how would you render a nice smooth responsive line as a user draws it with their tablet? Simply connecting the dots with straight lines is not good enough. Real drawing programs do a much better job of curving the line, no matter how close or far the sample points are. Some even let you give them a number to indicate the amount of smoothing to be done, accounting for jittery pens and hands. Where can I learn to do this stuff?</p> http://stackoverflow.com/questions/1344907/how-would-you-implement-undo-in-a-raster-drawing-program/1344918#1344918 0 Answer by Nick Retallack for How would you implement Undo in a raster drawing program? Nick Retallack 2009-08-28T03:41:08Z 2009-08-28T03:41:08Z <p>Create a backup copy of the canvas. Choose a rectangular patch that completely surrounds the brush stroke. Save the bitmap contained in that patch in both the new version and the backup. You can now blit these changes to undo or redo the stroke.</p> <p>May use a lot of memory.</p> http://stackoverflow.com/questions/1057353/why-the-class-margin-not-work/1057362#1057362 2 Answer by Nick Retallack for why the class margin not work? Nick Retallack 2009-06-29T09:20:15Z 2009-06-29T09:46:18Z <p>You can't give it a width because it is an inline element.</p> <blockquote> <p>This property specifies the content width of boxes generated by block-level and replaced elements. This property does not apply to non-replaced inline-level elements. -- <a href="http://www.w3.org/TR/CSS21/visudet.html#propdef-width" rel="nofollow" title="W3C">CSS 2.1 Width property</a></p> </blockquote> <p>You can fix this by making it a block or inline-block element instead:</p> <pre><code>display:inline-block </code></pre> <p>However, this may not be supported by some browsers. You can probably achieve the same result with this, however:</p> <pre><code>margin-left:40px </code></pre> http://stackoverflow.com/questions/1011460/what-makes-ruby-slow 7 What makes Ruby slow? Nick Retallack 2009-06-18T08:28:35Z 2009-06-22T17:55:16Z <p>Ruby is slow at certain things. But what parts of it are the most problematic?</p> <p>How much does the garbage collector affect performance? I know I've had times when running the garbage collector alone took several seconds, especially when working with OpenGL libraries.</p> <p>I've used matrix math libraries with Ruby that were particularly slow. Is there an issue with how ruby implements basic math?</p> <p>Are there any dynamic features in Ruby that simply cannot be implemented efficiently? If so, how do other languages like Lua and Python solve these problems?</p> <p>Has there been recent work that has significantly improved performance?</p> http://stackoverflow.com/questions/42515/dealing-with-latency-in-networked-games 13 Dealing with Latency in Networked Games Nick Retallack 2008-09-03T20:32:26Z 2009-06-15T16:41:59Z <p>I'm thinking about making a networked game. I'm a little new to this, and have already run into a lot of issues trying to put together a good plan for dead reckoning and network latency, so I'd love to see some good literature on the topic. I'll describe the methods I've considered.</p> <p>Originally, I just sent the player's input to the server, simulated there, and broadcast changes in the game state to all players. This made cheating difficult, but under high latency things were a little difficult to control, since you dont see the results of your own actions immediately.</p> <p><a href="http://www.gamasutra.com/features/19970919/aronson_01.htm" rel="nofollow">This GamaSutra article</a> has a solution that saves bandwidth and makes local input appear smooth by simulating on the client as well, but it seems to throw cheat-proofing out the window. Also, I'm not sure what to do when players start manipulating the environment, pushing rocks and the like. These previously neutral objects would temporarily become objects the client needs to send PDUs about, or perhaps multiple players do at once. Whose PDUs would win? When would the objects stop being doubly tracked by each player (to compare with the dead reckoned version)? Heaven forbid two players engage in a sumo match (e.g. start pushing each other).</p> <p><a href="http://www.gamedev.net/reference/articles/article1370.asp" rel="nofollow">This gamedev.net bit</a> shows the gamasutra solution as inadequate, but describes a different method that doesn't really fix my collaborative boulder-pushing example. Most other things I've found are specific to shooters. I'd love to see something more geared toward games that play like SNES Zelda, but with a little more physics / momentum involved.</p> <ul> <li>Note: I'm not asking about physics simulation here -- other libraries have that covered. Just strategies for making games smooth and reactive despite network latency.</li> </ul> http://stackoverflow.com/questions/51021/what-is-the-differance-between-raising-exceptions-vs-throwing-exceptions-in-ruby 6 What is the differance between Raising Exceptions vs Throwing Exceptions in Ruby? Nick Retallack 2008-09-09T00:41:03Z 2009-06-12T13:29:30Z <p>Ruby has two different exceptions mechanisms: Throw/Catch and Raise/Rescue.</p> <p>Why do we have two?</p> <p>When should you use one and not the other? </p> http://stackoverflow.com/questions/942644/joining-multiple-event-handlers-in-javascript/942650#942650 5 Answer by Nick Retallack for Joining multiple event handlers in Javascript. Nick Retallack 2009-06-03T01:04:43Z 2009-06-03T01:04:43Z <pre><code>function doSomething(){ console.log("Done!"); } var element = document.getElementById("my-element"); element.onClick = element.onKeyUp = element.onLoad = doSomething; </code></pre> http://stackoverflow.com/questions/939100/how-is-mapreduce-a-good-method-to-analyse-http-server-logs/939183#939183 0 Answer by Nick Retallack for How is MapReduce a good method to analyse http server logs ? Nick Retallack 2009-06-02T12:12:42Z 2009-06-02T12:12:42Z <ul> <li>Can the MapReduce concept really be applied to weblogs analysis ?</li> </ul> <p>Sure. What sort of data are you storing?</p> <ul> <li>Is MapReduce the most clever way of doing it ?</li> </ul> <p>It would allow you to query across many commodity machines at once, so yes it can be useful. Alternatively, you could try <a href="http://en.wikipedia.org/wiki/Shard%5F%28database%5Farchitecture%29" rel="nofollow">Sharding</a>.</p> <ul> <li>How would you split the web log files between the various computing instances ?</li> </ul> <p>Generally you would distribute your data using a <a href="http://en.wikipedia.org/wiki/Consistent%5Fhashing" rel="nofollow">consistent hashing algorithm</a>, so you can easily add more instances later. You should hash by whatever would be your primary key in an ordinary database. It could be a user id, an ip address, referer, page, advert; whatever is the topic of your logging.</p> http://stackoverflow.com/questions/938751/database-question-change-simple-relational-tables-to-non-relational/939026#939026 0 Answer by Nick Retallack for Database Question: Change Simple Relational Tables to Non-Relational? Nick Retallack 2009-06-02T11:34:30Z 2009-06-02T11:34:30Z <p>GQL does not support joins. You can work around this in two ways:</p> <ul> <li>Do the join yourself</li> </ul> <p>Just fetch the Item, check its ItemID, and query for ItemProperties with that ItemID. Your tables would look exactly like you specified them. Sure, this is two queries, but the two queries are simple.</p> <ul> <li>Use Expando Models</li> </ul> <p>In an Expando model, you can create new fields at runtime. They will not be indexed, so if you want to search on them it may be slower, but simply fetching them is just fine. You can use complex types like ListProperty, too. With this sort of flexibility, you may be able to think of a way to put everything in the ItemProperties table into the Items table, and save yourself a query. Be creative.</p> http://stackoverflow.com/questions/938037/how-do-you-handle-all-the-ways-you-could-dispatch-from-a-http-post 5 How do you handle all the ways you could dispatch from a HTTP POST? Nick Retallack 2009-06-02T05:38:10Z 2009-06-02T08:34:09Z <p>Imagine a user has just posted data to your web application and you want to re-display the current page with a message about their success or failure. This gets complicated.</p> <p>If the data is valid and the user is expecting html, you want to issue a redirect so that refreshing doesn't cause them to re-post. You want to redirect to the referer, if it exists, and display a message. If they are not expecting html, you can simply return 200 OK.</p> <p>If the data is invalid and the user is expecting html, you want to re-render the page they came from, with a visible error, so that they can re-post. To do this, you'd have to run the previous action, and make it aware of the error message. To decide which was the previous action, perhaps you included that as a hidden parameter in the form. If they are not expecting html, you can return an applicable 4xx client error. </p> <p>I find myself doing this silly dance far too many times. So the questions are:</p> <p>1) How would you abstract this whole process so that any form post can take advantage of it?</p> <p>2) What's the most maintainable or least repetitive way to achieve this in your favorite web framework?</p> <p>3) Is there anything you would change to this whole process that would make it simpler? </p> <p>Idea 1: Never render on a post, always redirect. Stuff the error data in the session for a split second between requests, and then clear it, just like the success message. That way, valid and invalid posts can be handled the same way.</p> <p>Idea 2: Don't do any normal HTTP posts. Only use ajax. Now you don't have to worry about rendering or redirecting at all. This would only be useful if you have an ajax-heavy application already.</p> http://stackoverflow.com/questions/933764/finding-most-active-topics-or-games 1 Finding most active topics or games Nick Retallack 2009-06-01T06:46:06Z 2009-06-01T15:56:31Z <p>What's a good metric for finding the most active forum thread or game in your database?</p> <p>Imagine you run a forum like 4chan. You want the most active threads to appear on the first page. You tried sorting topics by last_updated, but the result is chaotic: the threads you see on each refresh are effectively random, and jumping to the second page may show you many of the same results. There must be a more stable algorithm for determining active threads!</p> <p>Imagine you run a website where people can play and watch games. You want people to see how exciting these games can be the moment they visit your front page. Interacting in your game can be boiled down to generating individual events. But you can't just sort by last_updated because some people play very slowly, and you want to find games that are exciting.</p> <p>For bonus points, think about how you'd construct a SQL query for maximum activity, or how you could implement this in a server-side cache. Best answers do not require a cron job to preen the data.</p> http://stackoverflow.com/questions/312517/determining-zoom-level-from-single-latlong-in-google-maps-api/917997#917997 2 Answer by Nick Retallack for Determining zoom level from single LatLong in Google Maps API Nick Retallack 2009-05-27T21:03:18Z 2009-05-27T21:03:18Z <p>I just asked this question at Google IO. This feature exists, but is undocumented and doesn't have accessors for it yet. What you want to do is get the <a href="http://code.google.com/apis/maps/documentation/services.html#Geocoding%5FStructured" rel="nofollow">Structured Address</a>. Inspect the json structure you get back and look for these new parameters. I'll post more information when I get a chance to try this out.</p> http://stackoverflow.com/questions/49046/different-sizeof-results/49055#49055 35 Answer by Nick Retallack for Different sizeof results Nick Retallack 2008-09-08T02:35:55Z 2009-05-20T11:04:21Z <p>Because you can't pass entire arrays as function parameters in C. You're actually passing a pointer to it; the brackets are syntactic sugar. There are no guarantees the array you're pointing to has size 8, since you could pass this function any character pointer you want.</p> <pre><code>// These all do the same thing void foo(char cvalue[8]) void foo(char cvalue[]) void foo(char *cvalue) </code></pre> http://stackoverflow.com/questions/885477/using-multiple-controllers-in-one-view-in-rails/885538#885538 2 Answer by Nick Retallack for Using multiple controllers in one view in Rails Nick Retallack 2009-05-19T23:25:33Z 2009-05-19T23:25:33Z <p>First off, you should put all of the data-storing and data-gathering methods into Resources and Models so they are accessible from all controllers. You can keep the internal data-mutating operations in your individual controllers though. Once you have it organized like this, you could do what Hobo does: create a controller just for the front page, "front_controller" if you will. Here you can display data gathered from all of your models and resources, as well as links to your other controller actions.</p> http://stackoverflow.com/questions/822038/which-wiki-to-use-after-mediawiki/850271#850271 -2 Answer by Nick Retallack for Which wiki to use after MediaWiki? Nick Retallack 2009-05-11T21:51:09Z 2009-05-12T09:39:17Z <p>Have you considered sharing your Word documents with <a href="http://docs.google.com" rel="nofollow">Google Docs</a>? It has revision control and collaboration features like a wiki, as well as a rich text editor that can import and export plenty of formats.</p> <p>It sounds like TWiki would be a great option for you as well. I haven't used it myself, but it also has a rich text editor, as well as tons of enterprisey project management features in it.</p> http://stackoverflow.com/questions/828191/how-do-i-install-nano-hmac-on-mac-os-x 1 How do I install nano-hmac on Mac OS X? Nick Retallack 2009-05-06T05:42:24Z 2009-05-06T20:01:04Z <p>"nano-hmac" is a Haskell package which can normally be installed using Cabal. However, Mac OS X has a different OpenSSL library than the one it expects, so it fails to compile bindings.</p> <p>I can install the version of openssl from openssl.org, but I'm not sure how to instruct Cabal to use this instead of the Mac OS X version.</p> http://stackoverflow.com/questions/343210/what-happened-to-the-python-bindings-for-cgal 0 What happened to the python bindings for CGAL? Nick Retallack 2008-12-05T08:36:49Z 2009-03-19T07:43:03Z <p>I found the <a href="http://www.cgal.org/" rel="nofollow">Computational Geometry Algorithms Library</a> in my search for an algorithm to decompose a concave polygon into the minimum number of convex components. Links off the site and numerous google results indicate there are python bindings for it, which would be really handy, but all the links are dead! What happened to it? Where can I get it now?</p> http://stackoverflow.com/questions/612862/minimize-polygon-vertices 4 Minimize Polygon Vertices Nick Retallack 2009-03-04T22:57:25Z 2009-03-17T17:55:44Z <p>What is a good algorithm for reducing the number of vertices in a polygon without changing the way it looks very much?</p> <p>Input: A polygon, represented as a list of points, with way too many verticies: raw input from the mouse, for example.</p> <p>Output: A polygon with much fewer verticies that still looks a lot like the original: something usable for collision detection, for example (not necessarily convex).</p> <p>Edit: The solution to this would be similar to finding a multi-segmented line of best fit on a graph. It's called Segmented Least Squares in my algorithms book.</p> <p>Edit2: The Douglas Peucker Algorithm is what I really want.</p> http://stackoverflow.com/questions/350546/rails-user-access-plugins 4 Rails User Access Plugins Nick Retallack 2008-12-08T19:16:18Z 2009-01-01T19:04:29Z <p>There are a lot of rails plugins out there that handle user permissions. I'm impressed with the implementation in the hobo gem, but I'm not sure if I can use just this feature and not the other parts. GateKeeper is a really clever implementation, but has some bugs, though it's small enough I could probably fix it myself. Restful_ACL gives you a class method for checking creation, meaning you can't do any checks on the instance in question (not sure if it does scoped finds).</p> <p>I'd like something that provides a scoped version of ActiveRecord#find which only finds things the current user is allowed to see. This should be robust enough to say, you can only see pictures that are in galleries that are owned by you or one of your friends.</p> <p>As a bonus, it could prevent creates or updates (in a before_* or validation step) that you don't have the right to perform, including associating your own records with a different user or gallery, or creating such records.</p> http://stackoverflow.com/questions/350589/what-is-a-good-language-to-gain-experience-in-game-programming/350604#350604 2 Answer by Nick Retallack for What is a good language to gain experience in Game programming? Nick Retallack 2008-12-08T19:39:34Z 2008-12-08T19:55:22Z <p>Plenty of engines should be available for C++. My personal favorite game programming environment, however, is <a href="http://python.org/" rel="nofollow">Python</a> with <a href="http://pyglet.org/" rel="nofollow">Pyglet</a>. That should give you fine and convenient control of windows and monitors, OpenGL contexts, batches of indexed vertex arrays, image loading for textures, OpenAL audio, and of course keyboard and mouse events.</p> http://stackoverflow.com/questions/349175/formatting-a-data-structure-into-a-comma-separated-list-of-arguments/349229#349229 0 Answer by Nick Retallack for Formatting a data structure into a comma-separated list of arguments Nick Retallack 2008-12-08T11:21:52Z 2008-12-08T11:21:52Z <p>Why not use a standard that both languages can parse, like JSON, XML, or YAML? <a href="http://pypi.python.org/pypi/simplejson" rel="nofollow">simplejson</a> is handy, and included as json in python 2.6.</p> http://stackoverflow.com/questions/1758269/how-do-you-make-a-django-form-for-a-model-and-all-of-its-children-following-a-par/1758654#1758654 Comment by Nick Retallack on How do you make a Django Form for a model and all of its children following a particular foreign key? Nick Retallack 2009-11-18T20:08:38Z 2009-11-18T20:08:38Z I was this far already, but wanted to make sure I was on the right track. How does this know to display the underlings that already exist under the current supervisor? Also, how can you create extra underling items using javascript? I guess you have to manually save every form and apply the relationships in your view, right? There's no way to create a ModelForm that manages its children, is there? http://stackoverflow.com/questions/1758269/how-do-you-make-a-django-form-for-a-model-and-all-of-its-children-following-a-par Comment by Nick Retallack on How do you make a Django Form for a model and all of its children following a particular foreign key? Nick Retallack 2009-11-18T19:43:01Z 2009-11-18T19:43:01Z Create or update. *edited it http://stackoverflow.com/questions/186290/best-static-website-generator Comment by Nick Retallack on Best Static Website Generator Nick Retallack 2009-11-06T04:01:19Z 2009-11-06T04:01:19Z Done. I still can't decide which of these things to use. http://stackoverflow.com/questions/1584370/how-to-merge-two-arrays-in-javascript/1584398#1584398 Comment by Nick Retallack on How to merge two arrays in Javascript Nick Retallack 2009-10-18T19:13:01Z 2009-10-18T19:13:01Z Why would I mean that? The purpose of that condition is to ignore properties that may be in the object's prototype. http://stackoverflow.com/questions/235191/trailing-slashes-in-pylons-routes/1441104#1441104 Comment by Nick Retallack on Trailing slashes in Pylons Routes Nick Retallack 2009-10-06T08:28:14Z 2009-10-06T08:28:14Z This works and is a lot simpler than all the other solutions. You deserve upvotes, good sir. http://stackoverflow.com/questions/1344907/how-would-you-implement-undo-in-a-raster-drawing-program Comment by Nick Retallack on How would you implement Undo in a raster drawing program? Nick Retallack 2009-08-28T03:59:40Z 2009-08-28T03:59:40Z No. Just crowd-sourcing for ideas. I put down my answer. Any other ideas? http://stackoverflow.com/questions/1011460/what-makes-ruby-slow/1028557#1028557 Comment by Nick Retallack on What makes Ruby slow? Nick Retallack 2009-06-23T10:46:40Z 2009-06-23T10:46:40Z Finally, a real answer! Too much evangelism in this thread. I was most interested in hearing about ambitious language features that make it difficult to optimize compared to other dynamic languages. It never occurred to me that you could have concurrency issues with redefining classes at runtime. That's good that 1.9 has improved at basic math -- I'll have to try it now. I wish ruby programmers didn't use eval so much, but sometimes I stumble across a class that's half string literal with interpolation. It just seems wrong. http://stackoverflow.com/questions/1011460/what-makes-ruby-slow/1022924#1022924 Comment by Nick Retallack on What makes Ruby slow? Nick Retallack 2009-06-23T10:39:48Z 2009-06-23T10:39:48Z Very good answer! If I could select two answers, I'd choose you too. Yes, it was probably silly of me to try to build realtime graphical applications in Ruby, and I ended up disabling and manually triggering the GC between frames to make it at least animate somewhat smoothly, if not very slowly. I had better luck with Python -- particularly with Pyglet, an amazing little opengl library that's far more useful than SDL, which everyone seems to be binding to these days. http://stackoverflow.com/questions/1011460/what-makes-ruby-slow/1011478#1011478 Comment by Nick Retallack on What makes Ruby slow? Nick Retallack 2009-06-18T09:32:25Z 2009-06-18T09:32:25Z Also that bit about &quot;everyone&quot; is totally not what I meant. I've removed it from the question. I've used ruby a lot. It just seems like, despite implementing some things efficiently (symbols for example) there are a lot of slower things (like inject). http://stackoverflow.com/questions/1011460/what-makes-ruby-slow/1011478#1011478 Comment by Nick Retallack on What makes Ruby slow? Nick Retallack 2009-06-18T09:20:04Z 2009-06-18T09:20:04Z No no, I like having a garbage collector. I was just wondering if ruby's garbage collector implementation could be improved. And by dynamic features, I was wondering if anything made ruby more complex to optimize than Python or Lua. 1.9 breaks compatibility with 1.8 -- is there a lot of library support for it yet? http://stackoverflow.com/questions/881639/python-imports-importing-a-module-without-py-extension/881658#881658 Comment by Nick Retallack on Python imports: importing a module without .py extension? Nick Retallack 2009-06-16T03:52:52Z 2009-06-16T03:52:52Z This creates a file called &quot;mymodulec&quot;. It's supposed to be the .pyc, but since the original file didn't end in .py, it just tacks a c on the end. It's weird-looking. Can I make it not do this? http://stackoverflow.com/questions/952914/making-a-flat-list-out-of-list-of-lists-in-python/952946#952946 Comment by Nick Retallack on Making a flat list out of list of lists in python Nick Retallack 2009-06-04T20:39:39Z 2009-06-04T20:39:39Z What a cleverly implicit use of the overloaded (+) operator! http://stackoverflow.com/questions/42515/dealing-with-latency-in-networked-games/835356#835356 Comment by Nick Retallack on Dealing with Latency in Networked Games Nick Retallack 2009-06-03T06:18:46Z 2009-06-03T06:18:46Z This can be exploited. A user could modify their client to wait a bit before volleying when you try to detect their latency. If you then sent them packets early, they'd get them before the other players. http://stackoverflow.com/questions/146329/what-is-the-worst-gotcha-youve-experienced/167128#167128 Comment by Nick Retallack on What is the worst 'gotcha' you've experienced? Nick Retallack 2009-06-03T06:09:02Z 2009-06-03T06:09:02Z Upmodded for a gotcha involving ones-complement. http://stackoverflow.com/questions/885477/using-multiple-controllers-in-one-view-in-rails/886781#886781 Comment by Nick Retallack on Using multiple controllers in one view in Rails Nick Retallack 2009-06-03T00:58:31Z 2009-06-03T00:58:31Z GJ ganking my exact text :P