FastSMRW

(★ 18)

A fast, accessible Mastodon/Bluesky client for blind users — C++ rewrite of FastSM with a portable core and a pure Win32 front end.

File Explorer

  • .clang-format
  • .gitattributes
  • .gitignore
  • build.bat
  • CLAUDE.md
  • download-deps.bat
  • installer.iss
  • README-Android.md
  • README-iOS.md
  • README-Linux.md
  • README-macOS.md
  • README-Windows.md
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

brew install

View Details ▼

Install a Homebrew formula or cask.

brew install {{formula|cask}}

Install a formula/cask:

brew install {{[-s|--build-from-source]}} {{formula}}

Build and install a formula from source (dependencies will still be installed from bottles):

brew install {{[-n|--dry-run]}} {{formula|cask}}

Download the manifest, print what would be installed but don't actually install anything:

🔍

x86_64

View Details ▼

This command is an alias of `setarch x86_64`.

tldr setarch

View documentation for the original command:

🔍

lib

View Details ▼

The Microsoft Library Manager for creating and managing static libraries of object files.

lib /OUT :{{path\to\library.lib}} {{path\to\file1.obj path\to\file2.obj ...}}

Create a static library from object files:

lib /LIST {{path\to\library.lib}}

List the contents of a library:

lib {{path\to\library.lib}} {{path\to\file.obj}}

Add an object file to an existing library:

🔍

vswhere

View Details ▼

Locate Visual Studio 2017 and newer installations.

vswhere -products * -latest -prerelease -find **\VC\Auxiliary\Build\vcvarsall.bat

Find the path of `vcvarsall.bat` to set environment variables:

vswhere -products * -latest -prerelease -find **\Hostx64\x64\*

Find the directory of the x64 MSVC compiler (`cl.exe`, etc):

vswhere -products * -latest -prerelease -find **\Llvm\bin\*

Find the directory of Clang bundled with Visual Studio bundled (clang-cl, clang-tidy, etc):

// repository documentation