]> info9.net Git - wiki.git/commitdiff
fixed links
authorTom Marble <tmarble@info9.net>
Fri, 8 Aug 2014 15:26:56 +0000 (10:26 -0500)
committerTom Marble <tmarble@info9.net>
Fri, 8 Aug 2014 15:26:56 +0000 (10:26 -0500)
tmarble/posts/10000_Processes_in_Om.mdwn

index 8ee9868cebd175c289704659b4088531217c1ee8..012bb7448e202f5c147dee5599a23e03a820091f 100644 (file)
@@ -1,32 +1,32 @@
 # 10,000 Processes in Om
 
 # 10,000 Processes in Om
 
-I have just published [om-processes](om-processes) which
-is a port of David Nolen's [10,000 Processes](swannodette-10k)
-in [Clojurescript](clojurescript) to [Om](om).
+I have just published [om-processes][om-processes] which
+is a port of David Nolen's [10,000 Processes][swannodette-10k]
+in [Clojurescript][clojurescript] to [Om][om].
 
 
-Clojurescript is a port of [Clojure](clojure) to JavaScript which
+Clojurescript is a port of [Clojure][clojure] to JavaScript which
 is especially well suited for running in a browser. Just as
 Clojure offers a pleasant LISP on the JVM Clojurescript
 offers (nearly the same) LISP in the browser. The performance
 of Clojurescript is outstanding due to the massive optimizations
 is especially well suited for running in a browser. Just as
 Clojure offers a pleasant LISP on the JVM Clojurescript
 offers (nearly the same) LISP in the browser. The performance
 of Clojurescript is outstanding due to the massive optimizations
-available from the [Google Closure compiler](closure).
+available from the [Google Closure compiler][closure].
 
 JavaScript, however, has some fundamental flaws... Top
 among these are it is single threaded which leads to
 an asynchronous callback style of "event programming".
 
 JavaScript, however, has some fundamental flaws... Top
 among these are it is single threaded which leads to
 an asynchronous callback style of "event programming".
-Clojure's [core.async](core.async) offers a solution
-in the form of [CSP](csp) style programming. Using core.async
+Clojure's [core.async][core.async] offers a solution
+in the form of [CSP][csp] style programming. Using core.async
 one can *think* about coding in a more intuitive way.
 
 one can *think* about coding in a more intuitive way.
 
-In [10,000 Processes](swannodette-10k) Nolen demonstrates
+In [10,000 Processes][swannodette-10k] Nolen demonstrates
 using core.async to simulate independent "threads" despite
 the fact that the underlying platform has no native
 support for threads.
 
 using core.async to simulate independent "threads" despite
 the fact that the underlying platform has no native
 support for threads.
 
-In [Om](om) Nolen leverages [Facebook's React](react) to
+In [Om][om] Nolen leverages [Facebook's React][react] to
 create a high performance, immutable model for client programming.
 
 create a high performance, immutable model for client programming.
 
-The technical study [om-processes](om-processes) is simply
+The technical study [om-processes][om-processes] is simply
 the fusion of all these ideas into one demonstration.
 Who knew web development could be so much fun!
 
 the fusion of all these ideas into one demonstration.
 Who knew web development could be so much fun!