<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Emmanuel Mireku Mensah</title>
    <description>The latest articles on DEV Community by Emmanuel Mireku Mensah (@emmanuel_mirekumensah_96).</description>
    <link>https://dev.to/emmanuel_mirekumensah_96</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4046960%2F57884f5e-ecf0-435e-a1e7-3c906e6c1f78.png</url>
      <title>DEV Community: Emmanuel Mireku Mensah</title>
      <link>https://dev.to/emmanuel_mirekumensah_96</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/emmanuel_mirekumensah_96"/>
    <language>en</language>
    <item>
      <title>GetQueryly: Ask Your Data Any Question. Get Real Answers.</title>
      <dc:creator>Emmanuel Mireku Mensah</dc:creator>
      <pubDate>Tue, 11 Aug 2026 06:29:47 +0000</pubDate>
      <link>https://dev.to/emmanuel_mirekumensah_96/getqueryly-ask-your-data-any-question-get-real-answers-ncg</link>
      <guid>https://dev.to/emmanuel_mirekumensah_96/getqueryly-ask-your-data-any-question-get-real-answers-ncg</guid>
      <description>&lt;p&gt;You have a spreadsheet. You have questions. You don't want to write code.&lt;/p&gt;

&lt;p&gt;GetQueryly lets you ask your data anything in plain English and get real, actionable insights with charts, statistics, and reports.&lt;/p&gt;

&lt;p&gt;What You Can Do&lt;br&gt;
Upload any file. CSV, Excel, PDF, JSON, Parquet, SPSS - if it has data, we handle it.&lt;/p&gt;

&lt;p&gt;Ask in plain English. No SQL. No formulas. No coding. Just type what you want to know.&lt;/p&gt;

&lt;p&gt;Get real results. Actual charts. Actual statistics. Actual insights.&lt;/p&gt;

&lt;p&gt;Features Built for Real Work&lt;br&gt;
Data Health Check&lt;br&gt;
Upload a file and instantly see what's wrong with it. Missing values, duplicates, outliers, correlations - everything flagged before you even ask.&lt;/p&gt;

&lt;p&gt;Smart Analysis&lt;br&gt;
Ask "show me revenue trends by region" and get a real chart with actual numbers. Ask "what's driving customer churn?" and get a statistical breakdown.&lt;/p&gt;

&lt;p&gt;Multi-Analyst Reports&lt;br&gt;
Need a full picture? GetQueryly assembles a team of AI analysts - each with different expertise. They collaborate and deliver a comprehensive report.&lt;/p&gt;

&lt;p&gt;Anomaly Detection&lt;br&gt;
Your data has problems hiding in plain sight. GetQueryly finds them automatically. Spikes, drops, outliers, unusual patterns - flagged and explained.&lt;/p&gt;

&lt;p&gt;Data Storytelling&lt;br&gt;
Numbers are boring. GetQueryly turns your data into a narrative. "Revenue grew 23% in Q3, driven primarily by the West region, with December being the strongest month."&lt;/p&gt;

&lt;p&gt;Kaggle Dataset Explorer&lt;br&gt;
200,000+ public datasets at your fingertips. Search by keyword, preview the data before loading, and analyze instantly. No downloads. No uploads. Just search and go.&lt;/p&gt;

&lt;p&gt;Web Search Data Generation&lt;br&gt;
Don't have data? Type a topic. GetQueryly searches the web across multiple sources, shows you what it found, and lets you generate a structured dataset from the research. Preview sources before committing.&lt;/p&gt;

&lt;p&gt;Predictive Follow-Ups&lt;br&gt;
After every analysis, GetQueryly suggests what to explore next. Not generic suggestions - real questions based on what your data actually shows.&lt;/p&gt;

&lt;p&gt;Export Everything&lt;br&gt;
PDF reports. Excel workbooks with multiple sheets. CSV data files. Chart images. Download in any format.&lt;/p&gt;

&lt;p&gt;For Teams&lt;br&gt;
Create a workspace. Share datasets. Collaborate on analysis. Manage who has access to what.&lt;/p&gt;

&lt;p&gt;For Developers&lt;br&gt;
Full REST API. MCP integration. Build your own tools on top of GetQueryly's analysis engine.&lt;/p&gt;

&lt;p&gt;Free to Start&lt;br&gt;
10 analyses per day. No credit card. No signup required to explore.&lt;/p&gt;

&lt;p&gt;Try GetQueryly now →&lt;/p&gt;

&lt;p&gt;GetQueryly - Your data has stories. We help you tell them.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Built an AI Document Assistant That Runs Code in a Sandbox</title>
      <dc:creator>Emmanuel Mireku Mensah</dc:creator>
      <pubDate>Sat, 25 Jul 2026 14:51:08 +0000</pubDate>
      <link>https://dev.to/emmanuel_mirekumensah_96/built-an-ai-document-assistant-that-runs-code-in-a-sandbox-15kb</link>
      <guid>https://dev.to/emmanuel_mirekumensah_96/built-an-ai-document-assistant-that-runs-code-in-a-sandbox-15kb</guid>
      <description>&lt;p&gt;Every AI document tool falls into one of two categories:&lt;/p&gt;

&lt;p&gt;Chatbots that can talk about your files but can't download anything&lt;br&gt;
Dumb converters that can merge PDFs but can't think&lt;br&gt;
I built DocMake to bridge both worlds.&lt;/p&gt;

&lt;p&gt;What DocMake Does&lt;br&gt;
DocMake is an AI-powered document assistant at docmake.online. You upload a file, describe what you need in plain English, and AI picks the right tool to handle it.&lt;/p&gt;

&lt;p&gt;The Cool Part: Sandboxed Code Execution&lt;br&gt;
The AI Data Scientist feature is what I'm most proud of. Upload a spreadsheet and:&lt;/p&gt;

&lt;p&gt;AI analyzes the data structure&lt;br&gt;
Writes code to process it&lt;br&gt;
Runs the code in a sandboxed subprocess (not in the main process)&lt;br&gt;
Returns interactive charts + natural language insights&lt;br&gt;
The key architectural decision: DataFrames never live in the main process. Every analysis runs in a forked subprocess with a timeout and memory limit. This prevents a single bad query from crashing the server.&lt;/p&gt;

&lt;p&gt;The Analyst Swarm&lt;br&gt;
Inspired by multi-agent systems, the Analyst Swarm assigns multiple AI personas to independently analyze your data. Each persona writes their own code, runs it, and reaches a consensus. It's like having a team of analysts working in parallel.&lt;/p&gt;

&lt;p&gt;MCP Integration&lt;br&gt;
DocMake is also an MCP (Model Context Protocol) server. This means AI assistants like Claude, Cursor, and VS Code can call DocMake's tools directly — not just talk about converting files, but actually do it.&lt;/p&gt;

&lt;p&gt;Lessons Learned&lt;br&gt;
Subprocess isolation is critical for sandboxed code execution&lt;br&gt;
Free tier AI models are good enough for most users&lt;br&gt;
MCP is becoming the standard for AI tool integration&lt;br&gt;
Try it at &lt;a href="https://docmake.online" rel="noopener noreferrer"&gt;https://docmake.online&lt;/a&gt; Free tier, no credit card.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>python</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
