Advertisement ยท 728 ร— 90

Posts by Tristan ๐Ÿ“š

a radial gradient shown over a conic gradient of sun rays

a radial gradient shown over a conic gradient of sun rays

a linear gradient shown overtop a radial gradient

a linear gradient shown overtop a radial gradient

a conic gradient on top of another conic gradient

a conic gradient on top of another conic gradient

gradient.style has finally
- come out of beta
- offers multiple background editing
- is open source

๐ŸŽ‰ nerdy.dev/gradient.sty...

7 months ago 287 69 12 2

In other words, to make hashtags accessible, use #UpperCamelCase, also known as #PascalCase. Am I right?

9 months ago 1 0 1 0

Sounds good ๐Ÿ‘Œ

1 year ago 1 0 1 0

I have a pi-day challenge for all the physics students among you (or anyone willing to set up an experiment). If you share your results with me by March 10th, I may feature them in a video, depending on how good the results are and how many I get.

1 year ago 125 10 4 2
How I built my Books page with Bob Monsour | 11ty Meetup
How I built my Books page with Bob Monsour | 11ty Meetup YouTube video by THE Eleventy Meetup

Both videos from today's 11ty Meetup are now live on our YouTube channel and embedded on our site...

Bob builds book pages and I build a web perf data aggregator
#11ty #webperf

www.youtube.com/watch?v=r2St...
11tymeetup.dev/events/ep-21...

1 year ago 5 1 0 0
Video

<table> highlighting with CSS :has() ๐Ÿ’ก

td:has(~ td:hover), /* previous sibling cells */
table:has(td:nth-of-type(3):hover) /* column cells */
tr:not(:first-of-type):has(~ tr:hover)
td:nth-of-type(3) {
background: var(--highlighted);
}

1 year ago 386 38 15 1
Preview
The Practical Accessibility Course A get-right-down-to-it online course for Web designers and developers who want to start creating more accessible Web user interfaces and digital products today

HTML, CSS, JS & A11y course stack:

- HTML For People by @blakewatson.com: htmlforpeople.com
- Complete CSS by @piccalil.li: complete-css.com
- Joy For JavaScript Developers by @joshwcomeau.com: www.joyforjs.com
- Practical Accessibility by @sarasoueidan.com: practical-accessibility.today

1 year ago 170 39 5 2

You can build amazing projects with plain HTML, CSS, and JavaScript.

1 year ago 2 0 0 0
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

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

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.

1 year ago 1608 149 51 11
Post image

Must reads for web developers - how modern browsers work:

1๏ธโƒฃ bit.ly/browsers-pt1
2๏ธโƒฃ bit.ly/browsers-pt2
3๏ธโƒฃ bit.ly/browsers-pt3
4๏ธโƒฃ bit.ly/browsers-pt4

and browser.engineering a free to read book on the topic

1 year ago 1239 166 31 8
Advertisement

I just started reading it, but it is really good so far. It seems more like a second course on the subject that ties all the concepts together nicely. Iโ€™ll let you know when I get further into it ๐Ÿ™‚

I read a lot of math books (and CS and data science) and plan on sharing my finds in the future.

1 year ago 2 0 1 0
OpenIntro StatisticsOpenIntro Statistics OpenIntro's mission is to make educational products that are free, transparent, and lower barriers to education. We're a registered 501(c)(3) nonprofit.

After reading several introductory #statistics #books, my absolute favorite book is OpenIntro Statistics 4th ed.

There is a free online version (with other free resources) - as well as physical copies available. Great place to start.

Check it out at: www.openintro.org/book/os/

1 year ago 9 3 0 0
Preview
Theme Machine 2.0 A look at all the updates and new features Iโ€™ve added to the Theme Machine

๐Ÿ“ New post: Theme Machine 2.0

A rundown of all the new features Iโ€™ve added to the #ThemeMachine

keithjgrant.com/posts/2024/1...

#css #webdev #color

1 year ago 11 3 2 0

Arc on a shark! ๐Ÿ˜‚

1 year ago 3 0 0 0

Iโ€™m glad I found your account over here on the Sky. Iโ€™m hoping a bigger #math community grows on here. My interests lie at some weird intersection between math, computer science, and data science. I read a lot of math textbooks and hope to find more likeminded people. Hereโ€™s to #mathsky

1 year ago 3 0 0 0

Yes. Sounds great.

1 year ago 0 0 0 0
Counting dots from left to right, top to bottom

Counting dots from left to right, top to bottom

Left to right, from top to bottom.

1 year ago 1 0 0 0
Advertisement
Video

Got an idea you need to code up super quick?

Just remember:

https://buff.ly/2KGmVgG

1 year ago 17 4 2 1
Preview
10 powerful ways to use CSS variables ยท January 26, 2023 Tokens, house props, adaptive props, pseudo-private props, partial props, mixin props, swappy props, style query props, meta lang props and typed props. Oh my!

10 powerful ways to use #CSS variables

a non-exhaustive list, but a good one nonetheless!

nerdy.dev/custom-prop-...

1 year ago 188 30 4 4

I do the same thing. I always bring a book and sometimes earbuds. Sure makes the time go by a little faster.

1 year ago 1 0 0 0
Preview
HTMHell Advent Calendar 2024 - HTMHell An article, talk, or tool that focuses on HTML every day until Christmas.

It's December 1st, and you know what that means: For the next 24 days, we'll publish articles about HTML by 24 authors. You can read them on the website or subscribe to the RSS channel.

Enjoy!

htmhell.dev/adventcalend...

1 year ago 288 123 2 10

In case you missed it, I reduced the price of my debugging CSS book to just $19.99!

Get your copy: debuggingcss.com

1 year ago 24 8 1 1

Iโ€™m really looking forward to this course. Andy makes fantastic content.

1 year ago 4 0 1 0
Preview
a little girl is playing with a pumpkin and the word californiaaa is on the bottom of the picture . Alt: a little girl is playing with a pumpkin and the word californiaaa is on the bottom of the picture .
1 year ago 0 0 0 0
Preview
Introduction โ€ข The Joy of React Welcome, prospective student! This small collection of lessons is designed to give you a feel for my teaching style, and the way the content is structured. I hope it helps give you a sense of what the...

๐Ÿ  Iโ€™m having an Open House!

This has become a bit of a tradition for me. Every Black Friday, I select a couple of lessons from my courses and make them public for a few days. This way, potential students can test-drive the content and see if itโ€™s a good fit for them!

The doors have just opened. ๐Ÿ˜„

1 year ago 153 27 7 8

Thatโ€™s a great idea. They say that the golden ratio is the most pleasing ratio to look at and has been found in famous architecture and other contexts. If you could pull off a golden layout, it could be a big deal ๐Ÿ˜Ž

1 year ago 1 0 0 0
Advertisement
A screenshot of a post from this site with Bluesky mentions linked with an icon.

A screenshot of a post from this site with Bluesky mentions linked with an icon.

Bluesky interactions are now collected and shown on my personal site's posts! thanks at-proto and Bridgy (brid.gy)

nerdy.dev/this-site-no...

2 years ago 169 36 14 4
Preview
One YouTube Embed weighs almost 1.2 MBโ€”zachleat.com A post by Zach Leatherman (zachleat)

๐Ÿ“ฎ One YouTube Embed weighs almost 1.2 MB

www.zachleat.com/web/youtube-...

2 years ago 3 1 0 0
Preview
12 Days of Web A year-end celebration of fundamental web technologies: HTML, CSS, and JavaScript.

๐Ÿ“† 12 Days of Web returns a month from today!

Be sure to sign up for reminder emails or grab the RSS feed. You won't want to miss out on getting up to speed with some of the latest web features from the 12 incredible guest authors!

12daysofweb.dev

2 years ago 33 10 0 2