Advertisement ยท 728 ร— 90

Posts by Domitrius Clark

Hey Jesse!

Mind sharing some more info here so I can try to help?

- Where are you seeing conflicting docs
- What are you seeing as a problem when you try it
- Do you have a project I can see?

1 month ago 1 1 1 0

Hey Zeu ๐Ÿ˜ญ

Really sorry to see your costs getting shot up like that. I've elevated this internally and we would love to forgive the costs you incurred and help get you setup for the future. I've got a couple of our support on standby for you to reach out.

I'll DM you

4 months ago 2 0 1 0

First of many explorations of building with Netlify primitives while Iโ€™m ramping back up

Next up will be streaming content from functions and Blob storage ๐Ÿ‘€

1 year ago 9 1 0 0
Preview
AI pair programming: enhancing Developer Experience through Agent Experience (AX) | Netlify Discover how a good Agent Experience (AX) enhances developer productivity with AI coding assistants. Learn how context files and platform optimizations help AI tools generate more reliable code, reduc...

When done right, good agent experience (AX) can become a force multiplier for developer experience (DX) and productivity.

DX ๐Ÿคœ๐Ÿค› AX

1 year ago 8 4 0 2
Preview
So You Want to Build AI on Netlify TheJam.dev is a 2-day virtual conference focused on building modern web applications using full stack JavaScript, static site generators, serverless and more.

@domitri.us hits the virtual stage at TheJam.Dev 2025 to show you how to build AI experiences on Netlify! Tune in later today!

1 year ago 4 3 0 0
Preview
TheJam.dev 2025 TheJam.dev is a 2-day virtual conference focused on building modern web applications using full stack JavaScript, static site generators, serverless and more.

Folks, TheJam.Dev is (FREE and) happening tomorrow and Thursday! I'll be back co-hosting with @remotesynthesis.com.

We have some absolute legends from the community on stage with us tomorrow โ€” @henrihelvetica.bsky.social, @domitri.us, @raymondcamden.com, @rachelandrew.bsky.social, and so many more!

1 year ago 12 7 3 0

First video back ๐Ÿซก

1 year ago 5 0 1 0
Advertisement

Thank you Sanity for making this possible and thank you Jason for always bringing me along for the ride. Youโ€™ve built something special.

Enjoy!

1 year ago 6 0 1 0

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.

1 year ago 27 3 2 0

Means so much! Thank you for always being the sweetest

Can't wait to hang again!!

1 year ago 1 0 0 0

Yessir! LFG

TY brother, hope you're doing great

1 year ago 1 0 0 0

thank you ๐Ÿ’ช

1 year ago 1 0 0 0

Appreciate your constant support Tom! Hope I make ya proud ๐Ÿซ‚

1 year ago 1 0 0 0

So excited to have Dom back at Netlify! Weโ€™re already cooking up some good stuff for 2025 that I canโ€™t wait to share with yโ€™all!

1 year ago 10 2 0 0
Advertisement

LETS GOOOOOOOOOO

Thanks Zeu ๐Ÿฅน

1 year ago 1 0 0 0

Iโ€™m gonna work on being more active here!

Thanks dude ๐Ÿซ‚

1 year ago 1 0 0 0

Expect some new content, refreshed education, and a focus on helping folks use Netlify to push their ideas into the world and please use me as a "How the heck do I do this on Netlify" button ๐Ÿซก

1 year ago 9 0 1 0

Thankfully, after meeting with @seancdavis.com , I felt like there was such energy to bring our community the best we could offer and build something really awesome together.

๐Ÿ‘‡๐Ÿผ

1 year ago 7 0 1 0

and having a usual catch up with @biilmann.blog -- chatting about what we wanted to see from Netlify over the next year and how we'd want to impact developers.

๐Ÿ‘‡๐Ÿผ

1 year ago 7 0 1 0

After a whirlwind of interviews, conversations about Developers and the ecosystem we've found ourselves in and the type of work I wanted to focus on, I found myself in SF (thanks @jason.energy)

๐Ÿ‘‡๐Ÿผ

1 year ago 7 0 1 0

Really psyched to announce my return to the @netlify.com Developer education team!

1 year ago 74 3 24 1

small update: My role at Block has expanded and I now lead Developer Relations company-wide.

1 year ago 368 12 52 2

Iโ€™m an easy target

1 year ago 1 0 1 0

Yep! Very cool thing wizards did when the pandemic happened

1 year ago 1 0 1 0
Advertisement

Spelltable is everything now! Distance doesnโ€™t matter

1 year ago 1 0 1 0

Cause it would be cool to do like a monthly commander game with devs ๐Ÿ‘€

1 year ago 1 0 0 0

Does anyone play MTG โ€” specifically commander? (but any format is good)

I wanna start up one of these list things

1 year ago 7 0 2 0

Bootcamp -> self taught

No one wanted a fresh 3 month rubyist (especially when bootcamps were still so new) so i went all in on JS/React and itโ€™s all been up from there ๐Ÿค

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

This is so awesome for my new site theme to feel even more like tumblr ๐Ÿ˜‚

1 year ago 1 0 0 0