User bootload - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T02:22:57Z http://stackoverflow.com/feeds/user/2092 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/17768#17768 4 Answer by bootload for Learning to write a compiler bootload 2008-08-20T11:28:58Z 2009-03-05T22:21:23Z <blockquote> <p>"... Let's Build a Compiler ..."</p> </blockquote> <p>I'd second <a href="http://compilers.iecc.com/crenshaw/" rel="nofollow">http://compilers.iecc.com/crenshaw/</a> by <a href="http://beta.stackoverflow.com/questions/1669/learning-to-write-a-compiler#1678" rel="nofollow">@sasb</a>. Forget buying more books for the moment.</p> <p>Why? Tools &amp; language. </p> <p>The language required is Pascal and if I remember correctly is based on Turbo-Pascal. It just so happens if you go to <a href="http://www.freepascal.org/" rel="nofollow">http://www.freepascal.org/</a> and download the Pascal compiler all the examples work straight from the page ~ <a href="http://www.freepascal.org/download.var" rel="nofollow">http://www.freepascal.org/download.var</a> The beaut thing about Free Pascal is you can use it almost whatever processor or OS you can care for. </p> <p>Once you have mastered the lessons then try the more advanced <em>"<a href="http://en.wikipedia.org/wiki/Dragon%5Fbook" rel="nofollow">Dragon Book</a>"</em> ~ <a href="http://en.wikipedia.org/wiki/Dragon_book" rel="nofollow">http://en.wikipedia.org/wiki/Dragon_book</a></p> http://stackoverflow.com/questions/49699/anyone-know-of-objective-j-syntax-highlighting-in-vi/613550#613550 2 Answer by bootload for Anyone know of Objective-J syntax highlighting in vi? bootload 2009-03-05T04:18:43Z 2009-03-05T04:18:43Z <blockquote> <p>the source on github now include a vim highlight module.</p> </blockquote> <p>I've found just doing what is suggested here is not enough:</p> <ul> <li><p>download the file as Francisco suggests</p></li> <li><p>unzip, <code>cd Tools/</code> dir</p></li> <li><p>run the shell, <code>sh install-tools</code></p></li> <li><p>copy the objj.vim file to vim dir, <code>cp Tools/Editors/objj.vim /usr/share/vim/vim71/syntax/</code> </p></li> </ul> <p><strong>Problem</strong></p> <p>I found no syntax highlighting worked for ".j" files. So the problem here is no file extension recognition. If you are using gvim as I am there is also no menu item. </p> <p><strong>Add Objective-J to gvim menu</strong></p> <p>To add a menu-item in gvim for Syntax->Ne-MO->Objective J: </p> <ul> <li><code>sudo vim /usr/share/vim/vim71/synmenu.vim</code></li> </ul> <p>add the following line.</p> <ul> <li><code>an 50.70.465 &amp;Syntax.Me-NO.Objective\ J :cal SetSyn("objj")&lt;CR&gt;</code> below the objective-C entry.</li> </ul> <p>save and quit</p> <ul> <li><code>:wq!</code> </li> </ul> <p>then reload a ".j" file in gvim. If you then go:</p> <ul> <li><em>Syntax->Ne-MO->Objective J</em></li> </ul> <p>highlighting for your selected Objective-J file should occur.</p> <p><strong>Objective-J auto-highlighting?</strong></p> <p>But what about auto-highlighting when you load the file? There appears to be no file associations. So:</p> <ul> <li><code>sudo vim /usr/share/vim/vim7.1/filetype.vim</code></li> </ul> <p>In the file you will find a list of filetype associations. If you want an idea where to add the line, search for "<em>setf ocaml</em>" in filetype.vim. Add the line below above (alphabetical):</p> <ul> <li><code>"" Objective J au BufNewFile,BufRead *.j setf objj</code></li> </ul> <p>Save the result. You should now be able to load a file with a ".j" extension and syntax highlighting for Objective-J files works. </p> <p><strong>Result</strong></p> <p>Now you should get automatic recognition of the Objective-J files by file type ".j" and a way to set this filetype in gvim. This probably should be added by Bram or whoever does the official release of vim but for the moment this hack works for me. (Ubuntu 8.10, Vim 7.1) </p> http://stackoverflow.com/questions/17435/will-server-side-javascript-take-off-which-implementation-is-most-stable/17736#17736 1 Answer by bootload for Will server-side JavaScript take off? Which implementation is most stable? bootload 2008-08-20T11:06:03Z 2008-08-20T11:06:03Z <blockquote> <p>Does anyone see Server-side Javascript taking off?</p> </blockquote> <p>Try looking at <a href="http://www.appjet.com" rel="nofollow"><a href="http://www.appjet.com" rel="nofollow">http://www.appjet.com</a></a> a startup doing hosted JavaScript applications to get a feel for what you can do. I especially like the learning process which gently nudges the user to build things with a minimal overhead ~ <a href="http://appjet.com/learn-to-program/lessons/intro" rel="nofollow"><a href="http://appjet.com/learn-to-program/lessons/intro" rel="nofollow">http://appjet.com/learn-to-program/lessons/intro</a></a> </p> <p>Now it might seem a weird idea at the moment to use JavaScript but think back when PC's started coming out. Every nerd I knew of was typing away at their new <em>Trash-80</em>'s, <em>Commodore64</em>'s, <em>Apple ][</em>'s typing in games or simple apps in BASIC. </p> <p>Where is todays basic for the younger hacker? </p> <p>It is just possible that JavaScript could do for Web based server side apps as BASIC did for the PC. </p>