Domitrius Clark

@domitriusclark.bsky.social

DX @ Netlify / Opinions are my own

I always say “i had so much fun” when i get invited to do something with Jason, but this one took the cake. Absolutely lucky to share space with amazing engineers and humans like Charlie, Kent, and Aaron.

Jason Lengstorf@jason.energy · 2y ago

🔥 NEW WEB DEV CHALLENGE 🚀 there’s chaos is Santa’s workshop, and I challenged @aaronfrancis.com, @kentcdodds.com, @devdevcharlie.com, and @domitri.us to fix it in time to save Christmas @sanity.io sponsored this episode on location in San Francisco — don’t miss it! youtube.com/watch?v=_H5p...

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...

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>

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.

Since so many folks are becoming more active on this site, I created a little Remix/React Router starter pack with the notable people in the community that I could find. Apologies if you're not on the list. If you are, reply and I'll add you! go.bsky.app/6r1fRkU

Post nicht verfügbar.

hello hello, I teach people how to write Rustlang at Rust Adventure and make educational programming videos on YouTube. Really enjoying embedded development right now (pico w/embassy) and as always wgpu/bevy.