101010.pl is one of the many independent Mastodon servers you can use to participate in the fediverse.
101010.pl czyli najstarszy polski serwer Mastodon. Posiadamy wpisy do 2048 znaków.

Server stats:

474
active users

#iteration

0 posts0 participants0 posts today
Continued thread

"The time to optimize the quality of the #decision at hand is before it is made.

1) The name of the game is achieving outcomes that create bidirectional value for users and the business;
2) outcomes are achieved by making smart design decisions;
3) impactful design decisions are typically made well above the level of product teams;
4) real design work and having an impact are therefore inherently political in nature."
thelaterallens.substack.com/p/

Here is a larger version produced using Fragmentarium (a free and open source shader editor).
It is actually downscaled from 10000x10000px to 2000x2000px using GIMP.

The formula used for this is:

z[0] = x + y*i, where x and y are the image coordinates

z[n+1] = i / ((a / z[n] - b/ z[n]) * e ^ (a / z[n] + b / z[n]))

where a and b are complex valued coefficients, controlling the behavior and structures of the result.

the color is generated by the HSL color space (converted to RGB) namely H = 0, S = 0, L = clamp(|z[250]|, 0, 1).

My npm package “iterator helpers polyfill” is already at 299 weekly downloads. Not exactly Lodash numbers but I’m surprised that people even found the package.

Example (library/non-polyfill mode):

import assert from 'node:assert/strict';
import {XIterator} from '@ rauschma/iterator-helpers-polyfill';

assert.deepEqual(
XIterator.from(new Set(['a', 'b', 'c']))
.map(x => x + x).toArray(),
['aa', 'bb', 'cc']
);

npmjs.com/package/@rauschma/it #JavaScript #Iteration #npm

npm@rauschma/iterator-helpers-polyfillA polyfill for the ECMAScript proposal “Iterator Helpers”. Latest version: 0.6.0, last published: 17 hours ago. Start using @rauschma/iterator-helpers-polyfill in your project by running `npm i @rauschma/iterator-helpers-polyfill`. There are no other projects in the npm registry using @rauschma/iterator-helpers-polyfill.