diff --git a/drafts/2014-09-16-Building-System-in-Clojure-1.markdown b/drafts/2014-09-16-Building-System-in-Clojure-1.markdown new file mode 100644 index 00000000..7ddfa6e8 --- /dev/null +++ b/drafts/2014-09-16-Building-System-in-Clojure-1.markdown @@ -0,0 +1,33 @@ +--- +layout: post +title: "Building a System in Clojure - Part 1" +date: 2014-09-16 19:06 +comments: true +categories: +--- +This is the first of **n** articles about building **systems** in **[Clojure](http://clojure.org/)**. In this series we will be looking at the Clojure rewrite of and application I wrote last year: BirdWatch. This application subscribes to the Twitter Streaming API for all tweets that contain any of a number of terms and makes them searchable through storing them in ElasticSearch + +Let's use a new demo, a term with a lot of traffic: **LOVE**. When tracking this term on the streaming API, I usually get around 75 tweets per second. + +That's a lot, I wouldn't want to try opening that page on mobile, necessarily. But how about a live search in that stream? Let's filter out the tweets that contain the term birthday. With that, at the time of testing, I am down to two or three tweets per second: + +http://localhost:8888/#birthday + +Now if you are daring (and won't complain about bandwidth usage), why not go to the search field and click the search button with an empty field. Now you'll get all, which still works nicely and utilizes the CHrome helper so that it uses around 40% CPU on a quadcore 2012 retina macbook (where the available total is 800%, so it really only utilizes one virtual core to less than half). It would be interesting to simulate a higher load and see at how many messages per second Chrome maxes out the single JavaScript thread. One thing to note is that at around 50,000 tweets loaded, the application seems to come to a halt on the client side, with the server side unaffected. I suspect at one point I am currently just holding on to too much state. Let's check at some point if that's necessary for the specified functionality. I think not and I have an idea on how to solve this. + +**Remove disconnected UIDs from mapping atom!** + +Thanks and until next week, +Matthias + +ARTICLE on the channels component +Channels are sweet. Bounded mailboxes are poison + + +Once we will have discussed the architecture in detail, next we can start observing the system under load. Of course, it would be interesting to have actual user load. But with or without actual load, we will want a way of generating / simulating load and then observe the system, identify the bottlenecks and remove them. For example the clients could be simulated by connecting a load generator via ZeroMQ or the like and deliver matches back to that application and check if they are as expected (correct, complete, timely). Also the Twitter stream could be simulated, for example by connecting to a load generator that either replays recorded tweets, with full control over the rate, or with artifical test cases, for which we could exactly specify the expectations on the output side. + + +footnotes: +I first discovered **Clojure** last summer and read quite a few articles on the language itself since. It wasn't until this summer though that I tried building an application with it. At first I was lost as to how I could structure an application in it. I started rewriting my **[BirdWatch](https://github.com/matthiasn/BirdWatch)** with Clojure on the server side and **ClojureScript** and **Om** on the client side. While that worked nicely, I ended up with something that I dreaded more than I dreaded the monsters under my bed when I was a kid and that was something where everything depended on everything. I have seen that too often to shrug it away and be okay with it. + +Then I found Stuart Sierra's Component library and things started to look brighter again. It offers dependency injection, which, as I strongly believe, is crucial for building systems diff --git a/public/about/index.html b/public/about/index.html index 6f95d04b..dc3cfc25 100644 --- a/public/about/index.html +++ b/public/about/index.html @@ -188,28 +188,20 @@

Recent Posts

GitHub Repos

+ + +

Subscribe

diff --git a/public/atom.xml b/public/atom.xml index b489c80c..afde0e1f 100644 --- a/public/atom.xml +++ b/public/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Matthias Nehlsen]]> - 2014-09-11T17:08:04+02:00 + 2014-09-15T16:22:17+02:00 http://matthiasnehlsen.com/ diff --git a/public/blog/2013/04/19/hello-world/index.html b/public/blog/2013/04/19/hello-world/index.html index ec4c8c1a..3c63e2ac 100644 --- a/public/blog/2013/04/19/hello-world/index.html +++ b/public/blog/2013/04/19/hello-world/index.html @@ -270,28 +270,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2013/04/23/iteratee-can-i-have-that-in-a-sentence/index.html b/public/blog/2013/04/23/iteratee-can-i-have-that-in-a-sentence/index.html index ec7cbc2e..14d5a535 100644 --- a/public/blog/2013/04/23/iteratee-can-i-have-that-in-a-sentence/index.html +++ b/public/blog/2013/04/23/iteratee-can-i-have-that-in-a-sentence/index.html @@ -606,28 +606,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2013/04/26/data-model-upgrade/index.html b/public/blog/2013/04/26/data-model-upgrade/index.html index 70d670c5..c9576444 100644 --- a/public/blog/2013/04/26/data-model-upgrade/index.html +++ b/public/blog/2013/04/26/data-model-upgrade/index.html @@ -541,28 +541,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2013/05/01/server-sent-events-vs-websockets/index.html b/public/blog/2013/05/01/server-sent-events-vs-websockets/index.html index 30bc333a..ff46cb69 100644 --- a/public/blog/2013/05/01/server-sent-events-vs-websockets/index.html +++ b/public/blog/2013/05/01/server-sent-events-vs-websockets/index.html @@ -413,28 +413,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2013/05/11/load-testing-server-sent-event-streams/index.html b/public/blog/2013/05/11/load-testing-server-sent-event-streams/index.html index 4ee19fc9..f0995ce6 100644 --- a/public/blog/2013/05/11/load-testing-server-sent-event-streams/index.html +++ b/public/blog/2013/05/11/load-testing-server-sent-event-streams/index.html @@ -265,28 +265,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2013/05/18/using-d3js-with-play/index.html b/public/blog/2013/05/18/using-d3js-with-play/index.html index 2dfd9815..fb2409e5 100644 --- a/public/blog/2013/05/18/using-d3js-with-play/index.html +++ b/public/blog/2013/05/18/using-d3js-with-play/index.html @@ -350,28 +350,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2013/05/26/making-birdwatch-interactive/index.html b/public/blog/2013/05/26/making-birdwatch-interactive/index.html index 7ae03d5a..6df5050d 100644 --- a/public/blog/2013/05/26/making-birdwatch-interactive/index.html +++ b/public/blog/2013/05/26/making-birdwatch-interactive/index.html @@ -363,28 +363,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2013/06/02/scaling-play-applications-with-zeromq/index.html b/public/blog/2013/06/02/scaling-play-applications-with-zeromq/index.html index 22eaf0cc..5ef59b57 100644 --- a/public/blog/2013/06/02/scaling-play-applications-with-zeromq/index.html +++ b/public/blog/2013/06/02/scaling-play-applications-with-zeromq/index.html @@ -355,28 +355,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2013/06/10/scala-days-2013/index.html b/public/blog/2013/06/10/scala-days-2013/index.html index c1869aaa..5ec6b79d 100644 --- a/public/blog/2013/06/10/scala-days-2013/index.html +++ b/public/blog/2013/06/10/scala-days-2013/index.html @@ -314,28 +314,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2013/06/23/angularjs-and-play-framework/index.html b/public/blog/2013/06/23/angularjs-and-play-framework/index.html index fea15653..ccfe6414 100644 --- a/public/blog/2013/06/23/angularjs-and-play-framework/index.html +++ b/public/blog/2013/06/23/angularjs-and-play-framework/index.html @@ -463,28 +463,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2013/07/03/angularjs-and-play-maintenance/index.html b/public/blog/2013/07/03/angularjs-and-play-maintenance/index.html index 5b069a5b..67fc17fa 100644 --- a/public/blog/2013/07/03/angularjs-and-play-maintenance/index.html +++ b/public/blog/2013/07/03/angularjs-and-play-maintenance/index.html @@ -338,28 +338,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2013/07/09/transforming-logs-into-information/index.html b/public/blog/2013/07/09/transforming-logs-into-information/index.html index a3964afd..0b47f219 100644 --- a/public/blog/2013/07/09/transforming-logs-into-information/index.html +++ b/public/blog/2013/07/09/transforming-logs-into-information/index.html @@ -378,28 +378,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2013/08/13/birdwatch-angularjs-elasticsearch-play/index.html b/public/blog/2013/08/13/birdwatch-angularjs-elasticsearch-play/index.html index 1d3b2cf5..8326b43b 100644 --- a/public/blog/2013/08/13/birdwatch-angularjs-elasticsearch-play/index.html +++ b/public/blog/2013/08/13/birdwatch-angularjs-elasticsearch-play/index.html @@ -274,28 +274,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2013/09/10/birdwatch-explained/index.html b/public/blog/2013/09/10/birdwatch-explained/index.html index 90d4c1d2..83c601e9 100644 --- a/public/blog/2013/09/10/birdwatch-explained/index.html +++ b/public/blog/2013/09/10/birdwatch-explained/index.html @@ -1222,28 +1222,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2013/09/15/using-crossfilter-with-angularjs/index.html b/public/blog/2013/09/15/using-crossfilter-with-angularjs/index.html index 5e6e6b50..a779a0c9 100644 --- a/public/blog/2013/09/15/using-crossfilter-with-angularjs/index.html +++ b/public/blog/2013/09/15/using-crossfilter-with-angularjs/index.html @@ -423,28 +423,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2013/11/23/live-page-reload-on-any-device/index.html b/public/blog/2013/11/23/live-page-reload-on-any-device/index.html index 8a8f6dca..6bccc3e9 100644 --- a/public/blog/2013/11/23/live-page-reload-on-any-device/index.html +++ b/public/blog/2013/11/23/live-page-reload-on-any-device/index.html @@ -339,28 +339,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2013/12/31/new-years-resolution/index.html b/public/blog/2013/12/31/new-years-resolution/index.html index ea822cca..88ccfba3 100644 --- a/public/blog/2013/12/31/new-years-resolution/index.html +++ b/public/blog/2013/12/31/new-years-resolution/index.html @@ -274,28 +274,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2014/01/05/play-framework-and-facebooks-react-library/index.html b/public/blog/2014/01/05/play-framework-and-facebooks-react-library/index.html index 2c388dc8..b780b0a4 100644 --- a/public/blog/2014/01/05/play-framework-and-facebooks-react-library/index.html +++ b/public/blog/2014/01/05/play-framework-and-facebooks-react-library/index.html @@ -587,28 +587,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2014/01/24/scala-dot-js-and-reactjs/index.html b/public/blog/2014/01/24/scala-dot-js-and-reactjs/index.html index 3ab81d70..8879fcb4 100644 --- a/public/blog/2014/01/24/scala-dot-js-and-reactjs/index.html +++ b/public/blog/2014/01/24/scala-dot-js-and-reactjs/index.html @@ -756,28 +756,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2014/02/16/elasticsearch-v1/index.html b/public/blog/2014/02/16/elasticsearch-v1/index.html index 70d65d34..fbfe997a 100644 --- a/public/blog/2014/02/16/elasticsearch-v1/index.html +++ b/public/blog/2014/02/16/elasticsearch-v1/index.html @@ -419,28 +419,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2014/03/31/birdwatch-with-reactjs/index.html b/public/blog/2014/03/31/birdwatch-with-reactjs/index.html index 17102540..9184fbfc 100644 --- a/public/blog/2014/03/31/birdwatch-with-reactjs/index.html +++ b/public/blog/2014/03/31/birdwatch-with-reactjs/index.html @@ -594,28 +594,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2014/06/09/play-sse-ie/index.html b/public/blog/2014/06/09/play-sse-ie/index.html index 5953d48c..69210392 100644 --- a/public/blog/2014/06/09/play-sse-ie/index.html +++ b/public/blog/2014/06/09/play-sse-ie/index.html @@ -310,28 +310,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2014/07/02/new-approach/index.html b/public/blog/2014/07/02/new-approach/index.html index 822ea2b2..09ad3007 100644 --- a/public/blog/2014/07/02/new-approach/index.html +++ b/public/blog/2014/07/02/new-approach/index.html @@ -252,28 +252,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2014/07/06/distributed-barometer/index.html b/public/blog/2014/07/06/distributed-barometer/index.html index 11f214bc..010bb0f9 100644 --- a/public/blog/2014/07/06/distributed-barometer/index.html +++ b/public/blog/2014/07/06/distributed-barometer/index.html @@ -263,28 +263,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2014/07/08/hamburg-angularjs-meetup/index.html b/public/blog/2014/07/08/hamburg-angularjs-meetup/index.html index 0794209e..bc82ac76 100644 --- a/public/blog/2014/07/08/hamburg-angularjs-meetup/index.html +++ b/public/blog/2014/07/08/hamburg-angularjs-meetup/index.html @@ -254,28 +254,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2014/07/17/BirdWatch-in-ClojureScript/index.html b/public/blog/2014/07/17/BirdWatch-in-ClojureScript/index.html index c34c3612..aa5e6f9a 100644 --- a/public/blog/2014/07/17/BirdWatch-in-ClojureScript/index.html +++ b/public/blog/2014/07/17/BirdWatch-in-ClojureScript/index.html @@ -279,28 +279,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2014/07/24/birdwatch-cljs-om/index.html b/public/blog/2014/07/24/birdwatch-cljs-om/index.html index 77db89be..9379a59f 100644 --- a/public/blog/2014/07/24/birdwatch-cljs-om/index.html +++ b/public/blog/2014/07/24/birdwatch-cljs-om/index.html @@ -590,28 +590,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2014/08/01/weekly-update/index.html b/public/blog/2014/08/01/weekly-update/index.html index 863b0a60..e6a48ce7 100644 --- a/public/blog/2014/08/01/weekly-update/index.html +++ b/public/blog/2014/08/01/weekly-update/index.html @@ -304,28 +304,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2014/08/04/building-a-geo-aware-link-shortener-with-play-framework/index.html b/public/blog/2014/08/04/building-a-geo-aware-link-shortener-with-play-framework/index.html index 7070ad79..5f7dc9a7 100644 --- a/public/blog/2014/08/04/building-a-geo-aware-link-shortener-with-play-framework/index.html +++ b/public/blog/2014/08/04/building-a-geo-aware-link-shortener-with-play-framework/index.html @@ -450,28 +450,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2014/08/10/weekly-update/index.html b/public/blog/2014/08/10/weekly-update/index.html index f3111a94..e31e6672 100644 --- a/public/blog/2014/08/10/weekly-update/index.html +++ b/public/blog/2014/08/10/weekly-update/index.html @@ -254,28 +254,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2014/08/17/weekly-update/index.html b/public/blog/2014/08/17/weekly-update/index.html index 27c1ffc0..4a7ce31a 100644 --- a/public/blog/2014/08/17/weekly-update/index.html +++ b/public/blog/2014/08/17/weekly-update/index.html @@ -304,28 +304,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2014/08/25/weekly-update/index.html b/public/blog/2014/08/25/weekly-update/index.html index 067ea758..ca5d4fa9 100644 --- a/public/blog/2014/08/25/weekly-update/index.html +++ b/public/blog/2014/08/25/weekly-update/index.html @@ -333,28 +333,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2014/09/03/weekly-update/index.html b/public/blog/2014/09/03/weekly-update/index.html index 95c1135c..df01b212 100644 --- a/public/blog/2014/09/03/weekly-update/index.html +++ b/public/blog/2014/09/03/weekly-update/index.html @@ -290,28 +290,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/2014/09/08/weekly-update/index.html b/public/blog/2014/09/08/weekly-update/index.html index 803c085f..6c9a4228 100644 --- a/public/blog/2014/09/08/weekly-update/index.html +++ b/public/blog/2014/09/08/weekly-update/index.html @@ -427,28 +427,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/archives/index.html b/public/blog/archives/index.html index 9ba3f31c..76e18705 100644 --- a/public/blog/archives/index.html +++ b/public/blog/archives/index.html @@ -467,28 +467,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/page/2/index.html b/public/blog/page/2/index.html index f0bdc0b7..994f45c5 100644 --- a/public/blog/page/2/index.html +++ b/public/blog/page/2/index.html @@ -548,28 +548,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/page/3/index.html b/public/blog/page/3/index.html index aebd2ee0..29a9440e 100644 --- a/public/blog/page/3/index.html +++ b/public/blog/page/3/index.html @@ -547,28 +547,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/blog/page/4/index.html b/public/blog/page/4/index.html index 48c3d5bd..0e9bdca4 100644 --- a/public/blog/page/4/index.html +++ b/public/blog/page/4/index.html @@ -287,28 +287,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/index.html b/public/index.html index 91b3fc95..5ad0e16b 100644 --- a/public/index.html +++ b/public/index.html @@ -546,28 +546,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/reading-lists/index.html b/public/reading-lists/index.html index f7339c05..1cfe60a1 100644 --- a/public/reading-lists/index.html +++ b/public/reading-lists/index.html @@ -184,28 +184,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/reviews/audio-setup/index.html b/public/reviews/audio-setup/index.html index ef91acb4..d8f5853c 100644 --- a/public/reviews/audio-setup/index.html +++ b/public/reviews/audio-setup/index.html @@ -270,28 +270,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/reviews/cleancoder/index.html b/public/reviews/cleancoder/index.html index e6c4b5f7..37061f86 100644 --- a/public/reviews/cleancoder/index.html +++ b/public/reviews/cleancoder/index.html @@ -220,28 +220,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/reviews/index.html b/public/reviews/index.html index be5ad7b1..f13152b8 100644 --- a/public/reviews/index.html +++ b/public/reviews/index.html @@ -199,28 +199,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/reviews/sony-a7/index.html b/public/reviews/sony-a7/index.html index 77526322..99de9556 100644 --- a/public/reviews/sony-a7/index.html +++ b/public/reviews/sony-a7/index.html @@ -238,28 +238,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/reviews/zeiss-24-70/index.html b/public/reviews/zeiss-24-70/index.html index 21e74813..19c68c98 100644 --- a/public/reviews/zeiss-24-70/index.html +++ b/public/reviews/zeiss-24-70/index.html @@ -244,28 +244,20 @@

Recent Posts

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
+ + +

Subscribe

diff --git a/public/sitemap.xml b/public/sitemap.xml index 292467c2..4c8630a3 100644 --- a/public/sitemap.xml +++ b/public/sitemap.xml @@ -146,19 +146,19 @@ http://matthiasnehlsen.com/blog/2014/09/08/weekly-update/ - 2014-09-09T17:47:20+02:00 + 2014-09-15T16:10:56+02:00 http://matthiasnehlsen.com/about/ - 2014-09-11T17:07:17+02:00 + 2014-09-15T16:10:56+02:00 http://matthiasnehlsen.com/blog/archives/ - 2014-09-09T17:47:20+02:00 + 2014-09-15T16:10:56+02:00 http://matthiasnehlsen.com/ - 2014-09-09T17:47:20+02:00 + 2014-09-15T16:10:56+02:00 http://matthiasnehlsen.com/reading-lists/ diff --git a/source/_includes/custom/asides/github.html b/source/_includes/custom/asides/github.html index 0c8a554e..536d053b 100755 --- a/source/_includes/custom/asides/github.html +++ b/source/_includes/custom/asides/github.html @@ -1,25 +1,17 @@

GitHub Repos

    -
  • BirdWatch +
  • BirdWatch

    Reactive web application using Play Framework 2.2 for consuming and visualizing live Tweets from the Twitter Streaming API.

    -
  • -
  • sse-chat +
  • sse-chat

    Chat example app using Server Sent Events plus REST calls. Client side implementations both in AngularJS and in React.

    -
  • -
  • sse-perf -

    Reactive web application using Play Framework 2.1 for load testing Server Sent Event streams (or other HTTP connections that deliver information in chunks).

    - -
  • -
  • Clojure-Resources  +
  • Clojure-Resources

    Compilation of useful links and resources for learning Clojure and ClojureScript

    -
-
\ No newline at end of file +
+ + + \ No newline at end of file