Skip to content

Instantly share code, notes, and snippets.

View adambirds's full-sized avatar

Adam Birds adambirds

View GitHub Profile
@adambirds
adambirds / page.mdx
Created July 26, 2025 20:38
Example Blog MDX File

import { ArticleLayout } from '@/components/ArticleLayout';

export const article = { author: 'Adam Birds', date: '2025-04-12', title: "Building FlipLytics: My Journey Creating a SaaS Platform for eBay Sellers", description: "Discover how I built FlipLytics, a SaaS platform for eBay sellers, from the ground up. Learn about the tech stack, challenges faced, and lessons learned along the way.", }

@adambirds
adambirds / Hide-AdWidget.html
Created January 22, 2019 20:48
Hide ad widget if ad blocker is on.
<script>
(function(){
var test = document.createElement('div');
test.innerHTML = '&nbsp;';
test.className = 'adsbox';
document.body.appendChild(test);
window.setTimeout(function() {
if (test.offsetHeight === 0) {
document.getElementById("et_ads-2").style.display = "None";
}