clementine 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (139) hide show
  1. data/.gitignore +1 -0
  2. data/Gemfile +4 -2
  3. data/LICENSE.txt +22 -0
  4. data/README.md +11 -6
  5. data/Rakefile +22 -0
  6. data/clementine.gemspec +2 -1
  7. data/ext/clojure-clojurescript-bef56a7/.gitignore +13 -0
  8. data/ext/clojure-clojurescript-bef56a7/Clojurescript.iml +12 -0
  9. data/ext/clojure-clojurescript-bef56a7/README.md +29 -0
  10. data/ext/clojure-clojurescript-bef56a7/benchmark/cljs/benchmark_runner.cljs +155 -0
  11. data/ext/clojure-clojurescript-bef56a7/bin/cljsc +21 -0
  12. data/ext/clojure-clojurescript-bef56a7/bin/cljsc.bat +18 -0
  13. data/{vendor/assets → ext/clojure-clojurescript-bef56a7}/bin/cljsc.clj +0 -0
  14. data/ext/clojure-clojurescript-bef56a7/devnotes/README.org +35 -0
  15. data/ext/clojure-clojurescript-bef56a7/devnotes/bcrepl.org +13 -0
  16. data/ext/clojure-clojurescript-bef56a7/devnotes/cljs.org +500 -0
  17. data/ext/clojure-clojurescript-bef56a7/devnotes/corelib.org +583 -0
  18. data/ext/clojure-clojurescript-bef56a7/devnotes/day1.org +203 -0
  19. data/ext/clojure-clojurescript-bef56a7/devnotes/day2.org +44 -0
  20. data/ext/clojure-clojurescript-bef56a7/devnotes/talk.org +126 -0
  21. data/ext/clojure-clojurescript-bef56a7/devnotes/testing +13 -0
  22. data/ext/clojure-clojurescript-bef56a7/devnotes/todo.org +121 -0
  23. data/ext/clojure-clojurescript-bef56a7/epl-v10.html +261 -0
  24. data/ext/clojure-clojurescript-bef56a7/pom.template.xml +88 -0
  25. data/ext/clojure-clojurescript-bef56a7/samples/dom/.gitignore +2 -0
  26. data/ext/clojure-clojurescript-bef56a7/samples/dom/src/dom/test.cljs +48 -0
  27. data/ext/clojure-clojurescript-bef56a7/samples/dom/test.html +30 -0
  28. data/ext/clojure-clojurescript-bef56a7/samples/hello-js/.gitignore +2 -0
  29. data/ext/clojure-clojurescript-bef56a7/samples/hello-js/README.md +53 -0
  30. data/ext/clojure-clojurescript-bef56a7/samples/hello-js/externed-lib.js +7 -0
  31. data/ext/clojure-clojurescript-bef56a7/samples/hello-js/externs.js +3 -0
  32. data/ext/clojure-clojurescript-bef56a7/samples/hello-js/hello-extern.html +14 -0
  33. data/ext/clojure-clojurescript-bef56a7/samples/hello-js/hello-js-dev.html +18 -0
  34. data/ext/clojure-clojurescript-bef56a7/samples/hello-js/hello-js.html +17 -0
  35. data/ext/clojure-clojurescript-bef56a7/samples/hello-js/my-external-lib.js +3 -0
  36. data/ext/clojure-clojurescript-bef56a7/samples/hello-js/src/hello-js/core.cljs +9 -0
  37. data/ext/clojure-clojurescript-bef56a7/samples/hello-js/src/hello-js/extern-example.cljs +5 -0
  38. data/ext/clojure-clojurescript-bef56a7/samples/hello/.gitignore +2 -0
  39. data/ext/clojure-clojurescript-bef56a7/samples/hello/README.md +34 -0
  40. data/ext/clojure-clojurescript-bef56a7/samples/hello/hello-dev.html +18 -0
  41. data/ext/clojure-clojurescript-bef56a7/samples/hello/hello.html +13 -0
  42. data/ext/clojure-clojurescript-bef56a7/samples/hello/src/hello/core.cljs +8 -0
  43. data/ext/clojure-clojurescript-bef56a7/samples/hello/src/hello/foo/bar.cljs +4 -0
  44. data/ext/clojure-clojurescript-bef56a7/samples/nodehello.cljs +18 -0
  45. data/ext/clojure-clojurescript-bef56a7/samples/nodels.cljs +17 -0
  46. data/ext/clojure-clojurescript-bef56a7/samples/repl/.gitignore +2 -0
  47. data/ext/clojure-clojurescript-bef56a7/samples/repl/README.md +101 -0
  48. data/ext/clojure-clojurescript-bef56a7/samples/repl/index.html +27 -0
  49. data/ext/clojure-clojurescript-bef56a7/samples/repl/src/repl/test.cljs +73 -0
  50. data/ext/clojure-clojurescript-bef56a7/samples/twitterbuzz/.gitignore +2 -0
  51. data/ext/clojure-clojurescript-bef56a7/samples/twitterbuzz/README.md +42 -0
  52. data/ext/clojure-clojurescript-bef56a7/samples/twitterbuzz/index-advanced.html +80 -0
  53. data/ext/clojure-clojurescript-bef56a7/samples/twitterbuzz/index.html +88 -0
  54. data/ext/clojure-clojurescript-bef56a7/samples/twitterbuzz/reset.css +48 -0
  55. data/ext/clojure-clojurescript-bef56a7/samples/twitterbuzz/src/twitterbuzz/anneal.cljs +66 -0
  56. data/ext/clojure-clojurescript-bef56a7/samples/twitterbuzz/src/twitterbuzz/core.cljs +307 -0
  57. data/ext/clojure-clojurescript-bef56a7/samples/twitterbuzz/src/twitterbuzz/dom-helpers.cljs +95 -0
  58. data/ext/clojure-clojurescript-bef56a7/samples/twitterbuzz/src/twitterbuzz/layout.cljs +100 -0
  59. data/ext/clojure-clojurescript-bef56a7/samples/twitterbuzz/src/twitterbuzz/leaderboard.cljs +40 -0
  60. data/ext/clojure-clojurescript-bef56a7/samples/twitterbuzz/src/twitterbuzz/radial.cljs +91 -0
  61. data/ext/clojure-clojurescript-bef56a7/samples/twitterbuzz/src/twitterbuzz/showgraph.cljs +121 -0
  62. data/ext/clojure-clojurescript-bef56a7/samples/twitterbuzz/src/twitterbuzz/timeline.cljs +39 -0
  63. data/ext/clojure-clojurescript-bef56a7/samples/twitterbuzz/style.css +301 -0
  64. data/ext/clojure-clojurescript-bef56a7/samples/twitterbuzz/test_data.txt +1 -0
  65. data/ext/clojure-clojurescript-bef56a7/samples/twitterbuzz/tweet_maps.txt +1 -0
  66. data/ext/clojure-clojurescript-bef56a7/script/benchmark +30 -0
  67. data/ext/clojure-clojurescript-bef56a7/script/bootstrap +70 -0
  68. data/ext/clojure-clojurescript-bef56a7/script/browser-repl +16 -0
  69. data/ext/clojure-clojurescript-bef56a7/script/build +59 -0
  70. data/ext/clojure-clojurescript-bef56a7/script/clean +5 -0
  71. data/ext/clojure-clojurescript-bef56a7/script/closure-library-release/google-closure-library-third-party.pom.template +59 -0
  72. data/ext/clojure-clojurescript-bef56a7/script/closure-library-release/google-closure-library.pom.template +54 -0
  73. data/ext/clojure-clojurescript-bef56a7/script/closure-library-release/make-closure-library-jars.sh +87 -0
  74. data/ext/clojure-clojurescript-bef56a7/script/compile +41 -0
  75. data/ext/clojure-clojurescript-bef56a7/script/repl +13 -0
  76. data/ext/clojure-clojurescript-bef56a7/script/repl.bat +13 -0
  77. data/ext/clojure-clojurescript-bef56a7/script/repljs +15 -0
  78. data/ext/clojure-clojurescript-bef56a7/script/repljs.bat +14 -0
  79. data/ext/clojure-clojurescript-bef56a7/script/test +38 -0
  80. data/ext/clojure-clojurescript-bef56a7/script/test-compile +30 -0
  81. data/ext/clojure-clojurescript-bef56a7/src/clj/cljs/analyzer.clj +975 -0
  82. data/{vendor/assets → ext/clojure-clojurescript-bef56a7}/src/clj/cljs/closure.clj +173 -73
  83. data/ext/clojure-clojurescript-bef56a7/src/clj/cljs/compiler.clj +1081 -0
  84. data/ext/clojure-clojurescript-bef56a7/src/clj/cljs/core.clj +1158 -0
  85. data/{vendor/assets → ext/clojure-clojurescript-bef56a7}/src/clj/cljs/repl.clj +51 -25
  86. data/ext/clojure-clojurescript-bef56a7/src/clj/cljs/repl/browser.clj +258 -0
  87. data/ext/clojure-clojurescript-bef56a7/src/clj/cljs/repl/reflect.clj +75 -0
  88. data/{vendor/assets → ext/clojure-clojurescript-bef56a7}/src/clj/cljs/repl/rhino.clj +6 -5
  89. data/ext/clojure-clojurescript-bef56a7/src/clj/cljs/repl/server.clj +173 -0
  90. data/ext/clojure-clojurescript-bef56a7/src/clj/cljs/tagged_literals.clj +30 -0
  91. data/ext/clojure-clojurescript-bef56a7/src/cljs/cljs/core.cljs +7197 -0
  92. data/{vendor/assets → ext/clojure-clojurescript-bef56a7}/src/cljs/cljs/nodejs.cljs +1 -1
  93. data/{vendor/assets → ext/clojure-clojurescript-bef56a7}/src/cljs/cljs/nodejs_externs.js +0 -0
  94. data/{vendor/assets → ext/clojure-clojurescript-bef56a7}/src/cljs/cljs/nodejscli.cljs +1 -1
  95. data/ext/clojure-clojurescript-bef56a7/src/cljs/cljs/reader.cljs +551 -0
  96. data/{vendor/assets → ext/clojure-clojurescript-bef56a7}/src/cljs/clojure/browser/dom.cljs +59 -13
  97. data/{vendor/assets → ext/clojure-clojurescript-bef56a7}/src/cljs/clojure/browser/event.cljs +0 -0
  98. data/{vendor/assets → ext/clojure-clojurescript-bef56a7}/src/cljs/clojure/browser/net.cljs +8 -7
  99. data/{vendor/assets → ext/clojure-clojurescript-bef56a7}/src/cljs/clojure/browser/repl.cljs +2 -2
  100. data/ext/clojure-clojurescript-bef56a7/src/cljs/clojure/core/reducers.cljs +298 -0
  101. data/ext/clojure-clojurescript-bef56a7/src/cljs/clojure/data.cljs +162 -0
  102. data/ext/clojure-clojurescript-bef56a7/src/cljs/clojure/reflect.cljs +48 -0
  103. data/{vendor/assets → ext/clojure-clojurescript-bef56a7}/src/cljs/clojure/set.cljs +0 -0
  104. data/{vendor/assets → ext/clojure-clojurescript-bef56a7}/src/cljs/clojure/string.cljs +4 -10
  105. data/{vendor/assets → ext/clojure-clojurescript-bef56a7}/src/cljs/clojure/walk.cljs +0 -0
  106. data/{vendor/assets → ext/clojure-clojurescript-bef56a7}/src/cljs/clojure/zip.cljs +0 -0
  107. data/ext/clojure-clojurescript-bef56a7/test/cljs/cljs/binding_test.cljs +7 -0
  108. data/ext/clojure-clojurescript-bef56a7/test/cljs/cljs/binding_test_other_ns.cljs +3 -0
  109. data/ext/clojure-clojurescript-bef56a7/test/cljs/cljs/core_test.cljs +1678 -0
  110. data/ext/clojure-clojurescript-bef56a7/test/cljs/cljs/import_test.cljs +11 -0
  111. data/ext/clojure-clojurescript-bef56a7/test/cljs/cljs/import_test/foo.cljs +5 -0
  112. data/ext/clojure-clojurescript-bef56a7/test/cljs/cljs/letfn_test.cljs +19 -0
  113. data/ext/clojure-clojurescript-bef56a7/test/cljs/cljs/macro_test.cljs +6 -0
  114. data/ext/clojure-clojurescript-bef56a7/test/cljs/cljs/macro_test/macros.clj +5 -0
  115. data/ext/clojure-clojurescript-bef56a7/test/cljs/cljs/ns_test.cljs +14 -0
  116. data/ext/clojure-clojurescript-bef56a7/test/cljs/cljs/ns_test/bar.cljs +3 -0
  117. data/ext/clojure-clojurescript-bef56a7/test/cljs/cljs/ns_test/foo.cljs +7 -0
  118. data/ext/clojure-clojurescript-bef56a7/test/cljs/cljs/reader_test.cljs +124 -0
  119. data/ext/clojure-clojurescript-bef56a7/test/cljs/clojure/data_test.cljs +22 -0
  120. data/ext/clojure-clojurescript-bef56a7/test/cljs/clojure/string_test.cljs +97 -0
  121. data/ext/clojure-clojurescript-bef56a7/test/cljs/foo/ns_shadow_test.cljs +9 -0
  122. data/ext/clojure-clojurescript-bef56a7/test/cljs/test_runner.cljs +26 -0
  123. data/lib/clementine.rb +3 -24
  124. data/lib/clementine/clojurescript_engine.rb +9 -48
  125. data/lib/clementine/clojurescript_engine/base.rb +15 -0
  126. data/lib/clementine/clojurescript_engine/jruby.rb +46 -0
  127. data/lib/clementine/{clojurescript_engine_mri.rb → clojurescript_engine/mri.rb} +17 -10
  128. data/lib/clementine/version.rb +1 -1
  129. data/test/clojurescript_engine_test.rb +36 -14
  130. metadata +177 -83
  131. data/vendor/assets/lib/clojure.jar +0 -0
  132. data/vendor/assets/lib/compiler.jar +0 -0
  133. data/vendor/assets/lib/goog.jar +0 -0
  134. data/vendor/assets/lib/js.jar +0 -0
  135. data/vendor/assets/src/clj/cljs/compiler.clj +0 -1341
  136. data/vendor/assets/src/clj/cljs/core.clj +0 -702
  137. data/vendor/assets/src/clj/cljs/repl/browser.clj +0 -341
  138. data/vendor/assets/src/cljs/cljs/core.cljs +0 -3330
  139. data/vendor/assets/src/cljs/cljs/reader.cljs +0 -360
@@ -0,0 +1,39 @@
1
+ ; Copyright (c) Rich Hickey. All rights reserved.
2
+ ; The use and distribution terms for this software are covered by the
3
+ ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4
+ ; which can be found in the file epl-v10.html at the root of this distribution.
5
+ ; By using this software in any fashion, you are agreeing to be bound by
6
+ ; the terms of this license.
7
+ ; You must not remove this notice, or any other, from this software.
8
+
9
+ (ns twitterbuzz.timeline
10
+ (:require [twitterbuzz.core :as buzz]
11
+ [twitterbuzz.dom-helpers :as dom]))
12
+
13
+ (defn timeline-element
14
+ "Return a timeline dom element for the given tweet."
15
+ [tweet]
16
+ (dom/build [:div.tweet
17
+ [:img.profile-pic {:src (:profile_image_url tweet)}]
18
+ [:div.user-name (:from_user tweet)]
19
+ [:div.tweet-text (dom/html (buzz/markup (:text tweet)))]]))
20
+
21
+ (defn update-status
22
+ "Set the current tweet count in the status box."
23
+ [_]
24
+ (buzz/set-tweet-status :okay (str (:tweet-count @buzz/state) " tweets")))
25
+
26
+ (defn update-timeline
27
+ "Given a list of tweets in chronological order, add them to the top
28
+ of the list view."
29
+ [tweets]
30
+ (doseq [tweet (reverse tweets)]
31
+ (dom/insert-at (dom/get-element :timeline-content)
32
+ (timeline-element tweet)
33
+ 0)))
34
+
35
+ ;; Register event listeners.
36
+
37
+ (buzz/register :track-clicked #(dom/remove-children :timeline-content))
38
+ (buzz/register :new-tweets update-timeline)
39
+ (buzz/register :new-tweets update-status)
@@ -0,0 +1,301 @@
1
+ /* TwitterBuzz: A ClojureScript Demo */
2
+
3
+ /* Default Tags */
4
+ body {
5
+ font-family: Helvetica Neue, Arial, Lucida Grande, sans-serif;
6
+ font-size: 13px;
7
+ line-height: 1.3;
8
+ }
9
+ h1 { font-size: 24px; }
10
+ h2 { font-size: 20px; }
11
+ p { font-size: 12px; }
12
+
13
+ /* General Structure */
14
+ section#header-inner, footer, section#status-bar, section#main {
15
+ /* width: 960px; */
16
+ margin: 0 auto;
17
+ padding: 0 20px;
18
+ min-width: 960px;
19
+ }
20
+
21
+ /* Header */
22
+ header {
23
+ height: 80px;
24
+ border-bottom: 1px solid #ccc;
25
+ position: relative;
26
+ }
27
+
28
+ #header-inner h1 {
29
+ padding-top: 20px;
30
+ }
31
+
32
+ #header-inner div {
33
+ padding-left: 10px;
34
+ }
35
+
36
+ #clojure {
37
+ position: absolute;
38
+ top: 15px;
39
+ right: 15px;
40
+ margin: 0;
41
+ padding: 0;
42
+ }
43
+
44
+ /* Status Bar */
45
+ #status-bar-wrap {
46
+ padding: 10px 0;
47
+ height: 30px;
48
+ border-bottom: 1px solid #ccc;
49
+ }
50
+
51
+ #status-bar {
52
+ }
53
+
54
+ #tweet-status {
55
+ float: right;
56
+ padding: 4px 7px 4px 7px;
57
+ margin-right: 10px;
58
+ border: 1px solid #ddd;
59
+ background-color: #e7e7e7;
60
+ }
61
+ #status-bar .okay {
62
+ border-color: #ddd;
63
+ background-color: #e7e7e7;
64
+ }
65
+ #status-bar .error {
66
+ border-color: #e00;
67
+ background-color: #c00;
68
+ }
69
+ #status-bar a.reset-search {
70
+ float: right;
71
+ padding-top: 5px;
72
+ }
73
+
74
+ /* Main Body */
75
+ #main-wrap {
76
+ /*border-bottom: 1px solid #ccc;*/
77
+ position: absolute;
78
+ top: 132px;
79
+ bottom: 0;
80
+ overflow: hidden;
81
+ min-height: 540px;
82
+ width: 100%;
83
+ }
84
+
85
+ #main {
86
+ height: 100%;
87
+ position: relative;
88
+ }
89
+
90
+ #network {
91
+ height: 100%;
92
+ min-width: 640px;
93
+ left: 20px;
94
+ right: 300px;
95
+ /*padding: 10px 10px 0 0;*/
96
+ float: left;
97
+ position: absolute;
98
+ }
99
+
100
+ #avatar-hover {
101
+ position: absolute;
102
+ width: 280px;
103
+ background: #fff;
104
+ border: 1px solid #ccc;
105
+ background-color: #fff;
106
+ -moz-border-radius: 3px;
107
+ -webkit-border-radius: 3px;
108
+ border-radius: 3px;
109
+ }
110
+
111
+ #leaderboard {
112
+ width: 280px;
113
+ height: 100px;
114
+ border-left: 1px solid #ccc;
115
+ /*padding: 10px;*/
116
+ position: absolute;
117
+ right: 0;
118
+ }
119
+
120
+ #timeline {
121
+ width: 280px;
122
+ top: 100px;
123
+ bottom: 0;
124
+ border-left: 1px solid #ccc;
125
+ padding: 0;
126
+ position: absolute;
127
+ right: 0;
128
+ overflow: hidden;
129
+ }
130
+
131
+ /* Leaderboard */
132
+ #leaderboard-content {
133
+ position: relative;
134
+ }
135
+
136
+ #leaderboard h2 {
137
+ padding-left: 10px;
138
+ }
139
+
140
+ #leaderboard .tweet {
141
+ float: left;
142
+ z-index: 100;
143
+ margin: 0;
144
+ }
145
+
146
+ #leaderboard .tweet-details {
147
+ position: absolute;
148
+ top: 56px;
149
+ left: 0;
150
+ background-color: #e6f3f8;
151
+ z-index: 100;
152
+ display: none;
153
+ padding: 10px;
154
+ width: 260px;
155
+ border-bottom: 1px solid #9cbbc6;
156
+ }
157
+ #leaderboard .profile-pic {
158
+ width: 48px;
159
+ height: 48px;
160
+ border: 4px solid #fff;
161
+ }
162
+ #leaderboard .user-name {
163
+ font-weight: bold;
164
+ }
165
+ #leaderboard .tweet:hover .tweet-details {
166
+ display: block;
167
+ }
168
+ #leaderboard .tweet:hover .profile-pic {
169
+ border-color: #e6f3f8;
170
+ }
171
+
172
+ /* Timeline */
173
+ #timeline-content {
174
+ position: absolute;
175
+ top: 30px;
176
+ bottom: 0;
177
+ width: 280px;
178
+ overflow: auto;
179
+ }
180
+
181
+ #timeline h2 {
182
+ padding-left: 10px;
183
+ }
184
+
185
+ .tweetbox .tweet {
186
+ clear: both;
187
+ padding: 10px;
188
+ border-bottom: 1px solid #b3b3b3;
189
+ overflow: auto;
190
+ font-size: 12px;
191
+ }
192
+
193
+ .tweetbox .profile-pic {
194
+ width: 48px;
195
+ height: 48px;
196
+ float: left;
197
+ margin-top: 3px;
198
+ -moz-border-radius: 3px;
199
+ -webkit-border-radius: 3px;
200
+ border-radius: 3px;
201
+ }
202
+ .tweetbox .user-name {
203
+ font-weight: bold;
204
+ }
205
+ .tweetbox .tweet-text {
206
+ }
207
+ .tweetbox .user-name, .tweetbox .tweet-text {
208
+ margin-left: 58px;
209
+ }
210
+
211
+ /* form elements */
212
+ input.search {
213
+ font-size: 18px;
214
+ border: 1px solid #ccc;
215
+ background-color: #fff;
216
+ color: #456ccf;
217
+ padding: 3px 5px;
218
+ outline: 0;
219
+ margin: 0;
220
+ -moz-border-radius: 3px;
221
+ -webkit-border-radius: 3px;
222
+ border-radius: 3px;
223
+ }
224
+ input.search:hover, input.search:focus {
225
+ border-color: #999;
226
+ }
227
+
228
+
229
+ /* buttons via http://webdesignerwall.com/tutorials/css3-gradient-buttons */
230
+ /* button
231
+ ---------------------------------------------- */
232
+ .button {
233
+ display: inline-block;
234
+ zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
235
+ *display: inline;
236
+ vertical-align: baseline;
237
+ margin: 0 2px;
238
+ outline: none;
239
+ cursor: pointer;
240
+ text-align: center;
241
+ text-decoration: none;
242
+ font: 14px/100% Helvetica Neue, Arial, Lucida Grande, sans-serif;
243
+ padding: .5em 2em .55em;
244
+ text-shadow: 0 1px 1px rgba(0,0,0,.3);
245
+ -webkit-border-radius: .5em;
246
+ -moz-border-radius: .5em;
247
+ border-radius: .5em;
248
+ -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
249
+ -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
250
+ box-shadow: 0 1px 2px rgba(0,0,0,.2);
251
+ }
252
+ .button:hover {
253
+ text-decoration: none;
254
+ }
255
+ .button:active {
256
+ position: relative;
257
+ top: 1px;
258
+ }
259
+
260
+ .bigrounded {
261
+ -webkit-border-radius: 2em;
262
+ -moz-border-radius: 2em;
263
+ border-radius: 2em;
264
+ }
265
+ .medium {
266
+ font-size: 12px;
267
+ padding: .4em 1.5em .42em;
268
+ }
269
+ .small {
270
+ font-size: 11px;
271
+ padding: .2em 1em .275em;
272
+ }
273
+
274
+ /* color styles
275
+ ---------------------------------------------- */
276
+
277
+ /* green */
278
+ .green {
279
+ color: #e8f0de;
280
+ border: solid 1px #538312;
281
+ background: #64991e;
282
+ background: -webkit-gradient(linear, left top, left bottom, from(#7db72f), to(#4e7d0e));
283
+ background: -moz-linear-gradient(top, #7db72f, #4e7d0e);
284
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7db72f', endColorstr='#4e7d0e');
285
+ }
286
+ .green:hover {
287
+ background: #538018;
288
+ background: -webkit-gradient(linear, left top, left bottom, from(#6b9d28), to(#436b0c));
289
+ background: -moz-linear-gradient(top, #6b9d28, #436b0c);
290
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6b9d28', endColorstr='#436b0c');
291
+ }
292
+ .green:active {
293
+ color: #e8f0de;/*#a9c08c*/
294
+ background: -webkit-gradient(linear, left top, left bottom, from(#4e7d0e), to(#7db72f));
295
+ background: -moz-linear-gradient(top, #4e7d0e, #7db72f);
296
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4e7d0e', endColorstr='#7db72f');
297
+ }
298
+
299
+
300
+ /* Utilities */
301
+ .clear {clear: both;}
@@ -0,0 +1 @@
1
+ {"usaturn" {:image-url "http://a0.twimg.com/profile_images/1365715199/md_normal.png", :last-tweet "うーん、尼から「プログラミングClojure」と「Scheme修行」が届いてしまった。どう考えても他に優先度高い読み物がめっちゃ積んであるはずなのに。", :mentions {}}, "halfageekinfo" {:image-url "http://a1.twimg.com/profile_images/1324487726/dr_bunsen_honeydew_normal.jpg", :last-tweet "Clojure Demo http://is.gd/WznCHn #functional", :mentions {}}, "ebaxt" {:image-url "http://a1.twimg.com/profile_images/1359531299/gravatar_me_normal.jpeg", :last-tweet "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :mentions {}}, "havvy" {:image-url "http://a1.twimg.com/profile_images/321918125/twitterProfilePhoto_normal.jpg", :last-tweet "#Clojure > C any day!", :mentions {}}, "lnostdal" {:image-url "http://a2.twimg.com/profile_images/1146297106/a539e214c9980ff4b53ad5ca9347aa91_normal.jpeg", :last-tweet "Clojure agents turn out to be very handy; state is needed in the end.", :mentions {}}, "djspiewak" {:image-url "http://a0.twimg.com/profile_images/746976711/angular-final_normal.jpg", :last-tweet "Does Clojure have a Sinatra clone?", :mentions {"redinger" 1, "ambrosebs" 2, "sbtourist" 2, "fogus" 2, "dnwiebe" 2, "jboner" 2, "romanroe" 2, "icey" 2}}, "tobsn" {:image-url "http://a2.twimg.com/profile_images/1364411587/yr40_normal.png", :last-tweet "Creating a Query DSL using Clojure and MongoDB http://tob.sn/qgCxkm #mongodb", :mentions {"bsabrin" 2}}, "CzarneckiD" {:image-url "http://a3.twimg.com/profile_images/1156755747/head_trees_normal.jpg", :last-tweet "@greymouser I need to start writing some Clojure I guess :)", :mentions {}}, "sbtourist" {:image-url "http://a0.twimg.com/profile_images/72494229/Cryer_Black_normal.jpg", :last-tweet "Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :mentions {"ebaxt" 2, "jboner" 2, "icylisper" 2, "kumarshantanu" 2, "mamirm" 2, "talios" 2, "tim_yates" 2, "aloiscochard" 2, "ambrosebs" 2, "pedroteixeira" 2}}, "jboner" {:image-url "http://a2.twimg.com/profile_images/1395654712/jonas_bw_small_normal.JPG", :last-tweet "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :mentions {}}, "cookrn" {:image-url "http://a3.twimg.com/profile_images/1256225996/Screen_shot_2011-02-26_at_7.42.17_PM_normal.png", :last-tweet "wrote some clojure today and i think i liked it. thanks @napple, thanks a lot.", :mentions {"napple" 2}}, "mikkelbd" {:image-url "http://a0.twimg.com/profile_images/1360005141/Mikkel_normal.jpg", :last-tweet "@djspiewak #Noir for #Clojure should be Sinatra-ish. www.webnoir.org. A tip some time ago from @gnab, a colleague of mine...", :mentions {}}, "andrewdotcom" {:image-url "http://a2.twimg.com/profile_images/1373391701/eightbit-3cf59806-d96b-4b79-948e-f4382cf322ea_normal.png", :last-tweet "Talking about kanban, clojure and hadoop later today. I'm starting to sound like ring-a-ding from the Ant Hill Mob. #wackyracesnostalgia", :mentions {}}, "bsabrin" {:image-url "http://a0.twimg.com/profile_images/1268470086/ben_normal.jpg", :last-tweet "RT @tobsn: Creating a Query DSL using Clojure and MongoDB http://tob.sn/qgCxkm #mongodb", :mentions {}}, "icylisper" {:image-url "http://a0.twimg.com/profile_images/1430445595/gravti_normal.jpg", :last-tweet "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :mentions {}}, "yueliufeeds" {:image-url "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", :last-tweet "This weekend in the Intertweets (Jun 17th Ed): - Clojure/core working hard today to get some finishing touches on… http://goo.gl/fb/Sy25i", :mentions {}}, "aoi0308" {:image-url "http://a0.twimg.com/profile_images/512308555/antivirus_normal.png", :last-tweet "頃合いを見て 7つの言語 と Groovy の本を買いたいな。Clojureの日本語本は新しいの出ないのかなー", :mentions {}}, "billrobertson42" {:image-url "http://a2.twimg.com/profile_images/469612905/Photo_on_2009-10-13_at_21.44_normal.jpg", :last-tweet "First attempt at using Clojure for something non-trivial. Every line a struggle. :-)", :mentions {}}, "torstenek" {:image-url "http://a1.twimg.com/profile_images/860569960/n578523522_9696_normal.jpg", :last-tweet "Web development in a the LISP-derived language Clojure. http://sgp.cm/30ac36", :mentions {}}, "sorenmacbeth" {:image-url "http://a2.twimg.com/profile_images/1281923269/image_normal.jpg", :last-tweet "I'd love for any #clojure experts to check out my tiny library and point how it could be better/faster/more idiomatic: http://t.co/REyJwsv", :mentions {}}, "asenchi" {:image-url "http://a0.twimg.com/profile_images/1283790647/220px-Screamadelica_album_cover_normal.jpg", :last-tweet "@wunki_ Nice, I am sure you heard, but a reminder: http://bit.ly/n4TjJJ", :mentions {"wunki_" 1}}, "cgrand" {:image-url "http://a1.twimg.com/profile_images/195831099/idCarre_normal.jpg", :last-tweet "RT @ambrosebs: Introduction to Logic Programming with #Clojure core.logic http://t.co/GQvXbTe Any feedback or corrections most welcome. Enjoy!", :mentions {}}, "axna" {:image-url "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", :last-tweet "clojure.java.jdbc 0.0.4: I've been a bit lapse in announcing new versions on my blog so, to rectify that, this p... http://bit.ly/poqehJ", :mentions {}}, "kumarshantanu" {:image-url "http://a0.twimg.com/profile_images/209965412/ep_normal.jpg", :last-tweet "RT @ambrosebs: Introduction to Logic Programming with #Clojure core.logic http://t.co/GQvXbTe Any feedback or corrections most welcome. Enjoy!", :mentions {}}, "StefanRoock" {:image-url "http://a0.twimg.com/profile_images/835941331/SR_best_quadrat_klein_normal.jpg", :last-tweet "RT @pcalcado: ha! just found the perfect excuse to stop the scala project and start a new clojure-heroku one!", :mentions {}}, "suzutreeadd1" {:image-url "http://a3.twimg.com/profile_images/1302608902/DSC01386_normal.JPG", :last-tweet "clojureの勉強している", :mentions {}}, "mamirm" {:image-url "http://a1.twimg.com/profile_images/1156505711/khelg-big_normal.jpg", :last-tweet "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :mentions {}}, "raygao" {:image-url "http://a2.twimg.com/profile_images/1202168233/P1090364_normal.jpg", :last-tweet "Clojure vs. Scalable vs. Erlang vs. F# vs. Lisp, which one is a better functional language? Anyone knows, #language #programming", :mentions {}}, "romanroe" {:image-url "http://a3.twimg.com/profile_images/1154895054/9d5c1949-3722-4eff-84a6-a46a7fc6db46_normal.png", :last-tweet "RT @kyleburton: Released my first Leiningen Plugin (Clojure, documentation build automation) :: kyleburton/lein-margauto -... http://tumblr.com/x1e3kd6nr9", :mentions {"dnwiebe" 2, "jboner" 2}}, "daniellaguilarb" {:image-url "http://a0.twimg.com/profile_images/1427637154/1309881183_jcaro-50029_normal.jpg", :last-tweet "Opinion: Why You Might Want To Consider Java And/Or Clojure For Your Next Project http://t.co/hsDMMl7", :mentions {}}, "dnwiebe" {:image-url "http://a1.twimg.com/profile_images/213714456/Dan_Wiebe_normal.jpg", :last-tweet "RT @romanroe: @djspiewak "Does Clojure have a Sinatra clone?" A: Take a look at Noir http://www.webnoir.org/", :mentions {}}, "strangeloop_stl" {:image-url "http://a3.twimg.com/profile_images/1227482831/strange_loop_square_low_color_normal.jpg", :last-tweet "Strange Loop podcast #2 with @bmizerany and @nzoschke of Heroku on Matz, Clojure, and more... http://bit.ly/o1CgZS", :mentions {}}, "napple" {:image-url "http://a3.twimg.com/profile_images/636601474/profilepic2_300x300_normal.jpg", :last-tweet "RT @cookrn "wrote some clojure today and i think i liked it. thanks @napple, thanks a lot." http://t.co/sgMWtMc", :mentions {"cookrn" 1, "napple" 2}}, "cooldaemon" {:image-url "http://a0.twimg.com/profile_images/1248645753/my_picture_normal.jpg", :last-tweet "@kenji_rikitake @voluntas Clojure なら Android でも動きますしね。継続に関しては Gauche の方が使い勝手が良いかなーと思ってます。", :mentions {}}, "talios" {:image-url "http://a3.twimg.com/profile_images/1348374565/shaggytal_normal.png", :last-tweet "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :mentions {}}, "pmn_" {:image-url "http://a2.twimg.com/profile_images/1162982195/robot1_normal.jpg", :last-tweet "[toread] Clojure/core — All Clojure-Conj Videos Available: http://bit.ly/q55ksL", :mentions {}}, "map_it" {:image-url "http://a3.twimg.com/profile_images/1416979654/5712240313_7eafa675a5_b_normal.jpg", :last-tweet "RT @fogus: RT @kyleburton Released my first Leiningen Plugin (Clojure, documentation build automation) kyleburton/lein-margauto http://bit.ly/oAR704", :mentions {}}, "icey" {:image-url "http://a2.twimg.com/profile_images/1288377517/dot_normal.png", :last-tweet "@djspiewak http://webnoir.org is built on top of Compojure (and other Clojure web tools), and pretty easy to get started with.", :mentions {}}, "otfrom" {:image-url "http://a2.twimg.com/profile_images/1398798564/bld-summer-clj-3-sq_normal.jpg", :last-tweet "RT @kyleburton: Released my first Leiningen Plugin (Clojure, documentation build automation) :: kyleburton/lein-margauto -... http://tumblr.com/x1e3kd6nr9", :mentions {}}, "tsubame959" {:image-url "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", :last-tweet ""clooj, a small IDE for clojure" http://t.co/iEuBV4z http://t.co/FD6oJpk", :mentions {}}, "thattommyhall" {:image-url "http://a3.twimg.com/profile_images/1202902011/avatar_normal.gif", :last-tweet "RT @strangeloop_stl: Strange Loop podcast #2 with @bmizerany and @nzoschke of Heroku on Matz, Clojure, and more... http://bit.ly/o1CgZS", :mentions {}}, "doxaras" {:image-url "http://a2.twimg.com/profile_images/1427861699/profile_pc_normal.jpg", :last-tweet "a web geek's wet dreams! "Creating a Query DSL using Clojure and MongoDB" http://ow.ly/5GQrb", :mentions {"spyroskotsakis" 2}}, "spyroskotsakis" {:image-url "http://a1.twimg.com/profile_images/1306692344/my_normal.jpg", :last-tweet "RT @doxaras: a web geek's wet dreams! "Creating a Query DSL using Clojure and MongoDB" http://ow.ly/5GQrb", :mentions {}}, "Farkur" {:image-url "http://a0.twimg.com/profile_images/1187114822/552048490_normal.jpg", :last-tweet "Во всех функциональных языках, кроме clojure, хвостовые вызовы никак explicitly не выделяются, а это как-то плохо на самом деле....", :mentions {}}, "sandgorgon1" {:image-url "http://a3.twimg.com/profile_images/1377201554/_c51298_image_0_normal.png", :last-tweet "#Scala available http://j.mp/noVYHY .NET in an almost production ready form. When will #clojure be there ?", :mentions {}}, "wunki_" {:image-url "http://a1.twimg.com/profile_images/1292634938/writing_code_normal.png", :last-tweet "@asenchi Currently I'm working through the "Rough Cut" of "Clojure Programming" found here: http://t.co/qT4WCeu Want to do REST API's evt.", :mentions {"asenchi" 2}}, "vijaykiran" {:image-url "http://a3.twimg.com/profile_images/71586770/favicon-original_normal.png", :last-tweet "RT @ambrosebs: Introduction to Logic Programming with #Clojure core.logic http://t.co/GQvXbTe Any feedback or corrections most welcome. Enjoy!", :mentions {}}, "halcat0x15a" {:image-url "http://a3.twimg.com/profile_images/1446766503/amiku_normal.gif", :last-tweet "ねことclojureさわりたい。", :mentions {"aoi0308" 2}}, "mattbroten" {:image-url "http://a3.twimg.com/profile_images/1276406944/profile3_normal.png", :last-tweet "RT @bodhilicious: Cool..Matz has joined Heroku! http://t.co/aguAu3p (also of note: they support Node.js and Clojure now)", :mentions {}}, "swannodette" {:image-url "http://a1.twimg.com/profile_images/62572418/me_normal.jpg", :last-tweet "This rules http://t.co/1hvedNM #logic #clojure", :mentions {"hby" 2}}, "tim_yates" {:image-url "http://a2.twimg.com/profile_images/422071707/tweet2_normal.jpg", :last-tweet "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :mentions {}}, "reciente" {:image-url "http://a1.twimg.com/profile_images/1171285741/49853_100001648114199_6471_q_normal.jpg", :last-tweet "そういえば、昔一緒に働いていたデータベースエンジニアの人に、Scala覚えなよ。って言われたことあるな。あの人は、Java Oracleな人だったしなぁ でも、今覚えるならClojureに興味が。Erlangしっかり覚えるのが先だが。", :mentions {}}, "aloiscochard" {:image-url "http://a1.twimg.com/profile_images/766618696/avatar-popey-bw-transparent_normal.png", :last-tweet "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :mentions {}}, "ColetteDikonix" {:image-url "http://a1.twimg.com/profile_images/1445339597/3196-anime_normal.jpg", :last-tweet "プログラミングClojure: http://amzn.to/ieC4uJ", :mentions {}}, "mdelaurentis" {:image-url "http://a3.twimg.com/profile_images/367600334/6156d02df6db1a41dc9af4617f556ae6_normal.png", :last-tweet "RT @kyleburton: Released my first Leiningen Plugin (Clojure, documentation build automation) :: kyleburton/lein-margauto -... http://tumblr.com/x1e3kd6nr9", :mentions {}}, "robsondealmeida" {:image-url "http://a3.twimg.com/profile_images/1137553341/software_developer_normal.jpg", :last-tweet "#Java is as much about the #JVM as it is the language. http://j.mp/oWUkNg. #scala #clojure #groovy", :mentions {}}, "YvesHanoulle" {:image-url "http://a0.twimg.com/profile_images/1134309519/YvesBarCamp_normal.png", :last-tweet "RT @MarkDalgarno: Any followers interested in running a #clojure hands-on session at an event I'm putting together in October?", :mentions {}}, "kk6" {:image-url "http://a1.twimg.com/profile_images/1412562933/menma_icon_normal.jpg", :last-tweet "一個もかじってない。rubyはちょーーーっとだけ触ったけど。やっぱClojure気になるなぁ。 / 7つの言語 7つの世界|Ohmsha http://htn.to/Do7NZe", :mentions {}}, "ambrosebs" {:image-url "http://a1.twimg.com/profile_images/1430459395/ambrose-headshot_normal.jpg", :last-tweet "Introduction to Logic Programming with #Clojure core.logic http://t.co/GQvXbTe Any feedback or corrections most welcome. Enjoy!", :mentions {"jneira" 4, "vijaykiran" 2, "kumarshantanu" 2, "cgrand" 2, "swannodette" 2}}, "jneira" {:image-url "http://a1.twimg.com/profile_images/760811483/vintage_normal.jpg", :last-tweet "#minikanren #clojure core.logic has infinite possibilities, great tutorial by @ambrosebs http://ht.ly/5H9ry", :mentions {}}, "rubyist_bot" {:image-url "http://a1.twimg.com/profile_images/1187202450/ruby_normal.png", :last-tweet "RT @yosukehara: JRuby, Clojure, Erlang, JavaScript がそれぞれの得意分野で威力を発揮するので良いと思うところ. やはり, Clojure勉強しよう.", :mentions {}}, "gab_km" {:image-url "http://a1.twimg.com/profile_images/1248105556/_______dr__normal.png", :last-tweet "@MegaBlackLabel そんなつもりはww 以前からJVM系の新しい風(Scala、Groovy、Clojure..)に注目していて、いつか勉強してみようと思っていたのです!", :mentions {}}, "UNDERLINElipser" {:image-url "http://a2.twimg.com/profile_images/1269597841/E0211_1248_normal.jpg", :last-tweet "RT @toomore_such: @omasanori コンパイラオプション < ああ。やっぱり。技術的に不可能ではないが、実装側で対応することが必要ということですね。sb-coverも日付が2007年と古いのですが、無敵のLipserにはカバレッジツールの需要はあまり無いんでしょうねw #clojure", :mentions {}}, "MongoQuestion" {:image-url "http://a1.twimg.com/profile_images/1207364137/mq_normal.jpg", :last-tweet ""How to update a Document in MongoDB when a field is given with karras & clojure?..." #MongoDB - http://mongoq.com/raxIlF", :mentions {}}, "ekarlsso" {:image-url "http://a1.twimg.com/profile_images/1423118320/erik_for_web_normal.jpg", :last-tweet "What a problem! Only 6 days left of vacation and would still want to code with both #Scala + Akka and #clojure. Need more time :D", :mentions {}}, "marrowboy_co_uk" {:image-url "http://a2.twimg.com/profile_images/1232055624/marrowboy_normal.jpeg", :last-tweet "Exceptions are bad (tm) - Haskell's "Either" for error handling in #clojure - simples http://j.mp/oQprXO", :mentions {}}, "yosukehara" {:image-url "http://a1.twimg.com/profile_images/1144398267/48906_1283928103_6383079_q_normal.jpg", :last-tweet "JRuby, Clojure, Erlang, JavaScript がそれぞれの得意分野で威力を発揮するので良いと思うところ. やはり, Clojure勉強しよう.", :mentions {"rubyist_bot" 2}}, "kyleburton" {:image-url "http://a1.twimg.com/profile_images/72535248/kyle-profile-photo-150x216_normal.jpg", :last-tweet "Released my first Leiningen Plugin (Clojure, documentation build automation) :: kyleburton/lein-margauto -... http://tumblr.com/x1e3kd6nr9", :mentions {"jgehtland" 2, "mdelaurentis" 2, "romanroe" 2, "map_it" 2, "fogus" 2, "otfrom" 2, "kumarshantanu" 2}}, "dcbyron" {:image-url "http://a2.twimg.com/profile_images/1407313234/IntermediateJavaLogo-gravatar_normal.png", :last-tweet "Robert Martin on the Last Programming Language http://goo.gl/fb/QHU9W #jvmlanguages #clojure #homoiconicity", :mentions {}}, "MayDaniel_" {:image-url "http://a2.twimg.com/profile_images/1372187104/Daniel_May4_normal.jpg", :last-tweet "A Clojure IDE that "just works": http://t.co/sz3Fjx9\n(Very cool!)", :mentions {}}, "condotti" {:image-url "http://a1.twimg.com/profile_images/850525752/twitterProfilePhoto_normal.jpg", :last-tweet "ボケ防止、久しぶりだからダメダメだよ。スコア208恥ずかしい #4clojure http://t.co/RBoioEk http://t.co/FRo2jjN", :mentions {}}, "sdegutis" {:image-url "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", :last-tweet "wait, how is "ns" used 5047 lines before it's defined? http://t.co/gHoo5Jo", :mentions {}}, "myfreeweb" {:image-url "http://a2.twimg.com/profile_images/1253276912/eightbit-eb8aad29-82ed-4594-8d70-80e97397aa53_normal.png", :last-tweet "Found a nice use case for #clojure #javascript generators (scriptjure, clojurejs): #mongodb map/reduce functions!", :mentions {}}, "Kumappus" {:image-url "http://a3.twimg.com/profile_images/1398742060/Kumauta1.JPG_clj_normal.JPG", :last-tweet "ClojureでGUI書いてると[let ...で大量に値をセットしないといけなかったりするので何だかなーと思う。", :mentions {}}, "fogus" {:image-url "http://a0.twimg.com/profile_images/1429595636/5aa24eee4238e1e964210ed447e8dc91_normal.jpeg", :last-tweet "RT @kyleburton Released my first Leiningen Plugin (Clojure, documentation build automation) kyleburton/lein-margauto http://bit.ly/oAR704", :mentions {"jgehtland" 2, "map_it" 2}}, "nyaocat" {:image-url "http://a0.twimg.com/profile_images/1253032435/cc_toti_normal.png", :last-tweet "Clojure で末尾呼び出し最適化には recure を使えば出来るし、相互再帰でも trampoline 使えば良いと知ったけど、やっぱり素直に最初から末尾呼び出し最適化を言語仕様に入れておいてくれればいいのに……。", :mentions {}}, "toomore_such" {:image-url "http://a1.twimg.com/profile_images/541305740/laughing_man_normal.jpg", :last-tweet "RT @omasanori: 日本時間で7/21午前ごろに、RichがニューヨークClojureユーザーグループの会合で「新しいこと」について話をするらしく、Clojure/coreは今日その「新しいこと」の仕上げを頑張ったそうだ。一体何だろう #clojure", :mentions {}}, "redinger" {:image-url "http://a1.twimg.com/profile_images/1180038737/chris_bio_normal.png", :last-tweet "RT @djspiewak: Thinking about speaking at clojure/conj. That would be quite an interesting audience…", :mentions {}}, "pedroteixeira" {:image-url "http://a3.twimg.com/profile_images/55240016/thumb_normal.png", :last-tweet "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :mentions {}}, "jgehtland" {:image-url "http://a0.twimg.com/profile_images/1317512085/justin-gehtland_normal.jpg", :last-tweet "RT @fogus: RT @kyleburton Released my first Leiningen Plugin (Clojure, documentation build automation) kyleburton/lein-margauto http://bit.ly/oAR704", :mentions {}}, "hby" {:image-url "http://a0.twimg.com/profile_images/1054519408/smileorsmirk_normal.jpg", :last-tweet "RT @swannodette: This rules http://t.co/1hvedNM #logic #clojure", :mentions {}}, "WeAreHackers" {:image-url "http://a1.twimg.com/profile_images/1208298773/eyes_normal.jpg", :last-tweet "RT @developerworks: Thinking like a functional #programmer Part 1 > http://su.pr/1uKaTh Part 2 > http://su.pr/2mB3JO #Java #JVM #J2EE #app Clojure #code", :mentions {}}, "andystopford" {:image-url "http://a0.twimg.com/profile_images/291928248/100_0187_2_normal.jpg", :last-tweet "Want to run Clojure on the CLR? Yes you can - http://t.co/G17iKjp", :mentions {}}}
@@ -0,0 +1 @@
1
+ ({:text "Creating a Query DSL using Clojure and MongoDB http://tob.sn/qgCxkm #mongodb", :from_user "tobsn", :metadata {:result_type "recent"}, :from_user_id 80370, :id_str "92773047953653760", :to_user_id_str nil, :from_user_id_str "80370", :created_at "Mon, 18 Jul 2011 01:49:52 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1364411587/yr40_normal.png", :source "<a href="http://bit.ly" rel="nofollow">bitly</a>", :id 92773047953653760} {:text "Clojure vs. Scalable vs. Erlang vs. F# vs. Lisp, which one is a better functional language? Anyone knows, #language #programming", :from_user "raygao", :metadata {:result_type "recent"}, :from_user_id 1008584, :id_str "92773645268684800", :to_user_id_str nil, :from_user_id_str "1008584", :created_at "Mon, 18 Jul 2011 01:52:15 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1202168233/P1090364_normal.jpg", :source "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", :id 92773645268684800} {:text "@greymouser I need to start writing some Clojure I guess :)", :from_user "CzarneckiD", :metadata {:result_type "recent"}, :from_user_id 9680861, :id_str "92774518522789888", :to_user "greymouser", :to_user_id_str "401386", :from_user_id_str "9680861", :created_at "Mon, 18 Jul 2011 01:55:43 +0000", :geo nil, :iso_language_code "en", :to_user_id 401386, :profile_image_url "http://a3.twimg.com/profile_images/1156755747/head_trees_normal.jpg", :source "<a href="http://www.apparentsoft.com/socialite" rel="nofollow">Socialite.app</a>", :id 92774518522789888} {:text "一個もかじってない。rubyはちょーーーっとだけ触ったけど。やっぱClojure気になるなぁ。 / 7つの言語 7つの世界|Ohmsha http://htn.to/Do7NZe", :from_user "kk6", :metadata {:result_type "recent"}, :from_user_id 5771379, :id_str "92774802468777984", :to_user_id_str nil, :from_user_id_str "5771379", :created_at "Mon, 18 Jul 2011 01:56:51 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1412562933/menma_icon_normal.jpg", :source "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", :id 92774802468777984} {:text "RT @tobsn: Creating a Query DSL using Clojure and MongoDB http://tob.sn/qgCxkm #mongodb", :from_user "bsabrin", :metadata {:result_type "recent"}, :from_user_id 9444605, :id_str "92775464791314432", :to_user_id_str nil, :from_user_id_str "9444605", :created_at "Mon, 18 Jul 2011 01:59:29 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1268470086/ben_normal.jpg", :source "<a href="http://bit.ly" rel="nofollow">bitly</a>", :id 92775464791314432} {:text "RT @djspiewak: Thinking about speaking at clojure/conj. That would be quite an interesting audience…", :from_user "redinger", :metadata {:result_type "recent"}, :from_user_id 35788, :id_str "92780854966878208", :to_user_id_str nil, :from_user_id_str "35788", :created_at "Mon, 18 Jul 2011 02:20:54 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1180038737/chris_bio_normal.png", :source "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", :id 92780854966878208} {:text "ボケ防止、久しぶりだからダメダメだよ。スコア208恥ずかしい #4clojure http://t.co/RBoioEk http://t.co/FRo2jjN", :from_user "condotti", :metadata {:result_type "recent"}, :from_user_id 28012, :id_str "92792037807620096", :to_user_id_str nil, :from_user_id_str "28012", :created_at "Mon, 18 Jul 2011 03:05:20 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/850525752/twitterProfilePhoto_normal.jpg", :source "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", :id 92792037807620096} {:text "Strange Loop podcast #2 with @bmizerany and @nzoschke of Heroku on Matz, Clojure, and more... http://bit.ly/o1CgZS", :from_user "strangeloop_stl", :metadata {:result_type "recent"}, :from_user_id 10228730, :id_str "92793746760007680", :to_user_id_str nil, :from_user_id_str "10228730", :created_at "Mon, 18 Jul 2011 03:12:07 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1227482831/strange_loop_square_low_color_normal.jpg", :source "<a href="http://www.nambu.com/" rel="nofollow">Nambu</a>", :id 92793746760007680} {:text "Just submitted two abstracts for @clojure_conj One for a talk on Clojure DSLs and one workshop for core.logic. Workshop is fun!", :from_user "ambrosebs", :metadata {:result_type "recent"}, :from_user_id 353044345, :id_str "92795089771954177", :to_user_id_str nil, :from_user_id_str "353044345", :created_at "Mon, 18 Jul 2011 03:17:28 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1430459395/ambrose-headshot_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92795089771954177} {:text "wait, how is "ns" used 5047 lines before it's defined? http://t.co/gHoo5Jo", :from_user "sdegutis", :metadata {:result_type "recent"}, :from_user_id 538525, :id_str "92795105441878016", :to_user_id_str nil, :from_user_id_str "538525", :created_at "Mon, 18 Jul 2011 03:17:31 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92795105441878016} {:text "RT @toomore_such: @omasanori コンパイラオプション < ああ。やっぱり。技術的に不可能ではないが、実装側で対応することが必要ということですね。sb-coverも日付が2007年と古いのですが、無敵のLipserにはカバレッジツールの需要はあまり無いんでしょうねw #clojure", :from_user "UNDERLINElipser", :metadata {:result_type "recent"}, :from_user_id 367693340, :id_str "92796732466929664", :to_user_id_str nil, :from_user_id_str "367693340", :created_at "Mon, 18 Jul 2011 03:23:59 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1269597841/E0211_1248_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92796732466929664} {:text "Clojure で末尾呼び出し最適化には recure を使えば出来るし、相互再帰でも trampoline 使えば良いと知ったけど、やっぱり素直に最初から末尾呼び出し最適化を言語仕様に入れておいてくれればいいのに……。", :from_user "nyaocat", :metadata {:result_type "recent"}, :from_user_id 63987818, :id_str "92799028445724673", :to_user_id_str nil, :from_user_id_str "63987818", :created_at "Mon, 18 Jul 2011 03:33:07 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1253032435/cc_toti_normal.png", :source "<a href="http://projects.playwell.jp/go/Saezuri" rel="nofollow">Saezuri</a>", :id 92799028445724673} {:text "Does Clojure have a Sinatra clone?", :from_user "djspiewak", :metadata {:result_type "recent"}, :from_user_id 659256, :id_str "92799835723415552", :to_user_id_str nil, :from_user_id_str "659256", :created_at "Mon, 18 Jul 2011 03:36:19 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/746976711/angular-final_normal.jpg", :source "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", :id 92799835723415552} {:text "First attempt at using Clojure for something non-trivial. Every line a struggle. :-)", :from_user "billrobertson42", :metadata {:result_type "recent"}, :from_user_id 1697311, :id_str "92802897951207424", :to_user_id_str nil, :from_user_id_str "1697311", :created_at "Mon, 18 Jul 2011 03:48:29 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/469612905/Photo_on_2009-10-13_at_21.44_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92802897951207424} {:text "clojure.java.jdbc 0.0.4: I've been a bit lapse in announcing new versions on my blog so, to rectify that, this p... http://bit.ly/poqehJ", :from_user "axna", :metadata {:result_type "recent"}, :from_user_id 3352, :id_str "92806760611586048", :to_user_id_str nil, :from_user_id_str "3352", :created_at "Mon, 18 Jul 2011 04:03:50 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", :source "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", :id 92806760611586048} {:text "@djspiewak http://webnoir.org is built on top of Compojure (and other Clojure web tools), and pretty easy to get started with.", :from_user "icey", :metadata {:result_type "recent"}, :from_user_id 1848058, :id_str "92812534041690112", :to_user "djspiewak", :to_user_id_str "659256", :from_user_id_str "1848058", :created_at "Mon, 18 Jul 2011 04:26:47 +0000", :geo nil, :iso_language_code "en", :to_user_id 659256, :profile_image_url "http://a2.twimg.com/profile_images/1288377517/dot_normal.png", :source "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", :id 92812534041690112} {:text "RT @omasanori: https://github.com/paraseba/test-this test-thisは柔軟なテストランナー。デフォルトで前回以降に変更されたコードと、それに依存するコードだけをリロードするが、さらに名前やメタデータや正規表現でテスト対象を絞れる #clojure", :from_user "toomore_such", :metadata {:result_type "recent"}, :from_user_id 32273145, :id_str "92820072057405440", :to_user_id_str nil, :from_user_id_str "32273145", :created_at "Mon, 18 Jul 2011 04:56:44 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/541305740/laughing_man_normal.jpg", :source "<a href="http://www.movatwi.jp" rel="nofollow">モバツイ / www.movatwi.jp</a>", :id 92820072057405440} {:text "[toread] Clojure/core — All Clojure-Conj Videos Available: http://bit.ly/q55ksL", :from_user "pmn_", :metadata {:result_type "recent"}, :from_user_id 161731737, :id_str "92826406626664448", :to_user_id_str nil, :from_user_id_str "161731737", :created_at "Mon, 18 Jul 2011 05:21:54 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1162982195/robot1_normal.jpg", :source "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", :id 92826406626664448} {:text "wrote some clojure today and i think i liked it. thanks @napple, thanks a lot.", :from_user "cookrn", :metadata {:result_type "recent"}, :from_user_id 1615871, :id_str "92827148494188544", :to_user_id_str nil, :from_user_id_str "1615871", :created_at "Mon, 18 Jul 2011 05:24:51 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1256225996/Screen_shot_2011-02-26_at_7.42.17_PM_normal.png", :source "<a href="http://twitter.com/">web</a>", :id 92827148494188544} {:text "そういえば、昔一緒に働いていたデータベースエンジニアの人に、Scala覚えなよ。って言われたことあるな。あの人は、Java Oracleな人だったしなぁ でも、今覚えるならClojureに興味が。Erlangしっかり覚えるのが先だが。", :from_user "reciente", :metadata {:result_type "recent"}, :from_user_id 1105588, :id_str "92828519721205760", :to_user_id_str nil, :from_user_id_str "1105588", :created_at "Mon, 18 Jul 2011 05:30:18 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1171285741/49853_100001648114199_6471_q_normal.jpg", :source "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", :id 92828519721205760} {:text "RT @cookrn "wrote some clojure today and i think i liked it. thanks @napple, thanks a lot." http://t.co/sgMWtMc", :from_user "napple", :metadata {:result_type "recent"}, :from_user_id 37503270, :id_str "92832201057644544", :to_user_id_str nil, :from_user_id_str "37503270", :created_at "Mon, 18 Jul 2011 05:44:56 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/636601474/profilepic2_300x300_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92832201057644544} {:text "@kenji_rikitake @voluntas Clojure なら Android でも動きますしね。継続に関しては Gauche の方が使い勝手が良いかなーと思ってます。", :from_user "cooldaemon", :metadata {:result_type "recent"}, :from_user_id 5057108, :id_str "92834440350408704", :to_user "kenji_rikitake", :to_user_id_str "20672699", :from_user_id_str "5057108", :created_at "Mon, 18 Jul 2011 05:53:50 +0000", :geo nil, :iso_language_code "en", :to_user_id 20672699, :profile_image_url "http://a0.twimg.com/profile_images/1248645753/my_picture_normal.jpg", :source "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", :id 92834440350408704} {:text "clojureの勉強している", :from_user "suzutreeadd1", :metadata {:result_type "recent"}, :from_user_id 3884537, :id_str "92836848946266112", :to_user_id_str nil, :from_user_id_str "3884537", :created_at "Mon, 18 Jul 2011 06:03:24 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1302608902/DSC01386_normal.JPG", :source "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", :id 92836848946266112} {:text "RT @bodhilicious: Cool..Matz has joined Heroku! http://t.co/aguAu3p (also of note: they support Node.js and Clojure now)", :from_user "mattbroten", :metadata {:result_type "recent"}, :from_user_id 3696784, :id_str "92840236899512320", :to_user_id_str nil, :from_user_id_str "3696784", :created_at "Mon, 18 Jul 2011 06:16:52 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1276406944/profile3_normal.png", :source "<a href="http://twitter.com/">web</a>", :id 92840236899512320} {:text "RT @pcalcado: ha! just found the perfect excuse to stop the scala project and start a new clojure-heroku one!", :from_user "StefanRoock", :metadata {:result_type "recent"}, :from_user_id 3372206, :id_str "92844900583882752", :to_user_id_str nil, :from_user_id_str "3372206", :created_at "Mon, 18 Jul 2011 06:35:23 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/835941331/SR_best_quadrat_klein_normal.jpg", :source "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", :id 92844900583882752} {:text "ぐぬぬ。\nClojure REPL はあるというのに。", :from_user "halcat0x15a", :metadata {:result_type "recent"}, :from_user_id 121727645, :id_str "92845604698456064", :to_user_id_str nil, :from_user_id_str "121727645", :created_at "Mon, 18 Jul 2011 06:38:11 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1446766503/amiku_normal.gif", :source "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", :id 92845604698456064} {:text "そうなんですよねー。irbとかも現存するんで、ScalaのREPL作ってください!@halcat0x15a ぐぬぬ。 Clojure REPL はあるというのに。", :from_user "aoi0308", :metadata {:result_type "recent"}, :from_user_id 76345279, :id_str "92846118232276992", :to_user_id_str nil, :from_user_id_str "76345279", :created_at "Mon, 18 Jul 2011 06:40:14 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/512308555/antivirus_normal.png", :source "<a href="http://twitter.com/">web</a>", :id 92846118232276992} {:text "JRuby, Clojure, Erlang, JavaScript がそれぞれの得意分野で威力を発揮するので良いと思うところ. やはり, Clojure勉強しよう.", :from_user "yosukehara", :metadata {:result_type "recent"}, :from_user_id 71450010, :id_str "92848628569358336", :to_user_id_str nil, :from_user_id_str "71450010", :created_at "Mon, 18 Jul 2011 06:50:12 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1144398267/48906_1283928103_6383079_q_normal.jpg", :source "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", :id 92848628569358336} {:text "RT @yosukehara: JRuby, Clojure, Erlang, JavaScript がそれぞれの得意分野で威力を発揮するので良いと思うところ. やはり, Clojure勉強しよう.", :from_user "rubyist_bot", :metadata {:result_type "recent"}, :from_user_id 105725580, :id_str "92848665483411456", :to_user_id_str nil, :from_user_id_str "105725580", :created_at "Mon, 18 Jul 2011 06:50:21 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1187202450/ruby_normal.png", :source "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", :id 92848665483411456} {:text "@asenchi Currently I'm working through the "Rough Cut" of "Clojure Programming" found here: http://t.co/qT4WCeu Want to do REST API's evt.", :from_user "wunki_", :metadata {:result_type "recent"}, :from_user_id 207901970, :id_str "92852972215738368", :to_user "asenchi", :to_user_id_str "21361943", :from_user_id_str "207901970", :created_at "Mon, 18 Jul 2011 07:07:28 +0000", :geo nil, :iso_language_code "en", :to_user_id 21361943, :profile_image_url "http://a1.twimg.com/profile_images/1292634938/writing_code_normal.png", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92852972215738368} {:text "頃合いを見て 7つの言語 と Groovy の本を買いたいな。Clojureの日本語本は新しいの出ないのかなー", :from_user "aoi0308", :metadata {:result_type "recent"}, :from_user_id 76345279, :id_str "92853922993143808", :to_user_id_str nil, :from_user_id_str "76345279", :created_at "Mon, 18 Jul 2011 07:11:15 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/512308555/antivirus_normal.png", :source "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", :id 92853922993143808} {:text "Talking about kanban, clojure and hadoop later today. I'm starting to sound like ring-a-ding from the Ant Hill Mob. #wackyracesnostalgia", :from_user "andrewdotcom", :metadata {:result_type "recent"}, :from_user_id 64576, :id_str "92863891440279552", :to_user_id_str nil, :from_user_id_str "64576", :created_at "Mon, 18 Jul 2011 07:50:51 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1373391701/eightbit-3cf59806-d96b-4b79-948e-f4382cf322ea_normal.png", :source "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", :id 92863891440279552} {:text "#Clojure > C any day!", :from_user "havvy", :metadata {:result_type "recent"}, :from_user_id 2682266, :id_str "92866535101693954", :to_user_id_str nil, :from_user_id_str "2682266", :created_at "Mon, 18 Jul 2011 08:01:22 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/321918125/twitterProfilePhoto_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92866535101693954} {:text ""How to update a Document in MongoDB when a field is given with karras & clojure?..." #MongoDB - http://mongoq.com/raxIlF", :from_user "MongoQuestion", :metadata {:result_type "recent"}, :from_user_id 207839925, :id_str "92868720208248833", :to_user_id_str nil, :from_user_id_str "207839925", :created_at "Mon, 18 Jul 2011 08:10:02 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1207364137/mq_normal.jpg", :source "<a href="http://learnmongo.com" rel="nofollow">Mongo Question</a>", :id 92868720208248833} {:text "RT @MarkDalgarno: Any followers interested in running a #clojure hands-on session at an event I'm putting together in October?", :from_user "YvesHanoulle", :metadata {:result_type "recent"}, :from_user_id 117017, :id_str "92875352132698112", :to_user_id_str nil, :from_user_id_str "117017", :created_at "Mon, 18 Jul 2011 08:36:24 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1134309519/YvesBarCamp_normal.png", :source "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", :id 92875352132698112} {:text "RT @strangeloop_stl: Strange Loop podcast #2 with @bmizerany and @nzoschke of Heroku on Matz, Clojure, and more... http://bit.ly/o1CgZS", :from_user "thattommyhall", :metadata {:result_type "recent"}, :from_user_id 407843, :id_str "92878330231132160", :to_user_id_str nil, :from_user_id_str "407843", :created_at "Mon, 18 Jul 2011 08:48:14 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1202902011/avatar_normal.gif", :source "<a href="http://www.nambu.com/" rel="nofollow">Nambu</a>", :id 92878330231132160} {:text "clojure.java.jdbc 0.0.4 — #Clojure getting more RDBMS love http://j.mp/nL79h8", :from_user "kumarshantanu", :metadata {:result_type "recent"}, :from_user_id 4933167, :id_str "92878591104258049", :to_user_id_str nil, :from_user_id_str "4933167", :created_at "Mon, 18 Jul 2011 08:49:16 +0000", :geo nil, :iso_language_code "fr", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/209965412/ep_normal.jpg", :source "<a href="http://bit.ly" rel="nofollow">bitly</a>", :id 92878591104258049} {:text "ねことclojureさわりたい。", :from_user "halcat0x15a", :metadata {:result_type "recent"}, :from_user_id 121727645, :id_str "92880816060907520", :to_user_id_str nil, :from_user_id_str "121727645", :created_at "Mon, 18 Jul 2011 08:58:06 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1446766503/amiku_normal.gif", :source "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", :id 92880816060907520} {:text "ClojureでGUI書いてると[let ...で大量に値をセットしないといけなかったりするので何だかなーと思う。", :from_user "Kumappus", :metadata {:result_type "recent"}, :from_user_id 22115575, :id_str "92881084466987008", :to_user_id_str nil, :from_user_id_str "22115575", :created_at "Mon, 18 Jul 2011 08:59:10 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1398742060/Kumauta1.JPG_clj_normal.JPG", :source "<a href="http://sourceforge.jp/projects/tween/wiki/FrontPage" rel="nofollow">Tween</a>", :id 92881084466987008} {:text "@MegaBlackLabel そんなつもりはww 以前からJVM系の新しい風(Scala、Groovy、Clojure..)に注目していて、いつか勉強してみようと思っていたのです!", :from_user "gab_km", :metadata {:result_type "recent"}, :from_user_id 115142860, :id_str "92883884383023105", :to_user "MegaBlackLabel", :to_user_id_str "24394880", :from_user_id_str "115142860", :created_at "Mon, 18 Jul 2011 09:10:18 +0000", :geo nil, :iso_language_code "ja", :to_user_id 24394880, :profile_image_url "http://a1.twimg.com/profile_images/1248105556/_______dr__normal.png", :source "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", :id 92883884383023105} {:text "@djspiewak "Does Clojure have a Sinatra clone?" A: Take a look at Noir http://www.webnoir.org/", :from_user "romanroe", :metadata {:result_type "recent"}, :from_user_id 1180316, :id_str "92887702046900224", :to_user "djspiewak", :to_user_id_str "659256", :from_user_id_str "1180316", :created_at "Mon, 18 Jul 2011 09:25:28 +0000", :geo nil, :iso_language_code "en", :to_user_id 659256, :profile_image_url "http://a3.twimg.com/profile_images/1154895054/9d5c1949-3722-4eff-84a6-a46a7fc6db46_normal.png", :source "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", :id 92887702046900224} {:text "Found a nice use case for #clojure #javascript generators (scriptjure, clojurejs): #mongodb map/reduce functions!", :from_user "myfreeweb", :metadata {:result_type "recent"}, :from_user_id 31339035, :id_str "92889875338117120", :to_user_id_str nil, :from_user_id_str "31339035", :created_at "Mon, 18 Jul 2011 09:34:06 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1253276912/eightbit-eb8aad29-82ed-4594-8d70-80e97397aa53_normal.png", :source "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", :id 92889875338117120} {:text "うーん、尼から「プログラミングClojure」と「Scheme修行」が届いてしまった。どう考えても他に優先度高い読み物がめっちゃ積んであるはずなのに。", :from_user "usaturn", :metadata {:result_type "recent"}, :from_user_id 142876471, :id_str "92893977501638656", :to_user_id_str nil, :from_user_id_str "142876471", :created_at "Mon, 18 Jul 2011 09:50:24 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1365715199/md_normal.png", :source "<a href="http://v2c.s50.xrea.com/" rel="nofollow">V2C</a>", :id 92893977501638656} {:text "RT @romanroe: @djspiewak "Does Clojure have a Sinatra clone?" A: Take a look at Noir http://www.webnoir.org/", :from_user "jboner", :metadata {:result_type "recent"}, :from_user_id 3020451, :id_str "92896512094384128", :to_user_id_str nil, :from_user_id_str "3020451", :created_at "Mon, 18 Jul 2011 10:00:29 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1395654712/jonas_bw_small_normal.JPG", :source "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", :id 92896512094384128} {:text "Robert Martin on the Last Programming Language http://goo.gl/fb/QHU9W #jvmlanguages #clojure #homoiconicity", :from_user "dcbyron", :metadata {:result_type "recent"}, :from_user_id 676690, :id_str "92898515293974528", :to_user_id_str nil, :from_user_id_str "676690", :created_at "Mon, 18 Jul 2011 10:08:26 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1407313234/IntermediateJavaLogo-gravatar_normal.png", :source "<a href="http://www.google.com/support/youtube/bin/answer.py?hl=en&answer=164577" rel="nofollow">Google</a>", :id 92898515293974528} {:text "プログラミングClojure: http://amzn.to/ieC4uJ", :from_user "ColetteDikonix", :metadata {:result_type "recent"}, :from_user_id 365595789, :id_str "92901708010766338", :to_user_id_str nil, :from_user_id_str "365595789", :created_at "Mon, 18 Jul 2011 10:21:07 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1445339597/3196-anime_normal.jpg", :source "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", :id 92901708010766338} {:text "RT @developerworks: Thinking like a functional #programmer Part 1 > http://su.pr/1uKaTh Part 2 > http://su.pr/2mB3JO #Java #JVM #J2EE #app Clojure #code", :from_user "WeAreHackers", :metadata {:result_type "recent"}, :from_user_id 126362555, :id_str "92902507981971456", :to_user_id_str nil, :from_user_id_str "126362555", :created_at "Mon, 18 Jul 2011 10:24:18 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1208298773/eyes_normal.jpg", :source "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", :id 92902507981971456} {:text "This weekend in the Intertweets (Jun 17th Ed): - Clojure/core working hard today to get some finishing touches on… http://goo.gl/fb/Sy25i", :from_user "yueliufeeds", :metadata {:result_type "recent"}, :from_user_id 161516426, :id_str "92904093315645440", :to_user_id_str nil, :from_user_id_str "161516426", :created_at "Mon, 18 Jul 2011 10:30:36 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", :source "<a href="http://www.google.com/support/youtube/bin/answer.py?hl=en&answer=164577" rel="nofollow">Google</a>", :id 92904093315645440} {:text "a web geek's wet dreams! "Creating a Query DSL using Clojure and MongoDB" http://ow.ly/5GQrb", :from_user "doxaras", :metadata {:result_type "recent"}, :from_user_id 539633, :id_str "92904411487150080", :to_user_id_str nil, :from_user_id_str "539633", :created_at "Mon, 18 Jul 2011 10:31:52 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1427861699/profile_pc_normal.jpg", :source "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", :id 92904411487150080} {:text "RT @romanroe: @djspiewak "Does Clojure have a Sinatra clone?" A: Take a look at Noir http://www.webnoir.org/", :from_user "dnwiebe", :metadata {:result_type "recent"}, :from_user_id 38096319, :id_str "92905116033753088", :to_user_id_str nil, :from_user_id_str "38096319", :created_at "Mon, 18 Jul 2011 10:34:40 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/213714456/Dan_Wiebe_normal.jpg", :source "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", :id 92905116033753088} {:text "RT @djspiewak: Thinking about speaking at clojure/conj. That would be quite an interesting audience…", :from_user "fogus", :metadata {:result_type "recent"}, :from_user_id 228867, :id_str "92907638349774848", :to_user_id_str nil, :from_user_id_str "228867", :created_at "Mon, 18 Jul 2011 10:44:41 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1429595636/5aa24eee4238e1e964210ed447e8dc91_normal.jpeg", :source "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", :id 92907638349774848} {:text "@barryclearview Where's your clojure recruitment team? ;-)", :from_user "otfrom", :metadata {:result_type "recent"}, :from_user_id 1150576, :id_str "92911517326000129", :to_user "barryclearview", :to_user_id_str "6642545", :from_user_id_str "1150576", :created_at "Mon, 18 Jul 2011 11:00:06 +0000", :geo nil, :iso_language_code "en", :to_user_id 6642545, :profile_image_url "http://a2.twimg.com/profile_images/1398798564/bld-summer-clj-3-sq_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92911517326000129} {:text "Web development in a the LISP-derived language Clojure. http://sgp.cm/30ac36", :from_user "torstenek", :metadata {:result_type "recent"}, :from_user_id 3640855, :id_str "92914130763268096", :to_user_id_str nil, :from_user_id_str "3640855", :created_at "Mon, 18 Jul 2011 11:10:29 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/860569960/n578523522_9696_normal.jpg", :source "<a href="http://startgoogleplus.com" rel="nofollow">Start Google Plus</a>", :id 92914130763268096} {:text "#Scala available http://j.mp/noVYHY .NET in an almost production ready form. When will #clojure be there ?", :from_user "sandgorgon1", :metadata {:result_type "recent"}, :from_user_id 8953971, :id_str "92916669151854592", :to_user_id_str nil, :from_user_id_str "8953971", :created_at "Mon, 18 Jul 2011 11:20:34 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1377201554/_c51298_image_0_normal.png", :source "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", :id 92916669151854592} {:text "@djspiewak #Noir for #Clojure should be Sinatra-ish. www.webnoir.org. A tip some time ago from @gnab, a colleague of mine...", :from_user "mikkelbd", :metadata {:result_type "recent"}, :from_user_id 208961513, :id_str "92916771123761153", :to_user "djspiewak", :to_user_id_str "659256", :from_user_id_str "208961513", :created_at "Mon, 18 Jul 2011 11:20:59 +0000", :geo nil, :iso_language_code "en", :to_user_id 659256, :profile_image_url "http://a0.twimg.com/profile_images/1360005141/Mikkel_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92916771123761153} {:text "@djspiewak It is called Compojure: http://t.co/NAIpkbZ ... enjoy Clojure :)", :from_user "sbtourist", :metadata {:result_type "recent"}, :from_user_id 3846685, :id_str "92917792709410816", :to_user "djspiewak", :to_user_id_str "659256", :from_user_id_str "3846685", :created_at "Mon, 18 Jul 2011 11:25:02 +0000", :geo nil, :iso_language_code "en", :to_user_id 659256, :profile_image_url "http://a0.twimg.com/profile_images/72494229/Cryer_Black_normal.jpg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92917792709410816} {:text "RT @doxaras: a web geek's wet dreams! "Creating a Query DSL using Clojure and MongoDB" http://ow.ly/5GQrb", :from_user "spyroskotsakis", :metadata {:result_type "recent"}, :from_user_id 5668142, :id_str "92918066639409152", :to_user_id_str nil, :from_user_id_str "5668142", :created_at "Mon, 18 Jul 2011 11:26:08 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1306692344/my_normal.jpg", :source "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", :id 92918066639409152} {:text "Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "sbtourist", :metadata {:result_type "recent"}, :from_user_id 3846685, :id_str "92920320243142656", :to_user_id_str nil, :from_user_id_str "3846685", :created_at "Mon, 18 Jul 2011 11:35:05 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/72494229/Cryer_Black_normal.jpg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92920320243142656} {:text "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "talios", :metadata {:result_type "recent"}, :from_user_id 46509, :id_str "92921104737386496", :to_user_id_str nil, :from_user_id_str "46509", :created_at "Mon, 18 Jul 2011 11:38:12 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1348374565/shaggytal_normal.png", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92921104737386496} {:text "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "kumarshantanu", :metadata {:result_type "recent"}, :from_user_id 4933167, :id_str "92923473789337602", :to_user_id_str nil, :from_user_id_str "4933167", :created_at "Mon, 18 Jul 2011 11:47:37 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/209965412/ep_normal.jpg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92923473789337602} {:text "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "pedroteixeira", :metadata {:result_type "recent"}, :from_user_id 51977, :id_str "92926586373939201", :to_user_id_str nil, :from_user_id_str "51977", :created_at "Mon, 18 Jul 2011 11:59:59 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/55240016/thumb_normal.png", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92926586373939201} {:text "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "ambrosebs", :metadata {:result_type "recent"}, :from_user_id 353044345, :id_str "92926643181588481", :to_user_id_str nil, :from_user_id_str "353044345", :created_at "Mon, 18 Jul 2011 12:00:12 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1430459395/ambrose-headshot_normal.jpg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92926643181588481} {:text "@wunki_ Nice, I am sure you heard, but a reminder: http://bit.ly/n4TjJJ", :from_user "asenchi", :metadata {:result_type "recent"}, :from_user_id 21361943, :id_str "92926854067007488", :to_user "wunki_", :to_user_id_str "207901970", :from_user_id_str "21361943", :created_at "Mon, 18 Jul 2011 12:01:03 +0000", :geo nil, :iso_language_code "en", :to_user_id 207901970, :profile_image_url "http://a0.twimg.com/profile_images/1283790647/220px-Screamadelica_album_cover_normal.jpg", :source "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", :id 92926854067007488} {:text "#Java is as much about the #JVM as it is the language. http://j.mp/oWUkNg. #scala #clojure #groovy", :from_user "robsondealmeida", :metadata {:result_type "recent"}, :from_user_id 14621500, :id_str "92927606617411585", :to_user_id_str nil, :from_user_id_str "14621500", :created_at "Mon, 18 Jul 2011 12:04:02 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1137553341/software_developer_normal.jpg", :source "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", :id 92927606617411585} {:text "Opinion: Why You Might Want To Consider Java And/Or Clojure For Your Next Project http://t.co/hsDMMl7", :from_user "daniellaguilarb", :metadata {:result_type "recent"}, :from_user_id 350592597, :id_str "92930898172973057", :to_user_id_str nil, :from_user_id_str "350592597", :created_at "Mon, 18 Jul 2011 12:17:07 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1427637154/1309881183_jcaro-50029_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92930898172973057} {:text "Во всех функциональных языках, кроме clojure, хвостовые вызовы никак explicitly не выделяются, а это как-то плохо на самом деле....", :from_user "Farkur", :metadata {:result_type "recent"}, :from_user_id 172018047, :id_str "92932823694061568", :to_user_id_str nil, :from_user_id_str "172018047", :created_at "Mon, 18 Jul 2011 12:24:46 +0000", :geo nil, :iso_language_code "ru", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1187114822/552048490_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92932823694061568} {:text "A Clojure IDE that "just works": http://t.co/sz3Fjx9\n(Very cool!)", :from_user "MayDaniel_", :metadata {:result_type "recent"}, :from_user_id 138970417, :id_str "92936324952236032", :to_user_id_str nil, :from_user_id_str "138970417", :created_at "Mon, 18 Jul 2011 12:38:41 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1372187104/Daniel_May4_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92936324952236032} {:text "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "jboner", :metadata {:result_type "recent"}, :from_user_id 3020451, :id_str "92938487430516736", :to_user_id_str nil, :from_user_id_str "3020451", :created_at "Mon, 18 Jul 2011 12:47:16 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1395654712/jonas_bw_small_normal.JPG", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92938487430516736} {:text "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "tim_yates", :metadata {:result_type "recent"}, :from_user_id 1932442, :id_str "92939112893530112", :to_user_id_str nil, :from_user_id_str "1932442", :created_at "Mon, 18 Jul 2011 12:49:45 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/422071707/tweet2_normal.jpg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92939112893530112} {:text "Clojure Demo http://is.gd/WznCHn #functional", :from_user "halfageekinfo", :metadata {:result_type "recent"}, :from_user_id 279882637, :id_str "92939877053767680", :to_user_id_str nil, :from_user_id_str "279882637", :created_at "Mon, 18 Jul 2011 12:52:48 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1324487726/dr_bunsen_honeydew_normal.jpg", :source "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", :id 92939877053767680} {:text "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "aloiscochard", :metadata {:result_type "recent"}, :from_user_id 95276061, :id_str "92940324875403265", :to_user_id_str nil, :from_user_id_str "95276061", :created_at "Mon, 18 Jul 2011 12:54:34 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/766618696/avatar-popey-bw-transparent_normal.png", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92940324875403265} {:text "RT @djspiewak: Thinking about speaking at clojure/conj. That would be quite an interesting audience…", :from_user "ambrosebs", :metadata {:result_type "recent"}, :from_user_id 353044345, :id_str "92941156463284224", :to_user_id_str nil, :from_user_id_str "353044345", :created_at "Mon, 18 Jul 2011 12:57:53 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1430459395/ambrose-headshot_normal.jpg", :source "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", :id 92941156463284224} {:text "Want to run Clojure on the CLR? Yes you can - http://t.co/G17iKjp", :from_user "andystopford", :metadata {:result_type "recent"}, :from_user_id 71092235, :id_str "92941943117586432", :to_user_id_str nil, :from_user_id_str "71092235", :created_at "Mon, 18 Jul 2011 13:01:00 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/291928248/100_0187_2_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92941943117586432} {:text "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "ebaxt", :metadata {:result_type "recent"}, :from_user_id 4682803, :id_str "92942363172929537", :to_user_id_str nil, :from_user_id_str "4682803", :created_at "Mon, 18 Jul 2011 13:02:40 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1359531299/gravatar_me_normal.jpeg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92942363172929537} {:text "Exceptions are bad (tm) - Haskell's "Either" for error handling in #clojure - simples http://j.mp/oQprXO", :from_user "marrowboy_co_uk", :metadata {:result_type "recent"}, :from_user_id 223877571, :id_str "92946805490335744", :to_user_id_str nil, :from_user_id_str "223877571", :created_at "Mon, 18 Jul 2011 13:20:19 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1232055624/marrowboy_normal.jpeg", :source "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", :id 92946805490335744} {:text "What a problem! Only 6 days left of vacation and would still want to code with both #Scala + Akka and #clojure. Need more time :D", :from_user "ekarlsso", :metadata {:result_type "recent"}, :from_user_id 79693153, :id_str "92946870795649025", :to_user_id_str nil, :from_user_id_str "79693153", :created_at "Mon, 18 Jul 2011 13:20:35 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1423118320/erik_for_web_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92946870795649025} {:text "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "mamirm", :metadata {:result_type "recent"}, :from_user_id 117745315, :id_str "92951660510449664", :to_user_id_str nil, :from_user_id_str "117745315", :created_at "Mon, 18 Jul 2011 13:39:37 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1156505711/khelg-big_normal.jpg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92951660510449664} {:text "RT @omasanori: 日本時間で7/21午前ごろに、RichがニューヨークClojureユーザーグループの会合で「新しいこと」について話をするらしく、Clojure/coreは今日その「新しいこと」の仕上げを頑張ったそうだ。一体何だろう #clojure", :from_user "toomore_such", :metadata {:result_type "recent"}, :from_user_id 32273145, :id_str "92952557344927745", :to_user_id_str nil, :from_user_id_str "32273145", :created_at "Mon, 18 Jul 2011 13:43:11 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/541305740/laughing_man_normal.jpg", :source "<a href="http://www.movatwi.jp" rel="nofollow">モバツイ / www.movatwi.jp</a>", :id 92952557344927745} {:text "Released my first Leiningen Plugin (Clojure, documentation build automation) :: kyleburton/lein-margauto -... http://tumblr.com/x1e3kd6nr9", :from_user "kyleburton", :metadata {:result_type "recent"}, :from_user_id 28245, :id_str "92961077540814848", :to_user_id_str nil, :from_user_id_str "28245", :created_at "Mon, 18 Jul 2011 14:17:02 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/72535248/kyle-profile-photo-150x216_normal.jpg", :source "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", :id 92961077540814848} {:text "RT @kyleburton: Released my first Leiningen Plugin (Clojure, documentation build automation) :: kyleburton/lein-margauto -... http://tumblr.com/x1e3kd6nr9", :from_user "kumarshantanu", :metadata {:result_type "recent"}, :from_user_id 4933167, :id_str "92961581310283776", :to_user_id_str nil, :from_user_id_str "4933167", :created_at "Mon, 18 Jul 2011 14:19:02 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/209965412/ep_normal.jpg", :source "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", :id 92961581310283776} {:text "RT @kyleburton: Released my first Leiningen Plugin (Clojure, documentation build automation) :: kyleburton/lein-margauto -... http://tumblr.com/x1e3kd6nr9", :from_user "otfrom", :metadata {:result_type "recent"}, :from_user_id 1150576, :id_str "92964602077384704", :to_user_id_str nil, :from_user_id_str "1150576", :created_at "Mon, 18 Jul 2011 14:31:02 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1398798564/bld-summer-clj-3-sq_normal.jpg", :source "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", :id 92964602077384704} {:text "RT @kyleburton Released my first Leiningen Plugin (Clojure, documentation build automation) kyleburton/lein-margauto http://bit.ly/oAR704", :from_user "fogus", :metadata {:result_type "recent"}, :from_user_id 228867, :id_str "92967496163934208", :to_user_id_str nil, :from_user_id_str "228867", :created_at "Mon, 18 Jul 2011 14:42:33 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1429595636/5aa24eee4238e1e964210ed447e8dc91_normal.jpeg", :source "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", :id 92967496163934208} {:text "RT @fogus: RT @kyleburton Released my first Leiningen Plugin (Clojure, documentation build automation) kyleburton/lein-margauto http://bit.ly/oAR704", :from_user "map_it", :metadata {:result_type "recent"}, :from_user_id 115372625, :id_str "92968289726251008", :to_user_id_str nil, :from_user_id_str "115372625", :created_at "Mon, 18 Jul 2011 14:45:42 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1416979654/5712240313_7eafa675a5_b_normal.jpg", :source "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", :id 92968289726251008} {:text "Introduction to Logic Programming with #Clojure core.logic http://t.co/GQvXbTe Any feedback or corrections most welcome. Enjoy!", :from_user "ambrosebs", :metadata {:result_type "recent"}, :from_user_id 353044345, :id_str "92969180579631104", :to_user_id_str nil, :from_user_id_str "353044345", :created_at "Mon, 18 Jul 2011 14:49:14 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1430459395/ambrose-headshot_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92969180579631104} {:text "RT @ambrosebs: Introduction to Logic Programming with #Clojure core.logic http://t.co/GQvXbTe Any feedback or corrections most welcome. Enjoy!", :from_user "swannodette", :metadata {:result_type "recent"}, :from_user_id 455347, :id_str "92969501972365312", :to_user_id_str nil, :from_user_id_str "455347", :created_at "Mon, 18 Jul 2011 14:50:31 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/62572418/me_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92969501972365312} {:text "RT @kyleburton: Released my first Leiningen Plugin (Clojure, documentation build automation) :: kyleburton/lein-margauto -... http://tumblr.com/x1e3kd6nr9", :from_user "romanroe", :metadata {:result_type "recent"}, :from_user_id 1180316, :id_str "92970330129313792", :to_user_id_str nil, :from_user_id_str "1180316", :created_at "Mon, 18 Jul 2011 14:53:48 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1154895054/9d5c1949-3722-4eff-84a6-a46a7fc6db46_normal.png", :source "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", :id 92970330129313792} {:text "This rules http://t.co/1hvedNM #logic #clojure", :from_user "swannodette", :metadata {:result_type "recent"}, :from_user_id 455347, :id_str "92970401948377088", :to_user_id_str nil, :from_user_id_str "455347", :created_at "Mon, 18 Jul 2011 14:54:05 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/62572418/me_normal.jpg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92970401948377088} {:text ""clooj, a small IDE for clojure" http://t.co/iEuBV4z http://t.co/FD6oJpk", :from_user "tsubame959", :metadata {:result_type "recent"}, :from_user_id 37460207, :id_str "92970549290082305", :to_user_id_str nil, :from_user_id_str "37460207", :created_at "Mon, 18 Jul 2011 14:54:40 +0000", :geo nil, :iso_language_code "fr", :to_user_id nil, :profile_image_url "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", :source "<a href="http://twitter.com/">web</a>", :id 92970549290082305} {:text "RT @ambrosebs: Introduction to Logic Programming with #Clojure core.logic http://t.co/GQvXbTe Any feedback or corrections most welcome. Enjoy!", :from_user "cgrand", :metadata {:result_type "recent"}, :from_user_id 5674342, :id_str "92973075804594178", :to_user_id_str nil, :from_user_id_str "5674342", :created_at "Mon, 18 Jul 2011 15:04:43 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/195831099/idCarre_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92973075804594178} {:text "RT @kyleburton: Released my first Leiningen Plugin (Clojure, documentation build automation) :: kyleburton/lein-margauto -... http://tumblr.com/x1e3kd6nr9", :from_user "mdelaurentis", :metadata {:result_type "recent"}, :from_user_id 29928826, :id_str "92974881095958528", :to_user_id_str nil, :from_user_id_str "29928826", :created_at "Mon, 18 Jul 2011 15:11:53 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/367600334/6156d02df6db1a41dc9af4617f556ae6_normal.png", :source "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", :id 92974881095958528} {:text "RT @fogus: RT @kyleburton Released my first Leiningen Plugin (Clojure, documentation build automation) kyleburton/lein-margauto http://bit.ly/oAR704", :from_user "jgehtland", :metadata {:result_type "recent"}, :from_user_id 321271, :id_str "92977855641817091", :to_user_id_str nil, :from_user_id_str "321271", :created_at "Mon, 18 Jul 2011 15:23:42 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1317512085/justin-gehtland_normal.jpg", :source "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", :id 92977855641817091} {:text "RT @ambrosebs: Introduction to Logic Programming with #Clojure core.logic http://t.co/GQvXbTe Any feedback or corrections most welcome. Enjoy!", :from_user "kumarshantanu", :metadata {:result_type "recent"}, :from_user_id 4933167, :id_str "92979103468236800", :to_user_id_str nil, :from_user_id_str "4933167", :created_at "Mon, 18 Jul 2011 15:28:40 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/209965412/ep_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92979103468236800} {:text "Clojure agents turn out to be very handy; state is needed in the end.", :from_user "lnostdal", :metadata {:result_type "recent"}, :from_user_id 13650688, :id_str "92979838746497024", :to_user_id_str nil, :from_user_id_str "13650688", :created_at "Mon, 18 Jul 2011 15:31:35 +0000", :geo nil, :iso_language_code "en", :place {:id "6b592f31cdf387b2", :type "city", :full_name "Skien, Telemark"}, :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1146297106/a539e214c9980ff4b53ad5ca9347aa91_normal.jpeg", :source "<a href="http://twitter.com/">web</a>", :id 92979838746497024} {:text "RT @ambrosebs: Introduction to Logic Programming with #Clojure core.logic http://t.co/GQvXbTe Any feedback or corrections most welcome. Enjoy!", :from_user "vijaykiran", :metadata {:result_type "recent"}, :from_user_id 360631, :id_str "92980164367089665", :to_user_id_str nil, :from_user_id_str "360631", :created_at "Mon, 18 Jul 2011 15:32:53 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/71586770/favicon-original_normal.png", :source "<a href="http://twitter.com/">web</a>", :id 92980164367089665} {:text "I'd love for any #clojure experts to check out my tiny library and point how it could be better/faster/more idiomatic: http://t.co/REyJwsv", :from_user "sorenmacbeth", :metadata {:result_type "recent"}, :from_user_id 23805, :id_str "92981892080615425", :to_user_id_str nil, :from_user_id_str "23805", :created_at "Mon, 18 Jul 2011 15:39:45 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1281923269/image_normal.jpg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92981892080615425} {:text "RT @ambrosebs: Introduction to Logic Programming with #Clojure core.logic http://t.co/GQvXbTe Any feedback or corrections most welcome. Enjoy!", :from_user "jneira", :metadata {:result_type "recent"}, :from_user_id 1446634, :id_str "92981943225954304", :to_user_id_str nil, :from_user_id_str "1446634", :created_at "Mon, 18 Jul 2011 15:39:57 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/760811483/vintage_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92981943225954304} {:text "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "icylisper", :metadata {:result_type "recent"}, :from_user_id 265464842, :id_str "92983705727008769", :to_user_id_str nil, :from_user_id_str "265464842", :created_at "Mon, 18 Jul 2011 15:46:57 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1430445595/gravti_normal.jpg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92983705727008769} {:text "#minikanren #clojure core.logic has infinite possibilities, great tutorial by @ambrosebs http://ht.ly/5H9ry", :from_user "jneira", :metadata {:result_type "recent"}, :from_user_id 1446634, :id_str "92985673870606336", :to_user_id_str nil, :from_user_id_str "1446634", :created_at "Mon, 18 Jul 2011 15:54:46 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/760811483/vintage_normal.jpg", :source "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", :id 92985673870606336} {:text "RT @swannodette: This rules http://t.co/1hvedNM #logic #clojure", :from_user "hby", :metadata {:result_type "recent"}, :from_user_id 47850, :id_str "92986629425336320", :to_user_id_str nil, :from_user_id_str "47850", :created_at "Mon, 18 Jul 2011 15:58:34 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1054519408/smileorsmirk_normal.jpg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92986629425336320} {:text "Creating a Query DSL using Clojure and MongoDB http://tob.sn/qgCxkm #mongodb", :from_user "tobsn", :metadata {:result_type "recent"}, :from_user_id 80370, :id_str "92773047953653760", :to_user_id_str nil, :from_user_id_str "80370", :created_at "Mon, 18 Jul 2011 01:49:52 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1364411587/yr40_normal.png", :source "<a href="http://bit.ly" rel="nofollow">bitly</a>", :id 92773047953653760} {:text "Clojure vs. Scalable vs. Erlang vs. F# vs. Lisp, which one is a better functional language? Anyone knows, #language #programming", :from_user "raygao", :metadata {:result_type "recent"}, :from_user_id 1008584, :id_str "92773645268684800", :to_user_id_str nil, :from_user_id_str "1008584", :created_at "Mon, 18 Jul 2011 01:52:15 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1202168233/P1090364_normal.jpg", :source "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", :id 92773645268684800} {:text "@greymouser I need to start writing some Clojure I guess :)", :from_user "CzarneckiD", :metadata {:result_type "recent"}, :from_user_id 9680861, :id_str "92774518522789888", :to_user "greymouser", :to_user_id_str "401386", :from_user_id_str "9680861", :created_at "Mon, 18 Jul 2011 01:55:43 +0000", :geo nil, :iso_language_code "en", :to_user_id 401386, :profile_image_url "http://a3.twimg.com/profile_images/1156755747/head_trees_normal.jpg", :source "<a href="http://www.apparentsoft.com/socialite" rel="nofollow">Socialite.app</a>", :id 92774518522789888} {:text "一個もかじってない。rubyはちょーーーっとだけ触ったけど。やっぱClojure気になるなぁ。 / 7つの言語 7つの世界|Ohmsha http://htn.to/Do7NZe", :from_user "kk6", :metadata {:result_type "recent"}, :from_user_id 5771379, :id_str "92774802468777984", :to_user_id_str nil, :from_user_id_str "5771379", :created_at "Mon, 18 Jul 2011 01:56:51 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1412562933/menma_icon_normal.jpg", :source "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", :id 92774802468777984} {:text "RT @tobsn: Creating a Query DSL using Clojure and MongoDB http://tob.sn/qgCxkm #mongodb", :from_user "bsabrin", :metadata {:result_type "recent"}, :from_user_id 9444605, :id_str "92775464791314432", :to_user_id_str nil, :from_user_id_str "9444605", :created_at "Mon, 18 Jul 2011 01:59:29 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1268470086/ben_normal.jpg", :source "<a href="http://bit.ly" rel="nofollow">bitly</a>", :id 92775464791314432} {:text "RT @djspiewak: Thinking about speaking at clojure/conj. That would be quite an interesting audience…", :from_user "redinger", :metadata {:result_type "recent"}, :from_user_id 35788, :id_str "92780854966878208", :to_user_id_str nil, :from_user_id_str "35788", :created_at "Mon, 18 Jul 2011 02:20:54 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1180038737/chris_bio_normal.png", :source "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", :id 92780854966878208} {:text "ボケ防止、久しぶりだからダメダメだよ。スコア208恥ずかしい #4clojure http://t.co/RBoioEk http://t.co/FRo2jjN", :from_user "condotti", :metadata {:result_type "recent"}, :from_user_id 28012, :id_str "92792037807620096", :to_user_id_str nil, :from_user_id_str "28012", :created_at "Mon, 18 Jul 2011 03:05:20 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/850525752/twitterProfilePhoto_normal.jpg", :source "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", :id 92792037807620096} {:text "Strange Loop podcast #2 with @bmizerany and @nzoschke of Heroku on Matz, Clojure, and more... http://bit.ly/o1CgZS", :from_user "strangeloop_stl", :metadata {:result_type "recent"}, :from_user_id 10228730, :id_str "92793746760007680", :to_user_id_str nil, :from_user_id_str "10228730", :created_at "Mon, 18 Jul 2011 03:12:07 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1227482831/strange_loop_square_low_color_normal.jpg", :source "<a href="http://www.nambu.com/" rel="nofollow">Nambu</a>", :id 92793746760007680} {:text "Just submitted two abstracts for @clojure_conj One for a talk on Clojure DSLs and one workshop for core.logic. Workshop is fun!", :from_user "ambrosebs", :metadata {:result_type "recent"}, :from_user_id 353044345, :id_str "92795089771954177", :to_user_id_str nil, :from_user_id_str "353044345", :created_at "Mon, 18 Jul 2011 03:17:28 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1430459395/ambrose-headshot_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92795089771954177} {:text "wait, how is "ns" used 5047 lines before it's defined? http://t.co/gHoo5Jo", :from_user "sdegutis", :metadata {:result_type "recent"}, :from_user_id 538525, :id_str "92795105441878016", :to_user_id_str nil, :from_user_id_str "538525", :created_at "Mon, 18 Jul 2011 03:17:31 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92795105441878016} {:text "RT @toomore_such: @omasanori コンパイラオプション < ああ。やっぱり。技術的に不可能ではないが、実装側で対応することが必要ということですね。sb-coverも日付が2007年と古いのですが、無敵のLipserにはカバレッジツールの需要はあまり無いんでしょうねw #clojure", :from_user "UNDERLINElipser", :metadata {:result_type "recent"}, :from_user_id 367693340, :id_str "92796732466929664", :to_user_id_str nil, :from_user_id_str "367693340", :created_at "Mon, 18 Jul 2011 03:23:59 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1269597841/E0211_1248_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92796732466929664} {:text "Clojure で末尾呼び出し最適化には recure を使えば出来るし、相互再帰でも trampoline 使えば良いと知ったけど、やっぱり素直に最初から末尾呼び出し最適化を言語仕様に入れておいてくれればいいのに……。", :from_user "nyaocat", :metadata {:result_type "recent"}, :from_user_id 63987818, :id_str "92799028445724673", :to_user_id_str nil, :from_user_id_str "63987818", :created_at "Mon, 18 Jul 2011 03:33:07 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1253032435/cc_toti_normal.png", :source "<a href="http://projects.playwell.jp/go/Saezuri" rel="nofollow">Saezuri</a>", :id 92799028445724673} {:text "Does Clojure have a Sinatra clone?", :from_user "djspiewak", :metadata {:result_type "recent"}, :from_user_id 659256, :id_str "92799835723415552", :to_user_id_str nil, :from_user_id_str "659256", :created_at "Mon, 18 Jul 2011 03:36:19 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/746976711/angular-final_normal.jpg", :source "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", :id 92799835723415552} {:text "First attempt at using Clojure for something non-trivial. Every line a struggle. :-)", :from_user "billrobertson42", :metadata {:result_type "recent"}, :from_user_id 1697311, :id_str "92802897951207424", :to_user_id_str nil, :from_user_id_str "1697311", :created_at "Mon, 18 Jul 2011 03:48:29 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/469612905/Photo_on_2009-10-13_at_21.44_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92802897951207424} {:text "clojure.java.jdbc 0.0.4: I've been a bit lapse in announcing new versions on my blog so, to rectify that, this p... http://bit.ly/poqehJ", :from_user "axna", :metadata {:result_type "recent"}, :from_user_id 3352, :id_str "92806760611586048", :to_user_id_str nil, :from_user_id_str "3352", :created_at "Mon, 18 Jul 2011 04:03:50 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", :source "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", :id 92806760611586048} {:text "@djspiewak http://webnoir.org is built on top of Compojure (and other Clojure web tools), and pretty easy to get started with.", :from_user "icey", :metadata {:result_type "recent"}, :from_user_id 1848058, :id_str "92812534041690112", :to_user "djspiewak", :to_user_id_str "659256", :from_user_id_str "1848058", :created_at "Mon, 18 Jul 2011 04:26:47 +0000", :geo nil, :iso_language_code "en", :to_user_id 659256, :profile_image_url "http://a2.twimg.com/profile_images/1288377517/dot_normal.png", :source "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", :id 92812534041690112} {:text "RT @omasanori: https://github.com/paraseba/test-this test-thisは柔軟なテストランナー。デフォルトで前回以降に変更されたコードと、それに依存するコードだけをリロードするが、さらに名前やメタデータや正規表現でテスト対象を絞れる #clojure", :from_user "toomore_such", :metadata {:result_type "recent"}, :from_user_id 32273145, :id_str "92820072057405440", :to_user_id_str nil, :from_user_id_str "32273145", :created_at "Mon, 18 Jul 2011 04:56:44 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/541305740/laughing_man_normal.jpg", :source "<a href="http://www.movatwi.jp" rel="nofollow">モバツイ / www.movatwi.jp</a>", :id 92820072057405440} {:text "[toread] Clojure/core — All Clojure-Conj Videos Available: http://bit.ly/q55ksL", :from_user "pmn_", :metadata {:result_type "recent"}, :from_user_id 161731737, :id_str "92826406626664448", :to_user_id_str nil, :from_user_id_str "161731737", :created_at "Mon, 18 Jul 2011 05:21:54 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1162982195/robot1_normal.jpg", :source "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", :id 92826406626664448} {:text "wrote some clojure today and i think i liked it. thanks @napple, thanks a lot.", :from_user "cookrn", :metadata {:result_type "recent"}, :from_user_id 1615871, :id_str "92827148494188544", :to_user_id_str nil, :from_user_id_str "1615871", :created_at "Mon, 18 Jul 2011 05:24:51 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1256225996/Screen_shot_2011-02-26_at_7.42.17_PM_normal.png", :source "<a href="http://twitter.com/">web</a>", :id 92827148494188544} {:text "そういえば、昔一緒に働いていたデータベースエンジニアの人に、Scala覚えなよ。って言われたことあるな。あの人は、Java Oracleな人だったしなぁ でも、今覚えるならClojureに興味が。Erlangしっかり覚えるのが先だが。", :from_user "reciente", :metadata {:result_type "recent"}, :from_user_id 1105588, :id_str "92828519721205760", :to_user_id_str nil, :from_user_id_str "1105588", :created_at "Mon, 18 Jul 2011 05:30:18 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1171285741/49853_100001648114199_6471_q_normal.jpg", :source "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", :id 92828519721205760} {:text "RT @cookrn "wrote some clojure today and i think i liked it. thanks @napple, thanks a lot." http://t.co/sgMWtMc", :from_user "napple", :metadata {:result_type "recent"}, :from_user_id 37503270, :id_str "92832201057644544", :to_user_id_str nil, :from_user_id_str "37503270", :created_at "Mon, 18 Jul 2011 05:44:56 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/636601474/profilepic2_300x300_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92832201057644544} {:text "@kenji_rikitake @voluntas Clojure なら Android でも動きますしね。継続に関しては Gauche の方が使い勝手が良いかなーと思ってます。", :from_user "cooldaemon", :metadata {:result_type "recent"}, :from_user_id 5057108, :id_str "92834440350408704", :to_user "kenji_rikitake", :to_user_id_str "20672699", :from_user_id_str "5057108", :created_at "Mon, 18 Jul 2011 05:53:50 +0000", :geo nil, :iso_language_code "en", :to_user_id 20672699, :profile_image_url "http://a0.twimg.com/profile_images/1248645753/my_picture_normal.jpg", :source "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", :id 92834440350408704} {:text "clojureの勉強している", :from_user "suzutreeadd1", :metadata {:result_type "recent"}, :from_user_id 3884537, :id_str "92836848946266112", :to_user_id_str nil, :from_user_id_str "3884537", :created_at "Mon, 18 Jul 2011 06:03:24 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1302608902/DSC01386_normal.JPG", :source "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", :id 92836848946266112} {:text "RT @bodhilicious: Cool..Matz has joined Heroku! http://t.co/aguAu3p (also of note: they support Node.js and Clojure now)", :from_user "mattbroten", :metadata {:result_type "recent"}, :from_user_id 3696784, :id_str "92840236899512320", :to_user_id_str nil, :from_user_id_str "3696784", :created_at "Mon, 18 Jul 2011 06:16:52 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1276406944/profile3_normal.png", :source "<a href="http://twitter.com/">web</a>", :id 92840236899512320} {:text "RT @pcalcado: ha! just found the perfect excuse to stop the scala project and start a new clojure-heroku one!", :from_user "StefanRoock", :metadata {:result_type "recent"}, :from_user_id 3372206, :id_str "92844900583882752", :to_user_id_str nil, :from_user_id_str "3372206", :created_at "Mon, 18 Jul 2011 06:35:23 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/835941331/SR_best_quadrat_klein_normal.jpg", :source "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", :id 92844900583882752} {:text "ぐぬぬ。\nClojure REPL はあるというのに。", :from_user "halcat0x15a", :metadata {:result_type "recent"}, :from_user_id 121727645, :id_str "92845604698456064", :to_user_id_str nil, :from_user_id_str "121727645", :created_at "Mon, 18 Jul 2011 06:38:11 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1446766503/amiku_normal.gif", :source "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", :id 92845604698456064} {:text "そうなんですよねー。irbとかも現存するんで、ScalaのREPL作ってください!@halcat0x15a ぐぬぬ。 Clojure REPL はあるというのに。", :from_user "aoi0308", :metadata {:result_type "recent"}, :from_user_id 76345279, :id_str "92846118232276992", :to_user_id_str nil, :from_user_id_str "76345279", :created_at "Mon, 18 Jul 2011 06:40:14 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/512308555/antivirus_normal.png", :source "<a href="http://twitter.com/">web</a>", :id 92846118232276992} {:text "JRuby, Clojure, Erlang, JavaScript がそれぞれの得意分野で威力を発揮するので良いと思うところ. やはり, Clojure勉強しよう.", :from_user "yosukehara", :metadata {:result_type "recent"}, :from_user_id 71450010, :id_str "92848628569358336", :to_user_id_str nil, :from_user_id_str "71450010", :created_at "Mon, 18 Jul 2011 06:50:12 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1144398267/48906_1283928103_6383079_q_normal.jpg", :source "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", :id 92848628569358336} {:text "RT @yosukehara: JRuby, Clojure, Erlang, JavaScript がそれぞれの得意分野で威力を発揮するので良いと思うところ. やはり, Clojure勉強しよう.", :from_user "rubyist_bot", :metadata {:result_type "recent"}, :from_user_id 105725580, :id_str "92848665483411456", :to_user_id_str nil, :from_user_id_str "105725580", :created_at "Mon, 18 Jul 2011 06:50:21 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1187202450/ruby_normal.png", :source "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", :id 92848665483411456} {:text "@asenchi Currently I'm working through the "Rough Cut" of "Clojure Programming" found here: http://t.co/qT4WCeu Want to do REST API's evt.", :from_user "wunki_", :metadata {:result_type "recent"}, :from_user_id 207901970, :id_str "92852972215738368", :to_user "asenchi", :to_user_id_str "21361943", :from_user_id_str "207901970", :created_at "Mon, 18 Jul 2011 07:07:28 +0000", :geo nil, :iso_language_code "en", :to_user_id 21361943, :profile_image_url "http://a1.twimg.com/profile_images/1292634938/writing_code_normal.png", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92852972215738368} {:text "頃合いを見て 7つの言語 と Groovy の本を買いたいな。Clojureの日本語本は新しいの出ないのかなー", :from_user "aoi0308", :metadata {:result_type "recent"}, :from_user_id 76345279, :id_str "92853922993143808", :to_user_id_str nil, :from_user_id_str "76345279", :created_at "Mon, 18 Jul 2011 07:11:15 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/512308555/antivirus_normal.png", :source "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", :id 92853922993143808} {:text "Talking about kanban, clojure and hadoop later today. I'm starting to sound like ring-a-ding from the Ant Hill Mob. #wackyracesnostalgia", :from_user "andrewdotcom", :metadata {:result_type "recent"}, :from_user_id 64576, :id_str "92863891440279552", :to_user_id_str nil, :from_user_id_str "64576", :created_at "Mon, 18 Jul 2011 07:50:51 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1373391701/eightbit-3cf59806-d96b-4b79-948e-f4382cf322ea_normal.png", :source "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", :id 92863891440279552} {:text "#Clojure > C any day!", :from_user "havvy", :metadata {:result_type "recent"}, :from_user_id 2682266, :id_str "92866535101693954", :to_user_id_str nil, :from_user_id_str "2682266", :created_at "Mon, 18 Jul 2011 08:01:22 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/321918125/twitterProfilePhoto_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92866535101693954} {:text ""How to update a Document in MongoDB when a field is given with karras & clojure?..." #MongoDB - http://mongoq.com/raxIlF", :from_user "MongoQuestion", :metadata {:result_type "recent"}, :from_user_id 207839925, :id_str "92868720208248833", :to_user_id_str nil, :from_user_id_str "207839925", :created_at "Mon, 18 Jul 2011 08:10:02 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1207364137/mq_normal.jpg", :source "<a href="http://learnmongo.com" rel="nofollow">Mongo Question</a>", :id 92868720208248833} {:text "RT @MarkDalgarno: Any followers interested in running a #clojure hands-on session at an event I'm putting together in October?", :from_user "YvesHanoulle", :metadata {:result_type "recent"}, :from_user_id 117017, :id_str "92875352132698112", :to_user_id_str nil, :from_user_id_str "117017", :created_at "Mon, 18 Jul 2011 08:36:24 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1134309519/YvesBarCamp_normal.png", :source "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", :id 92875352132698112} {:text "RT @strangeloop_stl: Strange Loop podcast #2 with @bmizerany and @nzoschke of Heroku on Matz, Clojure, and more... http://bit.ly/o1CgZS", :from_user "thattommyhall", :metadata {:result_type "recent"}, :from_user_id 407843, :id_str "92878330231132160", :to_user_id_str nil, :from_user_id_str "407843", :created_at "Mon, 18 Jul 2011 08:48:14 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1202902011/avatar_normal.gif", :source "<a href="http://www.nambu.com/" rel="nofollow">Nambu</a>", :id 92878330231132160} {:text "clojure.java.jdbc 0.0.4 — #Clojure getting more RDBMS love http://j.mp/nL79h8", :from_user "kumarshantanu", :metadata {:result_type "recent"}, :from_user_id 4933167, :id_str "92878591104258049", :to_user_id_str nil, :from_user_id_str "4933167", :created_at "Mon, 18 Jul 2011 08:49:16 +0000", :geo nil, :iso_language_code "fr", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/209965412/ep_normal.jpg", :source "<a href="http://bit.ly" rel="nofollow">bitly</a>", :id 92878591104258049} {:text "ねことclojureさわりたい。", :from_user "halcat0x15a", :metadata {:result_type "recent"}, :from_user_id 121727645, :id_str "92880816060907520", :to_user_id_str nil, :from_user_id_str "121727645", :created_at "Mon, 18 Jul 2011 08:58:06 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1446766503/amiku_normal.gif", :source "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", :id 92880816060907520} {:text "ClojureでGUI書いてると[let ...で大量に値をセットしないといけなかったりするので何だかなーと思う。", :from_user "Kumappus", :metadata {:result_type "recent"}, :from_user_id 22115575, :id_str "92881084466987008", :to_user_id_str nil, :from_user_id_str "22115575", :created_at "Mon, 18 Jul 2011 08:59:10 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1398742060/Kumauta1.JPG_clj_normal.JPG", :source "<a href="http://sourceforge.jp/projects/tween/wiki/FrontPage" rel="nofollow">Tween</a>", :id 92881084466987008} {:text "@MegaBlackLabel そんなつもりはww 以前からJVM系の新しい風(Scala、Groovy、Clojure..)に注目していて、いつか勉強してみようと思っていたのです!", :from_user "gab_km", :metadata {:result_type "recent"}, :from_user_id 115142860, :id_str "92883884383023105", :to_user "MegaBlackLabel", :to_user_id_str "24394880", :from_user_id_str "115142860", :created_at "Mon, 18 Jul 2011 09:10:18 +0000", :geo nil, :iso_language_code "ja", :to_user_id 24394880, :profile_image_url "http://a1.twimg.com/profile_images/1248105556/_______dr__normal.png", :source "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", :id 92883884383023105} {:text "@djspiewak "Does Clojure have a Sinatra clone?" A: Take a look at Noir http://www.webnoir.org/", :from_user "romanroe", :metadata {:result_type "recent"}, :from_user_id 1180316, :id_str "92887702046900224", :to_user "djspiewak", :to_user_id_str "659256", :from_user_id_str "1180316", :created_at "Mon, 18 Jul 2011 09:25:28 +0000", :geo nil, :iso_language_code "en", :to_user_id 659256, :profile_image_url "http://a3.twimg.com/profile_images/1154895054/9d5c1949-3722-4eff-84a6-a46a7fc6db46_normal.png", :source "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", :id 92887702046900224} {:text "Found a nice use case for #clojure #javascript generators (scriptjure, clojurejs): #mongodb map/reduce functions!", :from_user "myfreeweb", :metadata {:result_type "recent"}, :from_user_id 31339035, :id_str "92889875338117120", :to_user_id_str nil, :from_user_id_str "31339035", :created_at "Mon, 18 Jul 2011 09:34:06 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1253276912/eightbit-eb8aad29-82ed-4594-8d70-80e97397aa53_normal.png", :source "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", :id 92889875338117120} {:text "うーん、尼から「プログラミングClojure」と「Scheme修行」が届いてしまった。どう考えても他に優先度高い読み物がめっちゃ積んであるはずなのに。", :from_user "usaturn", :metadata {:result_type "recent"}, :from_user_id 142876471, :id_str "92893977501638656", :to_user_id_str nil, :from_user_id_str "142876471", :created_at "Mon, 18 Jul 2011 09:50:24 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1365715199/md_normal.png", :source "<a href="http://v2c.s50.xrea.com/" rel="nofollow">V2C</a>", :id 92893977501638656} {:text "RT @romanroe: @djspiewak "Does Clojure have a Sinatra clone?" A: Take a look at Noir http://www.webnoir.org/", :from_user "jboner", :metadata {:result_type "recent"}, :from_user_id 3020451, :id_str "92896512094384128", :to_user_id_str nil, :from_user_id_str "3020451", :created_at "Mon, 18 Jul 2011 10:00:29 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1395654712/jonas_bw_small_normal.JPG", :source "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", :id 92896512094384128} {:text "Robert Martin on the Last Programming Language http://goo.gl/fb/QHU9W #jvmlanguages #clojure #homoiconicity", :from_user "dcbyron", :metadata {:result_type "recent"}, :from_user_id 676690, :id_str "92898515293974528", :to_user_id_str nil, :from_user_id_str "676690", :created_at "Mon, 18 Jul 2011 10:08:26 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1407313234/IntermediateJavaLogo-gravatar_normal.png", :source "<a href="http://www.google.com/support/youtube/bin/answer.py?hl=en&answer=164577" rel="nofollow">Google</a>", :id 92898515293974528} {:text "プログラミングClojure: http://amzn.to/ieC4uJ", :from_user "ColetteDikonix", :metadata {:result_type "recent"}, :from_user_id 365595789, :id_str "92901708010766338", :to_user_id_str nil, :from_user_id_str "365595789", :created_at "Mon, 18 Jul 2011 10:21:07 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1445339597/3196-anime_normal.jpg", :source "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", :id 92901708010766338} {:text "RT @developerworks: Thinking like a functional #programmer Part 1 > http://su.pr/1uKaTh Part 2 > http://su.pr/2mB3JO #Java #JVM #J2EE #app Clojure #code", :from_user "WeAreHackers", :metadata {:result_type "recent"}, :from_user_id 126362555, :id_str "92902507981971456", :to_user_id_str nil, :from_user_id_str "126362555", :created_at "Mon, 18 Jul 2011 10:24:18 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1208298773/eyes_normal.jpg", :source "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", :id 92902507981971456} {:text "This weekend in the Intertweets (Jun 17th Ed): - Clojure/core working hard today to get some finishing touches on… http://goo.gl/fb/Sy25i", :from_user "yueliufeeds", :metadata {:result_type "recent"}, :from_user_id 161516426, :id_str "92904093315645440", :to_user_id_str nil, :from_user_id_str "161516426", :created_at "Mon, 18 Jul 2011 10:30:36 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", :source "<a href="http://www.google.com/support/youtube/bin/answer.py?hl=en&answer=164577" rel="nofollow">Google</a>", :id 92904093315645440} {:text "a web geek's wet dreams! "Creating a Query DSL using Clojure and MongoDB" http://ow.ly/5GQrb", :from_user "doxaras", :metadata {:result_type "recent"}, :from_user_id 539633, :id_str "92904411487150080", :to_user_id_str nil, :from_user_id_str "539633", :created_at "Mon, 18 Jul 2011 10:31:52 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1427861699/profile_pc_normal.jpg", :source "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", :id 92904411487150080} {:text "RT @romanroe: @djspiewak "Does Clojure have a Sinatra clone?" A: Take a look at Noir http://www.webnoir.org/", :from_user "dnwiebe", :metadata {:result_type "recent"}, :from_user_id 38096319, :id_str "92905116033753088", :to_user_id_str nil, :from_user_id_str "38096319", :created_at "Mon, 18 Jul 2011 10:34:40 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/213714456/Dan_Wiebe_normal.jpg", :source "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", :id 92905116033753088} {:text "RT @djspiewak: Thinking about speaking at clojure/conj. That would be quite an interesting audience…", :from_user "fogus", :metadata {:result_type "recent"}, :from_user_id 228867, :id_str "92907638349774848", :to_user_id_str nil, :from_user_id_str "228867", :created_at "Mon, 18 Jul 2011 10:44:41 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1429595636/5aa24eee4238e1e964210ed447e8dc91_normal.jpeg", :source "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", :id 92907638349774848} {:text "@barryclearview Where's your clojure recruitment team? ;-)", :from_user "otfrom", :metadata {:result_type "recent"}, :from_user_id 1150576, :id_str "92911517326000129", :to_user "barryclearview", :to_user_id_str "6642545", :from_user_id_str "1150576", :created_at "Mon, 18 Jul 2011 11:00:06 +0000", :geo nil, :iso_language_code "en", :to_user_id 6642545, :profile_image_url "http://a2.twimg.com/profile_images/1398798564/bld-summer-clj-3-sq_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92911517326000129} {:text "Web development in a the LISP-derived language Clojure. http://sgp.cm/30ac36", :from_user "torstenek", :metadata {:result_type "recent"}, :from_user_id 3640855, :id_str "92914130763268096", :to_user_id_str nil, :from_user_id_str "3640855", :created_at "Mon, 18 Jul 2011 11:10:29 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/860569960/n578523522_9696_normal.jpg", :source "<a href="http://startgoogleplus.com" rel="nofollow">Start Google Plus</a>", :id 92914130763268096} {:text "#Scala available http://j.mp/noVYHY .NET in an almost production ready form. When will #clojure be there ?", :from_user "sandgorgon1", :metadata {:result_type "recent"}, :from_user_id 8953971, :id_str "92916669151854592", :to_user_id_str nil, :from_user_id_str "8953971", :created_at "Mon, 18 Jul 2011 11:20:34 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1377201554/_c51298_image_0_normal.png", :source "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", :id 92916669151854592} {:text "@djspiewak #Noir for #Clojure should be Sinatra-ish. www.webnoir.org. A tip some time ago from @gnab, a colleague of mine...", :from_user "mikkelbd", :metadata {:result_type "recent"}, :from_user_id 208961513, :id_str "92916771123761153", :to_user "djspiewak", :to_user_id_str "659256", :from_user_id_str "208961513", :created_at "Mon, 18 Jul 2011 11:20:59 +0000", :geo nil, :iso_language_code "en", :to_user_id 659256, :profile_image_url "http://a0.twimg.com/profile_images/1360005141/Mikkel_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92916771123761153} {:text "@djspiewak It is called Compojure: http://t.co/NAIpkbZ ... enjoy Clojure :)", :from_user "sbtourist", :metadata {:result_type "recent"}, :from_user_id 3846685, :id_str "92917792709410816", :to_user "djspiewak", :to_user_id_str "659256", :from_user_id_str "3846685", :created_at "Mon, 18 Jul 2011 11:25:02 +0000", :geo nil, :iso_language_code "en", :to_user_id 659256, :profile_image_url "http://a0.twimg.com/profile_images/72494229/Cryer_Black_normal.jpg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92917792709410816} {:text "RT @doxaras: a web geek's wet dreams! "Creating a Query DSL using Clojure and MongoDB" http://ow.ly/5GQrb", :from_user "spyroskotsakis", :metadata {:result_type "recent"}, :from_user_id 5668142, :id_str "92918066639409152", :to_user_id_str nil, :from_user_id_str "5668142", :created_at "Mon, 18 Jul 2011 11:26:08 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1306692344/my_normal.jpg", :source "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", :id 92918066639409152} {:text "Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "sbtourist", :metadata {:result_type "recent"}, :from_user_id 3846685, :id_str "92920320243142656", :to_user_id_str nil, :from_user_id_str "3846685", :created_at "Mon, 18 Jul 2011 11:35:05 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/72494229/Cryer_Black_normal.jpg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92920320243142656} {:text "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "talios", :metadata {:result_type "recent"}, :from_user_id 46509, :id_str "92921104737386496", :to_user_id_str nil, :from_user_id_str "46509", :created_at "Mon, 18 Jul 2011 11:38:12 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1348374565/shaggytal_normal.png", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92921104737386496} {:text "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "kumarshantanu", :metadata {:result_type "recent"}, :from_user_id 4933167, :id_str "92923473789337602", :to_user_id_str nil, :from_user_id_str "4933167", :created_at "Mon, 18 Jul 2011 11:47:37 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/209965412/ep_normal.jpg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92923473789337602} {:text "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "pedroteixeira", :metadata {:result_type "recent"}, :from_user_id 51977, :id_str "92926586373939201", :to_user_id_str nil, :from_user_id_str "51977", :created_at "Mon, 18 Jul 2011 11:59:59 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/55240016/thumb_normal.png", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92926586373939201} {:text "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "ambrosebs", :metadata {:result_type "recent"}, :from_user_id 353044345, :id_str "92926643181588481", :to_user_id_str nil, :from_user_id_str "353044345", :created_at "Mon, 18 Jul 2011 12:00:12 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1430459395/ambrose-headshot_normal.jpg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92926643181588481} {:text "@wunki_ Nice, I am sure you heard, but a reminder: http://bit.ly/n4TjJJ", :from_user "asenchi", :metadata {:result_type "recent"}, :from_user_id 21361943, :id_str "92926854067007488", :to_user "wunki_", :to_user_id_str "207901970", :from_user_id_str "21361943", :created_at "Mon, 18 Jul 2011 12:01:03 +0000", :geo nil, :iso_language_code "en", :to_user_id 207901970, :profile_image_url "http://a0.twimg.com/profile_images/1283790647/220px-Screamadelica_album_cover_normal.jpg", :source "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", :id 92926854067007488} {:text "#Java is as much about the #JVM as it is the language. http://j.mp/oWUkNg. #scala #clojure #groovy", :from_user "robsondealmeida", :metadata {:result_type "recent"}, :from_user_id 14621500, :id_str "92927606617411585", :to_user_id_str nil, :from_user_id_str "14621500", :created_at "Mon, 18 Jul 2011 12:04:02 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1137553341/software_developer_normal.jpg", :source "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", :id 92927606617411585} {:text "Opinion: Why You Might Want To Consider Java And/Or Clojure For Your Next Project http://t.co/hsDMMl7", :from_user "daniellaguilarb", :metadata {:result_type "recent"}, :from_user_id 350592597, :id_str "92930898172973057", :to_user_id_str nil, :from_user_id_str "350592597", :created_at "Mon, 18 Jul 2011 12:17:07 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1427637154/1309881183_jcaro-50029_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92930898172973057} {:text "Во всех функциональных языках, кроме clojure, хвостовые вызовы никак explicitly не выделяются, а это как-то плохо на самом деле....", :from_user "Farkur", :metadata {:result_type "recent"}, :from_user_id 172018047, :id_str "92932823694061568", :to_user_id_str nil, :from_user_id_str "172018047", :created_at "Mon, 18 Jul 2011 12:24:46 +0000", :geo nil, :iso_language_code "ru", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1187114822/552048490_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92932823694061568} {:text "A Clojure IDE that "just works": http://t.co/sz3Fjx9\n(Very cool!)", :from_user "MayDaniel_", :metadata {:result_type "recent"}, :from_user_id 138970417, :id_str "92936324952236032", :to_user_id_str nil, :from_user_id_str "138970417", :created_at "Mon, 18 Jul 2011 12:38:41 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1372187104/Daniel_May4_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92936324952236032} {:text "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "jboner", :metadata {:result_type "recent"}, :from_user_id 3020451, :id_str "92938487430516736", :to_user_id_str nil, :from_user_id_str "3020451", :created_at "Mon, 18 Jul 2011 12:47:16 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1395654712/jonas_bw_small_normal.JPG", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92938487430516736} {:text "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "tim_yates", :metadata {:result_type "recent"}, :from_user_id 1932442, :id_str "92939112893530112", :to_user_id_str nil, :from_user_id_str "1932442", :created_at "Mon, 18 Jul 2011 12:49:45 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/422071707/tweet2_normal.jpg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92939112893530112} {:text "Clojure Demo http://is.gd/WznCHn #functional", :from_user "halfageekinfo", :metadata {:result_type "recent"}, :from_user_id 279882637, :id_str "92939877053767680", :to_user_id_str nil, :from_user_id_str "279882637", :created_at "Mon, 18 Jul 2011 12:52:48 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1324487726/dr_bunsen_honeydew_normal.jpg", :source "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", :id 92939877053767680} {:text "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "aloiscochard", :metadata {:result_type "recent"}, :from_user_id 95276061, :id_str "92940324875403265", :to_user_id_str nil, :from_user_id_str "95276061", :created_at "Mon, 18 Jul 2011 12:54:34 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/766618696/avatar-popey-bw-transparent_normal.png", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92940324875403265} {:text "RT @djspiewak: Thinking about speaking at clojure/conj. That would be quite an interesting audience…", :from_user "ambrosebs", :metadata {:result_type "recent"}, :from_user_id 353044345, :id_str "92941156463284224", :to_user_id_str nil, :from_user_id_str "353044345", :created_at "Mon, 18 Jul 2011 12:57:53 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1430459395/ambrose-headshot_normal.jpg", :source "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", :id 92941156463284224} {:text "Want to run Clojure on the CLR? Yes you can - http://t.co/G17iKjp", :from_user "andystopford", :metadata {:result_type "recent"}, :from_user_id 71092235, :id_str "92941943117586432", :to_user_id_str nil, :from_user_id_str "71092235", :created_at "Mon, 18 Jul 2011 13:01:00 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/291928248/100_0187_2_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92941943117586432} {:text "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "ebaxt", :metadata {:result_type "recent"}, :from_user_id 4682803, :id_str "92942363172929537", :to_user_id_str nil, :from_user_id_str "4682803", :created_at "Mon, 18 Jul 2011 13:02:40 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1359531299/gravatar_me_normal.jpeg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92942363172929537} {:text "Exceptions are bad (tm) - Haskell's "Either" for error handling in #clojure - simples http://j.mp/oQprXO", :from_user "marrowboy_co_uk", :metadata {:result_type "recent"}, :from_user_id 223877571, :id_str "92946805490335744", :to_user_id_str nil, :from_user_id_str "223877571", :created_at "Mon, 18 Jul 2011 13:20:19 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1232055624/marrowboy_normal.jpeg", :source "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", :id 92946805490335744} {:text "What a problem! Only 6 days left of vacation and would still want to code with both #Scala + Akka and #clojure. Need more time :D", :from_user "ekarlsso", :metadata {:result_type "recent"}, :from_user_id 79693153, :id_str "92946870795649025", :to_user_id_str nil, :from_user_id_str "79693153", :created_at "Mon, 18 Jul 2011 13:20:35 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1423118320/erik_for_web_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92946870795649025} {:text "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "mamirm", :metadata {:result_type "recent"}, :from_user_id 117745315, :id_str "92951660510449664", :to_user_id_str nil, :from_user_id_str "117745315", :created_at "Mon, 18 Jul 2011 13:39:37 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1156505711/khelg-big_normal.jpg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92951660510449664} {:text "RT @omasanori: 日本時間で7/21午前ごろに、RichがニューヨークClojureユーザーグループの会合で「新しいこと」について話をするらしく、Clojure/coreは今日その「新しいこと」の仕上げを頑張ったそうだ。一体何だろう #clojure", :from_user "toomore_such", :metadata {:result_type "recent"}, :from_user_id 32273145, :id_str "92952557344927745", :to_user_id_str nil, :from_user_id_str "32273145", :created_at "Mon, 18 Jul 2011 13:43:11 +0000", :geo nil, :iso_language_code "ja", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/541305740/laughing_man_normal.jpg", :source "<a href="http://www.movatwi.jp" rel="nofollow">モバツイ / www.movatwi.jp</a>", :id 92952557344927745} {:text "Released my first Leiningen Plugin (Clojure, documentation build automation) :: kyleburton/lein-margauto -... http://tumblr.com/x1e3kd6nr9", :from_user "kyleburton", :metadata {:result_type "recent"}, :from_user_id 28245, :id_str "92961077540814848", :to_user_id_str nil, :from_user_id_str "28245", :created_at "Mon, 18 Jul 2011 14:17:02 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/72535248/kyle-profile-photo-150x216_normal.jpg", :source "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", :id 92961077540814848} {:text "RT @kyleburton: Released my first Leiningen Plugin (Clojure, documentation build automation) :: kyleburton/lein-margauto -... http://tumblr.com/x1e3kd6nr9", :from_user "kumarshantanu", :metadata {:result_type "recent"}, :from_user_id 4933167, :id_str "92961581310283776", :to_user_id_str nil, :from_user_id_str "4933167", :created_at "Mon, 18 Jul 2011 14:19:02 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/209965412/ep_normal.jpg", :source "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", :id 92961581310283776} {:text "RT @kyleburton: Released my first Leiningen Plugin (Clojure, documentation build automation) :: kyleburton/lein-margauto -... http://tumblr.com/x1e3kd6nr9", :from_user "otfrom", :metadata {:result_type "recent"}, :from_user_id 1150576, :id_str "92964602077384704", :to_user_id_str nil, :from_user_id_str "1150576", :created_at "Mon, 18 Jul 2011 14:31:02 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1398798564/bld-summer-clj-3-sq_normal.jpg", :source "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", :id 92964602077384704} {:text "RT @kyleburton Released my first Leiningen Plugin (Clojure, documentation build automation) kyleburton/lein-margauto http://bit.ly/oAR704", :from_user "fogus", :metadata {:result_type "recent"}, :from_user_id 228867, :id_str "92967496163934208", :to_user_id_str nil, :from_user_id_str "228867", :created_at "Mon, 18 Jul 2011 14:42:33 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1429595636/5aa24eee4238e1e964210ed447e8dc91_normal.jpeg", :source "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", :id 92967496163934208} {:text "RT @fogus: RT @kyleburton Released my first Leiningen Plugin (Clojure, documentation build automation) kyleburton/lein-margauto http://bit.ly/oAR704", :from_user "map_it", :metadata {:result_type "recent"}, :from_user_id 115372625, :id_str "92968289726251008", :to_user_id_str nil, :from_user_id_str "115372625", :created_at "Mon, 18 Jul 2011 14:45:42 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1416979654/5712240313_7eafa675a5_b_normal.jpg", :source "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", :id 92968289726251008} {:text "Introduction to Logic Programming with #Clojure core.logic http://t.co/GQvXbTe Any feedback or corrections most welcome. Enjoy!", :from_user "ambrosebs", :metadata {:result_type "recent"}, :from_user_id 353044345, :id_str "92969180579631104", :to_user_id_str nil, :from_user_id_str "353044345", :created_at "Mon, 18 Jul 2011 14:49:14 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/1430459395/ambrose-headshot_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92969180579631104} {:text "RT @ambrosebs: Introduction to Logic Programming with #Clojure core.logic http://t.co/GQvXbTe Any feedback or corrections most welcome. Enjoy!", :from_user "swannodette", :metadata {:result_type "recent"}, :from_user_id 455347, :id_str "92969501972365312", :to_user_id_str nil, :from_user_id_str "455347", :created_at "Mon, 18 Jul 2011 14:50:31 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/62572418/me_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92969501972365312} {:text "RT @kyleburton: Released my first Leiningen Plugin (Clojure, documentation build automation) :: kyleburton/lein-margauto -... http://tumblr.com/x1e3kd6nr9", :from_user "romanroe", :metadata {:result_type "recent"}, :from_user_id 1180316, :id_str "92970330129313792", :to_user_id_str nil, :from_user_id_str "1180316", :created_at "Mon, 18 Jul 2011 14:53:48 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/1154895054/9d5c1949-3722-4eff-84a6-a46a7fc6db46_normal.png", :source "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", :id 92970330129313792} {:text "This rules http://t.co/1hvedNM #logic #clojure", :from_user "swannodette", :metadata {:result_type "recent"}, :from_user_id 455347, :id_str "92970401948377088", :to_user_id_str nil, :from_user_id_str "455347", :created_at "Mon, 18 Jul 2011 14:54:05 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/62572418/me_normal.jpg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92970401948377088} {:text ""clooj, a small IDE for clojure" http://t.co/iEuBV4z http://t.co/FD6oJpk", :from_user "tsubame959", :metadata {:result_type "recent"}, :from_user_id 37460207, :id_str "92970549290082305", :to_user_id_str nil, :from_user_id_str "37460207", :created_at "Mon, 18 Jul 2011 14:54:40 +0000", :geo nil, :iso_language_code "fr", :to_user_id nil, :profile_image_url "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", :source "<a href="http://twitter.com/">web</a>", :id 92970549290082305} {:text "RT @ambrosebs: Introduction to Logic Programming with #Clojure core.logic http://t.co/GQvXbTe Any feedback or corrections most welcome. Enjoy!", :from_user "cgrand", :metadata {:result_type "recent"}, :from_user_id 5674342, :id_str "92973075804594178", :to_user_id_str nil, :from_user_id_str "5674342", :created_at "Mon, 18 Jul 2011 15:04:43 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/195831099/idCarre_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92973075804594178} {:text "RT @kyleburton: Released my first Leiningen Plugin (Clojure, documentation build automation) :: kyleburton/lein-margauto -... http://tumblr.com/x1e3kd6nr9", :from_user "mdelaurentis", :metadata {:result_type "recent"}, :from_user_id 29928826, :id_str "92974881095958528", :to_user_id_str nil, :from_user_id_str "29928826", :created_at "Mon, 18 Jul 2011 15:11:53 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/367600334/6156d02df6db1a41dc9af4617f556ae6_normal.png", :source "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", :id 92974881095958528} {:text "RT @fogus: RT @kyleburton Released my first Leiningen Plugin (Clojure, documentation build automation) kyleburton/lein-margauto http://bit.ly/oAR704", :from_user "jgehtland", :metadata {:result_type "recent"}, :from_user_id 321271, :id_str "92977855641817091", :to_user_id_str nil, :from_user_id_str "321271", :created_at "Mon, 18 Jul 2011 15:23:42 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1317512085/justin-gehtland_normal.jpg", :source "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", :id 92977855641817091} {:text "RT @ambrosebs: Introduction to Logic Programming with #Clojure core.logic http://t.co/GQvXbTe Any feedback or corrections most welcome. Enjoy!", :from_user "kumarshantanu", :metadata {:result_type "recent"}, :from_user_id 4933167, :id_str "92979103468236800", :to_user_id_str nil, :from_user_id_str "4933167", :created_at "Mon, 18 Jul 2011 15:28:40 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/209965412/ep_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92979103468236800} {:text "Clojure agents turn out to be very handy; state is needed in the end.", :from_user "lnostdal", :metadata {:result_type "recent"}, :from_user_id 13650688, :id_str "92979838746497024", :to_user_id_str nil, :from_user_id_str "13650688", :created_at "Mon, 18 Jul 2011 15:31:35 +0000", :geo nil, :iso_language_code "en", :place {:id "6b592f31cdf387b2", :type "city", :full_name "Skien, Telemark"}, :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1146297106/a539e214c9980ff4b53ad5ca9347aa91_normal.jpeg", :source "<a href="http://twitter.com/">web</a>", :id 92979838746497024} {:text "RT @ambrosebs: Introduction to Logic Programming with #Clojure core.logic http://t.co/GQvXbTe Any feedback or corrections most welcome. Enjoy!", :from_user "vijaykiran", :metadata {:result_type "recent"}, :from_user_id 360631, :id_str "92980164367089665", :to_user_id_str nil, :from_user_id_str "360631", :created_at "Mon, 18 Jul 2011 15:32:53 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a3.twimg.com/profile_images/71586770/favicon-original_normal.png", :source "<a href="http://twitter.com/">web</a>", :id 92980164367089665} {:text "I'd love for any #clojure experts to check out my tiny library and point how it could be better/faster/more idiomatic: http://t.co/REyJwsv", :from_user "sorenmacbeth", :metadata {:result_type "recent"}, :from_user_id 23805, :id_str "92981892080615425", :to_user_id_str nil, :from_user_id_str "23805", :created_at "Mon, 18 Jul 2011 15:39:45 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a2.twimg.com/profile_images/1281923269/image_normal.jpg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92981892080615425} {:text "RT @ambrosebs: Introduction to Logic Programming with #Clojure core.logic http://t.co/GQvXbTe Any feedback or corrections most welcome. Enjoy!", :from_user "jneira", :metadata {:result_type "recent"}, :from_user_id 1446634, :id_str "92981943225954304", :to_user_id_str nil, :from_user_id_str "1446634", :created_at "Mon, 18 Jul 2011 15:39:57 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/760811483/vintage_normal.jpg", :source "<a href="http://twitter.com/">web</a>", :id 92981943225954304} {:text "RT @sbtourist: Clooj, a lightweight Clojure IDE: http://t.co/OSCjr9X", :from_user "icylisper", :metadata {:result_type "recent"}, :from_user_id 265464842, :id_str "92983705727008769", :to_user_id_str nil, :from_user_id_str "265464842", :created_at "Mon, 18 Jul 2011 15:46:57 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1430445595/gravti_normal.jpg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92983705727008769} {:text "#minikanren #clojure core.logic has infinite possibilities, great tutorial by @ambrosebs http://ht.ly/5H9ry", :from_user "jneira", :metadata {:result_type "recent"}, :from_user_id 1446634, :id_str "92985673870606336", :to_user_id_str nil, :from_user_id_str "1446634", :created_at "Mon, 18 Jul 2011 15:54:46 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a1.twimg.com/profile_images/760811483/vintage_normal.jpg", :source "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", :id 92985673870606336} {:text "RT @swannodette: This rules http://t.co/1hvedNM #logic #clojure", :from_user "hby", :metadata {:result_type "recent"}, :from_user_id 47850, :id_str "92986629425336320", :to_user_id_str nil, :from_user_id_str "47850", :created_at "Mon, 18 Jul 2011 15:58:34 +0000", :geo nil, :iso_language_code "en", :to_user_id nil, :profile_image_url "http://a0.twimg.com/profile_images/1054519408/smileorsmirk_normal.jpg", :source "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", :id 92986629425336320})
@@ -0,0 +1,30 @@
1
+ #!/bin/sh
2
+
3
+ rm -rf out
4
+ mkdir -p out
5
+
6
+ #bin/cljsc benchmark > out/core-benchmark.js
7
+ bin/cljsc benchmark "{:optimizations :advanced}" >out/core-advanced-benchmark.js
8
+
9
+ if [ "$V8_HOME" = "" ]; then
10
+ echo "V8_HOME not set, skipping V8 benchmarks"
11
+ else
12
+ echo "Benchmarking with V8"
13
+ "${V8_HOME}/d8" out/core-advanced-benchmark.js
14
+ # TODO: figure out path problem when not in advanced mode
15
+ # "${V8_HOME}/d8" out/core-benchmark.js
16
+ fi
17
+
18
+ if [ "$SPIDERMONKEY_HOME" = "" ]; then
19
+ echo "SPIDERMONKEY_HOME not set, skipping SpiderMonkey benchmarks"
20
+ else
21
+ echo "Benchmarking with SpiderMonkey"
22
+ "${SPIDERMONKEY_HOME}/js" -m -n -a -f out/core-advanced-benchmark.js
23
+ fi
24
+
25
+ if [ "$JSC_HOME" = "" ]; then
26
+ echo "JSC_HOME not set, skipping JavaScriptCore benchmarks"
27
+ else
28
+ echo "Benchmarking with JavaScriptCore"
29
+ "${JSC_HOME}/jsc" -f out/core-advanced-benchmark.js
30
+ fi
@@ -0,0 +1,70 @@
1
+ #!/bin/sh
2
+
3
+ set -e
4
+
5
+ mkdir -p lib
6
+
7
+ echo "Fetching Clojure..."
8
+ curl -O -s http://repo1.maven.org/maven2/org/clojure/clojure/1.4.0/clojure-1.4.0.zip
9
+ unzip -qu clojure-1.4.0.zip
10
+ echo "Copying clojure-1.4.0/clojure-1.4.0.jar to lib/clojure.jar..."
11
+ cp clojure-1.4.0/clojure-1.4.0.jar lib/clojure.jar
12
+ echo "Cleaning up Clojure directory..."
13
+ rm -rf clojure-1.4.0/
14
+ echo "Cleaning up Clojure archive..."
15
+ rm clojure-1.4.0.zip
16
+
17
+ echo "Fetching Google Closure library..."
18
+ mkdir -p closure/library
19
+ cd closure/library
20
+ if [ "$1" = "--closure-library-head" ] ; then
21
+ echo "Building against HEAD of Google Closure library..."
22
+
23
+ # Check if svn present
24
+ type svn >/dev/null 2>&1 || { echo >&2 "Need svn command to checkout HEAD of Google Closure library. Aborting."; exit 1; }
25
+
26
+ # Existing checkout?
27
+ if svn info --non-interactive >/dev/null 2>&1; then
28
+ echo "Updating Google Closure library from HEAD..."
29
+ svn update -q --non-interactive
30
+ else
31
+ echo "Checking out HEAD of Google Closure library..."
32
+ rm -rf *
33
+ svn checkout -q --non-interactive http://closure-library.googlecode.com/svn/trunk/ ./
34
+ fi
35
+ else
36
+ echo "Fetching Google Closure library..."
37
+ f=closure-library-20111110-r1376.zip
38
+ curl -O -s "http://closure-library.googlecode.com/files/$f"
39
+ unzip -qu "$f"
40
+ echo "Cleaning up Google Closure library archive..."
41
+ rm "$f"
42
+ fi
43
+ cd ..
44
+
45
+ echo "Fetching Google Closure compiler..."
46
+ mkdir -p compiler
47
+ cd compiler
48
+ curl -O -s http://closure-compiler.googlecode.com/files/compiler-latest.zip
49
+ unzip -qu compiler-latest.zip
50
+ echo "Cleaning up Google Closure compiler archive..."
51
+ rm compiler-latest.zip
52
+ cd ../..
53
+ echo "Building lib/goog.jar..."
54
+ echo "jar cf ./lib/goog.jar -C closure/library/closure/ goog"
55
+ jar cf ./lib/goog.jar -C closure/library/closure/ goog
56
+
57
+ echo "Fetching Rhino..."
58
+ curl -O -s http://ftp.mozilla.org/pub/mozilla.org/js/rhino1_7R3.zip
59
+ unzip -qu rhino1_7R3.zip
60
+ echo "Copying rhino1_7R3/js.jar to lib/js.jar..."
61
+ cp rhino1_7R3/js.jar lib/js.jar
62
+ echo "Cleaning up Rhino directory..."
63
+ rm -rf rhino1_7R3/
64
+ echo "Cleaning up Rhino archive..."
65
+ rm rhino1_7R3.zip
66
+
67
+ echo "Copying closure/compiler/compiler.jar to lib/compiler.jar"
68
+ cp closure/compiler/compiler.jar lib
69
+
70
+ echo "[Bootstrap Completed]"