Viewing profile — ahilss
ahilss
HN member- Joined
- Wed, May 12, 2010, 9:40 AM UTC
- HN karma
- 417
- Public activity
- 18 items
- HN profile
- View on Hacker News ↗
About ahilss
amhilss at gmail
Recent public activity
-
comment
Comment #43490823
I’m the developer of Transitions DJ ( https://dj.app/ ). If anyone can connect me with the team at Apple Music, I would be interested in doing an integration.
-
story
Show HN: Stems Music Player and Visualization
Music is separated into stems using a version of Demucs modified to support streaming. Pitched stems are then processed by a machine learning model trained to detect the fundamenta…
-
comment
Comment #37357173
Wavacity developer here. I released this a year ago under the name "wavvy" but needed to rename the project because of a trademark conflict. https://news.ycombinator.com/item?id=32…
-
comment
Comment #32693077
On the M1 Mac I actually measured lower CPU usage during audio playback on WASM compared to the native desktop version which uses Rosetta. I'm not sure if the slowness is due to Ro…
-
comment
Comment #32692941
It's probably the most visible project using the wxWidgets framework and in the audio domain which fits well with my experience building the DJ app.
-
comment
Comment #32692882
It is rendering using the 2D canvas API. There's a device context class (wxDC) for each wxWidgets port that implements primitive drawing ops (DrawLine, DrawText, etc). For the WASM…
-
story
Show HN: Wavvy – web-based audio editor (Audacity port)
I originally developed a WASM port of wxWidgets for https://dj.app/ . When it came time to open source wxWidgets-wasm, I decided to port another complex app as a test case, and Aud…
-
comment
Comment #32610129
I originally developed a WASM port of wxWidgets for https://dj.app/ . When it came time to open source wxWidgets-wasm, I decided to port another complex app as a test case, and Aud…
- story
- story
-
comment
Comment #2485133
For a simple and straightforward FFT implementation, I would recommend taking a look at the Kiss FFT source code. http://sourceforge.net/projects/kissfft/
-
comment
Comment #1966137
Regardless of whether the building looks dumpy, the view of Midtown is magnificent: http://picasaweb.google.com/lh/photo/iU0pdqJt5xOtzMhGIbrfbg?...
- comment
-
comment
Comment #1955443
And another: Algorithm to predict football scores.
-
comment
Comment #1950495
I believe they are using a non-standard crossover operator in this implementation. A standard crossover operator will generate some permutation of the genes of the two parents: eit…
-
comment
Comment #1924677
I would target people who are not completely satisfied with the competitor's product. If I see people tweeting competitors asking for feature X, where my product already has X, I w…
-
comment
Comment #1923975
I haven’t tried a Bloom filter, but I think for my application, the simple bit array might give better performance. The nice thing about the bit array is it works great on the wors…
-
comment
Comment #1923495
I recently used this algorithm for speeding up an iTunes style search function. Originally I did a strstr over every item in the database, but it wasn't quite fast enough. I precom…