Advertisement Β· 728 Γ— 90

Posts by Matt King 🌡

Video

Here's a peek at the Hero section for my upcoming Prismic course. We're using @gsap.com and @threejs.org to animate this 3D skateboard that we also get to customize.

You can tell your friends you know how to ollie, kickflip, and frontside 360.

1 year ago 172 14 18 6
Sticker that says "United Flying Octogenarians"

Sticker that says "United Flying Octogenarians"

Saw a UFO today

1 year ago 6 0 0 0
Preview
Event Sourcery w/ Shawn McCool | Over Engineered | Episode 26

Episode 26 of Over Engineered is out!

➑️ Event Sourcery w/ Shawn McCool

share.transistor.fm/s/1d8882df

1 year ago 8 3 0 1
Preview
Deno v. Oracle: Canceling the JavaScript Trademark Oracle is holding the JavaScript trademark hostage, and we’re pursuing legal means to #FreeJavaScript. Here’s a brief update.

It's done. Now it’s your turn, Oracle.

We’ve submitted a formal petition to cancel the JavaScript trademark: it is generic, Oracle has abandoned it, and Oracle committed fraud on the USPTO during the last trademark renewal.

It's time to #FreeJavaScript.

deno.com/blog/deno-v-...

1 year ago 968 262 21 34
Post image

Just shipped my first rich text editor.

I'm super proud of it.

Even if you don't use Flux, taking a peak at the blog post I just wrote up is worth your time: fluxui.dev/blog/2024-11...

1 year ago 198 19 17 5

Woo, new podcast πŸŽ‰ This is a great listen!

1 year ago 3 0 1 0

Excited for NeovimConf tomorrow!

1 year ago 3 0 0 0
Preview
a man in a brown jacket is standing in front of a store with stickers on the wall ALT: a man in a brown jacket is standing in front of a store with stickers on the wall

Whoa that's a nice collection! Never got into vinyl, but shout out to High Fidelity. I still think about that movie all the time

1 year ago 1 0 1 0

πŸ‘€ wow didn't notice that

1 year ago 0 0 0 0
Advertisement
Preview
Namespace – Accelerate your developer workflow Namespace accelerates the development workflow of fast-moving software engineering teams. Best-in-class compute and development-supporting services that lead to 2x-10x faster builds, tests, and more.

I heard @changelog.com talk about using namespace.so on a fairly recent episode. Might be worth a look. Seems like they have mac runners, too.

1 year ago 2 0 1 0

Your own
Personal
Website
Someone to read your blog
See your pictures from Prague

1 year ago 0 0 0 0

Just made it through the whole episode!

Thoughts:
- Not "Discount Aaron", but "Premium Caleb"
- Maybe the way around some of these trickier things in Flux is to make customizing less scary. Flux could somehow make it easier to sync changes to custom components + more examples in docs?

1 year ago 1 0 0 0
Post image

Multi-selects just dropped in Flux!

Been a long time coming on this one. Building a good searchable multi-select is...well...not easy lol

Dig it in a fancy lil blog post I slapped up: fluxui.dev/blog/2024-11...

1 year ago 80 7 4 0

Lots of solid Postgres advice here!

1 year ago 2 0 0 0

Right?! I mean Skittles are fine, I guess, but I would actively seek these out. Bought it on a whim for my kids at a downtown fair.

1 year ago 1 0 0 0
Post image

Highly recommend a freeze dried Skittle. Imagine a Skittle but light and crunchy.

1 year ago 2 0 1 0
import { authorFeedLoader } from "@ascorbic/bluesky-loader";
  
const posts = defineCollection({
  loader: authorFeedLoader({
    identifier: "mk.gg",
  }),
});

export const collections = { posts };

import { authorFeedLoader } from "@ascorbic/bluesky-loader"; const posts = defineCollection({ loader: authorFeedLoader({ identifier: "mk.gg", }), }); export const collections = { posts };

---
import { getCollection } from "astro:content";
const posts = await getCollection("posts");           
---

<div>
  {
    posts.map(async (post) => {
      const { Content } = await render(post);
      return (
        <section>
          <Content />
          <p>{post.data.likeCount} likes</p>
        </section>
      );
    })
  }
</div>

--- import { getCollection } from "astro:content"; const posts = await getCollection("posts"); --- <div> { posts.map(async (post) => { const { Content } = await render(post); return ( <section> <Content /> <p>{post.data.likeCount} likes</p> </section> ); }) } </div>

Would you like to display your Bluesky posts in your Astro site? I've made an Astro content loader for Bluesky! When you build the site it loads your posts and puts them in a content collection. You can then display them on a page, or use the raw data however you want.

github.com/ascorbic/ast...

1 year ago 381 71 27 5

Yeah, the Wave is a lottery. But there are some other amazing hikes in the area that don't require a permit

1 year ago 1 0 0 0
The Wave in Arizona.

The Wave in Arizona.

Love a good mountain! The Wave in Arizona.

1 year ago 3 0 3 0
Advertisement

the fediverse bridge server should be called bridgerton

1 year ago 47 4 0 0

Could this turn into something like Storybook for Livewire/Flux apps? Would be so cool to see the all your components as a design system

1 year ago 2 0 1 0

This is really cool!

1 year ago 2 0 1 0

πŸ‘‘πŸ‘‹πŸ»

1 year ago 4 0 1 0
Video

I’ve loved designing, building, and teaching big YouTube courses for my job at Prismic this past year.

My favorite part is making the fake brands for each website.

In the latest one we build a landing page for a fake soda brand called Fizzi.

1 year ago 154 17 29 7

This looks incredible!

1 year ago 2 0 1 0
Post image
1 year ago 217 22 17 1
Post image

I finally cracked a good API for fully customizable radio/checkbox cards in Flux

fluxui.dev/blog/2024-10...

1 year ago 51 4 10 0

"We care deeply about providing world-class UI components that look amazing in the browser, feel amazing in your editor, and are accessible to as many people as possible."

Love to see it, great work!

1 year ago 0 0 0 0
Advertisement
blue butterfly tramp stamp tattoo

blue butterfly tramp stamp tattoo

welcome everyone

1 year ago 313 10 18 1
Video

We took the Inertia.js infinite scroll component for 2.0 and turbo boosted it:

- ⬆️ Reverse infinite scroll
- πŸ‘¬ Multiple infinite scroll components on the same page
- πŸ”ƒ *Two way* infinite scroll
- πŸ”— Syncing page state in URL
- πŸ–±οΈ Manual mode after X requests

πŸš€πŸ‘¨β€πŸš€

Speed run to get it under one minute:

1 year ago 96 13 8 9