Class names are CamelCase.
Methods and variables are snake_case.
Methods with a ? suffix will return a boolean.
| # Microphone Realtime background noise reduction script | |
| # author Luigi Maselli - https://grigio.org licence: AS-IS | |
| # credits: http://askubuntu.com/questions/18958/realtime-noise-removal-with-pulseaudio | |
| # run as: sudo && pulseaudio -k | |
| # wget -qO - https://gist.github.com/adrianolsk/bfa32f3227dc674eff72a2008f6c0316 | sudo bash && pulseaudio -k | |
| sudo cp /etc/pulse/default.pa /etc/pulse/default.pa.bak | |
| sudo cat <<EOT >> /etc/pulse/default.pa | |
| load-module module-echo-cancel source_name=noechosource sink_name=noechosink |
| border: no | |
| license: MIT |
| # Additional translations at https://github.com/plataformatec/devise/wiki/I18n | |
| id: | |
| devise: | |
| confirmations: | |
| confirmed: "Email anda telah berhasil dikonfirmasi." | |
| send_instructions: "Anda akan menerima sebuah email dengan instruksi bagaimana cara untuk mengkonfirmasikan email anda." | |
| send_paranoid_instructions: "Jika email anda telah terdaftar, anda akan menerima email dengan instruksi bagaimana cara untuk mengkonfirmasikan email anda." | |
| failure: | |
| already_authenticated: "Anda telah masuk." |
Stopping a Jekyll server with ctrl-z can cause issues as the process is not stopped fully. To kill it:
$ lsof -wni tcp:4000
$ kill -9 <PID of process>
And next time, use crtl-c to stop.