a radial gradient shown over a conic gradient of sun rays
a linear gradient shown overtop a radial 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
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
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
<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
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
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
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
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
Counting dots from left to right, top to bottom
Left to right, from top to bottom.
1 year ago
1
0
0
0
Advertisement
Got an idea you need to code up super quick?
Just remember:
https://buff.ly/2KGmVgG
1 year ago
17
4
2
1
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
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
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.
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
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