LucyLuuu
banner
lucyluuu.me
LucyLuuu
@lucyluuu.me
i create stuff sometimes (mostly in vrchat), owner of the virtual film institute
walkable cities? what is this, communism?
November 15, 2025 at 6:14 PM
Reposted by LucyLuuu
with base station tracking & the steamvr ecosystem you could just mix and match and everything would work together (even if it required a little faff sometimes)

i don’t want to loose that.
November 13, 2025 at 7:08 AM
Reposted by LucyLuuu
i’m just peeved that with inside out you’re locked in to a controller
can only use that controller with that headset, and you can’t use the controller with any other headset either.
i’d get the controller instead of the knuckles just cuz of the swappable battery, but i doubt it’ll work w/o the hmd
November 13, 2025 at 7:08 AM
with base station tracking & the steamvr ecosystem you could just mix and match and everything would work together (even if it required a little faff sometimes)

i don’t want to loose that.
November 13, 2025 at 7:08 AM
i’m just peeved that with inside out you’re locked in to a controller
can only use that controller with that headset, and you can’t use the controller with any other headset either.
i’d get the controller instead of the knuckles just cuz of the swappable battery, but i doubt it’ll work w/o the hmd
November 13, 2025 at 7:08 AM
letsgooooooo that looks amazingggg
November 9, 2025 at 9:08 PM
this is insanely ambitious, but would be amazing if fully realised…good luck
November 5, 2025 at 12:15 PM
yay more khang cosplays :D
October 31, 2025 at 11:37 PM
Parsing a string from an nginx log timestamp for example:

```go
layout := "02/Jan/2006:15:04:05 -0700"
timestamp := "08/Sep/2025:11:43:56 +0000"

t, err := time.Parse(layout, timestamp)
if err != nil {
panic(err)
}
```
October 30, 2025 at 6:30 AM
“Thus each layout string is a representation of the time stamp,
Jan 2 15:04:05 2006 MST

An easy way to remember this value is that it holds, when presented in this order, the values 1 2 3 4 5 6 -7” (2/2)
^^^^ i love this, this is what i meant with fun
October 30, 2025 at 6:30 AM
from the documentation:
“The layout string used by the Parse function and Format method shows by example how the reference time should be represented.
We stress that one must show how the reference time is formatted, not a time of the user's choosing.” (1/2)
October 30, 2025 at 6:30 AM
iso 8601 my beloved <3

actually thou, you can define custom formats by example, you don’t have to do any of that `dd-mm-yyyy-HH-mm-ss` stuff
October 30, 2025 at 6:30 AM
from the official documentation

>It is a regrettable historic error that the date uses the American convention of putting the numerical month before the day.

had me rolling
October 29, 2025 at 11:16 PM