Live data from Hacker News

Sound

ciechanow.ski

221–222 of 222 posts

Re: Sound

#221
post #200

Earlier quoted context omitted.

How is it done? Could you point to the section of code in the source code?

The relevant few lines are these: if ("IntersectionObserver" in window) { const observer = new IntersectionObserver(entries => { entries.forEach(entry => { entry.target.drawer.set_visible(entry.isIntersecting); }) }, { rootMargin: "300px" }) all_containers.forEach(container => observer.observe(container)); } else { all_containers.forEach(container => container.drawer.set_visible(true)); } You can read more about it h…

Thanks!

Re: Sound

#222
post #25

+1 for the recommendation for "The Scientist and Engineer's Guide to Digital Signal Processing" by Steven W. Smith. I spoke to Steven many years ago about his putting all of the book PDFs online for free and since then have recommended at least 5 university libraries to buy it because the students could get free copies of a great book that can be referenced in the library. FWIW the The Scientist and Engineer's Guide…

The book is amazing: http://www.dspguide.com/ (link for the lazy)

Here [1] I found a link [2] to download all chapters in one .zip file.

[1] https://www.analog.com/en/education/education-library/scient... [2] https://www.analog.com/media/en/technical-documentation/dsp-...

Post reply on HN