Hacker Newsnew | past | comments | ask | show | jobs | submit | simonklitj's commentslogin

Imo they need to pad it just a bit. My scrollbar overlaps.

I mostly refrain from watching any


Am I right in that I cannot demo a couple of searches without subscribing?


As of two weeks ago, you can get a couple of hours for unlimited (rate-limited) testing, just go to top up your account (or try to search) and click the PoW local and private captcha to get that.


It does appear that way, but when you click on register you get an account valid for one day, without having to fill in any data whatsoever.


I don't think you're overreacting. Received mine in 2020 and decided to move as well.


Even just in my family, the attitude has shifted significantly over the last year. Most of my family members are now critical of it and its effects.

Add to this that if ~6B people are using the internet (https://en.wikipedia.org/wiki/Global_Internet_usage), and ChatGPT only has almost a billion users (and is the largest player in the space), then I’d argue that LLM-users are in fact the minority.


I think this is the optimal outcome of the “Slop Police.” Normalization of these acknowledgements. Transparency is good, like a journalist declaring whether they have vested interests.


Source please?

I’m seeing M75/F77 w/o learning disability, and M72/F70 w/ learning disability: https://www.autism.org.uk/learn/knowledge-hub/professional-p...


imho part of the communication problem is that a 6 year reduction actually is large, but it doesn't sound large. Smoking takes about 10 years off your life, and it's deadly in a very mechanical and understood way.


Yeah, I’m not disputing that, and it’s worth a lot of consideration and research. But, it’s quite far from 36 years.


Might be the only thing that matters to you. And, perhaps, the only thing that matters in a functional sense. But, whether it’s human-coded/written or not matters deeply to some.


Yeah. Still daily driving my two 8-year old OG HomePods. Compared to e.g., Sonos, who discontinued the Play:1 after 5 years, that's pretty good.


Don't have a handle on it, unfortunately. But the algorithm is in here: https://github.com/tautme/phone-sensors/blob/main/guitar-tun.... Esp. lines 221–257 and 373–417.


The code mentions "autocorrelation" method: this is a method where you multiply the signal with delayed version of itself: result = sum(x[i] * x[i - delay] for i in some range). You vary the "delay" and pick the value that maximizes the result. This is based on the idea, that the sequential periods of the signal should be similar to each other.

Not a very good method, prone to octave errors (showing pitch one octave lower than the correct one). Furthermore, the "delay" is an integer which limits the precision, so you need to use some form of interpolation. Also it doesn't allow to recognize multiple notes sounding together. Also, slow.

You can read the paper on the "YIN" pitch estimation algorithm which describes the method in details.

I think FFT-based methods are more reliable. I did little experimentation and when measuring a pure sine wave, the frequency can be determined with high precision (tenths-hundredths of a Herz). Not so good in presence of a noise or multiple instruments - I tried to use descending from the hill optimization to figure out the pitch of each harmonic, but it didn't work out.


I implemented the McLeod NSDF pitch method, which normalizes the autocorrelation to get a pretty reliable estimate with fewer octave jumps. For precise tuning I used phase tracking between successive single-bin DFTs tuned to the target frequency.

https://github.com/dsego/strobe-tuner/


Ah, that does look like something I can work with - thanks for the legwork, I will check it out and see if its worthwhile converting to C/C++ for my device ..


That was for a microphone based version. This is the accelerometer one https://github.com/tautme/phone-sensors/blob/main/accel-tune...


Ah, that is very intriguing indeed .. going to have some fun with this code this week .. thanks for that, kind stranger!


Ah, whoops! Thanks for correcting my mistake.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: