- Text Content Generator - http://www.lipsum.com
- Favicon Generator - http://tools.dynamicdrive.com/favicon
- Data Generator - https://mockaroo.com/
- Mobile Mockup Generator - https://mockuphone.com
- Logo Generator - https://www.logaster.com
- UUID Generator - https://www.uuidgenerator.net/
- Hash Generator - https://passwordsgenerator.net/sha256-hash-generator/
- Ultimate Code Generator - https://webcode.tools/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Filters an array of objects with multiple criteria. | |
| * | |
| * @param {Array} array: the array to filter | |
| * @param {Object} filters: an object with the filter criteria as the property names | |
| * @return {Array} | |
| */ | |
| function multiFilter(array, filters) { | |
| const filterKeys = Object.keys(filters); | |
| // filters all elements passing the criteria |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mkdir -p ~/linuxbrew/.linuxbrew | |
| git clone https://github.com/Linuxbrew/brew.git .linuxbrew | |
| PATH="$HOME/.linuxbrew/bin:$PATH" | |
| export MANPATH="$(brew --prefix)/share/man:$MANPATH" | |
| export MANPATH="$(brew --prefix)/share/man:$MANPATH" | |
| brew install mkcert | |
| mkcert invoizet.com '*.invoizet.com' cevatest.test.invoize.info ceva.uat.invoize.com | |
| sudo su | |
| cp invoizet.com+3.pem /etc/ssl/certs/ | |
| cp invoizet.com+3-key.pem /etc/ssl/private/ |