#sqlprotools — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #sqlprotools, aggregated by home.social.
-
📢 Happy to announce #MarkdownSQLProTools v1.0.0 release available to our sponsors on github:
💖 + 💵 ⤑ 🛠️ https://github.com/sponsors/RandomFractals/sponsorships?sponsor=RandomFractals&tier_id=295482
📥 https://github.com/RandomFractals/markdown-sql-pro-tools/releases/tag/v1.0.0
#SQLProTools / #ProDataTools 🧙♂️ ...
-
Fun RegEx to extract ```sql code blocks from .md docs for custom Execute #SQL @code lens, etc.:
const regex = /^```sql\s*([\s\S]*?)\s*```$/gm;
const matches = [];
let match;
while ((match = regex.exec(documentText)) !== null) {
matches.push(match[1]);
}#Markdown #SQLProTools 🔬 ...