Skip to content

Instantly share code, notes, and snippets.

@briancorbinxyz
briancorbinxyz / Comments.tsx
Created November 29, 2024 23:43
Bluesky Comments Component for Quartz
import { QuartzComponentConstructor, QuartzComponentProps } from "./types"
import { AppBskyFeedDefs, AppBskyFeedPost } from "@atproto/api"
// @ts-ignore
import script from "./scripts/comments.inline"
import styles from "./styles/comments.scss"
interface Options {
uri?: string
}
@emilyliu7321
emilyliu7321 / bluesky-comments.tsx
Created November 25, 2024 05:39
Integrate Bluesky replies as your blog's comment section
"use client";
/* eslint-disable @next/next/no-img-element */
import Link from "next/link";
import { useState, useEffect } from 'react';
import {
AppBskyFeedDefs,
AppBskyFeedPost,
type AppBskyFeedGetPostThread,
} from "@atproto/api";
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active December 25, 2024 19:41
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname