-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimport.js
13781 lines (13705 loc) · 868 KB
/
import.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// UVIs converted from Twitter export
var import2011feb = [
{
"n": 1,
"x": "Created this twitter acct to log user-visible improvements (UVIs) to Beeminder. (Yes, this is a UVI. Everything counts no matter how small!)",
"u": "https://twitter.com/beemuvi/status/39402430655373312",
"t": "2011-02-20 19:14:06 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 2,
"x": "Added ridiculous dog-dressed-as-a-bee picture. Yes, \"improvement\" is allowed to be in big fat scare quotes.",
"u": "https://twitter.com/beemuvi/status/39405230130991104",
"t": "2011-02-20 19:25:13 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 3,
"x": "Now suppressing reminder emails if you already entered something. (If buggy the bug fixes also count as UVIs! Purposefully super generous.)",
"u": "https://twitter.com/beemuvi/status/39410628175200256",
"t": "2011-02-20 19:46:40 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 4,
"x": "As predicted: bug fix! Suppressed oversuppressing of reminder emails.",
"u": "https://twitter.com/beemuvi/status/39442308222943232",
"t": "2011-02-20 21:52:33 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 5,
"x": "Set up http://bmndr.com/meta/uvi to force ourselves to average at least 1 user-visible improvement (UVI) per day (certain exemptions apply).",
"u": "https://twitter.com/beemuvi/status/39739599475576832",
"t": "2011-02-21 17:33:53 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 6,
"x": "Rudimentary stats at bottom of graph pages.",
"u": "https://twitter.com/beemuvi/status/40267278511648768",
"t": "2011-02-23 04:30:41 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 7,
"x": "Add \".json\" to your graph URL to get graph params & output as JSON. Eg http://bmndr.com/d/meta.json (will work after your next datapoint)",
"u": "https://twitter.com/beemuvi/status/40656544131457024",
"t": "2011-02-24 06:17:30 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 8,
"x": "JSON output has timestamps in unixtime. (Plus introduced and then fixed a bug; not sure if we should count that.)",
"u": "https://twitter.com/beemuvi/status/41138773358149632",
"t": "2011-02-25 14:13:42 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 9,
"x": "Check out the stats at the bottom of your graph page now; much nicer!",
"u": "https://twitter.com/beemuvi/status/41201736186216448",
"t": "2011-02-25 18:23:54 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 10,
"x": "Made all rates consistently use the specified units in the JSON output.",
"u": "https://twitter.com/beemuvi/status/41201771376418816",
"t": "2011-02-25 18:24:02 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ ]
var import2011mar = [
{
"n": 11,
"x": "Negative rates are no longer confusingly listed in the wrong order in the stats at the bottom of graphs.",
"u": "https://twitter.com/beemuvi/status/42701921961787392",
"t": "2011-03-01 21:45:06 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 12,
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: New guest blog post by @KevinBMcGowan on Food Habits: http://blog.bmndr.com/foodhabits",
"u": "https://twitter.com/bmndr/status/42716792887590912",
"t": "2011-03-01 22:44:11 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 13,
"x": "Bug fix in stats for flat roads.",
"u": "https://twitter.com/beemuvi/status/43589293670805504",
"t": "2011-03-04 08:31:12 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 14,
"x": "Cheapo bug fix for erroneous quoting of number of safety buffer days for weight loss graphs.",
"u": "https://twitter.com/beemuvi/status/43592281973981185",
"t": "2011-03-04 08:43:04 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 15,
"x": "Bugfix: Response emails were accidentally off the past couple days; fixed now. Thanks to user http://bmndr.com/laur for alerting us!",
"u": "https://twitter.com/beemuvi/status/43860139542986753",
"t": "2011-03-05 02:27:26 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 16,
"x": "More useful subject lines in the response emails, like \"wrong lane!\" or whatnot.",
"u": "https://twitter.com/beemuvi/status/43948881972695040",
"t": "2011-03-05 08:20:04 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 17,
"x": "Clearer/conciser stats at bottom of graph pages. (Will take effect when you enter your next datapoint.) Progress, rate, lane, delta.",
"u": "https://twitter.com/beemuvi/status/43956886868996096",
"t": "2011-03-05 08:51:53 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 18,
"x": "Better handling of significant digits when displaying numbers. Cf http://stackoverflow.com/q/5208663",
"u": "https://twitter.com/beemuvi/status/44344772067999744",
"t": "2011-03-06 10:33:12 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 19,
"x": "In stats, we now display initial datapoint instead of start of YBR (typically the same for weight loss graphs but was confusing otherwise).",
"u": "https://twitter.com/beemuvi/status/44347748111228930",
"t": "2011-03-06 10:45:01 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 20,
"x": "RT <a href=\"https://twitter.com/dreev\">@dreev</a>: TimePie is now TagTime and is on github http://tagti.me <a href=\"https://twitter.com/tagtm\">@tagtm</a>",
"u": "https://twitter.com/dreev/status/44713552317132800",
"t": "2011-03-07 10:58:36 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 21,
"x": "Beeminder graphs should now always update within 5 minutes of stepping on your Withings scale.",
"u": "https://twitter.com/beemuvi/status/45019699121106946",
"t": "2011-03-08 07:15:07 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 22,
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: Little Debbie Does Dog Food: http://blog.bmndr.com/lildeb",
"u": "https://twitter.com/bmndr/status/45699837148147712",
"t": "2011-03-10 04:17:44 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 23,
"x": "Reformatted reeminder emails and fixed resultant bug with bot response parsing.",
"u": "https://twitter.com/beemuvi/status/46036994433892352",
"t": "2011-03-11 02:37:29 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 24,
"x": "Subtle bug fix: JSON output now properly escaping quotes. Eg, http://bmndr.com/jill/weight.json",
"u": "https://twitter.com/beemuvi/status/46313959162253312",
"t": "2011-03-11 20:58:02 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 25,
"x": "Graphs w/ ztoday (\"zero today\") true will autoupdate daily. So reported safety buffer never stale. Eg, http://bmndr.com/brainshell",
"u": "https://twitter.com/beemuvi/status/46342465690681344",
"t": "2011-03-11 22:51:19 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 26,
"x": "Now using Disqus for comments on the blog. http://blog.bmndr.com",
"u": "https://twitter.com/beemuvi/status/47972153051709441",
"t": "2011-03-16 10:47:07 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 27,
"x": "Embarrassing bug fix: email address no longer accessible from JSON output! Eg, http://bmndr.com/d/sugar.json",
"u": "https://twitter.com/beemuvi/status/48311424581238784",
"t": "2011-03-17 09:15:15 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 28,
"x": "Fixed a weird bug caused by some interaction of Disqus and WordPress where you couldn't click on any links in Firefox. http://blog.bmndr.com",
"u": "https://twitter.com/beemuvi/status/49040624309121024",
"t": "2011-03-19 09:32:50 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 29,
"x": "http://blog.bmndr.com now renders properly on ipad. CSS bug fix by <a href=\"https://twitter.com/thatgirl\">@thatgirl</a>.",
"u": "https://twitter.com/beemuvi/status/49918809242468352",
"t": "2011-03-21 19:42:26 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 30,
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: How to force yourself to not waste money on a long-term gym membership: http://blog.bmndr.com/gym (guest post by Jill Renaud)",
"u": "https://twitter.com/bmndr/status/50012175175135232",
"t": "2011-03-22 01:53:26 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 31,
"x": "What you're risking now shows up in the header of your graph page. E.g., Jill's gym goal: http://bmndr.com/jill/gym",
"u": "https://twitter.com/beemuvi/status/50309281530134528",
"t": "2011-03-22 21:34:02 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 32,
"x": "Fixed wrapping weirdness in the headers. CSS tweaking by <a href=\"https://twitter.com/thatgirl\">@thatgirl</a>.",
"u": "https://twitter.com/beemuvi/status/50413925971406848",
"t": "2011-03-23 04:29:51 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 33,
"x": "The headers of graph pages now tell you where you are with respect to the yellow brick road.",
"u": "https://twitter.com/beemuvi/status/50887352347934721",
"t": "2011-03-24 11:51:04 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 34,
"x": "Html titles (the mouseover text for the tab or in the browser's title bar) now doesn't try to show html tags. Eg http://bmndr.com/d/tt",
"u": "https://twitter.com/beemuvi/status/51718899271598080",
"t": "2011-03-26 18:55:21 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 35,
"x": "For graphs that include a moving average, it's now exponentially smoothed with smoothing constant .1 a la http://dreev.es/hackdiet",
"u": "https://twitter.com/beemuvi/status/51918487756603392",
"t": "2011-03-27 08:08:26 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 36,
"x": "Mouseovers for the thumbnails in galleries now say where you are with respect to the yellow brick road.",
"u": "https://twitter.com/beemuvi/status/52263862224945152",
"t": "2011-03-28 07:00:50 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 37,
"x": "And lane number in parens. Lane -1 is bottom lane, +1 the top, +n is n lane-widths above the road, etc which is generally safety buffer days",
"u": "https://twitter.com/beemuvi/status/52266954534305792",
"t": "2011-03-28 07:13:07 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 38,
"x": "Distance from yellow brick road should now always display as 0 instead of like 0.0000000000000023.",
"u": "https://twitter.com/beemuvi/status/52463198087024640",
"t": "2011-03-28 20:12:55 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 39,
"x": "Fixed a tiny inconsistency in the layout of the navigation bar on personal gallery pages like http://bmndr.com/bd thanks to <a href=\"https://twitter.com/thatgirl\">@thatgirl</a>.",
"u": "https://twitter.com/beemuvi/status/52575318518665216",
"t": "2011-03-29 03:38:27 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 40,
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: Productivity hack: The sedimentary filing system. http://blog.bmndr.com/sediment \"My sediments exactly!\" -- <a href=\"https://twitter.com/thatgirl\">@thatgirl</a>",
"u": "https://twitter.com/bmndr/status/53655015067361280",
"t": "2011-04-01 03:08:47 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ ]
var import2011apr = [
{
"n": 41,
"x": "Unix timestamps always output as integers in API. Matters because they serve as identifiers for datapoints. Also better error handling.",
"u": "https://twitter.com/beemuvi/status/53946493190684672",
"t": "2011-04-01 22:27:00 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 42,
"x": "New API output parameter \"runame\" that gives the rate units name, one of \"year\", \"month\", \"week\", \"day\", \"hour\".",
"u": "https://twitter.com/beemuvi/status/54745276807786496",
"t": "2011-04-04 03:21:05 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 43,
"x": "Stats at the bottom of your graph now tell you exactly what number you have to have tomorrow as a bare min/max to stay on your road.",
"u": "https://twitter.com/beemuvi/status/55116552869130240",
"t": "2011-04-05 03:56:24 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 44,
"x": "Email from the bot on an \"emergency day\" will always be clear about that in the subject, that you're below/above the YBR and about to lose.",
"u": "https://twitter.com/beemuvi/status/55402893456572416",
"t": "2011-04-05 22:54:13 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 45,
"x": "Weight loss graphs show the mean of all readings by default (customizable with the aggday param for how to aggregate datapoints on same day)",
"u": "https://twitter.com/beemuvi/status/55529488079007744",
"t": "2011-04-06 07:17:16 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 46,
"x": "Glitchiness with frames around thumbnails fixed, or at least a big improvement.",
"u": "https://twitter.com/beemuvi/status/56199795429224448",
"t": "2011-04-08 03:40:50 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 47,
"x": "Color-coded thumbnails! Such a big improvement it should count as two! Maybe I'll tweet it from <a href=\"https://twitter.com/bmndr\">@bmndr</a> and count that tweet as another UVI.",
"u": "https://twitter.com/beemuvi/status/56251323754098688",
"t": "2011-04-08 07:05:35 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 48,
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: Beeminder colors: Green = right side of the road, Blue = right lane, Orange = wrong lane, Red = emergency day. http://bmndr.com",
"u": "https://twitter.com/bmndr/status/56307829233033216",
"t": "2011-04-08 10:50:07 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 49,
"x": "Frames around thumbnails now exactly right. That was irking <a href=\"https://twitter.com/dreev\">@dreev</a> for a long time.",
"u": "https://twitter.com/beemuvi/status/56308294440058880",
"t": "2011-04-08 10:51:58 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 50,
"x": "Mouseover text for thumbnails clearer (and names the color in case you're colorblind).",
"u": "https://twitter.com/beemuvi/status/56308495825387520",
"t": "2011-04-08 10:52:46 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 51,
"x": "Stopped trying to squeeze in exactly how far above/below the road you are in the subject line of the bot emails. This still needs work.",
"u": "https://twitter.com/beemuvi/status/56511555717705728",
"t": "2011-04-09 00:19:39 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 52,
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: Case Study: Martin's Renovating. http://blog.bmndr.com/martin (Not the most exciting post but we gotta hew to http://bmndr.com/meta/blog !)",
"u": "https://twitter.com/bmndr/status/57138849540878337",
"t": "2011-04-10 17:52:17 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 53,
"x": "Bug fix: Unixtimes in the API were slightly wrong due to a stupid time zone issue.",
"u": "https://twitter.com/beemuvi/status/57583428278829056",
"t": "2011-04-11 23:18:53 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 54,
"x": "Tweeted about #akrasia via <a href=\"https://twitter.com/bmndr\">@bmndr</a> et al. Cheap UVI, I know, but we're working our butts off on the back-end.",
"u": "https://twitter.com/beemuvi/status/57715298475839488",
"t": "2011-04-12 08:02:54 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 55,
"x": "Updates to the inaugural #akrasia post on http://blog.beeminder.com as well as a layout fix. Thx to <a href=\"https://twitter.com/davidmcraney\">@davidmcraney</a> and <a href=\"https://twitter.com/andrewchen\">@andrewchen</a> for links.",
"u": "https://twitter.com/beemuvi/status/57895629246050304",
"t": "2011-04-12 19:59:28 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 56,
"x": "Thought of a simple way to take 2 seconds off graph image generation time. Broke everything. Fixed it again.",
"u": "https://twitter.com/beemuvi/status/58608382331990016",
"t": "2011-04-14 19:11:41 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 57,
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: What happens when you drive blind: http://blog.bmndr.com/blind #withings",
"u": "https://twitter.com/bmndr/status/60192281906520064",
"t": "2011-04-19 04:05:32 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 58,
"x": "The BeeBrain API -- http://beeminder.com/beebrain -- now sanity checks all parameters and gives helpful errors if any are wrong.",
"u": "https://twitter.com/beemuvi/status/60273264173383680",
"t": "2011-04-19 09:27:20 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 59,
"x": "Compromise on thumbnail speed issue: colors kept up to date but actual thumb image can lag up to a week.",
"u": "https://twitter.com/beemuvi/status/60617999543058432",
"t": "2011-04-20 08:17:11 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 60,
"x": "Oops, that made it add ever more colored borders, matryoshka-style. Fixed now! (PS: We're sooo close on launching new beeminder!)",
"u": "https://twitter.com/beemuvi/status/60622916672425984",
"t": "2011-04-20 08:36:44 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 61,
"x": "Typo fix by <a href=\"https://twitter.com/thatgirl\">@thatgirl</a>: \"Coasting on a currnetly flat yellow brick road\". (Special prize for users who spot typos for us!)",
"u": "https://twitter.com/beemuvi/status/60786853820903425",
"t": "2011-04-20 19:28:09 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 62,
"x": "Image size for graphs can now be specified in the API. And default is a bit smaller (760 pixels). (Preparing for new layout!)",
"u": "https://twitter.com/beemuvi/status/60845582197067776",
"t": "2011-04-20 23:21:31 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 63,
"x": "Robustifying and somewhat OCD tweaking of thumbnail generation.",
"u": "https://twitter.com/beemuvi/status/61342865342734337",
"t": "2011-04-22 08:17:33 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 64,
"x": "Tiny bugfix for odometer graphs with multiple datapoints including a reset on the same day. Needed stable sort. Broke this ystrday actually.",
"u": "https://twitter.com/beemuvi/status/62205226307960834",
"t": "2011-04-24 17:24:16 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 65,
"x": "Shiny \"BMNDR\" logo. (Among many changes, to be tweeted shortly, that just happened as we finally switched to version 2 of Beeminder!)",
"u": "https://twitter.com/beemuvi/status/63068776983310336",
"t": "2011-04-27 02:35:42 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 66,
"x": "Edits to the about page: http://beeminder.com/about",
"u": "https://twitter.com/beemuvi/status/63137545948639232",
"t": "2011-04-27 07:08:58 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 67,
"x": "Better browsing of your data!",
"u": "https://twitter.com/beemuvi/status/63146323892908033",
"t": "2011-04-27 07:43:51 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 68,
"x": "Adorable bee as default avatar, thanks to <a href=\"https://twitter.com/amzabel\">@amzabel</a>.",
"u": "https://twitter.com/beemuvi/status/63147025633517568",
"t": "2011-04-27 07:46:38 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 69,
"x": "Edited the FAQ page: http://beeminder.com/faq",
"u": "https://twitter.com/beemuvi/status/63147259650514945",
"t": "2011-04-27 07:47:34 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 70,
"x": "Recent datapoints and a few stats in the sidebar (in addition to the more comprehensive stats at the bottom of the page).",
"u": "https://twitter.com/beemuvi/status/63316211131367424",
"t": "2011-04-27 18:58:55 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 71,
"x": "Stats above the graph is text instead of part of the image.",
"u": "https://twitter.com/beemuvi/status/63316369332117504",
"t": "2011-04-27 18:59:33 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 72,
"x": "When the bot replies to you it shows your recent data in canonicalized form. [Need to build up a safety buffer of UVIs before vacation!]",
"u": "https://twitter.com/beemuvi/status/63318054888669184",
"t": "2011-04-27 19:06:15 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 73,
"x": "Rewrote this page: http://beeminder.com/register",
"u": "https://twitter.com/beemuvi/status/63322105219002368",
"t": "2011-04-27 19:22:21 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 74,
"x": "See the link that says \"12 goals\" under, for example, Jill's gallery? http://bmndr.com/jill",
"u": "https://twitter.com/beemuvi/status/63325489103781888",
"t": "2011-04-27 19:35:47 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 75,
"x": "In the Recent Datapoints list, comments get truncated appropriately. Most of this spate of UVIs are thanks to <a href=\"https://twitter.com/thatgirl\">@thatgirl</a>, btw.",
"u": "https://twitter.com/beemuvi/status/63326649642532864",
"t": "2011-04-27 19:40:24 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 76,
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: <a href=\"https://twitter.com/dreev\">@dreev</a> learned something w/ Beeminder he never could've possibly known otherwise. Swiss cake rolls can go stale. http://dreev.es/ld",
"u": "https://twitter.com/bmndr/status/63359250122018817",
"t": "2011-04-27 21:49:57 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 77,
"x": "Fixed capitalization of nicknames in gallery view, eg, http://bmndr.com/grose",
"u": "https://twitter.com/beemuvi/status/63515259956248576",
"t": "2011-04-28 08:09:52 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 78,
"x": "Fixed an error in API/waitlist forms that redirected to contact page on submit. Try it now: http://bmndr.com/api",
"u": "https://twitter.com/beemuvi/status/63515489615355905",
"t": "2011-04-28 08:10:47 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 79,
"x": "Fixed links in recent datapoints, eg, http://bmndr.com/jamuraa/blog (and we think we're sanitizing them properly...)",
"u": "https://twitter.com/beemuvi/status/63516505928777728",
"t": "2011-04-28 08:14:49 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 80,
"x": "Thumbnails not lagged anymore (long story). Btw, despite the current deluge, this account averages one tweet (UVI) per day. For less: <a href=\"https://twitter.com/bmndr\">@bmndr</a>",
"u": "https://twitter.com/beemuvi/status/63517402243149824",
"t": "2011-04-28 08:18:23 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 81,
"x": "Oh yeah, & check out that shiny favicon! (<a href=\"https://twitter.com/thatgirl\">@thatgirl</a> again; almost got enough safety buffer on http://bmndr.com/meta/uvi for our vacation!)",
"u": "https://twitter.com/beemuvi/status/63524374598266880",
"t": "2011-04-28 08:46:05 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 82,
"x": "Better error handling for unparsable datapoints entered via the web interface.",
"u": "https://twitter.com/beemuvi/status/63669501048274945",
"t": "2011-04-28 18:22:46 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 83,
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: We're listening and responding to your ideas at http://uservoice.beeminder.com . We ♥ our beta users!",
"u": "https://twitter.com/bmndr/status/63675368019738624",
"t": "2011-04-28 18:46:05 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 84,
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: New blog post: Beeminder on Rails. http://blog.beeminder.com/rails",
"u": "https://twitter.com/bmndr/status/64021293254709249",
"t": "2011-04-29 17:40:40 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 85,
"x": "Main gallery on http://beeminder.com now shows the 20 most recently updated graphs.",
"u": "https://twitter.com/beemuvi/status/64182178212356096",
"t": "2011-04-30 04:19:58 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 86,
"x": "Layout tweaks: better spacing in the galleries and truncating goal titles and descriptions in the galleries more reasonably.",
"u": "https://twitter.com/beemuvi/status/64202402869411840",
"t": "2011-04-30 05:40:20 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 87,
"x": "Stats now refresh when graph does. Also CSV export is back, and a rare layout bug fixed. Vacation tomorrow; coasting on this safety buffer!",
"u": "https://twitter.com/beemuvi/status/64485957604343808",
"t": "2011-05-01 00:27:05 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 88,
"x": "Oh, and added a tagline to the front page and fixed the domain http://blog.bmndr.com and various fixes to legacy URLs.",
"u": "https://twitter.com/beemuvi/status/64486842740899841",
"t": "2011-05-01 00:30:36 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ ]
var import2011may = [
{
"n": 89,
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: Post on <a href=\"https://twitter.com/msymtrs\">@msymtrs</a> blog about an experimental part of beeminder: (bee)minding how you spend your time. http://messymatters.com/tagtime",
"u": "https://twitter.com/bmndr/status/65018163489816576",
"t": "2011-05-02 11:41:52 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 90,
"x": "Changes in yellow brick road steepness now always occur at midnight. Potentially confusing otherwise.",
"u": "https://twitter.com/beemuvi/status/72103404587061248",
"t": "2011-05-22 00:56:05 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 91,
"x": "New blog post: Is there a danger of unintended consequences of Beeminder contracts? http://blog.bmndr.com/unintended",
"u": "https://twitter.com/beemuvi/status/72504640234725376",
"t": "2011-05-23 03:30:27 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 92,
"x": "Yellow brick road width no longer becomes zero when the road becomes flat.",
"u": "https://twitter.com/beemuvi/status/72858384558333953",
"t": "2011-05-24 02:56:07 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 93,
"x": "When you enter data in the web form a notification box appears and then disappears nice and discreetly. Or just stays put if no javascript.",
"u": "https://twitter.com/beemuvi/status/73229635600658433",
"t": "2011-05-25 03:31:20 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 94,
"x": "Fixed a bug where html tags showed up in the graph's title when viewing data, for graphs with links in the titles like http://bmndr.com/d/tt",
"u": "https://twitter.com/beemuvi/status/73754953692356608",
"t": "2011-05-26 14:18:45 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 95,
"x": "Moved user info to right of graph in goals pages, for consistency. Huge thanks to <a href=\"https://twitter.com/devinbaillie\">@devinbaillie</a> for suggesting it and all the beta testing.",
"u": "https://twitter.com/beemuvi/status/73822519618043904",
"t": "2011-05-26 18:47:14 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 96,
"x": "\"Export to CSV\" link now prominently shown in sidebar. #dataliberation",
"u": "https://twitter.com/beemuvi/status/74253694719373312",
"t": "2011-05-27 23:20:35 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 97,
"x": "Visual tweaks: made gray headers slightly darker and removed excess spacing at bottom of 'recent datapoints' sidebar.",
"u": "https://twitter.com/beemuvi/status/74253842933497856",
"t": "2011-05-27 23:21:10 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 98,
"x": "Stats tell you the bare minimum (or hard cap) for staying on your yellow brick road. See very bottom of, eg, http://bmndr.com/meta/uvi",
"u": "https://twitter.com/beemuvi/status/75044003703304193",
"t": "2011-05-30 03:40:59 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 99,
"x": "Tweaks to bare min / hard cap stats. Eg, see very bottom of http://bmndr.com/mc/smoking",
"u": "https://twitter.com/beemuvi/status/75388422096830464",
"t": "2011-05-31 02:29:35 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ ]
var import2011jun = [
{
"n": 100,
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: Going all soup-nazi on our users: http://blog.bmndr.com/akratics #akrasia",
"u": "https://twitter.com/bmndr/status/75774306155630593",
"t": "2011-06-01 04:02:57 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 101,
"x": "Consistent style for hyperlinks.",
"u": "https://twitter.com/beemuvi/status/76127840139100160",
"t": "2011-06-02 03:27:46 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 102,
"x": "Better submit buttons.",
"u": "https://twitter.com/beemuvi/status/76482838190505985",
"t": "2011-06-03 02:58:24 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 103,
"x": "Swapped the goal/risking/status lines with the graph summary line.",
"u": "https://twitter.com/beemuvi/status/76482986303959040",
"t": "2011-06-03 02:58:59 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 104,
"x": "Fixed a css bug with the header where blackspace next to logo/title was also a link.",
"u": "https://twitter.com/beemuvi/status/77180410060222464",
"t": "2011-06-05 01:10:18 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 105,
"x": "More prominent link to personal galleries in the sidebar. \"Your Name (X goals)\".",
"u": "https://twitter.com/beemuvi/status/77181185775767552",
"t": "2011-06-05 01:13:23 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 106,
"x": "Status and stats both update roughly, almost, maybe/sorta instantly(ish) now. Graph itself still ridiculous.",
"u": "https://twitter.com/beemuvi/status/77904802041954306",
"t": "2011-06-07 01:08:46 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 107,
"x": "Improvements to the display of the bare min / hard cap numbers. [Better rounding, non-noisy \"fatso\" graphs have negative hard caps.]",
"u": "https://twitter.com/beemuvi/status/78238559835918336",
"t": "2011-06-07 23:15:00 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 108,
"x": "Goal/Risking/Status lines on goal page look a little nicer now.",
"u": "https://twitter.com/beemuvi/status/78668428851949568",
"t": "2011-06-09 03:43:09 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 109,
"x": "Goal stats and progress in sidebars now.",
"u": "https://twitter.com/beemuvi/status/79024537982869504",
"t": "2011-06-10 03:18:12 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 110,
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: Blog post about some competition: <a href=\"https://twitter.com/TimeCarrot\">@TimeCarrot</a> = <a href=\"https://twitter.com/stickK\">@stickK</a> + <a href=\"https://twitter.com/rescuetime\">@rescuetime</a>. <a href=\"http://blog.bmndr.com/timecarrot\">blog.bmndr.com/timecarrot</a>",
"u": "https://twitter.com/bmndr/status/79385765548797952",
"t": "2011-06-11 03:13:36 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 111,
"x": "You should never again see Beeminder say \"1 more days\".",
"u": "https://twitter.com/beemuvi/status/79753720304369664",
"t": "2011-06-12 03:35:43 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 112,
"x": "There's more detailed info about your road's rate (plus the time units) in the sidebar now.",
"u": "https://twitter.com/beemuvi/status/80055779385810944",
"t": "2011-06-12 23:35:59 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 113,
"x": "Bug fix: No longer shows max rate of like 4732894382% for <a href=\"http://bmndr.com/b/weight\">bmndr.com/b/weight</a>",
"u": "https://twitter.com/beemuvi/status/80061131930087424",
"t": "2011-06-12 23:57:15 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 114,
"x": "Tweaked font for stats in sidebar.",
"u": "https://twitter.com/beemuvi/status/80664548524306433",
"t": "2011-06-14 15:55:01 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 115,
"x": "Goal stats line up perfectly now.",
"u": "https://twitter.com/beemuvi/status/80847680242323456",
"t": "2011-06-15 04:02:43 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 116,
"x": "Fixed disappearing 'ago' in goal stats when you submit new data.",
"u": "https://twitter.com/beemuvi/status/80847752690540544",
"t": "2011-06-15 04:03:00 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 117,
"x": "Fixed an alignment error in the \"Status:\" line above goal.",
"u": "https://twitter.com/beemuvi/status/80848136146386944",
"t": "2011-06-15 04:04:32 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 118,
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: BMNDR vs StickK: <a href=\"http://blog.bmndr.com/stickk\">blog.bmndr.com/stickk</a> Guest post by Josh Jordan (@bumbledraven).",
"u": "https://twitter.com/bmndr/status/81224613429915648",
"t": "2011-06-16 05:00:31 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 119,
"x": "New testimonials page: <a href=\"http://bmndr.com/testimonials\">bmndr.com/testimonials</a> [blush]",
"u": "https://twitter.com/beemuvi/status/81227436448165888",
"t": "2011-06-16 05:11:44 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 120,
"x": "Made stats box margins a bit wider so the lines shouldn't ever wrap anymore.",
"u": "https://twitter.com/beemuvi/status/82857198186807296",
"t": "2011-06-20 17:07:50 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 121,
"x": "The collapsing archives widget on the blog now shows counts for each month. Thanks to Rob Felty: <a href=\"http://robfelty.com/plugins/collapsing-archives\">robfelty.com/plugins/collapsing-archives</a>",
"u": "https://twitter.com/beemuvi/status/83274834339049473",
"t": "2011-06-21 20:47:22 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 122,
"x": "Bug fix: spacing in the stats box was off after adding data to your graph (at least until you refreshed).",
"u": "https://twitter.com/beemuvi/status/83715311404191745",
"t": "2011-06-23 01:57:40 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 123,
"x": "It's now obvious when the submit button is tabbed to. Enter data, <tab>, <enter>, done.",
"u": "https://twitter.com/beemuvi/status/83715553239379968",
"t": "2011-06-23 01:58:37 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 124,
"x": "Fixed a Firefox-only bug in displaying gradients on buttons.",
"u": "https://twitter.com/beemuvi/status/83956151003254784",
"t": "2011-06-23 17:54:40 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 125,
"x": "Buttons at the top of the page (Graph, Data) are now bright when activated, which should be less confusing.",
"u": "https://twitter.com/beemuvi/status/84790848407085056",
"t": "2011-06-26 01:11:28 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 126,
"x": "Average YBR rate now included in stats sidebar. Ugly plaintext stats at bottom now obviated so we got rid of those.",
"u": "https://twitter.com/beemuvi/status/85170938324320256",
"t": "2011-06-27 02:21:48 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 127,
"x": "Graphs are framed with the color of the current dot: green = good side of road; blue = right lane; orange = wrong lane; red = off the road.",
"u": "https://twitter.com/beemuvi/status/85442651414994944",
"t": "2011-06-27 20:21:30 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 128,
"x": "Tweaked the green for indicating good side of the road. Easier to distinguish from the blue now.",
"u": "https://twitter.com/beemuvi/status/85442778800197632",
"t": "2011-06-27 20:22:00 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 129,
"x": "Link to the latest blog post in the navigation bar of all Beeminder pages. We're pretty proud of our blog!",
"u": "https://twitter.com/beemuvi/status/85443067276050432",
"t": "2011-06-27 20:23:09 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 130,
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: A friendly reminder about our friendly mass of incandescent gas. <a href=\"http://blog.beeminder.com/solstice\">blog.beeminder.com/solstice</a>",
"u": "https://twitter.com/bmndr/status/85837249236840448",
"t": "2011-06-28 22:29:29 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ ]
var import2011jul = [
{
"n": 131,
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: Commitment contracts with maximal flexibility: Beeminder's Force Majeure Clause. <a href=\"http://blog.bmndr.com/sos\">blog.bmndr.com/sos</a> #akrasia",
"u": "https://twitter.com/bmndr/status/86901351812055040",
"t": "2011-07-01 20:57:51 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 132,
"x": "Made the outline look nicer when you tab to submit button by softening the edges of the button and blending away the weird Chrome rendering",
"u": "https://twitter.com/beemuvi/status/87352490856685568",
"t": "2011-07-03 02:50:31 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 133,
"x": "Number of days of safety buffer included in the stats sidebar.",
"u": "https://twitter.com/beemuvi/status/87712910511579136",
"t": "2011-07-04 02:42:42 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 134,
"x": "Made it say 0 safety buffer days instead of \"n/a\" when you're on the wrong side of the centerline, and other tiny tweaks.",
"u": "https://twitter.com/beemuvi/status/87998352016416768",
"t": "2011-07-04 21:36:56 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 135,
"x": "Changes to the road width algorithm. Eg, road width never changes when you're in the wrong lane.",
"u": "https://twitter.com/beemuvi/status/88253720801972224",
"t": "2011-07-05 14:31:41 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 136,
"x": "Bug fixes: over-application of \"can't lose tomorrow guarantee\" and overwidening based on big deviations after not reporting.",
"u": "https://twitter.com/beemuvi/status/88343240734027776",
"t": "2011-07-05 20:27:24 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 137,
"x": "Prev datapts off the YBR shown in yellow instead of red. Road width can shrink so a past dot off the rd may not've been off-road at the time",
"u": "https://twitter.com/beemuvi/status/88623735023747072",
"t": "2011-07-06 15:01:59 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 138,
"x": "Bug fix: the amount of safety buffer quoted in the header of the graph (and emails) now consistent with what's shown in the stats sidebar",
"u": "https://twitter.com/beemuvi/status/89507894873165825",
"t": "2011-07-09 01:35:19 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 139,
"x": "Bug fix: some graphs have multiple datapoints per day and that could occasionally confuse the new road width algorithm",
"u": "https://twitter.com/beemuvi/status/89820674864066561",
"t": "2011-07-09 22:18:12 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 140,
"x": "Another bug fix w/ road width involving the rare/special case that all points are above the YBR (thought that couldn't happen!)",
"u": "https://twitter.com/beemuvi/status/89842646629093376",
"t": "2011-07-09 23:45:30 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 141,
"x": "Fixed ugly squished spacing in the list of recent datapoints that would happen when a comment was long enough to wrap",
"u": "https://twitter.com/beemuvi/status/90044870277861376",
"t": "2011-07-10 13:09:04 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 142,
"x": "Tweak to how multiple weights are averaged to get official weight of the day to close loophole where you dehydrate yourself, weigh 20 times",
"u": "https://twitter.com/beemuvi/status/90086318603902976",
"t": "2011-07-10 15:53:46 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 143,
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: The Magical Widening Yellow Brick Road. <a href=\"http://blog.bmndr.com/roadwidth\">blog.bmndr.com/roadwidth</a>",
"u": "https://twitter.com/bmndr/status/90193364825292800",
"t": "2011-07-10 22:59:08 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 144,
"x": "Number of safety buffer days may now be negative to indicate how many days ago you went off the road. Also bug fixes with the computation.",
"u": "https://twitter.com/beemuvi/status/90422902654107648",
"t": "2011-07-11 14:11:14 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 145,
"x": "Another bug fix with the display of safety buffer, for cases where displaying a safety doesn't make sense.",
"u": "https://twitter.com/beemuvi/status/90628889805729793",
"t": "2011-07-12 03:49:45 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 146,
"x": "Bug fix: Proper determination of officially being off the road: Off the road and not back on by midnight.",
"u": "https://twitter.com/beemuvi/status/91581484779057152",
"t": "2011-07-14 18:55:02 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 147,
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: Akrasia is the tendency to say \"I'll get serious tomorrow\" every day forever. <a href=\"http://www.google.com/search?q=akrasia\">google.com/search?q=akrasia</a> #akrasia",
"u": "https://twitter.com/bmndr/status/91774818046844928",
"t": "2011-07-15 07:43:16 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 148,
"x": "More improvements to the computation of number of safety buffer days for weight loss graphs, plus added new minimum road width (daily rate).",
"u": "https://twitter.com/beemuvi/status/91800785066790912",
"t": "2011-07-15 09:26:27 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 149,
"x": "Bug fix of a bug fix re: officially off the road (off *yesterday* and today, not previous and current datapoint off).",
"u": "https://twitter.com/beemuvi/status/91813707335733248",
"t": "2011-07-15 10:17:48 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 150,
"x": "Reminder emails from the bot automatically decay in frequency if you ignore them.",
"u": "https://twitter.com/beemuvi/status/93078165932621825",
"t": "2011-07-18 22:02:18 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 151,
"x": "Galleries of goals now sorted by last modification time (modification of either settings or data).",
"u": "https://twitter.com/beemuvi/status/93096458206724096",
"t": "2011-07-18 23:14:59 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 152,
"x": "Those notification boxes that briefly pop up above your graph when you add new data and whatnot are a lot less ugly now",
"u": "https://twitter.com/beemuvi/status/93707838278479872",
"t": "2011-07-20 15:44:24 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 153,
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: Akratics Anonymous is now a google group: <a href=\"http://blog.bmndr.com/akratics\">blog.bmndr.com/akratics</a> <a href=\"http://groups.google.com/group/akratics\">groups.google.com/group/akratics</a>",
"u": "https://twitter.com/bmndr/status/93839728394244096",
"t": "2011-07-21 00:28:29 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 154,
"x": "Subtle bug fix where the graph could fail to indicate when it was regenerating and require a manual refresh",
"u": "https://twitter.com/beemuvi/status/95184952697683968",
"t": "2011-07-24 17:33:55 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 155,
"x": "The title text of the graph thumbnails was sometimes contradicting itself about the number of safety buffer days. Now it isn't.",
"u": "https://twitter.com/beemuvi/status/95413070410682368",
"t": "2011-07-25 08:40:23 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 156,
"x": "Datapoints that aren't added explicitly (Bmndr assumes no change from yesterday if you don't report) are distinguishable from entered points",
"u": "https://twitter.com/beemuvi/status/95784186316718081",
"t": "2011-07-26 09:15:04 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 157,
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: \"Sometimes it seems like a hard workout makes me gain weight. My question is: WTF?\" <a href=\"http://blog.bmndr.com/backfiring\">blog.bmndr.com/backfiring</a>",
"u": "https://twitter.com/bmndr/status/96068670190657536",
"t": "2011-07-27 04:05:30 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 158,
"x": "If you're at a kink in your yellow brick road the current rate shows the rate starting now, not the rate you just finished",
"u": "https://twitter.com/beemuvi/status/96788439197945856",
"t": "2011-07-29 03:45:36 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 159,
"x": "Fixed small/rare miscalc of road width for exponential graphs (eg weightloss). Was basing daily rate on current datapt, not road val.",
"u": "https://twitter.com/beemuvi/status/96981548926107648",
"t": "2011-07-29 16:32:57 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 160,
"x": "Rose-colored dotted line showing the akrasia horizon. Which is a harbinger of big things on the horizon, Beeminder-wise.",
"u": "https://twitter.com/beemuvi/status/97296190168772608",
"t": "2011-07-30 13:23:14 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 161,
"x": "Fixed glitches with the blue-green aura around the datapoints",
"u": "https://twitter.com/beemuvi/status/97308784891936768",
"t": "2011-07-30 14:13:16 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 162,
"x": "Thin yellow guide lines that indicate how many safety buffer days you have were sometimes not extending all the way to edges of the graph",
"u": "https://twitter.com/beemuvi/status/97494860159909888",
"t": "2011-07-31 02:32:40 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ {
"n": 163,
"x": "Miscellaneous tweaks to the graphs, like not letting points get too squished against the edge or showing more of the y-axis than necessary",
"u": "https://twitter.com/beemuvi/status/97530962623217667",
"t": "2011-07-31 04:56:08 +0000",
"c": "(auto-imported from Twitter)",
}, /*************************************************************************/ ]
var import2011aug = [
{