-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuvis2011.js
1329 lines (1318 loc) · 102 KB
/
uvis2011.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
var batch2011feb = [{
"x": "Created <a href=\"http://twitter.com/beemuvi\" title=\"@beemuvi is just for tweeting UVIs; Beeminder's main Twitter account is @bmndr\">this twitter acct</a> to log user-visible improvements (UVIs) to Beeminder. (Yes, this is a UVI. Everything counts no matter how small!)",
"d": "2011-02-20",
"t": "2011-02-20", // "2011-02-20 19:14:06 +0000",
"u": "https://twitter.com/beemuvi/status/39402430655373312",
"c": "Very first UVI! Back then this counted but nowadays we don't count things that are too ancillary like making Twitter accounts or writing blog posts. We did count a few UVIs for creating this fancy changelog but decided that's too ancillary now too.",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"x": "Rudimentary stats at bottom of graph pages.",
"u": "https://twitter.com/beemuvi/status/40267278511648768",
"t": "2011-02-23 04:30:41 +0000",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
} /* ---------------------------------------------------------- end 2011feb */ ]
var batch2011mar = [{
"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",
}, { // ------------------------------------------------------------------------
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: New guest blog post by @kbmcgowan on Food Habits: http://blog.beeminder.com/foodhabits",
"u": "https://twitter.com/bmndr/status/42716792887590912",
"t": "2011-03-01 22:44:11 +0000",
"c": "Note from the future: Kevin's Twitter handle was KevinBMcGowan back then. Also from the future: we don't count blog posts as UVIs anymore.",
}, { // ------------------------------------------------------------------------
"x": "Bug fix in stats for flat roads.",
"u": "https://twitter.com/beemuvi/status/43589293670805504",
"t": "2011-03-04 08:31:12 +0000",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"x": "RT <a href=\"https://twitter.com/dreev\">@dreev</a>: TimePie is now TagTime and is on GitHub http://tagti.me @tagtm",
"u": "https://twitter.com/dreev/status/44713552317132800",
"t": "2011-03-07 10:58:36 +0000",
"c": "Note from the future: We finally got the tagtime.com domain on 2017-04-19, 6 years later"
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: Little Debbie Does Dog Food: http://blog.beeminder.com/lildeb",
"u": "https://twitter.com/bmndr/status/45699837148147712",
"t": "2011-03-10 04:17:44 +0000",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"x": "Now using Disqus for comments on the blog. http://blog.beeminder.com",
"u": "https://twitter.com/beemuvi/status/47972153051709441",
"t": "2011-03-16 10:47:07 +0000",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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.beeminder.com",
"u": "https://twitter.com/beemuvi/status/49040624309121024",
"t": "2011-03-19 09:32:50 +0000",
}, { // ------------------------------------------------------------------------
"x": "http://blog.beeminder.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",
}, { // ------------------------------------------------------------------------
"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.beeminder.com/gym (guest post by Jill Renaud)",
"u": "https://twitter.com/bmndr/status/50012175a175135232",
"t": "2011-03-22 01:53:26 +0000",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"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",
}, { // ------------------------------------------------------------------------
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: Productivity hack: The sedimentary filing system. http://blog.beeminder.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": "Note from the future: Blog posts don't count as UVIs anymore, especially not this one which doesn't even have anything to do with Beeminder (rolls eyes at past selves)",
} /* ---------------------------------------------------------- end 2011mar */ ]
var batch2011apr = [{
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: Case Study: Martin's Renovating. http://blog.beeminder.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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: What happens when you drive blind: http://blog.beeminder.com/blind #withings",
"u": "https://twitter.com/bmndr/status/60192281906520064",
"t": "2011-04-19 04:05:32 +0000",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"x": "Robustifying and somewhat OCD tweaking of thumbnail generation.",
"u": "https://twitter.com/beemuvi/status/61342865342734337",
"t": "2011-04-22 08:17:33 +0000",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"x": "Better browsing of your data!",
"u": "https://twitter.com/beemuvi/status/63146323892908033",
"t": "2011-04-27 07:43:51 +0000",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"x": "Edited the FAQ page: http://beeminder.com/faq",
"u": "https://twitter.com/beemuvi/status/63147259650514945",
"t": "2011-04-27 07:47:34 +0000",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"x": "Rewrote this page: http://beeminder.com/register",
"u": "https://twitter.com/beemuvi/status/63322105219002368",
"t": "2011-04-27 19:22:21 +0000",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"x": "Oh, and added a tagline to the front page and fixed the domain http://blog.beeminder.com and various fixes to legacy URLs.",
"u": "https://twitter.com/beemuvi/status/64486842740899841",
"t": "2011-05-01 00:30:36 +0000",
} /* ---------------------------------------------------------- end 2011apr */ ]
var batch2011may = [
{
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"x": "New blog post: Is there a danger of unintended consequences of Beeminder contracts? http://blog.beeminder.com/unintended",
"u": "https://twitter.com/beemuvi/status/72504640234725376",
"t": "2011-05-23 03:30:27 +0000",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /* --------------------------------------------------------- end 2011may */ ]
var batch2011jun = [
{
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: Going all soup-nazi on our users: http://blog.beeminder.com/akratics #akrasia",
"u": "https://twitter.com/bmndr/status/75774306155630593",
"t": "2011-06-01 04:02:57 +0000",
}, /*************************************************************************/ {
"x": "Consistent style for hyperlinks.",
"u": "https://twitter.com/beemuvi/status/76127840139100160",
"t": "2011-06-02 03:27:46 +0000",
}, /*************************************************************************/ {
"x": "Better submit buttons.",
"u": "https://twitter.com/beemuvi/status/76482838190505985",
"t": "2011-06-03 02:58:24 +0000",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"x": "Goal stats and progress in sidebars now.",
"u": "https://twitter.com/beemuvi/status/79024537982869504",
"t": "2011-06-10 03:18:12 +0000",
}, /*************************************************************************/ {
"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.beeminder.com/timecarrot\">blog.beeminder.com/timecarrot</a>",
"u": "https://twitter.com/bmndr/status/79385765548797952",
"t": "2011-06-11 03:13:36 +0000",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"x": "Tweaked font for stats in sidebar.",
"u": "https://twitter.com/beemuvi/status/80664548524306433",
"t": "2011-06-14 15:55:01 +0000",
}, /*************************************************************************/ {
"x": "Goal stats line up perfectly now.",
"u": "https://twitter.com/beemuvi/status/80847680242323456",
"t": "2011-06-15 04:02:43 +0000",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: BMNDR vs StickK: <a href=\"http://blog.beeminder.com/stickk\">blog.beeminder.com/stickk</a> Guest post by Josh Jordan (@bumbledraven).",
"u": "https://twitter.com/bmndr/status/81224613429915648",
"t": "2011-06-16 05:00:31 +0000",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /* --------------------------------------------------------- end 2011jun */ ]
var batch2011jul = [
{
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: Commitment contracts with maximal flexibility: Beeminder's Force Majeure Clause. <a href=\"http://blog.beeminder.com/sos\">blog.beeminder.com/sos</a> #akrasia",
"u": "https://twitter.com/bmndr/status/86901351812055040",
"t": "2011-07-01 20:57:51 +0000",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: The Magical Widening Yellow Brick Road. <a href=\"http://blog.beeminder.com/roadwidth\">blog.beeminder.com/roadwidth</a>",
"u": "https://twitter.com/bmndr/status/90193364825292800",
"t": "2011-07-10 22:59:08 +0000",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: Akratics Anonymous is now a google group: <a href=\"http://blog.beeminder.com/akratics\">blog.beeminder.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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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.beeminder.com/backfiring\">blog.beeminder.com/backfiring</a>",
"u": "https://twitter.com/bmndr/status/96068670190657536",
"t": "2011-07-27 04:05:30 +0000",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /*************************************************************************/ {
"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",
}, /* --------------------------------------------------------- end 2011jul */ ]
var batch2011aug = [
{
"x": "Bug fix: couple people's bot reminders not going out (and should always be sent within an hour of specified time now)",
"u": "https://twitter.com/beemuvi/status/98253774224764928",
"t": "2011-08-02 04:48:19 +0000",
}, /*************************************************************************/ {
"x": "Lighter pink for the rose-colored dots -- <a href=\"http://bmndr.com/about\">bmndr.com/about</a> -- among other tweaks. (And we're days away from the big stuff now!)",
"u": "https://twitter.com/beemuvi/status/98571154972884994",
"t": "2011-08-03 01:49:29 +0000",
}, /*************************************************************************/ {
"x": "Bug fix: negative safety buffers (how many days ago you went off the road) were sometimes off by one.",
"u": "https://twitter.com/beemuvi/status/98650184501837824",
"t": "2011-08-03 07:03:31 +0000",
}, /*************************************************************************/ {
"x": "Safety buffer now properly accounts for upcoming changes in the road width (that got a little hairy with exponential yellow brick roads)",
"u": "https://twitter.com/beemuvi/status/98666211352649728",
"t": "2011-08-03 08:07:12 +0000",
}, /*************************************************************************/ {
"x": "There's now a sign-in link for existing beta users, so we can now tweet a bunch of features that are only available if you're signed in",
"u": "https://twitter.com/beemuvi/status/98810118845640704",
"t": "2011-08-03 17:39:02 +0000",
}, /*************************************************************************/ {
"x": "Signed-in users can change their name and picture (avatar). Eg <a href=\"https://twitter.com/dreev\">@dreev</a> is <a href=\"http://bmndr.com/d\">bmndr.com/d</a> and <a href=\"https://twitter.com/thatgirl\">@thatgirl</a> is <a href=\"http://bmndr.com/b\">bmndr.com/b</a>",
"u": "https://twitter.com/beemuvi/status/98811577259671552",
"t": "2011-08-03 17:44:50 +0000",
}, /*************************************************************************/ {
"x": "Signed-in users can twiddle: whether to get bot reminders, what days, what time of day. (recall the bot buzzes off automatically if ignored)",
"u": "https://twitter.com/beemuvi/status/98812189841948674",
"t": "2011-08-03 17:47:16 +0000",
}, /*************************************************************************/ {
"x": "Signed-in users can delete datapoints (careful, this is permanent!)",
"u": "https://twitter.com/beemuvi/status/98812424991408132",
"t": "2011-08-03 17:48:12 +0000",
}, /*************************************************************************/ {
"x": "When you don't report, your graph shows you flatlined up through today, but stops if you go off the road or hit your goal.",
"u": "https://twitter.com/beemuvi/status/98864211802861568",
"t": "2011-08-03 21:13:59 +0000",
}, /*************************************************************************/ {
"f": true,
"x": "Signed in users have a Road Dial (not really a dial) to adjust the steepness of the Yellow Brick Road as they go",
"u": "https://twitter.com/beemuvi/status/99526864497934336",
"t": "2011-08-05 17:07:08 +0000",
}, /*************************************************************************/ {
"f": true,
"x": "Signed in users can create new goals. (And thanks for all the awesome feedback from our beta users; keep it coming!)",
"u": "https://twitter.com/beemuvi/status/101158450960150528",
"t": "2011-08-10 05:10:28 +0000",
}, /*************************************************************************/ {
"f": true,
"x": "Signed in users will see a reset button to try again when you go off your yellow brick road",
"u": "https://twitter.com/beemuvi/status/101495496597704704",
"t": "2011-08-11 03:29:46 +0000",
}, /*************************************************************************/ {
"x": "Goal settings tab lets you change your goal's title and description and set your goal amount, or end date.",
"u": "https://twitter.com/beemuvi/status/101495833098321920",
"t": "2011-08-11 03:31:06 +0000",
}, /*************************************************************************/ {
"f": true,
"x": "Commitment contracts are built in. See <a href=\"http://bmndr.com/money\">bmndr.com/money</a>",
"u": "https://twitter.com/beemuvi/status/101816894595674113",
"t": "2011-08-12 00:46:53 +0000",
}, /*************************************************************************/ {
"x": "Changed the submit button in advanced graph settings form to actually say \"submit\". Did we mention there's an advanced graph settings form?",
"u": "https://twitter.com/beemuvi/status/101858442301542400",
"t": "2011-08-12 03:31:59 +0000",
}, /*************************************************************************/ {
"x": "Bug fix: Multiple carets (like ^^ to mean \"yesterday\") weren't getting translated right when you entered datapoints.",
"u": "https://twitter.com/beemuvi/status/102223656415014913",
"t": "2011-08-13 03:43:13 +0000",
}, /*************************************************************************/ {
"x": "Flatline rule messed up <a href=\"http://bmndr.com/example\">bmndr.com/example</a> so now there's a setting in the api to show graphs how they looked at any point in the past.",
"u": "https://twitter.com/beemuvi/status/102461029065302016",
"t": "2011-08-13 19:26:27 +0000",
}, /*************************************************************************/ {
"x": "When first starting a weight loss graph, the road starts at the max of your 1st 3 weights.",
"u": "https://twitter.com/beemuvi/status/102479495788888065",
"t": "2011-08-13 20:39:50 +0000",
}, /*************************************************************************/ {
"x": "Much clearer version of <a href=\"http://bmndr.com/money\">bmndr.com/money</a> with example graphs.",
"u": "https://twitter.com/beemuvi/status/103597178018205696",
"t": "2011-08-16 22:41:06 +0000",
}, /*************************************************************************/ {
"x": "Added more FAQs to the pricing page, including some nerdy math. <a href=\"http://bmndr.com/money\">bmndr.com/money</a>",
"u": "https://twitter.com/beemuvi/status/103915654788296704",
"t": "2011-08-17 19:46:37 +0000",
}, /*************************************************************************/ {
"x": "Existing beta users who went off their roads before new pricing scheme can now reset with $0 at risk.",
"u": "https://twitter.com/beemuvi/status/104650710032977920",
"t": "2011-08-19 20:27:28 +0000",
}, /*************************************************************************/ {
"x": "Heading of your graph shows how much is at risk.",
"u": "https://twitter.com/beemuvi/status/104656302617280513",
"t": "2011-08-19 20:49:41 +0000",
}, /*************************************************************************/ {
"x": "Money money: Made the buttons and form look a little nicer on the reset/contracts page. Started adding some explanatory blurbs, etc.",
"u": "https://twitter.com/beemuvi/status/104656754817761282",
"t": "2011-08-19 20:51:29 +0000",
}, /*************************************************************************/ {
"x": "Money money: Don't have to re-enter credit card if you've already got one on file.",
"u": "https://twitter.com/beemuvi/status/104656853862060033",
"t": "2011-08-19 20:51:53 +0000",
}, /*************************************************************************/ {
"x": "Money money: Removed credit card security code from credit card form -- one less step between you and commitment.",
"u": "https://twitter.com/beemuvi/status/104657122532392961",
"t": "2011-08-19 20:52:57 +0000",
}, /*************************************************************************/ {
"x": "Bug fix in road dial [involving inserting road matrix rows] where if you tried to dial a graph that had been previously reset it would break",
"u": "https://twitter.com/beemuvi/status/105482919178551296",
"t": "2011-08-22 03:34:22 +0000",
}, /*************************************************************************/ {
"x": "Breadcrumb-style link to your gallery of goals as part of the title of your graph. (Thanks @dyng!)",
"u": "https://twitter.com/beemuvi/status/105762431887872001",
"t": "2011-08-22 22:05:03 +0000",
}, /*************************************************************************/ {
"x": "Firefox glitch: fixed the contract submit button (it was, ridiculously, displaying \"submit query\" as the button text in Firefox).",
"u": "https://twitter.com/beemuvi/status/106490665323610113",
"t": "2011-08-24 22:18:47 +0000",
}, /*************************************************************************/ {
"x": "Took out extra \">\" in breadcrumb because it looked terrible in Firefox.",
"u": "https://twitter.com/beemuvi/status/106490824048644096",
"t": "2011-08-24 22:19:25 +0000",
}, /*************************************************************************/ {
"x": "Fixed idiotbug where resets failed on grandfathered goals *because* we were allowing free resets on goals predating new pricing. Thx <a href=\"https://twitter.com/mwprog\">@mwprog</a>",
"u": "https://twitter.com/beemuvi/status/106491471489806336",
"t": "2011-08-24 22:21:59 +0000",
}, /*************************************************************************/ {
"x": "Less ugly alt text for thumbnails, which turned out to matter in Firefox on slow net connections. Also, consistent capitalization in titles.",
"u": "https://twitter.com/beemuvi/status/106768119200092160",
"t": "2011-08-25 16:41:17 +0000",
}, /*************************************************************************/ {
"x": "You can edit your datapoints (hurrah!). A little primitive but better than deleting & re-entering! Hat tip to Christopher Douglas.",
"u": "https://twitter.com/beemuvi/status/108381335671947264",
"t": "2011-08-30 03:31:38 +0000",
}, /*************************************************************************/ {
"x": "Titles were getting truncated more than necessary. When you're not logged in there's room to show more, eg: <a href=\"http://bmndr.com/meta/uvi\">bmndr.com/meta/uvi</a>",
"u": "https://twitter.com/beemuvi/status/108591639169204224",
"t": "2011-08-30 17:27:18 +0000",
}, /*************************************************************************/ {
"x": "Bug fix: extending your goal date if it was less than a week away would mess up the shape of the yellow brick road. Thx <a href=\"https://twitter.com/robbieclarken\">@robbieclarken</a>",
"u": "https://twitter.com/beemuvi/status/108913641176309760",
"t": "2011-08-31 14:46:50 +0000",
}, /*************************************************************************/ {
"x": "Made <a href=\"http://bmndr.com/money\">bmndr.com/money</a> a little less painful to read. Thx Rob Felty! Aside: BMNDR discussion on goog+: <a href=\"http://profiles.googles.com/dreeves\">profiles.googles.com/dreeves</a>",
"u": "https://twitter.com/beemuvi/status/108937559362646016",
"t": "2011-08-31 16:21:52 +0000",
}, /*************************************************************************/ {
"x": "Closed loophole: those who don't manually add data (eg, via <a href=\"https://twitter.com/Withings\">@Withings</a> or <a href=\"https://twitter.com/tagtm\">@tagtm</a>) never got their graphs frozen. It's tough love, bitches.",
"u": "https://twitter.com/beemuvi/status/108971992069312513",
"t": "2011-08-31 18:38:42 +0000",
}, /* --------------------------------------------------------- end 2011aug */ ]
var batch2011sep = [
{
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: New blog post: The Road Dial and the Akrasia Horizon. <a href=\"http://blog.beeminder.com/dial\">blog.beeminder.com/dial</a> (commitment devices with maximal flexibility)",
"u": "https://twitter.com/bmndr/status/109114106589614080",
"t": "2011-09-01 04:03:24 +0000",
}, /*************************************************************************/ {
"x": "Better info in the money FAQ -- <a href=\"http://bmndr.com/money\">bmndr.com/money</a> -- about why it's safe to give us your credit card number, thanks to <a href=\"https://twitter.com/stripe\">@stripe</a>.",
"u": "https://twitter.com/beemuvi/status/109349382859653120",
"t": "2011-09-01 19:38:19 +0000",
}, /*************************************************************************/ {
"x": "Bug fix: we were prematurely saying \"you made it!\" on your actual goal date even if you were actually off the road on that day.",
"u": "https://twitter.com/beemuvi/status/109643154931724289",
"t": "2011-09-02 15:05:39 +0000",
}, /*************************************************************************/ {
"x": "Bug fix: time left shown in sidebar was based on noon on the goal date instead of midnight. Thx <a href=\"https://twitter.com/robbieclarken\">@robbieclarken</a>. PS, timezones coming soon.",
"u": "https://twitter.com/beemuvi/status/109702900325957632",
"t": "2011-09-02 19:03:04 +0000",
}, /*************************************************************************/ {
"x": "Better mouseover explanations about fee schedule and fine print when you start a new commitment contract.",
"u": "https://twitter.com/beemuvi/status/110743890931363840",
"t": "2011-09-05 15:59:35 +0000",
}, /*************************************************************************/ {
"x": "When you create a new goal you can make it secret. Some of us (<a href=\"https://twitter.com/dreev\">@dreev</a> & <a href=\"https://twitter.com/thatgirl\">@thatgirl</a>) think this is a terrible idea and may disable it again!",
"u": "https://twitter.com/beemuvi/status/111551124275871744",
"t": "2011-09-07 21:27:15 +0000",
}, /*************************************************************************/ {
"x": "Improved the stats in the sidebar, added DELTA (how far you are from being in the right lane), and added mouseover explanations.",
"u": "https://twitter.com/beemuvi/status/111918194339483648",
"t": "2011-09-08 21:45:51 +0000",
}, /*************************************************************************/ {
"x": "Bugfix: Usernames and emails were case sensitive which occasionally caused confusion.",
"u": "https://twitter.com/beemuvi/status/111918472673497089",
"t": "2011-09-08 21:46:57 +0000",
}, /*************************************************************************/ {
"x": "Green: outperforming the road, Blue: right lane, Orange: wrong lane, Red: off the road. And now, Black = error generating graph, eg, no data",
"u": "https://twitter.com/beemuvi/status/111945756402913280",
"t": "2011-09-08 23:35:22 +0000",
}, /*************************************************************************/ {
"x": "Mouseover on the Goal Progress sidebar tells you what percent done you are (either going by time or by value). UVIs ~20% of the way to 1000!",
"u": "https://twitter.com/beemuvi/status/112010473460867074",
"t": "2011-09-09 03:52:32 +0000",
}, /*************************************************************************/ {
"x": "<a href=\"https://twitter.com/jmccoh\">@jmccoh</a> Mouseover area for Goal Progress should now be easier to hit. Thanks! (Yes, this too is a UVI...)",
"u": "https://twitter.com/beemuvi/status/112018212341825536",
"t": "2011-09-09 04:23:17 +0000",
}, /*************************************************************************/ {
"x": "If you leave the date off when entering data on Beeminder it will helpfully explain that you have to give the date explicitly #cuzofreasons",
"u": "https://twitter.com/beemuvi/status/112353500347908097",
"t": "2011-09-10 02:35:36 +0000",
}, /*************************************************************************/ {
"x": "Changes to the bot emails to start nudging toward saner data format: Day of the month, amount, optional comment.",
"u": "https://twitter.com/beemuvi/status/112984991633391616",
"t": "2011-09-11 20:24:55 +0000",
}, /*************************************************************************/ {
"x": "Don't report number, we assume it stayed same as ystrday. for consistncy this now applies even when flatlining helps, eg a quit-smoking goal",
"u": "https://twitter.com/beemuvi/status/113503927718256641",
"t": "2011-09-13 06:46:59 +0000",
}, /*************************************************************************/ {
"x": "RT <a href=\"https://twitter.com/bmndr\">@bmndr</a>: The naming of Beeminder: <a href=\"http://blog.beeminder.com/beenamer\">blog.beeminder.com/beenamer</a> (and the story of its former name, Kibotzer)",
"u": "https://twitter.com/bmndr/status/114856760296210432",
"t": "2011-09-17 00:22:40 +0000",
}, /*************************************************************************/ {
"x": "Bug fix: Leniency rule for weight loss graphs (UVI#181) could cause a discontinuity in the yellow brick road when you reset",
"u": "https://twitter.com/beemuvi/status/115457769993281536",
"t": "2011-09-18 16:10:52 +0000",
}, /*************************************************************************/ {
"x": "If you don't specify a goal date it defaults to a year after the start (or reset) of your yellow brick road. (Wasn't always true before.)",
"u": "https://twitter.com/beemuvi/status/115458285741674496",
"t": "2011-09-18 16:12:55 +0000",
}, /*************************************************************************/ {
"x": "Bugfix: if the title of your graph was a certain length it would wrap instead of truncate and mess up the alignment of the headers",
"u": "https://twitter.com/beemuvi/status/115915422133534720",
"t": "2011-09-19 22:29:24 +0000",
}, /*************************************************************************/ {
"f": true,
"x": "You can now talk to the Beeminder bot via text message: <a href=\"http://blog.beeminder.com/textbot\">blog.beeminder.com/textbot</a>",
"u": "https://twitter.com/beemuvi/status/116644972001902592",
"t": "2011-09-21 22:48:23 +0000",
}, /*************************************************************************/ {
"x": "The whole site uses SSL now. No longer can your enemies sniff your net traffic and modify your weight to make you go off your road.",
"u": "https://twitter.com/beemuvi/status/116645721997967360",
"t": "2011-09-21 22:51:21 +0000",
}, /*************************************************************************/ {
"x": "Timezones! See \"My Account\" settings. Shout out to our beta users in Europe, South Africa, and Australia.",
"u": "https://twitter.com/beemuvi/status/116734428570595328",
"t": "2011-09-22 04:43:51 +0000",
}, /*************************************************************************/ {
"x": "Tweaks to the textbot: how it replies, making it auto-decay like the emails do so you don't have to explicitly tell it to stop bugging you.",
"u": "https://twitter.com/beemuvi/status/116904119335260160",
"t": "2011-09-22 15:58:08 +0000",
}, /*************************************************************************/ {
"x": "By default your timezone is NYC -- change it at <a href=\"http://bmndr.com/settings/account\">bmndr.com/settings/account</a> -- and your graph will refresh at 3am in whatever timezone you specify",
"u": "https://twitter.com/beemuvi/status/117011701941022720",
"t": "2011-09-22 23:05:38 +0000",
}, /*************************************************************************/ {
"x": "We no longer impose an initial week of flat yellow brick road when you start a new goal. See bottom of goal creation form.",
"u": "https://twitter.com/beemuvi/status/117355173285855232",
"t": "2011-09-23 21:50:28 +0000",
}, /*************************************************************************/ {
"x": "Improvements to reminder settings page, such as a link to your account settings to change timezone. Also sms bugfix with long sms responses.",
"u": "https://twitter.com/beemuvi/status/117355729773535233",
"t": "2011-09-23 21:52:41 +0000",
}, /*************************************************************************/ {
"x": "Reeminders should now come at the exact time you specify. Thanks again to <a href=\"https://twitter.com/gracenotesnyc\">@gracenotesnyc</a>!",
"u": "https://twitter.com/beemuvi/status/117673468404838400",
"t": "2011-09-24 18:55:15 +0000",
}, /*************************************************************************/ {
"x": "Bugfix: The switch to SSL had broken the password reset mechanism. Thanks to Uluc Saranli and <a href=\"https://twitter.com/gracenotesnyc\">@gracenotesnyc</a>.",
"u": "https://twitter.com/beemuvi/status/118001511354736640",
"t": "2011-09-25 16:38:47 +0000",
}, /*************************************************************************/ {
"x": "Fixed a couple annoyances with the interface for setting initial value, goal, goal date, and rate on new goal creation page.",
"u": "https://twitter.com/beemuvi/status/118002145474785281",
"t": "2011-09-25 16:41:18 +0000",
}, /*************************************************************************/ {
"x": "Better data parsing: more intelligently disambiguates the date when given as just the day of the month, like: 25 228 \"up to 228 on the 25th\"",
"u": "https://twitter.com/beemuvi/status/118114874722238465",
"t": "2011-09-26 00:09:15 +0000",
}, /*************************************************************************/ {
"x": "Data format w/ month or year and month deprecated. You can use it but you'll never see any data displayed that way. See <a href=\"http://bmndr.com/faq\">bmndr.com/faq</a>",
"u": "https://twitter.com/beemuvi/status/118245410291724288",
"t": "2011-09-26 08:47:57 +0000",
}, /*************************************************************************/ {
"x": "Road reset page reassures you that all your data stays accessible when you reset with a new contract. (Also fixed an SSL issue.)",
"u": "https://twitter.com/beemuvi/status/118529487171354624",
"t": "2011-09-27 03:36:46 +0000",
}, /*************************************************************************/ {
"x": "Mouse over a datapoint to see details about it like when and how it was entered. Better explanation of \"slug\" in the new goal creation form.",
"u": "https://twitter.com/beemuvi/status/118747669534482432",
"t": "2011-09-27 18:03:45 +0000",
}, /*************************************************************************/ {
"x": "<a href=\"https://twitter.com/jmccoh\">@jmccoh</a> Yes, it no longer lets you enter hyphens or other disallowed characters in the slug. Thanks for reminding us of that UVI :)",
"u": "https://twitter.com/beemuvi/status/118778347693162496",
"t": "2011-09-27 20:05:39 +0000",
}, /*************************************************************************/ {
"x": "Simplified <a href=\"http://bmndr.com/contract\">bmndr.com/contract</a> & your official weight each day is the min of all weights recorded. PS follow <a href=\"https://twitter.com/bmndr\">@bmndr</a> for the important stuff",
"u": "https://twitter.com/beemuvi/status/118814035432054784",
"t": "2011-09-27 22:27:28 +0000",
}, /*************************************************************************/ {
"x": "New taglines: \"Beeminder: Reminders with a sting\", \"Beeminder: Automated accountability\", and \"Beeminder: The Me-binder\"",
"u": "https://twitter.com/beemuvi/status/119434736560123905",
"t": "2011-09-29 15:33:54 +0000",
}, /*************************************************************************/ {
"x": "Warning on goal creation: \"Leave these blank for now unless you're sure what a realistic rate for your YBR is...ready to commit immediately\"",
"u": "https://twitter.com/beemuvi/status/119560366974963712",
"t": "2011-09-29 23:53:07 +0000",
}, /* --------------------------------------------------------- end 2011sep */ ]
var batch2011oct = [
{
"x": "Number of safety buffer days (how long till you go off the YBR if you do nothing) now in the subject of bot reminder emails & sms reminders",
"u": "https://twitter.com/beemuvi/status/120026613676126208",
"t": "2011-10-01 06:45:49 +0000",
}, /*************************************************************************/ {
"x": "Robustifying of the date disambiguator, accounting for users' timezones. Related bugfix. Plus unrelated bugfix with reminder emails.",
"u": "https://twitter.com/beemuvi/status/120698653030625280",
"t": "2011-10-03 03:16:16 +0000",
}, /*************************************************************************/ {
"x": "We no longer confusingly ask for \"goal statement\" when creating a goal. Instead we have a link to set it in context on your goal page later.",
"u": "https://twitter.com/beemuvi/status/120700285004943360",
"t": "2011-10-03 03:22:45 +0000",
}, /*************************************************************************/ {
"x": "Fixed a small glitch in goal creation page, and friendlified some errors like \"slug can only have letters & numbers\" vs \"slug is invalid\"",
"u": "https://twitter.com/beemuvi/status/120858433313452032",
"t": "2011-10-03 13:51:10 +0000",
}, /*************************************************************************/ {
"x": "Streamlined the sms reminder messages and error responses. Made \"iff\" not look like a typo (on page for starting new commitment contract).",
"u": "https://twitter.com/beemuvi/status/121275067878473728",
"t": "2011-10-04 17:26:44 +0000",
}, /*************************************************************************/ {
"x": "Some useful mouseover info for the main graph image. Note quite this yet -- <a href=\"https://beeminder.uservoice.com/forums/3011-general/suggestions/2280706-you-ve-added-some-good-mouseovers-how-about-putti\">beeminder.uservoice.com/forums/3011-general/suggestions/2280706-you-ve-added-some-good-mouseovers-how-about-putti</a> -- but we'll get there.",
"u": "https://twitter.com/beemuvi/status/121472689515937792",
"t": "2011-10-05 06:32:00 +0000",
}, /*************************************************************************/ {
"x": "Goal Archetypes! When you create a new goal you pick from 10 goal types, some general like Do More and some specific like Inbox Fewer.",
"u": "https://twitter.com/beemuvi/status/121830642982977536",
"t": "2011-10-06 06:14:23 +0000",