Live data from Hacker News

Ask HN: Does anyone use sound effects in their dev environment?

news.ycombinator.com

251–260 of 336 posts

Re: Ask HN: Does anyone use sound effects in their dev environment?

#251
post #249

Sure. I have scripts to build my unity game on several platforms, the last is Android which then installs on my phone. It plays Ocarina of Time sound effects upon success or failure, since it can take several minutes, or randomly fail before then. In both cases it's nice to hear immediately that I should do something.

The same sound on success or failure?

Nope. Failure is the minigame gong failure. Success is one of the jingles of success, with five tones that each increase in pitch.

Re: Ask HN: Does anyone use sound effects in their dev environment?

#252

Earlier quoted context omitted.

Yes I’m very interested. I had exactly the same idea, but solved it using the “say” command and a random grab from a set of strings. I’m a Python dev and I’m happy to contribute to a project is you get it started.

I'll set it up on GitHub in 1-2 days and publish it on Hacker News.

Yes! Please do!

Re: Ask HN: Does anyone use sound effects in their dev environment?

#253
There was once a VSCode extension that would make typewriter sounds as you typed, including a nice "ping" when you hit enter. A quick search shows a few extensions like this, but I tried installing one and no joy. But it was really nice to get a little audible feedback.

I do think this is a great idea. I notice that I get super engaged with video games in part because the constant noise meshes well with ADHD, and so I'd love to see a VSCode extension of some sort that can do this.

Re: Ask HN: Does anyone use sound effects in their dev environment?

#255
It's not a dev environment, but when I have been observing at large (inter)national telescopes, there are often a variety of sound effects in the control room. These sounds often announce a change in status (e.g., observing script started, observing script finished, script failed, script added to the queue).

One example is the Atacama Large Millimeter Array, that in practice is three separate arrays of telescopes (an array up to 50 dishes that are 12 meter diameter, an array up to 10 that are 7 meter diameter, and another up to 4 dishes that are 12 meters in diameter) that are observing different targets at the same time. Each array has its own kit of sound clips and after a few sessions it becomes second nature to identify which array needs attention by the sounds coming over the speaker. "Uh oh, looks like there's gonna be trouble!" followed by another announcement that the script was terminated. Then the array operator works on recovery while I would see if the script should be re-started or if weather conditions had changed enough to warrant a different choice of observation.

Similarly, optical telescopes often have audible alerts when integrations have finished and the data are being read off of the CCD/sensor.

Re: Ask HN: Does anyone use sound effects in their dev environment?

#256
post #244

In highschool my friend wrote a mIRC script that waited in our city's DALnet channel for someone to announce they were *\f\(our city), and would DM them hello, start a conversation and if they responded the script would announce "babyfaceangel16 is female". He'd turn it up and go play N64, and occasionally his computer would announce he's in a conversation with a girl so he'd drop the controller and pick up the conve…

The dating game has always been a lot like fishing. Did he ever get a real date this way?

Yes, and if I remember correctly at least one girlfriend for a few months

Re: Ask HN: Does anyone use sound effects in their dev environment?

#259
Yes; my build script plays one sound on success, another when lint fails, and a third when anything else fails. It’s on a watch loop so it runs whenever I save.

I use TDD, so I’m running the build every few minutes. The build (including tests) only takes half a second, so I can hit save, hear a sound, and continue programming without looking at the output. It’s surprisingly nice.

Re: Ask HN: Does anyone use sound effects in their dev environment?

#260
post #139

Earlier quoted context omitted.

Xcode has this functionality. You can attach a system sound to a breakpoint. I used it exactly once when I was trying to determine if two events always happened in the same order and were always equally spaced in time. It worked well but drives you sort of mad after a while.

One interesting way of using this I've heard of; is attaching it to a `-[UIViewController dealloc]`, and being able to "hear" (or rather notice the lack of sound) retain cycles this way.

I've used it so many times doing that, and also handling UIWebView events where I didn't know what all might happen. Really helpful.
Post reply on HN