Skip to content

Instantly share code, notes, and snippets.

@ShaunLawrie
Last active January 4, 2025 11:08
Show Gist options
  • Save ShaunLawrie/4a62f8d75bc9786999da31b3b3db31fa to your computer and use it in GitHub Desktop.
Save ShaunLawrie/4a62f8d75bc9786999da31b3b3db31fa to your computer and use it in GitHub Desktop.
#requires -Modules @{ModuleName='PwshSpectreConsole'; ModuleVersion='2.1.2'}, @{ModuleName='PSBlueSky'; ModuleVersion='0.6.0'}
# REQUIRES WINDOWS TERMINAL PREVIEW 1.22+ FOR SIXEL https://devblogs.microsoft.com/commandline/windows-terminal-preview-1-22-release/
# Or another sixel capable terminal emulator but I've only tested on Windows Terminal Preview so far
# REQUIRES BLUE SKY CREDS TO BE SETUP
$timeline = Get-BskyTimeline -Limit 15
$formattedPosts = @()
foreach ($post in $timeline) {
$author = Get-BskyProfile $post.Author
# Format some chunks of text
$avatarWidth = 15
$authorImage = Get-SpectreImage $author.Avatar -MaxWidth $avatarWidth
$likes = ":red_heart: [red]$($post.Liked)[/]"
$authorDisplayName = "[white]$($post.AuthorDisplay.Trim())[/]"
$authorLink = "[grey69 link=$($post.URL)]@$($post.Author)[/]"
$postDate = "[grey42]$($post.Date)[/]"
# Format the post, images require PSBlueSky to add another property for image links
$formattedPost = @($post.Text)
if ($post.Image) {
$formattedPost += Write-SpectreHost "" -PassThru
$formattedPost += @(
Get-SpectreImage $post.Image -MaxWidth 50
)
}
$panelHeight = [Math]::Max(6, ($formattedPost | Format-SpectreRows | Format-SpectrePanel | Get-SpectreRenderableSize).Height)
$formattedPosts += [ordered]@{
Image = ($authorImage | Format-SpectrePanel -Border None | Format-SpectrePadded -Top 1 -Bottom 1 -Left 0 -Right 0)
Post = $formattedPost | Format-SpectreRows | Format-SpectrePanel -Title "[white] $likes $authorDisplayName $authorLink $postDate [/]" -Color DeepSkyBlue3_1 -Height $panelHeight -Expand
}
$formattedPosts += [ordered]@{ Image = ""; Post = "" } # spacing hack
}
$formattedPosts | Format-SpectreTable -HideHeaders -Border None
# Uses the raw output from /xrpc/app.bsky.feed.getTimeline
$feed = Get-Content -Path "timeline.json" | ConvertFrom-Json
$feed | Where-Object { $_.reply } | ForEach-Object {
@{
Value = ("[grey46]@$($_.reply.root.author.handle) - [/]$($_.reply.root.record.text)" | Format-SpectrePanel -Expand)
Children = @(
@{
Value = ("[grey46]@$($_.post.author.handle) - [/]$($_.post.record.text)" | Format-SpectrePanel -Expand -Color Grey62)
}
)
} | Format-SpectreTree; Write-Host ""
}
@ShaunLawrie
Copy link
Author

image

@jdhitsolutions
Copy link

I don't have anything set up to test it but this looks awesome. If you include the ability to click a post and open it in a browser that would be ideal because then I could reply or view other image content.

@ShaunLawrie
Copy link
Author

I'm just tinkering at the moment. It's fun to play around and see what the output looks like 😆

With images in the timeline output:
image

And with some really basic threaded replies (creating a proper thread looks non-trivial):
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment