Commit Graph

170 Commits

Author SHA1 Message Date
Kartik K. Agaram
6f4ce86543 3857 2017-05-13 18:39:41 -07:00
Kartik K. Agaram
05a22c024d 3856
Bugfix on commit 3853: clear `render-all-on-no-more-events` once you've
actually run the `render-all`.
2017-05-13 17:37:27 -07:00
Kartik K. Agaram
0c0d1ea5cd 3854
Revert commits 3824, 3850 and 3852. We'll redo them more carefully.
2017-05-13 12:42:17 -07:00
Kartik K. Agaram
8195ed4ee9 3853
Bring back commit 3844, albeit in simplified form. I'd forgotten that the
one place where we still need to buffer rendering is when people hold down
up/down arrow keys.
2017-05-12 07:56:38 -07:00
Kartik K. Agaram
43f634adb0 3852
Bugfix of commit 3850 for the sandbox/ app. I'd hoped to just quickly move
past this ugly approach, but a cleaner way is more involved than I thought.

This way is ugly partly because I'm introducing a bunch of conditionals
without testing them. One or more of my additions may well be hiding bugs.
Or I may need to add them in a few other places.

The clean way is to update the fake screen model to accurately mimic the
new real screen, where out of bounds prints aren't silently ignored, and
where scrolling is a fact of life.
2017-05-12 07:34:07 -07:00
Kartik K. Agaram
dc0e767cf5 3844
Once I start optimizing most events to not repaint everything there's no
need to be smart about queued-up events.
2017-05-06 14:54:26 -07:00
Kartik K. Agaram
71d4ce1800 3843 2017-05-06 13:54:18 -07:00
Kartik K. Agaram
978803c5ef 3831
Fix CI.
2017-04-18 15:44:31 -07:00
Kartik K. Agaram
b2a2dc9593 3825 2017-04-16 15:16:22 -07:00
Kartik K. Agaram
ace7ffb714 3824 - experiment: stop buffering in termbox
Now it's much more apparent why things are slow. You can see each repaint
happening. Already I fixed one performance bug -- in clear-rest-of-screen.

Since this subverts Mu's fake screen there may be bugs.

Another salubrious side effect: I've finally internalized that switching
to raw mode doesn't have to clear the screen. That was just an artifact
of how termbox abstracted operations. Now I can conceive of using termbox
to build a repl as well.

(I was inspired to poke into termbox internals by
http://viewsourcecode.org/snaptoken/kilo and
https://github.com/antirez/linenoise)
2017-04-16 15:05:31 -07:00
Kartik K. Agaram
63513e9fdb 3806 2017-03-21 08:45:12 -07:00
Kartik K. Agaram
951d135507 3797 2017-03-15 19:43:09 -07:00
Kartik K. Agaram
fadb576efc 3796
Standardize the order of some common blocks in `render`, `render-text`
and `render-code`. This is preparation for trying to reorganize them to
reduce duplicate code.
2017-03-14 11:21:22 -07:00
Kartik K. Agaram
7b38bc8ece 3795 2017-03-14 10:42:51 -07:00
Kartik K. Agaram
00868a186b 3794
Fix a _very_ misleading comment.
2017-03-14 08:28:41 -07:00
Kartik K. Agaram
16697d408c 3793
Move 'render-code' to the layer where it's used.

Thanks Caleb Couch for finding this bit of ugliness.
2017-03-14 08:17:27 -07:00
Kartik K. Agaram
b7717659a1 3790
Don't try to snapshot in scenarios.
2017-03-12 00:59:15 -08:00
Kartik K. Agaram
2c53c3d0a9 3789
I accidentally got rid of git snapshotting of lessons back when I switched
to testable file primitives last December (commit 3705).

>:-(

Bringing it back now, hopefully better. The improvement is that there's
now at most one commit every time we hit F4.

This change adds yet another reason that running `mu` from a different
directory is just not supported.
2017-03-12 00:34:02 -08:00
Kartik K. Agaram
a1e4fa7194 3748 2017-02-28 08:27:15 -08:00
Kartik K. Agaram
218e8cf267 3733 2017-01-11 22:43:01 -08:00
Kartik K. Agaram
12712a40ed 3731
Bitrot in main when loading just layer 1 of the edit/ and sandbox/ apps.
2017-01-11 08:45:54 -08:00
Kartik K. Agaram
d81fcff205 3706 2016-12-11 16:19:37 -08:00
Kartik K. Agaram
294b2ab359 3705 - switch to tested file-system primitives 2016-12-11 16:18:18 -08:00
Kartik K. Agaram
c76b0066fb 3700
Reorder products of some functions in the edit/ and sandbox/ apps. My
recent realization: always return 'real' products before ones that just
indicate an ingredient is mutable.
2016-11-28 01:13:59 -08:00
Kartik K. Agaram
06ef635e8a 3699
Delete some obsolete /same-as-ingredient attributes. We should always
let Mu deduce those at this point.
2016-11-28 00:42:24 -08:00
Kartik K. Agaram
970df30262 3698
Update sandbox/ with recent changes to edit/ (commit 3695 onwards).

[Incidentally, this is the first commit to be made while running on
OpenBSD. Simulated and host systems are going to blur together from now
on.]
2016-11-27 22:21:18 -08:00
Kartik K. Agaram
f116818c7c 3656
Periodic cleanup to replace 'reply' with 'return' everywhere in the
repo.

I use 'reply' for students to help reinforce the metaphor of function
calls as being like messages through a pipe. But that causes 'reply' to
get into my muscle memory when writing Mu code for myself, and I worry
that that makes Mu seem unnecessarily alien to anybody reading on
Github.

Perhaps I should just give it up? I'll try using 'return' with my next
student.
2016-11-10 10:24:14 -08:00
Kartik K. Agaram
72855698f5 3599 2016-10-27 09:23:20 -07:00
Kartik K. Agaram
d803b68769 3565
Cleaning up the console interfaces before we start changing the socket
interfaces to look like them. Reading from sockets need to be
non-blocking just like reading from the console.
2016-10-23 15:50:57 -07:00
Kartik K. Agaram
9a81d7460f 3561 2016-10-22 16:56:07 -07:00
Kartik K. Agaram
ada5eb55cb 3552
Stop requiring jump instructions to explicitly provide a ':label' type
for jump targets.

This has been a source of repeated confusion for my students:
  a) They'd add the ':label' to the label definition rather than the
  jump target (label use)
  b) They'd spend time thinking about whether the initial '+' prefix was
  part of the label name.

In the process I cleaned up a couple of things:

  - the space of names is more cleanly partitioned into labels and
    non-labels (clarifying that '_' and '-' are non-label prefixes)
  - you can't use label names as regular variables anymore
  - you can infer the type of a label just from its name
2016-10-22 12:08:10 -07:00
Kartik K. Agaram
6ef4880e02 3498 2016-10-14 11:50:51 -07:00
Kartik K. Agaram
ceeb92d470 3490
Redo commit 3457.

Basically there were 3 unicode characters we changed back then:
  solid horizontal line: 9473 -> 9472
  fuzzy horizontal line: 9480 -> 9548
  fuzzy vertical line: 9482 -> 9550

The solid horizontal line has no issues, so we just redo it here.
For the other two, we'll perform the substitution only when rendering
html. That gives us the best of both worlds: the scenario screens render
right in html, and alt-tabbing continues to be snappy when running the
edit/ app.
2016-10-09 00:20:43 -07:00
Kartik K. Agaram
71056d6150 3489
Revert commit 3457, where I switched the unicode characters used in the
edit/ app to something that doesn't render double-wide in html. It turns
out that the new unicode characters made iTerm2 sluggish in alt-tabbing
between windows. (Commit 3488 only fixed the screen-clearing issue.)

I haven't reverted the html files. I'm going to redo commit 3457 next so
the html files continue to render like they do now.
2016-10-08 23:58:56 -07:00
Kartik K. Agaram
4a70fb39cc 3457
Switch around some unicode characters in the edit/ app so that it
renders more cleanly in html (with monospace fonts).
2016-10-06 23:51:55 -07:00
Kartik K. Agaram
55479bc29d 3445
Ugly that we didn't need 'screen' to provide a type in scenarios
(because assume-screen expands to a definition of 'screen') but we did
need a type for 'console'. Just never require types for special names in
scenarios.
2016-10-06 10:52:37 -07:00
Kartik K. Agaram
6f65d5918f 3429 - standardize Mu scenarios
A long-standing problem has been that I couldn't spread code across
'run' blocks because they were separate scopes, so I've ended up making
them effectively comments. Running code inside a 'run' block is
identical in every way to simply running the code directly. The 'run'
block is merely a visual aid to separate setup from the component under
test.

In the process I've also standardized all Mu scenarios to always run in
a local scope, and only use (raw) numeric addresses for values they want
to check later.
2016-09-28 19:48:56 -07:00
Kartik K. Agaram
1627d836b4 3428 2016-09-28 14:38:32 -07:00
Kartik K. Agaram
2d91279bac 3396 2016-09-17 17:54:55 -07:00
Kartik K. Agaram
3d8b137c87 3391 - type abbreviations everywhere
Well, almost. I can't use them in some places in C++ where I'm just
creating a temporary reagent without passing it through transforms. Like
in some unit tests. I can't use them in memory-should-contain.

And there's one remaining bug: I can't use abbreviations in a couple of
places in 075channel.mu.
2016-09-17 13:25:40 -07:00
Kartik K. Agaram
02abf5d114 3369
Fix some tests and make them less fragile.
2016-09-15 23:36:49 -07:00
Kartik K. Agaram
726d322b8f 3347
Done using 'text' type abbreviation everywhere.

There's still a problem. If we define a function with a type
abbreviation and then redefine it without, I think we end up creating
separate variants. That seems wrong. Let's isolate a scenario for that
next.
2016-09-13 23:49:17 -07:00
Kartik K. Agaram
59e47aca14 3341
Process type abbreviations in function headers.

Still a couple of places where doing this causes strange errors. We'll
track those down next.
2016-09-12 10:00:43 -07:00
Kartik K. Agaram
e2b367dc25 3338
Process type abbreviations in container definitions.
2016-09-12 00:47:44 -07:00
Kartik K. Agaram
ea19d0dc2c 3337 - first use of type abbreviations: text
In the process I've uncover a couple of situations we don't support type
abbreviations yet. They're next.
2016-09-12 00:38:36 -07:00
Kartik K. Agaram
c31209c6a1 3234
Fix some breaking sandbox/ tests.
2016-08-20 19:45:22 -07:00
Kartik K. Agaram
3369875ccd 3233 - change how Mu escapes strings
Thanks Sam Putman for helping think through this idea.

When you encounter a backslash, strip it out and pass through any
following run of backslashes. If we 'escaped' a single following
character like C, then the character '\' would be the same as:

  '\\' escaped once
  '\\\\' escaped twice
  '\\\\\\\\' escaped thrice (8 backslashes)

..and so on, the number of backslashes doubling each time. Instead, our
approach is to make the character '\' the same as:

  '\\' escaped once
  '\\\' escaped twice
  '\\\\' escaped thrice

..and so on, the number of backslashes merely increasing by one each
time.

This approach only works as long as backslashes aren't also overloaded
to create special characters. So Mu doesn't follow C's approach of
overloading backslashes both to escape quote characters and also as a
notation for unprintable characters like '\n'.
2016-08-20 19:44:07 -07:00
Kartik K. Agaram
1625e908ba 3168 - skip loading recipe 'main' in edit/
This is part of efforts to allow students to transition gradually from
the sandbox to running programs directly on the commandline, writing
real scenarios, etc. Running on the commandline requires 'main', but
overriding 'main' would mess up edit/ which is itself a Mu program.
2016-08-12 14:51:53 -07:00
Kartik K. Agaram
f28f2636c6 3101 - purge .traces/ dir from repo history
I'd been toying with this idea for some time now given how large the
repo had been growing. The final straw was noticing that people cloning
the repo were having to wait *5 minutes*! That's not good, particularly
for a project with 'tiny' in its description. After purging .traces/
clone time drops to 7 seconds in my tests.

Major issue: some commits refer to .traces/ but don't really change
anything there. That could get confusing :/

Minor issues:

a) I've linked inside commits on GitHub like a half-dozen times online
or over email. Those links are now liable to eventually break. (I seem
to recall GitHub keeps them around as long as they get used at least
once every 60 days, or something like that.)

b) Numbering of commits is messed up because some commits only had
changes to the .traces/ sub-directory.
2016-07-05 00:53:12 -07:00
Kartik K. Agaram
afdda1ea04 3067 2016-06-25 01:08:53 -07:00
Kartik K. Agaram
29cc15d6b3 3054 - keep cursor stable on resize in sandbox/
This ports commits 3052 and 3053 from the edit/ app.
2016-06-12 22:44:58 -07:00
Kartik K. Agaram
7aef0b24e8 3041 - fix 3039 in sandbox/ as well 2016-06-09 18:46:02 -07:00
Kartik K. Agaram
46824f3ee2 3038 - track down a long-standing bug
In some rare situations the editor would join a line with the next when
it should simply wrap to the next screen row. Thanks Caleb and Ella
Couch for finally running into a situation that was easy to reproduce.

The scenario diffs are misleading on this commit. I had to:

a) delete the obsolete 'editor-wraps-cursor-after-inserting-characters'
because it was written back when a line just large enough to fit in a
single line would not wrap:

   |     |  <-- screen boundary
    abcde

These days it will wrap after making room for the wrap indicator:

   |     |  <-- screen boundary
    abcd↩
    e

b) rename editor-wraps-cursor-after-inserting-characters-2 to
editor-wraps-cursor-after-inserting-characters-in-middle-of-line

c) create a new scenario demonstrating the bug:
editor-wraps-cursor-after-inserting-characters-at-end-of-line
2016-06-08 10:16:32 -07:00
Kartik K. Agaram
9dcbec398c 2990
Standardize quotes around reagents in error messages.

I'm still sure there's issues. For example, the messages when
type-checking 'copy'. I'm not putting quotes around them because in
layer 60 I end up creating dilated reagents, and then it's a bit much to
have quotes and (two kinds of) brackets. But I'm sure I'm doing that
somewhere..
2016-05-20 22:11:34 -07:00
Kartik K. Agaram
4fcf032b9a 2984
Missed a file.
2016-05-19 22:14:29 -07:00
Kartik K. Agaram
607ddf3391 2983 - migrate buttons over to sandbox/ 2016-05-19 21:35:34 -07:00
Kartik K. Agaram
1521e4e32f 2975
Clean up this helper before we start redoing sandbox menubars.
2016-05-19 09:10:29 -07:00
Kartik K. Agaram
ac8acc7b05 2954 - bugfix: $system
The actual fix is in the layer rewriting literal strings.
2016-05-11 19:31:37 -07:00
Kartik K. Agaram
1156971774 2953 - use pgup/pgdn to scroll through sandboxes
In the process I've also simplified the sandbox/ app. Since it's
impossible for sandbox editors to span multiple pages, we can drop all
scroll support altogether.
2016-05-11 18:00:11 -07:00
Kartik K. Agaram
5d5116e334 2928 - fix sandbox restore in edit/ and sandbox/
This had been broken ever since 2854, because we can't write tests for
restore-snapshots at the moment.
2016-05-05 17:02:46 -07:00
Kartik K. Agaram
d05078df9d 2926
Typo introduced in 2854.
2016-05-05 10:06:51 -07:00
Kartik K. Agaram
481fce0e5d 2890 2016-05-02 23:11:17 -07:00
Kartik K. Agaram
b0bf5321de 2864 - replace all address:shared with just address
Now that we no longer have non-shared addresses, we can just always
track refcounts for all addresses.

Phew!
2016-04-24 11:54:30 -07:00
Kartik K. Agaram
7bf9212fd4 2861 - 'maybe-convert' no longer returns address 2016-04-23 17:15:16 -07:00
Kartik K. Agaram
d31037ffdc 2854 - purge get-address from sandbox/ app 2016-04-22 22:53:39 -07:00
Kartik K. Agaram
0f0d3e7ae6 2806 - bugfix: cleaning up in 'reload'
This brings back some of the complexity I thought I'd gotten rid of in
2799.

The regression brought home the point that I'd forgotten to write tests
for those bits. Written now.

It also brought home the point that our cleanup in 'reload' has always
been hacky and incomplete.

It's also ugly that those tests in the sandbox/ and edit/ apps need
changing (particularly when the test is about how the output doesn't
change).
2016-03-21 23:45:42 -07:00
Kartik K. Agaram
2103abd30e 2805
Fix test failures caused by 2804 in sandbox/ app.
2016-03-21 23:06:28 -07:00
Kartik K. Agaram
44bab2e4b4 2782 - directly use string literals everywhere 2016-03-14 13:00:21 -07:00
Kartik K. Agaram
3c393fd244 2781 2016-03-14 12:31:27 -07:00
Kartik K. Agaram
1ead356219 2735 - define recipes using 'def'
I'm dropping all mention of 'recipe' terminology from the Readme. That
way I hope to avoid further bike-shedding discussions while I very
slowly decide on the right terminology with my students.

I could be smarter in my error messages and use 'recipe' when code uses
it and 'function' otherwise. But what about other words like ingredient?
It would all add complexity that I'm not yet sure is worthwhile. But I
do want separate experiences for veteran programmers reading about Mu on
github and for people learning programming using Mu.
2016-03-08 01:46:47 -08:00
Kartik K. Agaram
e616059d70 2714 - apply 2604 to sandbox/ 2016-02-26 13:33:24 -08:00
Kartik K. Agaram
d0e29245f9 2707 2016-02-25 20:47:42 -08:00
Kartik K. Agaram
0f5a2f4e21 2705 - eradicate 'warning' from apps 2016-02-25 17:12:51 -08:00
Kartik K. Agaram
4637d58f6c 2661 - warn if a reply doesn't match recipe header
Thanks Nicolas Léveillé for running up against this bug:
  https://news.ycombinator.com/item?id=11094837

(Also noticed and fixed several subsidiary issues. This whole aspect
doesn't seem fully baked yet.)
2016-02-15 14:07:23 -08:00
Kartik K. Agaram
67d2a9c07d 2624
Reorganize further to make edit/008-sandbox-test more self-contained.
2016-02-01 13:56:21 -08:00
Kartik K. Agaram
07a6418389 2623 - bugfix: editing sandboxes
If you restore 2 sandboxes, the first render was setting
response-starting-row-on-screen on both, without ever rendering a
response. If the lower sandbox contained a print and rendered the screen
instead of the response, the original response-starting-row-on-screen
was never reset. If the process of running the sandboxes caused the
lower sandbox's title bar to move below the now-stale
response-starting-row-on-screen[1], editing the lower sandbox no longer
works.

[1] (Either because the upper sandbox prints to screen as well (causing
the first F4 to move the lower sandbox down by several lines), or
because a fresh sandbox is created with several lines before the first
F4 is hit.)

Current solution: never set response-starting-row-on-screen during
reload (or otherwise when there's no response).

This is hard to test right now because 'restore' is not a tested
interface, and I can't come up with another situation where the
response-starting-row-on-screen goes stale. So I'm now trying to keep
all changes to response-starting-row-on-screen close together. Another
idea is to add a check that the click row lies below the
response-starting row *and* above the start of the next sandbox. (But
what if there's no next sandbox?)

(This bug is really a regression, introduced last Sep in 2163.)
2016-02-01 13:37:12 -08:00
Kartik K. Agaram
34a2336e41 2622 - bugfix: left-arrow
Moving back to wrapped line was overflowing the right margin.
2016-01-31 12:34:42 -08:00
Kartik K. Agaram
33399312b2 2612 - sandbox/ tests always show recipe errors
I spent the longest time trying to understand what bug 2268 fixed. But
it's being tested now.
2016-01-28 14:28:06 -08:00
Kartik K. Agaram
0d3f30c211 2610 - warn when recipes don't use default-space
Somehow this never transferred over from the Arc version until now.
2016-01-27 19:59:29 -08:00
Kartik K. Agaram
50689bff2e 2609 - reuse test-recipe variables in sandbox/ tests
I'd feared that the refcount errors in the previous commit meant there
was a bug in my ref-counting, so I temporarily used new variables rather
than reusing existing ones. But it turns out the one remaining place
memory corruption can happen is when recipes don't use default-scope and
so end up sharing memory. Don't I have a warning for this?
2016-01-27 17:12:12 -08:00
Kartik K. Agaram
95425355a0 2608 - fix-up tests in sandbox/ app
When I first forked it from the edit/ app, I wasn't sure how to deal
with changing the recipe side when the only way the program accesses it
is with the untestable 'restore' hack. Now we introduce a little hook
into event-loop and pass in any updated recipe side directly.

In the process I've cleaned up several minor stylistic inconsistencies
between edit/ and sandbox/ apps.
2016-01-27 15:27:29 -08:00
Kartik K. Agaram
23cd041bf8 2597
Finish 2595.
2016-01-23 14:27:44 -08:00
Kartik K. Agaram
a01dd59593 2594 - bugfixes: managing state when deleting
This required completely redesigning scrolling.
2016-01-23 13:32:00 -08:00
Kartik K. Agaram
e0d69d3b33 2593 - bugfix: editing a sandbox resets scroll 2016-01-22 23:30:03 -08:00
Kartik K. Agaram
56d26afb1a 2592 - bugfix: sandbox title bar management 2016-01-22 19:28:11 -08:00
Kartik K. Agaram
6a03974c42 2591 2016-01-22 19:14:53 -08:00
Kartik K. Agaram
aaf61a535c 2590 - support scrolling through sandboxes 2016-01-22 19:11:59 -08:00
Kartik K. Agaram
2894e8d5de 2589 - tweak color for sandbox labels
I'm now thinking about how to support scrolling on the sandbox side.
Caleb's idea is to use down-arrow inside the sandbox editor, and then
"scroll off" the editor to the top of each successive sandbox. I think
I'll reserve the white background as the cursor color in that situation.

I wonder if I should just undo all the support for sandbox labels since
yesterday. Labels are perhaps superfluous once I support scrolling and
reorder sandboxes to always throw ones with errors up top. But then you
can end up scrolling through lots of tests without any sense of how far
down you are. So the other approach is to keep labels and try to keep
them stable, not reorder them.

Looking further ahead I'm going to need a way to jump to a specific
sandbox. Maybe instead of reordering sandboxes I should just
automatically render from the first sandbox with error. Maybe show the
number of failed sandboxes in the status instead of the index of the
first failure.
2016-01-22 12:33:57 -08:00
Kartik K. Agaram
1234e56e3e 2588 - bugfix: show *first* sandbox with error 2016-01-22 12:21:33 -08:00
Kartik K. Agaram
f7808ea129 2587 - bugfix: show-screen on warnings
See `cannot_write_tests_for`.
2016-01-22 10:09:18 -08:00
Kartik K. Agaram
6cb233fc43 2586 - show first sandbox with error in status 2016-01-22 08:59:38 -08:00
Kartik K. Agaram
3151fb2387 2585 - label sandboxes with a number
It also seems useful that the number maps to the name of the file the
sandbox is saved in. However this mapping is currently a happy accident
and not actually tested.

I'm starting to switch gears and help make the editor useable with
many many sandboxes. This is just the first step of several.
2016-01-22 08:52:28 -08:00
Kartik K. Agaram
bd6134610c 2580 - check product type of 'maybe-convert'
I had to undo some over-zealous changes in 2576.
2016-01-20 20:32:43 -08:00
Kartik K. Agaram
455fbac64f 2576 - distinguish allocated addresses from others
This is the one major refinement on the C programming model I'm planning
to introduce in mu. Instead of Rust's menagerie of pointer types and
static checking, I want to introduce just one new type, and use it to
perform ref-counting at runtime.

So far all we're doing is updating new's interface. The actual
ref-counting implementation is next.

One implication: I might sometimes need duplicate implementations for a
recipe with allocated vs vanilla addresses of the same type. So far it
seems I can get away with just always passing in allocated addresses;
the situations when you want to pass an unallocated address to a recipe
should be few and far between.
2016-01-19 23:18:03 -08:00
Kartik K. Agaram
bbe0801ab1 2548 - teach 'print' to print integers
Still can't print non-integer numbers, so this is a bit hacky.

The big consequence is that you can't print literal characters anymore
because of our rules about how we pick which variant to statically
dispatch to. You have to save to a character variable first.

Maybe I can add an annotation to literals..
2015-12-28 08:44:36 -08:00
Kartik K. Agaram
62a390ca0a support immutability checks in sandbox/ app 2015-12-15 10:20:41 -08:00
Kartik K. Agaram
9161079515 2477 2015-11-27 11:34:27 -08:00
Kartik K. Agaram
c0f4370038 2476 2015-11-27 11:29:26 -08:00
Kartik K. Agaram
c193f23217 2474 - overload 'copy' and 'equal' for text
2473 was the final bugfix holding this back.
2015-11-22 11:53:20 -08:00
Kartik K. Agaram
c8b6113b97 2471 2015-11-22 01:39:37 -08:00