Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
chrra
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
8 ms
·
1.
▲
by
chrra
2y ago
There's install instruction under “How to Use” and example code in the .ipynb files. It's mostly geared towards TTS, but it seems to work with voice recordings too.
2.
▲
by
chrra
12y ago
newtype X = X (IORef Int) instance Num X where fromInteger = X . unsafePerformIO . newIORef . fromInteger instance Eq X where (X a) == (X b) = unsafePerformIO $ do x <- readIORef a
3.
▲
by
chrra
13y ago
So it goes.