mise install # Install Ruby + Node versions from mise.toml
bin/setup # Bundler, pnpm install, js:routes, db:prepare, clear tmpDiscover gists
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>PlexIQ Β· Codebase Analysis</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/7.8.5/d3.min.js"></script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Manrope:wght@300;400;600;700&display=swap'); |
| Dimension | Perplexity AI | OpenAI SearchGPT | Claude 3.5 Sonnet |
|---|---|---|---|
| Status | Live, public | Live, public | API only, not search product |
| Data Freshness | Real-time web indexing | Real-time browsing | Training cutoff + web browsing |
| Citations | Inline, numbered, clickable | Inline with source links | Limited/none |
| Free Access | Yes (limited) | Yes (with account) | API only (paid) |
A production-tested guide to implementing PostgreSQL RLS in a multi-tenant Rails application. Extracted from a real SaaS codebase serving thousands of workspaces.
Data is isolated at two levels:
- Organization (billing, memberships, API keys)
- Workspace (all operational data β posts, comments, files, etc.)
Adapt these to your tenancy model. Single-tenant apps can drop the organization layer entirely and use just tenant_id.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # ----------------------------------------------------------------------------- | |
| # git-sparse | |
| # ----------------------------------------------------------------------------- | |
| # | |
| # Copy a single directory from a GitHub repository to a local path, without | |
| # cloning the entire repository. | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "animeEng": "Spectral Force Chronicle Divergence", | |
| "animeRomaji": "Spectral Force Chronicle Divergence", | |
| "songName": "Suki dake o Tsutaetakute", | |
| "artist": "Yuuki Kitamura", | |
| "type": "Ending 1", | |
| "correctCount": 6, | |
| "startTime": 23, | |
| "songDuration": 203.536645, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>just-bash vs @ekaone/vellum</title> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400&family=DM+Serif+Display:ital@0;1&display=swap'); | |
| *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } |
NewerOlder