Coding: Difference between revisions

From EMC23 - Satellite Of Love
Jump to navigation Jump to search
mNo edit summary
Line 46: Line 46:


Creative Coding Utrecht (CCU) is a recurring meetup and growing community of coders, developers and people generally interested in the creative possbilities of code & technologies. Please join us in exploring how 21st century skills create new expressions that shape our world.
Creative Coding Utrecht (CCU) is a recurring meetup and growing community of coders, developers and people generally interested in the creative possbilities of code & technologies. Please join us in exploring how 21st century skills create new expressions that shape our world.
== DSP ==
Digital signal processing (DSP) is the use of digital processing, such as by computers or more specialized digital signal processors, to perform a wide variety of signal processing operations. The signals processed in this manner are a sequence of numbers that represent samples of a continuous variable in a domain such as time, space, or frequency.
Digital signal processing and analog signal processing are subfields of signal processing. DSP applications include audio and speech processing, sonar, radar and other sensor array processing, spectral density estimation, statistical signal processing, digital image processing, signal processing for telecommunications, control systems, biomedical engineering, seismology, among others.
http://docs.juce.com/master/tutorial_dsp_introduction.html
Discover the realm of digital signal processing and audio buffer manipulation. Learn the basics of the JUCE DSP module and how you can incorporate its classes in your own audio application and plugins.
http://docs.juce.com/master/tutorial_dsp_convolution.html
Add grit to a synthesiser sound by creating harmonic distortion through waveshaping. Learn the basics of convolution to retrieve the sonic characteristics contained in an impulse response.
http://docs.juce.com/master/tutorial_dsp_delay_line.html
Implement a realistic string model by means of physical modelling. Incorporate a delay line to create intricate echo patterns in the stereo sound field.
http://docs.juce.com/master/tutorial_simd_register_optimisation.html
Take advantage of the processor's parallelism to perform single instruction multiple data calculations. Optimise your audio applications without introducing concurrency.
http://docs.juce.com/master/tutorial_simple_fft.html
Learn how to display incoming audio data as a spectrogram by using the FFT class of the DSP module. Understand the benefits of using a Fast Fourier Transform.
http://docs.juce.com/master/tutorial_spectrum_analyser.html
Learn how to display incoming audio data as a spectrum analyser by using the FFT class of the DSP module. Understand the benefits of using a windowing function.

Revision as of 14:47, 8 December 2021

Tutorials[edit]

Hardware[edit]

Learning Platform[edit]

exercism.io

Live Coding[edit]

DJs of the Future Don't Spin Records—They Write Code[edit]

https://www.wired.com/story/algoraves-live-coding-djs/

LiveCoding Platforms[edit]

Creative Coding[edit]

Creative Coding Amsterdam is a community of people interested in all creative aspects of computer programming. It is a place to meet for beginners as well as advanced users, for professionals as well as people coding just for fun.


Creative Coding Utrecht (CCU) is a recurring meetup and growing community of coders, developers and people generally interested in the creative possbilities of code & technologies. Please join us in exploring how 21st century skills create new expressions that shape our world.

DSP[edit]

Digital signal processing (DSP) is the use of digital processing, such as by computers or more specialized digital signal processors, to perform a wide variety of signal processing operations. The signals processed in this manner are a sequence of numbers that represent samples of a continuous variable in a domain such as time, space, or frequency.

Digital signal processing and analog signal processing are subfields of signal processing. DSP applications include audio and speech processing, sonar, radar and other sensor array processing, spectral density estimation, statistical signal processing, digital image processing, signal processing for telecommunications, control systems, biomedical engineering, seismology, among others.

http://docs.juce.com/master/tutorial_dsp_introduction.html Discover the realm of digital signal processing and audio buffer manipulation. Learn the basics of the JUCE DSP module and how you can incorporate its classes in your own audio application and plugins.


http://docs.juce.com/master/tutorial_dsp_convolution.html Add grit to a synthesiser sound by creating harmonic distortion through waveshaping. Learn the basics of convolution to retrieve the sonic characteristics contained in an impulse response.

http://docs.juce.com/master/tutorial_dsp_delay_line.html Implement a realistic string model by means of physical modelling. Incorporate a delay line to create intricate echo patterns in the stereo sound field.


http://docs.juce.com/master/tutorial_simd_register_optimisation.html Take advantage of the processor's parallelism to perform single instruction multiple data calculations. Optimise your audio applications without introducing concurrency.

http://docs.juce.com/master/tutorial_simple_fft.html Learn how to display incoming audio data as a spectrogram by using the FFT class of the DSP module. Understand the benefits of using a Fast Fourier Transform.

http://docs.juce.com/master/tutorial_spectrum_analyser.html Learn how to display incoming audio data as a spectrum analyser by using the FFT class of the DSP module. Understand the benefits of using a windowing function.