Follow us on Bluesky
  1. Bluesky Feeds /
  2. Andrew Lisowski 💻 /
  3. Web Development Trending

Trending web dev topics on bsky. View the algorithm definition: https://www.graze.social/feeds/1702 Want to improve it? Post at @hipstsersmoothie.com

Feed on Bluesky

Feeds Stats

  • 💙 Liked by 1,404 users
  • 📅 Updated 9 days ago
  • ⚙️ Provider graze.social

Web Development Trending Likes over time

Like count prediction
The feed Web Development Trending gains approximately 10 likes per week.

Feed Preview for Web Development Trending

Andrew Lisowski 💻
@hipstersmoothie.com
4 months ago
Do you like this feed? If you do repost this and share it with your friends!
28
124
429
Large Heydon Collider
@heydonworks.com
about 2 hours ago
📝 Here is my unofficial guide to the HTML canvas element! heydonworks.com/article/the-...
The canvas element

heydonworks.com

The canvas element

An unofficial guide to the HTML canvas element

2
2
21
CSS-Tricks*
@css-tricks.com
about 2 hours ago
The fact that anchor positioning eschews HTML source order is so CSS-y because it's another separation of concerns between content and presentation. css-tricks.com/anchor-posit...
Anchor Positioning Just Don't Care About Source Order | CSS-Tricks

css-tricks.com

Anchor Positioning Just Don't Care About Source Order | CSS-Tricks

The fact that anchor positioning eschews HTML source order is so CSS-y because it's another separation of concerns between content and presentation.

0
1
8
taenia
@taenia.bsky.social
about 2 hours ago
There is something immensely funny to me about the broken NFT links using a free hosting plan. Like ... y'all expected people to shill out millions of dollars, and you couldn't spring $20/month for CloudFlare Pro?
0
1
13
Nicolas Mattia
@nmattia.bsky.social
about 6 hours ago
Overhauled the microsite for my #WebGL helper library quad-shader, feedback much appreciated! nmattia.github.io/quad-shader/
1
2
13
Alex Garrett-Smith
@alex.gs
about 4 hours ago
Today I'm launching newinlaravel.com — the easiest way to keep up-to-date with changes in the Laravel ecosystem! It’s free, forever. newinlaravel.com
New in Laravel

newinlaravel.com

New in Laravel

Get periodic, easy to consume summaries of the most relevant changes in Laravel, directly to your inbox — as they're released.

2
2
8
Szymon Chmal
@chmal.it
about 1 hour ago
The sun’s out, the birds are singing... and I’m buried in last-minute tweaks to the playground app for today’s JavaScript Performance webinar 😅 Still time to grab a spot if you missed the announcement! 👇 streamyard.com/watch/pnM9CY...
Master JavaScript Performance in React Native: Part 2

streamyard.com

Master JavaScript Performance in React Native: Part 2

This is Part 2 of our JavaScript optimization deep dive—a continuation of the webinar we hosted two weeks ago, based on Part 1 of Callstack’s Ultimate Guide to React Native Optimization. Hosted by: 🎙...

0
0
1
Matteo Collina
@nodeland.dev
about 2 hours ago
Benchmarks don’t lie — the gap between legacy libraries and what Node.js can deliver today is bigger than you think. ↑ producer throughput ↑ consumer throughput ↓ CPU overhead ↓ build friction The numbers drop in 48 hours. Spoiler: they change the cost model for high-traffic services.
1
0
8
Nuxt
@nuxt.com
about 16 hours ago
🎁 Nuxt 3.17 is out, with lots to check out! 📊 major data fetching improvements 🕒 <NuxtTime> component for SSR-safe time display ⚡️ performance boosts, including faster globbing 📚 Nuxt docs-as-a-package happy upgrading ❤️ 👉 read more at nuxt.com/blog/v3-17
1
14
89
Wizard ButtSoap the Mad Tinker (game of the year edition)
@themadtinker.bsky.social
about 2 hours ago
lmstudio makes it easy to host models at an endpoint with a couple clicks. I just hit my IP as if it was any other openAI endpoint and it works. I use Node red and Tasker for a lot of the "agent"-ing. Also working on a Swarm. github.com/DanEdens/Swa...
GitHub - DanEdens/Swarmonomicon: Ai Agent transfer station for Madness_interactive

github.com

GitHub - DanEdens/Swarmonomicon: Ai Agent transfer station for Madness_interactive

Ai Agent transfer station for Madness_interactive. Contribute to DanEdens/Swarmonomicon development by creating an account on GitHub.

1
0
1
daniel roe 🇺🇦
@danielroe.dev
about 19 hours ago
I want to release nuxt v3.17 tonight but my cat refuses to move from my lap sorry team
15
3
94
Samuel
@samuel.bsky.team
1 day ago
how it feels to get react native running again after an upgrade
Video thumbnail
Play button
10
17
320
Brad Westness
@brad.westness.cc
1 day ago
"Cloudflare blocked them?" feels like "we stopped paying the hosting bill because this was always a rug pull" is probably closer to the truth
4
3
226
CSS by T. Afif
@css-only.dev
about 4 hours ago
⚙️ New CSS Generator It's finally possible. A blob shape using only CSS! 🤩 css-generators.com/blob/ Play with the setting and get a cool shape in no time. ✅ Single element (works with images) ✅ One line of code ✅ Responsive ⚠️ Limited support (Chrome and Safari for now) ⚠️
Video thumbnail
Play button
0
1
15
Grace (experimental)
@gracekind.net
about 18 hours ago
MCP has the same hype signature as GraphQL tbh
8
9
90
Graceful.Dev
@graceful.dev
28 minutes ago
Class @@variables are conventionally avoided in modern Ruby. Refine your #Ruby style with Graceful.Dev courses!
0
1
2
Sacha Greif
@sachagreif.com
about 3 hours ago
my issues with something like this are that: 1) the high fidelity of the map means a lot of SVG path data to download 2) if I only have data for 10 countries I don't need the map to show borders for e.g. Andorra or Botswana
1
0
1
dan
@danabra.mov
about 4 hours ago
regarding cache control — not something you can do per component. (it wouldn’t be composable, and components must be composable.) if you’re using a framework, it might provide a higher level composable primitive. (see Next’s “use cache” for a very promising one.) with Parcel, would have to DIY.
1
0
2
Ana Tudor
@anatudor.bsky.social
about 8 hours ago
Maybe don't rely on AI do answer your CSS questions. Actually... without the maybe. Don't rely on AI to answer your CSS questions. #CSS #AI
Prompt: gradient triangle CSS

Answer:
Ah, a gradient triangle with CSS! That's a fun little visual trick. There are a few ways to achieve this, playing with borders and linear gradients. Here's a common and effective method using linear-gradient on a pseudo-element:

CSS
```
.gradient-triangle {
  width: 0;
  height: 0;
  border-left: 50px solid transparent; /* Adjust size as needed */
  border-right: 50px solid transparent; /* Adjust size as needed */
  border-bottom: 100px solid red;    /* Initial solid color */
  position: relative; /* For positioning the pseudo-element */
}

.gradient-triangle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px; /* Match the left border */
  width: 100px; /* Match the combined left and right borders */
  height: 100px; /* Match the bottom border */
  background: linear-gradient(to bottom, rgba(255, 0, 0, 0), blue); /* Gradient */
  -webkit-mask: polygon(0 0, 100% 0, 50% 100%); /* Clip to a triangle */
  mask: polygon(0 0, 100% 0, 50% 100%);
}
```
1
0
10
Lauren Beukes
@laurenbeukes.com
40 minutes ago
Unfortunately, there's nothing we can do at this juncture - can't move the auction, can't get the company to change their cloudflare settings. We're not pro fundraisers, we're two authors who kicked off a small thing that grew into a bigger amazing thing thanks to such incredible donations.
1
0
4
Antoine Bluchet @soyuka
@soyuka.me
about 5 hours ago
With @mtarld.bsky.social, we spent 2 days implementing the @symfony.com JsonStreamer component inside @api-platform.com Our first benchmark shows an increasing itemsPerPage collection (PHP 8.4.6 zts Symfony dev server) and is quite promising An awesome @baksla.sh x @les-tilleuls.coop cooperation!
0
6
11
BleepingComputer
@bleepingcomputer.com
43 minutes ago
Internet services giant Cloudflare says it mitigated a record number of DDoS attacks in 2024, recording a massive 358% year-over-year jump and a 198% quarter-over-quarter increase.
Cloudflare mitigates record number of DDoS attacks in 2025

www.bleepingcomputer.com

Cloudflare mitigates record number of DDoS attacks in 2025

Internet services giant Cloudflare says it mitigated a record number of DDoS attacks in 2024, recording a massive 358% year-over-year jump and a 198% quarter-over-quarter increase.

0
1
4
Tom Sherman
@tom.sherman.is
about 6 hours ago
It's likely that we'd still need to do the dynamic host in client URL trick still I think considering the list of preview URLs is just constantly growing (Vercel can delete old ones but we don't turn that setting on because it's useful to keep them)
1
0
3
Tom Sherman
@tom.sherman.is
about 6 hours ago
Lifting that restriction would make it a bit nicer, yeah. We wouldn't have to redirect through a html page on the client_id host. Feels like a big security risk doing that I'm not sure how multiple redirect_uris work here in general, how does the AS decide which one to redirect back to?
2
0
2
Thiago
@thiagolino8.bsky.social
about 2 hours ago
Final version, you can choose between inline svg and img
2
0
0