top of page

Ideas Worth Exploring: 2025-03-21

  • Writer: Charles Ray
    Charles Ray
  • Mar 21
  • 4 min read

Updated: 6 days ago

Ideas: Ethan McCue - Life Altering Postgresql Patterns


database

Ethan McCue shared his ideas and recommendations for working with Postgres databases to improve efficiency and organization. Key points include:


  • Use UUID primary keys: They eliminate the need for coordinating database IDs and are safe to share externally.

  • Add created_at and updated_at timestamps to tables: This helps track changes when debugging, even if it's not a full history.

  • Set foreign key constraints with "on update restrict on delete restrict": Prevents deleting referenced rows by erroring out rather than having data recovery issues.

  • Utilize schemas: They act as namespaces for tables, especially useful in moderate to large apps.

  • Implement enum tables using text values and foreign keys: This allows for adding more allowed values or attaching metadata to each value.

  • Name tables singularly: Helps avoid potential edge cases when joining tables with plural names.

  • Mechanically name join tables: Concatenates table names to clearly represent "many-to-many" relationships.

  • Implement soft deletes with nullable timestamptz columns: Instead of deleting data, mark it as deleted by setting a timestamp.

  • Represent statuses as log entries with a separate table and use explicit valid_at timestamps instead of overloading created_at or updated_at columns.

  • Mark special rows with a system_id: Assigns unique identifiers to special rows in tables for easy lookup.

  • Use views sparingly: While they can simplify complex queries, maintaining them requires drop and recreation when removing columns, leading to potential issues.

  • Utilize JSON queries: Leverage the ability of Postgres to return JSON as query results for all needed information at once, without Cartesian product or N+1 problems.


From Ethan McCue's perspective, these practices aim to create better organized and efficient databases, reducing recovery headaches.


Ideas: Yoko Li - A Deep Dive Into MCP and the Future of AI Tooling


code in the dark

Yoko Li, a partner at Andreessen Horowitz, discusses the Model Context Protocol (MCP), an open protocol that allows AI models to interact with external tools, data, and APIs. The protocol has gained significant traction among developers and AI communities as a solution to the fragmented ability of agents to interact with various systems. MCP extends beyond existing protocols like the Language Server Protocol by introducing agent-centric execution models that enable autonomous decision-making for chaining together tools.


Some popular use cases of MCP include turning code editors into integrated tools, enabling developers to perform tasks within their IDE instead of switching between applications. MCP clients can be customized to generate UI components and images based on user requirements. The article also highlights the potential for business-centric clients and specialized AI workflows in fields like customer support and marketing copywriting.


While MCP shows promise, there are challenges that need to be addressed to facilitate broader adoption. These include hosting and multi-tenancy, authentication, authorization, gateway integration, server discoverability, execution environment, and a standard client experience. The article predicts that if MCP becomes the de facto standard for AI-powered workflows, it could lead to changes in how tools are developed, consumed, and monetized.


Ideas: Gerd Zellweger - The Pain That Is Github Actions


artwork

Gerd Zellweger discusses ideas aroud GitHub Actions in continuous integration (CI) setup. Gerd has had to redo their CI setup three times, first using GitHub Actions, then Earthly which was discontinued, and now back to GitHub Actions. The CI process is complex, involving merge queues, multiple runners, Rust builds, Docker images, and heavy integration tests. Gerd outlines several "good software practices" that they would like to implement, including ensuring all code in the main branch passes tests, automatically fixing trivial issues, testing exact artifacts released, and keeping CI completion time short.


Gerd explores challenges with GitHub Actions, such as setting it up, debugging experiences, enforcing status checks with merge queues, security concerns with compromised actions, managing permissions for tokens, and working with Docker within GitHub Actions. Gerd suggests the need for better static checking, easier debugging, and better workflow management to improve the experience of using GitHub Actions in CI setup.


GitHub Repo: Anubis


lego bricks

Anubis is a tool that tests connections using a sha256 proof-of-work challenge to protect upstream resources from scraper bots. Installing and using this will likely result in your website not being indexed by some search engines. This is considered a feature of Anubis, not a bug.


In most cases, you should not need this and can probably get by using Cloudflare to protect a given origin. However, for circumstances where you can't or won't use Cloudflare, Anubis is there for you.


GitHub Repo: Fetcher MCP


dog playing fetch

MCP server for fetch web page content using Playwright headless browser.


  • JavaScript Support: Unlike traditional web scrapers, Fetcher MCP uses Playwright to execute JavaScript, making it capable of handling dynamic web content and modern web applications.

  • Intelligent Content Extraction: Built-in Readability algorithm automatically extracts the main content from web pages, removing ads, navigation, and other non-essential elements.

  • Flexible Output Format: Supports both HTML and Markdown output formats, making it easy to integrate with various downstream applications.

  • Parallel Processing: The fetch_urls tool enables concurrent fetching of multiple URLs, significantly improving efficiency for batch operations.

  • Resource Optimization: Automatically blocks unnecessary resources (images, stylesheets, fonts, media) to reduce bandwidth usage and improve performance.

  • Robust Error Handling: Comprehensive error handling and logging ensure reliable operation even when dealing with problematic web pages.

  • Configurable Parameters: Fine-grained control over timeouts, content extraction, and output formatting to suit different use cases.



Ideas: Ziv Karliner - New Vulnerability in GitHub Copilot and Cursor: How Hackers Can Weaponize Code Agents


graffiti

Pillar Security researchers have uncovered a dangerous new supply chain attack vector we've named "Rules File Backdoor."


This technique enables hackers to silently compromise AI-generated code by injecting hidden malicious instructions into seemingly innocent configuration files used by Cursor and GitHub Copilot—the world's leading AI-powered code editors.


By exploiting hidden unicode characters and sophisticated evasion techniques in the model facing instruction payload, threat actors can manipulate the AI to insert malicious code that bypasses typical code reviews. This attack remains virtually invisible to developers and security teams, allowing malicious code to silently propagate through projects.


Unlike traditional code injection attacks that target specific vulnerabilities, “Rules File Backdoor” represents a significant risk by weaponizing the AI itself as an attack vector, effectively turning the developer's most trusted assistant into an unwitting accomplice, potentially affecting millions of end users through compromised software.

 

Comments


Commenting has been turned off.

Mitcer Incorporated | Challenge? Understood. Solved! ͭ ͫ  

288 Indian Road

Toronto, ON, M6R 2X2

All material on or associated with this web site is for informational and educational purposes only. It is not a recommendation of any specific investment product, strategy, or decision, and is not intended to suggest taking or refraining from any course of  action. It is not intended to address the needs, circumstances, and objectives of any specific investor. All material on or associated with this website is not meant as tax or legal advice.  Any person or entity undertaking any investment needs to consult a financial advisor and/or tax professional before making investment, financial and/or tax-related decisions.

©2025 by Mitcer Incorporated. Powered and secured by Wix

  • Instagram
  • Facebook
  • X
  • LinkedIn
bottom of page