Firefly Semantics Corporation

Results 33 comments of Firefly Semantics Corporation

The test is also "Random" in nature. If I run it 3 times in a row, 1 run will pass. The other two will have 1 or 2 random numbers...

It seems one possible solution is to use `%` instead of `/`: https://stackoverflow.com/questions/60676476/eliminating-dashes-from-node-crypto-generated-random-values I ran 10 million samples and non contain dashes.

Created an Angular Package Format version of cuid here: https://www.npmjs.com/package/@fireflysemantics/cuid This is primarily for the browser / typescript use case. https://medium.com/@ole.ersoy/generating-collision-resistant-fast-unique-ids-d7a9d1286d9c

Just change: ``` export function getRandomValue () { return Math.abs(crypto.randomBytes(4) .readInt32BE(0) / lim) } ``` to: ``` export function getRandomValue () { return Math.abs(crypto.randomBytes(4) .readInt32BE(0) % lim) } ```

Also some related comments in here: https://stackoverflow.com/questions/60668998/converting-getrandomvalue-browser-from-cuid-to-typescript

Would be awesome if there was a `ng deploy --scully` option to deploy the static folder.

Let's take for example a really simple fictional library published on NPM called `@fireflysemantics/add`: It only has one simple function `add` in it and that adds two numbers: ``` export...

Ideally 2 things would happen. 1) Like you are saying, if the library does not depend on `tslib` at all then just leave the direct dependency off. 2) If there...

Perhaps Angular Material could provide a sass mixin that we could call to generate consistent tokens across all themes. This way Angular could use it to generate Tokens for the...

Wrote an article illustrating the approach I'm using to extend the Angular Material button components. I'm hoping in the future I'll be able to delegate the work done by the...