User Jonathan Arkell - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T04:31:27Z http://stackoverflow.com/feeds/user/11052 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72636#72636 27 Answer by Jonathan Arkell for What development book made the most impact on you as a developer? Jonathan Arkell 2008-09-16T14:05:31Z 2009-11-26T06:09:26Z <p><a href="http://rads.stackoverflow.com/amzn/click/0070004846" rel="nofollow">The Structure and Interpretation of Computer Programs</a> by s Harold Abelson and Gerald Jay Sussman, with Julie Sussman. It's available online for free, and there are even video lectures to go along with it.</p> <ul> <li>Website (with full text online): <a href="http://mitpress.mit.edu/sicp/" rel="nofollow">http://mitpress.mit.edu/sicp/</a></li> <li>Video Lectures: <a href="http://groups.csail.mit.edu/mac/classes/6.001/abelson-sussman-lectures/" rel="nofollow">http://groups.csail.mit.edu/mac/classes/6.001/abelson-sussman-lectures/</a></li> </ul> http://stackoverflow.com/questions/1639304/recommendations-for-opengl-scheme-combination/1639546#1639546 1 Answer by Jonathan Arkell for Recommendations for OpenGL / Scheme combination Jonathan Arkell 2009-10-28T19:30:29Z 2009-10-28T19:30:29Z <p>Gambit-C Has some "3rd party" Open GL bindings, available in the <a href="http://dynamo.iro.umontreal.ca/~gambit/wiki/index.php/Dumping%5FGrounds" rel="nofollow">dumping grounds</a>. </p> http://stackoverflow.com/questions/913671/are-there-lisp-native-code-compilers/1616218#1616218 0 Answer by Jonathan Arkell for Are there Lisp native code compilers? Jonathan Arkell 2009-10-23T22:13:50Z 2009-10-23T22:13:50Z <p>Don't forget <a href="http://www.call-with-current-continuation.org/" rel="nofollow">Chicken</a> Scheme.</p> http://stackoverflow.com/questions/1597959/how-does-emacs-url-package-handle-authentication/1614133#1614133 1 Answer by Jonathan Arkell for How does emacs url package handle authentication? Jonathan Arkell 2009-10-23T15:13:09Z 2009-10-23T15:13:09Z <p>With twit.el, there was a little farting around to make it work. Authentication info is stored inside of an alist. This a list is bound to the symbol in the variable <code>url-basic-auth-storage</code>. </p> <pre><code>ELISP&gt; (pp url-basic-auth-storage) url-http-real-basic-auth-storage ELISP&gt; (pp (symbol-value url-basic-auth-storage)) (("twitter.com:443" ("Twitter API" . "@uTh5tr!n6==")) ("twitter.com:80" ("Twitter API" . "AnotherAuthString=="))) ELISP&gt; </code></pre> <p>You could probably do something like this:</p> <pre><code>(let ((my-temporary-auth '(("host.com:80" ("Auth Realm" . "@uTH5r!n6=="))))) (url-basic-auth-storage 'my-temporary-auth)) (do-gunk)) </code></pre> <p>This will leave the users authentication info alone (if they have any). Upon retrospect that might have been the smarter way to go with twit.el. </p> http://stackoverflow.com/questions/1532311/cgi-programming-in-elisp/1534477#1534477 4 Answer by Jonathan Arkell for CGI Programming in Elisp? Jonathan Arkell 2009-10-07T21:58:45Z 2009-10-07T21:58:45Z <p><a href="http://www.emacswiki.org/emacs/cgi.el" rel="nofollow">This</a> might help you out, a simple cgi library for emacs</p> <p><a href="http://www.emacswiki.org/emacs/cgi.el" rel="nofollow">http://www.emacswiki.org/emacs/cgi.el</a></p> http://stackoverflow.com/questions/1521544/does-anyone-use-the-scheme-programming-language-for-a-living/1534463#1534463 1 Answer by Jonathan Arkell for Does anyone use the Scheme programming language for a living? Jonathan Arkell 2009-10-07T21:55:24Z 2009-10-07T21:55:24Z <p>Check this out: <a href="http://www.gamerizon.com/" rel="nofollow">A Video Game Written in Gambit C</a>. Here is the <a href="http://article.gmane.org/gmane.lisp.scheme.gambit/3791/" rel="nofollow">Post to the Gambit mailing list stating as such.</a>.</p> <p>I've done a smattering of scheme programming in my job, mostly for automating tasks. It was especially helpful when walking over a massive JSP codebase to pull out any CData, and prepare it for sending to our translations vendor. (Yay SXML)</p> <p>Having Scheme on your resume isn't a bad thing.</p> http://stackoverflow.com/questions/1472700/emacs-keyboard-macros-and-dired/1475178#1475178 2 Answer by Jonathan Arkell for Emacs: Keyboard Macros and Dired Jonathan Arkell 2009-09-25T02:45:06Z 2009-09-25T02:45:06Z <p>Another option is to do this:</p> <ol> <li>go to the top of your dired buffer</li> <li>Record Macro</li> <li>Press enter to visit the file</li> <li>M-x kmacro-call-ring-2nd</li> <li>C-x o (other buffer)</li> <li>Down a line</li> <li>Stop Recording</li> <li>C-u 0 C-x e (call-last-keyboard-macro till the end of the file)</li> </ol> http://stackoverflow.com/questions/1458364/cons-of-first-class-continuations/1464175#1464175 3 Answer by Jonathan Arkell for Cons of first class continuations Jonathan Arkell 2009-09-23T05:59:46Z 2009-09-23T05:59:46Z <p>First up, there is more then just call/cc when it comes to continuation. I suggest starting with Mark Feelys paper: <a href="http://3e8.org/pub/pdf-t1/feeley.pdf" rel="nofollow">A better API for first class continuations</a></p> <p>Next up I suggest reading about the control operators shift and reset, which is a different way of representing contunations.</p> http://stackoverflow.com/questions/1453956/which-shell-command-in-emacs-lisp/1455557#1455557 3 Answer by Jonathan Arkell for which shell-command in emacs lisp? Jonathan Arkell 2009-09-21T16:55:41Z 2009-09-21T16:55:41Z <p>I have had the most success using start-process myself.</p> <pre><code>(start-process "process-name" (get-buffer-create "*rsync-buffer*") "/path/to/rsync" arg1 ... argn) </code></pre> <p>This will send all the output to a single buffer.</p> http://stackoverflow.com/questions/1417968/deep-dark-secrets-of-emacs/1418909#1418909 1 Answer by Jonathan Arkell for Deep dark secrets of Emacs? Jonathan Arkell 2009-09-13T21:40:11Z 2009-09-13T21:40:11Z <p>The Keyboard Macro Ring.</p> <p>Being able to record one macro, and then record yet another, while referring to the previous one is mana from heaven. <code>kmacro-call-ring-2nd</code> is the command.</p> <p>I don't know if it is a dark corner necessarily, but I just found it. </p> <p>You can also use the <a href="http://www.emacswiki.org/emacs/TipOfTheDay" rel="nofollow">Emacs TOTD</a>. Some days it comes up with some duds.. but other days the commands it describes are pure gold.</p> http://stackoverflow.com/questions/1241581/emacs-import-a-csv-into-org-mode/1412800#1412800 0 Answer by Jonathan Arkell for Emacs: import a CSV into org-mode Jonathan Arkell 2009-09-11T19:15:11Z 2009-09-11T19:15:11Z <p>Here is a bit of a hack-job, but it works.</p> <p>when you export the CSV file, force quotes around each entry, then replace all <code>","</code> as a vertical bar.</p> <p>Finally, I make a macro that does something like this:</p> <pre><code>C-a ; Beginning-of-line | ; Self-insert-char C-e ; end-of-line | ; Self-insert-char &lt;down&gt; ; Down one line </code></pre> <p>(I am not 100% sure if | is a self-insert-char or not, so its best to record your own macro)</p> <p>Hit tab somewhere in the middle of the table, and org-mode formats it properly. I find this easier to do in a narrowed region.</p> <p>Caveat: If you have a vertical bar in your input.. it probably won't work quite right. Situations like that should be easy to spot, and relatively easy to fix.</p> <p>Generally, when importing something text-like into org-mode, I have found a combination of some smart macro writing, and search-replace to be the easiest way </p> <p>I hope that helps.</p> http://stackoverflow.com/questions/1252062/emacs-exercises-to-become-more-comfortable-and-familiar-with-the-editor-itself-as/1274979#1274979 0 Answer by Jonathan Arkell for Emacs exercises to become more comfortable and familiar with the editor itself as well as Lisp? Jonathan Arkell 2009-08-13T22:30:25Z 2009-08-13T22:30:25Z <p>How is this one:</p> <p>Write a simple program to open a particular file ("~/ekoans.txt") and select a random line from that text file, that is displayed to the user in a new temporary buffer. Call the function ekoan-random, and make it callable by the user.</p> <p>The first few lines of ekoans.txt are:</p> <pre><code>Make ekoan-random open up a new file for you instead of a temporary buffer, and insert apropos header text in the new buffer. Write an ekoan-sequential function that behaves like ekoan-random, except it works in sequential order Make ekoan-sequential persist through a customization variable Make the name of the koan file changeable by a customization variable </code></pre> <p>I call this Koan-strapping!</p> http://stackoverflow.com/questions/1000956/javascript-major-mode-in-emacs/1009549#1009549 1 Answer by Jonathan Arkell for Javascript major mode in Emacs Jonathan Arkell 2009-06-17T21:13:09Z 2009-06-17T21:13:09Z <p>Espresso mode is supposed to be quite good as well.</p> http://stackoverflow.com/questions/269812/how-to-quickly-get-started-at-using-and-learning-emacs/271372#271372 7 Answer by Jonathan Arkell for How to quickly get started at using and learning Emacs Jonathan Arkell 2008-11-07T06:22:25Z 2009-06-03T15:52:28Z <p>The biggest thing about learning how to use emacs is ... (drumroll please) learning how to use emacs.</p> <p>Okay, okay, okay. It's a silly answer, and its a tautology, but it's true. If you start up emacs, and think to yourself "How could I find every instance of the word 'foobar' in my source tree?" the worst thing you could do is hit alt-tab and visit google.</p> <p>Seriously.</p> <p>Learning the help system and how it works is the best thing you can do. Its so nice to just hit C-h a find, and suddenly get all the information you need, right at your fingertips.</p> <p>The next best thing you could do is install a wonderful little package called <a href="http://www.emacswiki.org/emacs/Icicles" rel="nofollow">Icicles</a> which has some seriously groovy completion functions. After you get it installed, just know that anytime the minibuffer is asking for some kind of input, you can now use regular expressions.</p> <p>How would this apply to finding every file in your source tree? Well, you'd hit M-x, and then type "find". After that, you could hit (for instance) Shift-tab and icicles would kick in, finding every command that prefixes with "find". Alternatively, you could do M-x .<em>find.</em> and it would give you any command with find in it.</p> <p>Build a cheat sheet. Just keep a saved buffer somewhere that has all of the keyboard shortcuts you use frequently in it. Remove the ones that you know off by heart, and pick up new ones. In most cases when you do a M-x command, the message buffer will tell you what the keyboard shortcut was for that command (if there was one). </p> <p>Learn. Keyboard. Macros.</p> <p>Learn. Emacs. Lisp.</p> <p>Steven Huwig's Idea of using some killer apps is a good one. Emacs is easier to use when you want to use it. For me, it was Planner Mode. (I've jsut moved to Org mode, and it's even better)</p> http://stackoverflow.com/questions/928387/xemacs-dotemacs-config-so-that-one-can-paste-without-getting-funny-chars/929115#929115 1 Answer by Jonathan Arkell for xemacs: dotemacs config so that one can paste without getting "funny" chars Jonathan Arkell 2009-05-30T05:58:21Z 2009-05-30T05:58:21Z <p>Fire this in your .emacs:</p> <pre><code>(set-clipboard-coding-system 'utf-16le-dos) </code></pre> <p>That should do it. Don't forget to thi C-x C-e on that statement, or restart xemacs.</p> http://stackoverflow.com/questions/917337/schema-sensitive-editing-in-emacs-based-on-w3c-xml-schema-not-rng/923402#923402 0 Answer by Jonathan Arkell for Schema-sensitive editing in emacs, based on W3C XML Schema? (not RNG) Jonathan Arkell 2009-05-28T21:54:29Z 2009-05-28T21:54:29Z <p>Even without schemas it is quite useful. You can auto-complete closing tags, navigate by tag and lots of other great bells and whistles. All that said, Alex Ott is right on the money.</p> http://stackoverflow.com/questions/922033/filling-in-parent-master-page-from-child 1 Filling in parent master page from child Jonathan Arkell 2009-05-28T17:02:32Z 2009-05-28T19:28:21Z <p>I'd like to have a page that uses a child master page, fill in a content placeholder of the parent, but I cannot get it to work. Whenever I try I get the error "Cannot find ContentPlaceHolder 'customHead' in the master page '/templates/info.master', verify content control's ContentPlaceHolderID attribute in the content page."</p> <p>I have a master page (/templates/main.master) defined like this:</p> <pre><code>&lt;%@ Master Language="C#" %&gt; &lt;head runat="server"&gt; &lt;title&gt;foo&lt;/title&gt; &lt;asp:contentplaceholder runat="server" id="customHead" /&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="content"&gt; &lt;asp:contentplaceholder runat="server" id="masterContent" /&gt; &lt;/div&gt; </code></pre> <p>Then I have a child master (/templates/info.master) defined like this:</p> <pre><code>&lt;%@ Master Language="C#" MasterPageFile="/templates/main.master" %&gt; &lt;asp:content id="homeContent" contentPlaceHolderId="masterContent" Runat="server"&gt; &lt;div id="info-container"&gt; &lt;div id="info-content"&gt; &lt;asp:contentplaceholder runat="server" id="infoContent"/&gt; &lt;/div&gt; &lt;/div&gt; &lt;/asp:content&gt; </code></pre> <p>And finally my page defined like this:</p> <pre><code>&lt;%@ Page Language="C#" MasterPageFile="/templates/info.master" %&gt; &lt;asp:Content ID="head" ContentPlaceHolderID="customHead" runat="server"&gt; &lt;!-- Custom header area --&gt; &lt;link rel="stylesheet" type="text/css" href="foo.css"/&gt; &lt;/asp:Content&gt; &lt;asp:Content ID="content" ContentPlaceHolderID="childContent" runat="server"&gt; This is my child content &lt;/asp:Content&gt; </code></pre> http://stackoverflow.com/questions/613022/how-to-replace-a-character-with-a-newline-in-emacs/613029#613029 18 Answer by Jonathan Arkell for How to replace a character with a newline in Emacs Jonathan Arkell 2009-03-04T23:52:48Z 2009-03-05T19:40:14Z <pre><code>M-x replace-string ; C-q C-j </code></pre> <p>C-q for <code>quoted-insert</code></p> <p>C-j is a newline.</p> <p>Cheers!</p> http://stackoverflow.com/questions/457951/converting-an-integer-into-a-list/459012#459012 0 Answer by Jonathan Arkell for Converting an integer Into a List? Jonathan Arkell 2009-01-19T20:13:38Z 2009-01-19T20:13:38Z <p>When you covert the string to a list, you are building a list of chars, thats why you get the #. #\ is the character delimiter.; so when you are done your list manipulation, you can reconvert it back to a string fairly easily.</p> http://stackoverflow.com/questions/316243/which-programming-language-to-learn-now/316321#316321 14 Answer by Jonathan Arkell for Which programming language to learn now? Jonathan Arkell 2008-11-25T03:52:36Z 2008-11-25T03:52:36Z <p>Learn Haskell, Scheme, Erlang or Lisp. Learn a language to make you think, and bend your noodle a little. You have a marketable one, now learn one to learn some programming.</p> http://stackoverflow.com/questions/282905/are-there-any-good-editors-for-lisp-programming-other-than-emacs/293400#293400 1 Answer by Jonathan Arkell for Are there any good editors for LISP programming, other than emacs? Jonathan Arkell 2008-11-16T03:01:13Z 2008-11-16T03:01:13Z <p>I tried for long to find a good editor for my scheme code besides emacs, but even with emacs tringer foubles, it was still the best. jEdit was the second best, but its kind of like saying that the choices between cake, sawdust and dirt, the sawdust was second best.</p> <p>Emacs with paredit mode just <strong>owns</strong> for structured editing of s expressions. Add to that the highlight parens mode, and it gets even better. </p> <p>The thing about using emacs, is that the editors extensions language is lisp, so it is a great way to learn lisp.</p> http://stackoverflow.com/questions/274374/the-most-significant-project-management-mistakes/274387#274387 9 Answer by Jonathan Arkell for The most significant project management mistakes Jonathan Arkell 2008-11-08T05:01:06Z 2008-11-08T19:42:50Z <p>Robbing Peter to work on Paul's project, and expecting everything to just work itself out. </p> <blockquote> <p>"We <strong>need</strong> every developer on project Ecks-Que."</p> <p>"But in doing so, we will impact project Four-Sea!"</p> <p>"That's okay, Four-Sea isn't due until 3 weeks from now."</p> <p>"..."</p> </blockquote> <p>The other big mistake I've seen is building out schedules, and not allowing for vacations, sickness, and when (for instance) project Four-Sea goes over, or has bugs, because all of its resources got pulled to work on Ecks-Que.</p> <p>The Cause seems to be chasing after too many projects without enough resources to staff them, and a lack of breathing room.</p> <p><hr /></p> <p>I don't really know the solution to the problem of Robbing Peter to work on Pauls Project problem. One of the things you can try is to constantly communicate how this will impact the projects. Specific examples will work better ones. </p> <blockquote> <p>"You know, if we use Peter to work on Project Ecks-Que, we won't have his badly needed expertise on Four-Sea. Because his piece is the lynchpin of Four Sea, he neexs his work done before anyone else can start."</p> </blockquote> <p>Would clearly communicate the problem. </p> <p>The problem then, is making sure your audience is receptive.</p> http://stackoverflow.com/questions/271924/what-is-your-favourite-plugin-in-emacs/272621#272621 4 Answer by Jonathan Arkell for What is your favourite plugin in emacs? Jonathan Arkell 2008-11-07T16:30:05Z 2008-11-08T06:12:06Z <ul> <li>anything - its an easy to extend quicksilver for emacs. Nuff said.</li> <li>Cedet</li> <li>nxml + nxhtml</li> <li>ecb</li> <li>yasnippets</li> <li>Org (jsut started, already awesmoe)</li> <li>All the little libraries I wrote and modified <ul> <li><a href="http://www.emacswiki.org/emacs/ToDoChiKu" rel="nofollow">ToDoChiKu</a> Snarl/growl notification bindings for emacs</li> <li><a href="http://www.emacswiki.org/emacs/Tagging" rel="nofollow">FreeTagging</a> - Provides views into your source code by delicious/flickr style tags. You can filter a piece of source by a tag (or its negation), and it also displays a tag cloud. </li> <li><a href="http://www.emacswiki.org/emacs/TwIt" rel="nofollow">twit.el</a> Twitter for emacs</li> <li><a href="http://www.emacswiki.org/emacs/file-journal.el" rel="nofollow">FileJournal</a> List of most recently used files, with hooks into anything</li> </ul></li> </ul> http://stackoverflow.com/questions/274230/what-are-the-best-free-software-that-helps-you-become-more-productive-or-helps-yo/274270#274270 11 Answer by Jonathan Arkell for What are the best free software that helps you become more productive or helps you code? Jonathan Arkell 2008-11-08T02:56:41Z 2008-11-08T02:56:41Z <p>Has to be said: Emacs.</p> http://stackoverflow.com/questions/271063/suggested-initial-emacs-config/271298#271298 4 Answer by Jonathan Arkell for Suggested initial emacs config? Jonathan Arkell 2008-11-07T05:23:18Z 2008-11-07T05:23:18Z <p>That is a hard question. My theory about Emacs is that you have to give it a <strong>real</strong> honest try. That means working with it for a few months, not days. It is not for the faint of heart! Ideally emacs would become your one and only text editor, and you do things the emacs way. </p> <p>Really, to give yourself and emacs the best chance possible, you should learn enough elisp to do your own basic customizations. </p> <p>In fact, I think your .emacs is probably a read herring with regards to giving emacs the best possible chance. Instead, try out some of the groovier features like flymake with pylint, the inferior python process, python debugging with emacs are all worthwhile. In particular inferior processes are the bomb.</p> <p><a href="http://www.emacswiki.org/cgi-bin/wiki/PythonMode" rel="nofollow">EmacsWiki</a> has some good info on python and emacs.</p> http://stackoverflow.com/questions/271159/are-there-tools-to-see-if-page-was-read-from-cache/271284#271284 1 Answer by Jonathan Arkell for Are there tools to see if page was read from cache? Jonathan Arkell 2008-11-07T05:07:06Z 2008-11-07T05:07:06Z <p>If the remote server is not the same server as wehre the page is located, the short answer is: you don't.</p> <p>If you REALLY needed this information, you would set up a proxy on your server to the remote image. Then you could track hits to the remote server image by way of the proxy. With proper cache settings (i.e. must-revalidate) you could check to see if each image request is going to be a fresh load, or one from the browser cache.</p> <p>If it wasn't for the security policy of the browser, you might be able to do it via some VERY tricky AJAX. </p> <p>If the page and remote server are on the same place, you could possibly get that information by storing a session of the user for every request (including images), and keep track of when the page and component images are loaded.</p> <p>Of course, I could have completely misunderstood your question, and you want to see if YOUR browser is caching an image or not, in which case Firefox has an extension called LiveHTTPHeaders that will help. (ieHTTPHeaders for Internet Explorer). Conversely Firebug will do the same thing on its "net" tab. YSlow will give you oodles of cache information as well.</p> http://stackoverflow.com/questions/259742/what-is-the-difference-between-using-html-or-dreamweaver-to-make-a-website-whic/259903#259903 0 Answer by Jonathan Arkell for What is the difference between using HTML or Dreamweaver to make a website? Which is Better? Jonathan Arkell 2008-11-03T20:47:13Z 2008-11-03T20:47:13Z <p>By better, what do you mean?</p> <p>If you want something to quickly edit an HTML page, then Dreamweaver will do okay. But really, authoring an HTML page with dreamweaver is like programming with wizards. For the simplest tasks it will do, but anything beyond that and its a recipe for disaster.</p> <p>FWIW, when we look at resumes, people who say they develop with Dreamweaver get their resumes put on the bottom of the pile. </p> <p>there are plenty of editors that give you code completion, syntax highlighting, FTP, validation, etc. The two I know and have used are jEdit and emacs. (Emacs is my personal favorite thus-far).</p> http://stackoverflow.com/questions/252691/wrapping-variable-width-text-in-emacs-lisp 1 Wrapping variable width text in emacs lisp Jonathan Arkell 2008-10-31T05:41:14Z 2008-11-03T20:10:07Z <p>I am hacking up a tagging application for emacs. I have got a tag cloud/weighted list successfully displaying on a buffer, but i am running into a snag. I need to be able to properly word-wrap the buffer, but I haven't a clue where to start.</p> <p>The font I am using is a variable width font. On top of that, each tag is going to be in a different size, depending on how many times it shows up on the buffer. Finally, the window that displays the tagcloud could be in a window that is 200 pixels wide, or the full screen width.</p> <p>I really have no idea where to start. I tried longlines mode on the tagcloud buffer, but that didn't work.</p> <p>Source code is at: <a href="http://emacswiki.org/cgi-bin/emacs/free-tagging.el" rel="nofollow">http://emacswiki.org/cgi-bin/emacs/free-tagging.el</a></p> http://stackoverflow.com/questions/255785/does-a-tool-exist-for-dynamically-altering-running-javascript-in-a-browser/255935#255935 0 Answer by Jonathan Arkell for Does a tool exist for dynamically altering running javascript in a browser? Jonathan Arkell 2008-11-01T18:37:43Z 2008-11-01T18:37:43Z <p>Mozdev has a tool called <a href="http://hyperstruct.net/projects/mozrepl" rel="nofollow">MozREPL</a>. Not only can you alter and redefine the code on the fly, but you can get access to the underlying browser code as well. It's really cool.</p> <p>It opens up a port on yoru computer amnmd allwos you to attach a telnet session (from local host only) to it to start executing code. You can also open that port up to connections that are not from localhost.... (but beware, that is pretty insecure and dangerous, etc. etc.).</p> <p>It comes with an emacs minor mode that lets you send various regions of text right to mozdev, and provides a very nice interaction mode. I've further expanded it to set Firebug breakpoints right from emacs, and launch selenium tests. Basically I can script my browser from my editor. Its pretty cool. At some point soon I am going to release the source code. </p> http://stackoverflow.com/questions/249874/creating-a-rest-client-api/253603#253603 1 Answer by Jonathan Arkell for Creating a REST client API Jonathan Arkell 2008-10-31T14:04:37Z 2008-10-31T14:04:37Z <p>A good rest client API is a set of wrappers around curl, wget, or your language specific HTTP libraries. You might need some extra methods or functions to deal with the specifics of your application as well (i.e. specialized XML/JSON parsing), but that should be about it.</p> http://stackoverflow.com/questions/1869763/how-can-lisp-make-me-a-better-c-developer/1870687#1870687 Comment by Jonathan Arkell on How can Lisp make me a better C# developer? Jonathan Arkell 2009-12-10T20:06:27Z 2009-12-10T20:06:27Z Voted up, bit I say go for Scheme, instead of Common Lisp. ;) I believe there are a few implementations of scheme that support the CLR, which might be good for the original poster. http://stackoverflow.com/questions/1690197/what-does-google-closure-library-offer-over-jquery/1737471#1737471 Comment by Jonathan Arkell on What does Google Closure Library offer over jQuery? Jonathan Arkell 2009-12-01T15:55:25Z 2009-12-01T15:55:25Z This article is bad. Very bad. On top of the micro-optimizations that Jason called out, the author goes on to say that closure would cause memory leaks by using the memoization feature to, for instance, cache the results of the mouse position. In this case, not only would that <i>not</i> cause a memory leak, but it demonstrates a complete lack of understanding of what memoization is and how it works. http://stackoverflow.com/questions/1750950/setting-up-an-emacs-environment-in-windows/1751390#1751390 Comment by Jonathan Arkell on Setting up an emacs environment in windows? Jonathan Arkell 2009-11-18T22:45:49Z 2009-11-18T22:45:49Z If you are going to go with cygwin, install it on the root. Cygwin will warn you that it is a bad idea, but i have not actually seen any problems with doing that. YMMV. http://stackoverflow.com/questions/1707728/scheme-and-set/1707858#1707858 Comment by Jonathan Arkell on scheme and set! Jonathan Arkell 2009-11-10T18:25:22Z 2009-11-10T18:25:22Z This can also be done with parameters: <a href="http://srfi.schemers.org/srfi-39/srfi-39.html" rel="nofollow">srfi.schemers.org/srfi-39/srfi-39.html</a> http://stackoverflow.com/questions/1629217/emacs-why-do-i-have-hashes-at-the-ends-of-my-file-names-i-e-test-c/1629234#1629234 Comment by Jonathan Arkell on emacs why do I have hashes at the ends of my file names i.e. #test.c# Jonathan Arkell 2009-10-27T18:13:45Z 2009-10-27T18:13:45Z You will probably have to remove the files with this: rm \#* http://stackoverflow.com/questions/913671/are-there-lisp-native-code-compilers/913677#913677 Comment by Jonathan Arkell on Are there Lisp native code compilers? Jonathan Arkell 2009-10-23T22:19:08Z 2009-10-23T22:19:08Z <a href="http://www.iro.umontreal.ca/~gambit/" rel="nofollow">iro.umontreal.ca/~gambit</a> Gambit Homepage <a href="http://www.ccs.neu.edu/home/will/Larceny/" rel="nofollow">ccs.neu.edu/home/will/Larceny</a> Larceny Homepage Gambit compiles to C, Larceny compiles either to C, machine code or the CLR. http://stackoverflow.com/questions/1597959/how-does-emacs-url-package-handle-authentication/1614133#1614133 Comment by Jonathan Arkell on How does emacs url package handle authentication? Jonathan Arkell 2009-10-23T21:53:20Z 2009-10-23T21:53:20Z You shouldn't need the defadvice hack. If I recall, url-http-handle-authentication uses url-http-basic-authorization as an auth cache, so if there is an entry already in the alist, it won't prompt the user, unless it gets a 2nd 403 header. http://stackoverflow.com/questions/1458364/cons-of-first-class-continuations/1458385#1458385 Comment by Jonathan Arkell on Cons of first class continuations Jonathan Arkell 2009-09-23T21:40:17Z 2009-09-23T21:40:17Z Whether programmers understand continuations or not depends on the goals of the language. Obviously this would be a bad thing for Cobol or Java. But for a language like Scheme or Haskell it isn't a factor. http://stackoverflow.com/questions/1458364/cons-of-first-class-continuations/1458392#1458392 Comment by Jonathan Arkell on Cons of first class continuations Jonathan Arkell 2009-09-23T05:57:03Z 2009-09-23T05:57:03Z That's a gross oversimplification. http://stackoverflow.com/questions/1348896/what-is-the-best-functional-language-for-scientific-programming/1348936#1348936 Comment by Jonathan Arkell on What is the best functional language for scientific programming Jonathan Arkell 2009-08-31T02:46:50Z 2009-08-31T02:46:50Z That really depends on your implementation. Chicken and Gambit scheme are pretty darn speedy (they compile down to C), and have a decent set of libraries. PLT schemes library base is massive. http://stackoverflow.com/questions/249874/creating-a-rest-client-api/253603#253603 Comment by Jonathan Arkell on Creating a REST client API Jonathan Arkell 2009-08-31T02:26:37Z 2009-08-31T02:26:37Z why the downvotes? http://stackoverflow.com/questions/269812/how-to-quickly-get-started-at-using-and-learning-emacs/271372#271372 Comment by Jonathan Arkell on How to quickly get started at using and learning Emacs Jonathan Arkell 2009-06-03T17:11:26Z 2009-06-03T17:11:26Z Fixed. Thanks! http://stackoverflow.com/questions/928387/xemacs-dotemacs-config-so-that-one-can-paste-without-getting-funny-chars/929115#929115 Comment by Jonathan Arkell on xemacs: dotemacs config so that one can paste without getting "funny" chars Jonathan Arkell 2009-05-31T23:32:53Z 2009-05-31T23:32:53Z set-clipboard-coding-system is an alias for `set-selection-coding-system' in `mule.el'. Hope that helps! http://stackoverflow.com/questions/922033/filling-in-parent-master-page-from-child/922159#922159 Comment by Jonathan Arkell on Filling in parent master page from child Jonathan Arkell 2009-05-28T21:31:10Z 2009-05-28T21:31:10Z With Mxyzptlks addition, it worked like a charm. Thank you both! http://stackoverflow.com/questions/922033/filling-in-parent-master-page-from-child/922159#922159 Comment by Jonathan Arkell on Filling in parent master page from child Jonathan Arkell 2009-05-28T19:54:54Z 2009-05-28T19:54:54Z Adding the placeholder there just gives me this error: &quot;Parser Error Message: Only Content controls are allowed directly in a content page that contains Content controls.&quot;