Rex

@rex.sneakattack.net

He/him Nonsuspicious rat and/or mouse Unrepentant metalcore fan Software engineer I like cars Non-tariffed British Export 🏳‍🌈🇬🇧 🔞 - Minors DNI

I’m not from Maine, but all I see is the establishment and right pulling out all the stops against a progressive candidate, as usual.

Happy Pride Month. If you're a gay man, please remember your power. People often think that gay men are innately fashionable, which means if you wear some stupid shit for long enough, straight people, including homophobes, will copy you and then you can laugh at them.

Kinda funny that Apple is coming out with some of the most compelling budget options in computing now. Between the mac mini and the macbook neo it really is hard to recommend windows for folks who want a brand new computer on the cheap.

This might sound like science fiction, but instead of having to fight forever wars to secure access to goopy black stuff for our energy needs, wouldn’t it be cool if free energy just fell from the sky for half of the day wherever you happened to be?

If you’re against diversity, you’re for uniformity. If you’re against equity, you’re for inequity. If you’re against inclusion, you’re for exclusion. That’s all, folks.

if you went to college, 1. what was your career goal when you started? 2. your initial major? 3. if you changed majors, what did you change to? 4. what do you do now professionally 1. To become a computer programmer 2. Computer Science 3. Never changed it. 4. I write code You’re right, I’m boring!

🩸🦇 𝓜 🐕 🩸🔞@spacevamp.art · 2y ago

if you went to college, 1. what was your career goal when you started? 2. your initial major? 3. if you changed majors, what did you change to? 4. what do you do now professionally 1. Not a clue tbh XD 2. Something in psychology 3. Associates computer graphics 4. art commissions full time now :3

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

It’s a shame that the US these days is getting to be so far behind in the electric vehicles space. So many interesting vehicles are popping up if only the car market care would about anything that isn’t a giant SUV or pickup.