Beep on Linux in C

Please look at the standard linux beep source code. http://www.johnath.com/beep/beep.c It uses KIOCSOUND ioctl to “beep”, but you don’t need superuser privileges to make it play. I have configured it to be readable and executable by users on the “beep” group. So my standard user with UID 1000 is in the group with GID 501 … Read more

How to bundle vendor scripts separately and require them as needed with Webpack?

in my webpack.config.js (Version 1,2,3) file, I have function isExternal(module) { var context = module.context; if (typeof context !== ‘string’) { return false; } return context.indexOf(‘node_modules’) !== -1; } in my plugins array plugins: [ new CommonsChunkPlugin({ name: ‘vendors’, minChunks: function(module) { return isExternal(module); } }), // Other plugins ] Now I have a file … Read more