- Phosphor Icons https://phosphoricons.com/
- Icônes (aggregator) https://icones.js.org/
- Eva icons https://akveo.github.io/eva-icons/
- Lucid Icons https://lucide.dev/
- React Icons (aggregator) https://react-icons.github.io/react-icons/
- Clarity Design https://clarity.design/foundation/icons/shapes/
- Iconify https://icon-sets.iconify.design/
- Radix (Modulz) https://icons.modulz.app/
- Super Tiny Icons https://github.com/edent/SuperTinyIcons/blob/master/README.md
- Feather icons https://feathericons.com (even the stroke width can be adjusted)
This file contains 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
module.exports = { | |
settings: { | |
// optionally, if TypeScript project: | |
// 'import/parsers': { | |
// '@typescript-eslint/parser': ['.ts', '.tsx'], | |
// }, | |
'import/resolver': { | |
// optionally, if TypeScript project: | |
// https://github.com/alexgorbatchev/eslint-import-resolver-typescript | |
// typescript: { |
(it turns out the meaning of life is not 42
, i's 5381
and 33
!)
"cyrb53" (actually 64 bits (2x 32 bits in parallel), but limited to Javascript 53-bit integers)
Uses Math.imul()
.
This file contains 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
const { app, BrowserWindow } = require("electron"); | |
const testURL = async (headersPassthrough, url, done) => { | |
console.log("-----------------------------------"); | |
console.log(url); | |
console.log("-----------------------------------"); | |
const browserWindow = new BrowserWindow(); | |
// https://www.electronjs.org/docs/api/web-request#webrequestonbeforesendheadersfilter-listener |