21 lines
645 B
Plaintext
21 lines
645 B
Plaintext
# Third Day
|
|
Today is day three of my Gemini blogging career. Let's see what it brings.
|
|
|
|
The inner workings of the server are done now. I really like how things
|
|
work. There are some corner cases that I need to iron out, but the server
|
|
works.
|
|
|
|
There is still some debug code in there. I need to go and delete that. It
|
|
should make the server work faster as well.
|
|
|
|
When we are talking speed ... about 4 miliseconds per request. I think that
|
|
is plenty fast.
|
|
|
|
What else? Logging. We need logging. Right now it is all in form of
|
|
|
|
``` Javascript code
|
|
console.log('Error message: ' + error);
|
|
```
|
|
|
|
But we need to divert it to a file.
|