Matt Sell

@atomicbytes.com

Live and let live

@schickling.dev regarding sponsorship to access LiveStore devTools Would a one time one-time sponsorship payment of a certain amount give me access to the devTools? I've not used livestore yet and I'm interested in trying it and supporting you but I try to avoid recurring cost for a hobby project

You should be using JavaScript sets more often Now in all browsers and Node - these 7 new set methods are key for when trying to compare two arrays or sets of data.

New JavaScript Set Methods
const set1 = new Set(['wes', 'kait']);
const set2 = new Set(['wes', 'scott']);
Difference
Elements in set2 but not in set1
set2.difference(set1)
> ['scott']
Intersection
Elements that exist in both sets
set1.intersection(set2)
> ['wes']
Symmetric Difference
Elements in either set, but not both
set1.symmetricDifference(set2)
> ['kait', 'scott']
Union
All elements from both sets
set1.union(set2)
> ['wes', 'kait', 'scott']
Is Disjoint From
True if sets share no elements
set1.isDisjointFrom(set2)
> false
Is Subset Of
True if all elements are in other set
set1.isSubsetOf(set2)
> false
Is Superset Of
True if it contains all other's elements
set1.isSupersetOf(set2)
> false

my alias for Ignite CLI is a reference to the old bic lighters. alias bic="bunx ignite-cli@latest" Wanna create a new screen? Fire up that bic lighter and ignite it - `bic generate screen AboutUs`

The deep goal of bluesky is to decentralize the social internet so that every individual controls their experience of it rather than having it be controlled by 5 random billionaires. Everyone thinks they signed up for a demuskified twitter...we actually signed an exciting and bizarre experiment.

A banana duct taped to a wall sold for $6.2 million dollars. The owner is responsible for replacing the banana when it rots. I would like to officially offer my services to replace the artwork however many times necessary for a mere 10% of auction price. www.reuters.com/lifestyle/du...

Duct-taped banana goes for $6.2 mln in Sotheby's art auction

A piece of art that is little more than a banana duct-taped to a wall sold at auction for $6.2 million on Wednesday to cryptocurrency entrepreneur Justin Sun, Sotheby's said, furthering the universal conversation about what constitutes art.

reuters.com

I have a great home office but recently I set up a secondary workstation in the garage to enjoying the fresh air and It's had a huge impact on mental health

Bild