<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <title>Reddit Thread Manager</title>
        <link rel="stylesheet" href="css/styles.css?1" />
        <!-- Intentionally removed app.js from auto-running logic, will add specific scripts later -->
        <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
        <script>
            // Minimal JS for actions
            const API_BASE = '/php/api';
            
            async function updateThreadStatus(threadId, action) {
                const updates = {};
                if (action === 'ignore') { updates.isIgnored = true; updates.isFavourite = false; }
                else if (action === 'favourite') { updates.isFavourite = true; updates.isIgnored = false; }
                else if (action === 'none') { updates.isIgnored = false; updates.isFavourite = false; }
                else return;

                try {
                    await fetch(`${API_BASE}/threads.php?id=${threadId}`, {
                        method: 'PATCH',
                        headers: { 'Content-Type': 'application/json' },
                        body: JSON.stringify(updates),
                    });
                    // Reload to reflect changes
                    window.location.reload();
                } catch (e) {
                    alert('Error updating status');
                }
            }
            
            async function toggleThreadFlag(threadId, field, value) {
                 const updates = {};
                 updates[field] = value;
                 try {
                    await fetch(`${API_BASE}/threads.php?id=${threadId}`, {
                        method: 'PATCH',
                        headers: { 'Content-Type': 'application/json' },
                        body: JSON.stringify(updates),
                    });
                    // Optional: reload or just let it stay checked
                } catch (e) {
                    alert('Error updating status');
                }
            }
            
            function applyFilters() {
                const form = document.getElementById('filterForm');
                form.submit();
            }
            
            function clearFilters() {
                window.location.href = 'index.php';
            }

            function toggleStats() {
                const content = document.getElementById('statsContent');
                const toggle = document.getElementById('statsToggle');
                if (content.style.display === 'none') {
                    content.style.display = 'block';
                    toggle.textContent = '▲';
                } else {
                    content.style.display = 'none';
                    toggle.textContent = '▼';
                }
            }
        </script>
    </head>
    <body>
        <div class="container">
            <header>
                <h1>
                    <a href="/" style="color: white; text-decoration: none">Reddit Thread Manager</a>
                </h1>
                <nav class="main-nav">
                    <a href="index.php" class="nav-link active">Reddit</a>
                    <a href="knowledge.html" class="nav-link">Knowledge</a>
                    <a href="distilled.html" class="nav-link">Distilled</a>
                </nav>
            </header>

            <!-- Statistics Section (Collapsible) - Static Placeholder for now or logic needed -->
            <section class="stats-section">
                <div class="stats-header" onclick="toggleStats()">
                    <h2>Statistics</h2>
                    <span id="statsToggle" class="toggle-icon">▼</span>
                </div>
                <div id="statsContent" class="stats-content" style="display: none">
                    <!-- Stats logic would go here, leaving simple for now -->
                    <p>Stats loading not yet ported to PHP.</p>
                </div>
            </section>

            <!-- Filters Section -->
            <section class="filters">
                <h2>Thread Filters</h2>
                <form id="filterForm" action="index.php" method="GET">
                    <div class="filter-grid">
                        <div class="filter-item">
                            <label>Category:</label>
                            <select name="threadCategory" onchange="applyFilters()">
                                <option value="">All</option>
                                                                    <option value="BP" >
                                        BP                                    </option>
                                                                    <option value="FB" >
                                        FB                                    </option>
                                                                    <option value="RX" >
                                        RX                                    </option>
                                                                    <option value="business" >
                                        business                                    </option>
                                                                    <option value="ecommerce" >
                                        ecommerce                                    </option>
                                                                    <option value="geo" >
                                        geo                                    </option>
                                                                    <option value="scrapping" >
                                        scrapping                                    </option>
                                                                    <option value="seo" >
                                        seo                                    </option>
                                                                    <option value="startups" >
                                        startups                                    </option>
                                                            </select>
                        </div>
                        <div class="filter-item">
                            <label>Subreddit:</label>
                            <select name="subreddit" onchange="applyFilters()">
                                <option value="">All</option>
                                                                                                        <option value="aeo" >
                                        aeo - geo (158)                                    </option>
                                                                                                        <option value="AEO_Strategies" >
                                        AEO_Strategies - geo (33)                                    </option>
                                                                                                        <option value="Agentic_SEO" >
                                        Agentic_SEO - geo (373)                                    </option>
                                                                                                        <option value="Agent_SEO" >
                                        Agent_SEO - seo (776)                                    </option>
                                                                                                        <option value="AI_ecommerce" >
                                        AI_ecommerce - ecommerce (37)                                    </option>
                                                                                                        <option value="BP-software" >
                                        BP-software - BP                                    </option>
                                                                                                        <option value="BP-tool" >
                                        BP-tool - BP                                    </option>
                                                                                                        <option value="BP-tools" >
                                        BP-tools - BP                                    </option>
                                                                                                        <option value="Businessideas" >
                                        Businessideas - business (181)                                    </option>
                                                                                                        <option value="Business_Ideas" >
                                        Business_Ideas - business (407)                                    </option>
                                                                                                        <option value="business_problems" >
                                        business_problems - business (18)                                    </option>
                                                                                                        <option value="DigitalMarketing" >
                                        DigitalMarketing - seo (831)                                    </option>
                                                                                                        <option value="ecommerce" >
                                        ecommerce - ecommerce (495)                                    </option>
                                                                                                        <option value="ecommercemarketing" >
                                        ecommercemarketing - ecommerce (199)                                    </option>
                                                                                                        <option value="ecommerces" >
                                        ecommerces - ecommerce (71)                                    </option>
                                                                                                        <option value="EcommerceSuccessTips" >
                                        EcommerceSuccessTips - ecommerce (5)                                    </option>
                                                                                                        <option value="ecommerce_growth" >
                                        ecommerce_growth - ecommerce (221)                                    </option>
                                                                                                        <option value="FB" >
                                        FB - FB                                    </option>
                                                                                                        <option value="GenEngineOptimization" >
                                        GenEngineOptimization - geo (322)                                    </option>
                                                                                                        <option value="GEO_optimization" >
                                        GEO_optimization - geo (397)                                    </option>
                                                                                                        <option value="Learn_Ecommerce" >
                                        Learn_Ecommerce - ecommerce (50)                                    </option>
                                                                                                        <option value="MarketingHelp" >
                                        MarketingHelp - ecommerce (202)                                    </option>
                                                                                                        <option value="ProductMarketing" >
                                        ProductMarketing - ecommerce (573)                                    </option>
                                                                                                        <option value="RX-analytics" >
                                        RX-analytics - RX                                    </option>
                                                                                                        <option value="RX-funnel" >
                                        RX-funnel - RX                                    </option>
                                                                                                        <option value="RX-insights" >
                                        RX-insights - RX                                    </option>
                                                                                                        <option value="RX-marketing" >
                                        RX-marketing - RX                                    </option>
                                                                                                        <option value="RX-monetization" >
                                        RX-monetization - RX                                    </option>
                                                                                                        <option value="RX-statistics" >
                                        RX-statistics - RX                                    </option>
                                                                                                        <option value="RX-stats" >
                                        RX-stats - RX                                    </option>
                                                                                                        <option value="scraping" >
                                        scraping - scrapping (165)                                    </option>
                                                                                                        <option value="scrapingtheweb" >
                                        scrapingtheweb - scrapping (273)                                    </option>
                                                                                                        <option value="SEO" >
                                        SEO - seo (1267)                                    </option>
                                                                                                        <option value="seogrowth" >
                                        seogrowth - seo (787)                                    </option>
                                                                                                        <option value="SEO_tools_reviews" >
                                        SEO_tools_reviews - seo (230)                                    </option>
                                                                                                        <option value="ShopifyeCommerce" >
                                        ShopifyeCommerce - ecommerce (177)                                    </option>
                                                                                                        <option value="startup" >
                                        startup - startups (548)                                    </option>
                                                                                                        <option value="startupideas" >
                                        startupideas - startups (129)                                    </option>
                                                                                                        <option value="startups" >
                                        startups - startups (1470)                                    </option>
                                                                                                        <option value="StartupsHelpStartups" >
                                        StartupsHelpStartups - startups (181)                                    </option>
                                                                                                        <option value="startups_promotion" >
                                        startups_promotion - startups (298)                                    </option>
                                                                                                        <option value="Startup_Ideas" >
                                        Startup_Ideas - startups (298)                                    </option>
                                                                                                        <option value="TechStartups" >
                                        TechStartups - startups (248)                                    </option>
                                                                                                        <option value="webscraping" >
                                        webscraping - scrapping (569)                                    </option>
                                                                                                        <option value="webscrapping" >
                                        webscrapping - scrapping (3)                                    </option>
                                                            </select>
                        </div>
                        <div class="filter-item">
                            <label>Date From:</label>
                            <input type="date" name="dateFrom" value="" onchange="applyFilters()" />
                        </div>
                        <div class="filter-item">
                            <label>Date To:</label>
                            <input type="date" name="dateTo" value="" onchange="applyFilters()" />
                        </div>
                        <div class="filter-item">
                            <label>Is Ignored:</label>
                            <select name="isIgnored" onchange="applyFilters()">
                                <option value="">All</option>
                                <option value="true" >Yes</option>
                                <option value="false" >No</option>
                            </select>
                        </div>
                        <div class="filter-item">
                            <label>Is Favourite:</label>
                            <select name="isFavourite" onchange="applyFilters()">
                                <option value="">All</option>
                                <option value="true" >Yes</option>
                                <option value="false" >No</option>
                            </select>
                        </div>
                        <div class="filter-actions">
                            <button type="button" onclick="clearFilters()" class="btn-secondary">Clear</button>
                        </div>
                    </div>
                </form>
            </section>

            <!-- Pagination Top -->
            <section class="pagination">
                                    <button class="btn-secondary" disabled>Previous</button>
                                
                <span>Page 1 of 544 (Total: 13577)</span>
                
                                    <a href="?page=2" class="btn-secondary">Next</a>
                            </section>

            <!-- Threads List -->
            <section id="threadsSection">
                <h2>Threads</h2>
                <div class="threads-list">
                                                                        <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://www.reddit.com/r/robloxgamedev/comments/1sf36jm/rpg_has_753_games_sharing_82mmo_simulation_has/" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [robloxgamedev] RPG has 753 games sharing $8.2M/mo — Simulation has 6,690 splitting $27.3M                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> RoWatcherHQ</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 0</span>
                                            <span><strong>Comments:</strong> 3</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            I&#039;ve been digging into genre-level economics on Roblox and the revenue-per-game gap between genres is wild right now.

Here&#039;s the breakdown that caught my eye:

**Revenue per competing game by genre:**

| Genre | Games | Total Players | Revenue/mo...                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13611, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13611, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13611, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13611" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://www.reddit.com/r/starvingartists/comments/1sf306t/discussion_where_should_i_go_to_sell_game_icons/" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [starvingartists] [Discussion] Where should I go to sell game icons / 2d assets?                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> charli_charli_charli</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 1</span>
                                            <span><strong>Comments:</strong> 0</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            I started comms last December on rodevs and rodevs mostly works but I can&#039;t rlly charge minimum wage since it&#039;s a roblox dev market and most pll are broke over there, are there any other places where I could sell game icons or video game art (not ...                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13605, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13605, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13605, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13605" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://www.reddit.com/r/u_Old_Bell3361/comments/1sf1y5e/david_builderman_baszucki_you_smug_tonedeaf/" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [u_Old_Bell3361] David “Builderman” Baszucki, you smug, tone-deaf, window-cleaner-to-5-billion-dollars cunt. You started as some physics nerd making car-crash simulators and ended up creating the single most effective child-brain-rotting machine since Skibidi Toilet.                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> Old_Bell3361</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 1</span>
                                            <span><strong>Comments:</strong> 0</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            Congratulations, you absolute fucking ghoul — you turned “let kids build games” into “let kids get groomed, exploited, and milked for Robux while I count my billions from the sidelines.”

Let’s talk your glorious decisions, you delusional fuckwit....                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13606, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13606, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13606, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13606" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://i.redd.it/vtyangwhrstg1.jpeg" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [Graceroblox] Remember the old post i made? It was foreshadowing it&#039;s seem                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> adg_xd</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 3</span>
                                            <span><strong>Comments:</strong> 0</span>
                                        </div>
                                    </div>
                                </div>

                                                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13610, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13610, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13610, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13610" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://www.reddit.com/r/GEO_optimization/comments/1sf197u/por_qué_las_ias_están_dejando_de_premiar_las/" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [GEO_optimization] Por qué las IAs están dejando de “premiar” las guías completas (y favoreciendo las opiniones con criterio)                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> ArqEduardoMestre</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 2</span>
                                            <span><strong>Comments:</strong> 1</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            En este momento muchos se están preguntando exactamente lo mismo que tú: por qué las páginas con opiniones fuertes o un ángulo claro parecen estar funcionando mejor que las típicas “guías completas”.

Y la respuesta tiene que ver con algo más prof...                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13602, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13602, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13602, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13602" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://i.redd.it/idc18b2xcstg1.jpeg" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [valorantindia] NEED Team mates for 5 stack                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> Queasy-Finance9853</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 1</span>
                                            <span><strong>Comments:</strong> 7</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            On D1 from couple of seasons now.

I play 3 or 5 stack but 3 of ky mates are causal about the game or i would say not really into it.

So D1 is max I can go with them because of the team diff I am getting now.

Looking to push to ascendant this se...                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13607, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13607, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13607, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13607" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://www.reddit.com/gallery/1sey9s2" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [scrapingtheweb] Monitory - Automated social media &amp;amp; website scraping with change detection and webhooks                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> Silent-Brilliant7036</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 3</span>
                                            <span><strong>Comments:</strong> 0</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            Hey all,

Sharing [Monitory](https://monitory.me), a hosted scraping + monitoring platform. Point it at a profile or website, it scrapes on a schedule, and sends you a structured diff when data changes.

Currently supported: X/Twitter, Reddit, Git...                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13598, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13598, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13598, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13598" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://www.reddit.com/gallery/1sexx7j" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [deadline_roblox] Floating suppressor                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> Hairy_Lock3501</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 6</span>
                                            <span><strong>Comments:</strong> 0</span>
                                        </div>
                                    </div>
                                </div>

                                                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13608, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13608, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13608, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13608" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://www.reddit.com/r/webscraping/comments/1sexuse/opensource_tool_for_reddit_data_extraction/" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [webscraping] Open-source tool for Reddit data extraction                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> BugAccomplished1570</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 2</span>
                                            <span><strong>Comments:</strong> 0</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            MIT licensed: [https://github.com/1146345502/reddit-skills](https://github.com/1146345502/reddit-skills)   
All output is structured JSON                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13600, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13600, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13600, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13600" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.com/r/AIVOEdge/comments/1sewcm4/kevin_indig_just_published_something_every_brand/" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [GEO_optimization] Kevin Indig just published something every brand team should read.                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> Working_Advertising5</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 1</span>
                                            <span><strong>Comments:</strong> 0</span>
                                        </div>
                                    </div>
                                </div>

                                                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13604, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13604, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13604, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13604" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.com/r/AIVOEdge/comments/1sewcm4/kevin_indig_just_published_something_every_brand/" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [GenEngineOptimization] Kevin Indig just published something every brand team should read.                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> Working_Advertising5</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 1</span>
                                            <span><strong>Comments:</strong> 0</span>
                                        </div>
                                    </div>
                                </div>

                                                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13601, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13601, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13601, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13601" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://www.reddit.com/r/GEO_optimization/comments/1sewbma/semrush_is_great_at_tracking_seo_metrics_that_no/" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [GEO_optimization] Semrush is great at tracking SEO metrics that no longer predict B2B revenue                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> Alternative_Owl_7660</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 3</span>
                                            <span><strong>Comments:</strong> 1</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            Still using Semrush. Not cancelling it. But something shifted this year.

Climbed from position 12 to position 3 for our main keyword. Traffic went up. Deals from that traffic? Nearly zero.

Asked our best customers how they found us. Most said Ch...                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13603, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13603, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13603, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13603" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://i.redd.it/119vqt2tsrtg1.png" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [BloxFruitsTrades] LF YELLOW AND W OFFERS (SEE DESC.)                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> Life-Action-9180</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 1</span>
                                            <span><strong>Comments:</strong> 7</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            i don&#039;t have +1 storage and pls don&#039;t offer lowballs gamepasses perms or plastic fruits                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13609, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13609, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13609, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13609" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://www.reddit.com/r/webscraping/comments/1sevbhd/weekly_webscrapers_hiring_faqs_etc/" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [webscraping] Weekly Webscrapers - Hiring, FAQs, etc                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> AutoModerator</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 2</span>
                                            <span><strong>Comments:</strong> 0</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            **Welcome to the weekly discussion thread!**

This is a space for web scrapers of all skill levels—whether you&#039;re a seasoned expert or just starting out. Here, you can discuss all things scraping, including:

* Hiring and job opportunities
* Indus...                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13599, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13599, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13599, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13599" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://www.reddit.com/r/seogrowth/comments/1seu3rf/seo_news_google_fixes_a_search_console_bug_that/" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [seogrowth] SEO News: Google fixes a Search Console bug that inflated impression counts, Ask Maps becomes fully available in the U.S. and India, ChatGPT adds optional location sharing for more precise local results                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> BogdanK_seranking</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 15</span>
                                            <span><strong>Comments:</strong> 7</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            One week is more interesting than the next when you’re in the SEO community! Let’s dive into all the cool things that happened over the past seven days:

**Updates**

* **Google explains why core updates can take weeks to roll out**

John Mueller ...                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13590, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13590, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13590, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13590" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://www.reddit.com/r/seogrowth/comments/1setxja/whats_your_goto_seo_strategy_when_starting_a_new/" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [seogrowth] What’s your go-to SEO strategy when starting a new site?                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> BoysenberryLumpy8680</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 14</span>
                                            <span><strong>Comments:</strong> 26</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            When starting a new site, I usually focus on basics first — keyword research, setting up proper structure, and publishing a few targeted pages.

I try to keep things simple in the beginning instead of over-optimizing everything.

That said, I feel...                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13592, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13592, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13592, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13592" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://www.reddit.com/r/gameideas/comments/1setwk6/creating_a_standalone_offline_fruit_rpg_for/" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [gameideas] Creating a Standalone Offline &quot;Fruit RPG&quot; for Android and iOS                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> Yuri9002</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 0</span>
                                            <span><strong>Comments:</strong> 0</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            I am looking to suggest a specific project for indie mobile developers or hobbyist teams: a standalone, offline Action-RPG inspired by the &quot;Blox Fruits&quot; or &quot;One Piece&quot; genre.

The Core Vision:

Right now, the &quot;Fruit-based RPG&quot; genre is almost enti...                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13596, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13596, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13596, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13596" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://www.reddit.com/r/seogrowth/comments/1set7ue/i_have_written_multiple_blogs_about_food_branding/" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [seogrowth] I have written multiple blogs about “food branding.” I have also followed SEO and AEO guidelines. But when I asked ChatGPT to list the best food branding agencies, it showed others. The real problem is that the top one was a small team with no website. How is that even possible?                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> Ornery-Pie-6971</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 0</span>
                                            <span><strong>Comments:</strong> 0</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            I have been studying AEO for a while. I have followed all the guidelines. Still, ChatGPT recommends agencies that do not even have a website. They have not worked with well-known brands either. I don’t understand how to get cited in ChatGPT.

If y...                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13593, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13593, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13593, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13593" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://www.reddit.com/r/seogrowth/comments/1serm5s/what_actually_drives_visibility_in_ai_search/" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [seogrowth] What actually drives visibility in AI search right now?                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> whereaithinks</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 6</span>
                                            <span><strong>Comments:</strong> 10</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            Noticing rankings don’t always match who gets picked in AI answers. Are you focusing more on content, links, or overall brand presence?                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13591, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13591, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13591, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13591" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://www.reddit.com/r/webscraping/comments/1ser5eo/how_do_you_monitor_your_scrapers/" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [webscraping] How do you monitor your scrapers?                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> pavlito88</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 11</span>
                                            <span><strong>Comments:</strong> 23</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            I run around 30 scrapers and the thing that annoys me most is when they don&#039;t crash but just silently return bad data because a  selector changed or something on the site moved around. Sometimes I don&#039;t notice for days.         

Right now I just ...                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13588, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13588, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13588, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13588" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://www.reddit.com/r/seogrowth/comments/1seqpte/psi_values_for_cwv/" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [seogrowth] PSI values for CWV                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> SidSadhna</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 2</span>
                                            <span><strong>Comments:</strong> 0</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            Why does PSI gives different values for LCP, CLS etc on different searches? How do we find an exact value for these metrics? Also should I consider TBT and Speed Index also for deciding the website stability?                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13594, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13594, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13594, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13594" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://www.reddit.com/r/webscraping/comments/1seq88z/add_more_with_web_scraping_skills_you_can_build/" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [webscraping] [add more] With web scraping skills you can build these 12 businesses                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> codepoetn</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 24</span>
                                            <span><strong>Comments:</strong> 24</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            I could think of 12 businesses (not counting news aggregation as a viable business anymore)-

1. influencer marketing platform
2. financial market insights platform
3. startup intelligence platform
4. compliance platform
5. eCom price intelligence...                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13587, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13587, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13587, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13587" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://www.reddit.com/r/seogrowth/comments/1sepoow/nextjs_rendering_strategies/" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [seogrowth] next.js rendering strategies                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> nobodyinrussia</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 1</span>
                                            <span><strong>Comments:</strong> 1</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            Hey folks,

Working on an young Next.js site (15), with no much organic traffic.

Current setup:

\- Most pages are CSR

\- Product pages use SSR

\- Heavy third-party scripts (analytics, session recording, A/B testing, live chat)

\- Heavyweight ...                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13595, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13595, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13595, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13595" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://www.reddit.com/r/robloxgamedev/comments/1sepbsi/roblox_assistant_system_prompt/" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [robloxgamedev] Roblox Assistant system prompt                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> premium_frog</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 0</span>
                                            <span><strong>Comments:</strong> 0</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            was looking here for the system prompt and i found an earlier version of it, but not the latest

  
Is this important to anyone else? Probably not, im only sharing for the purpose of just putting it out there in case someone other than me needs it...                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13597, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13597, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13597, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13597" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                    <div class="thread-item">
                                <div class="thread-header">
                                    <div class="thread-info">
                                        <div class="thread-title">
                                                                                            <a href="https://reddit.comhttps://www.reddit.com/r/seogrowth/comments/1sensq7/google_not_showing_meta_description_anymore/" target="_blank" rel="noopener noreferrer" style="color: #333; text-decoration: none;">
                                                    [seogrowth] Google Not Showing Meta Description Anymore?                                                </a>
                                                                                    </div>
                                        <div class="thread-meta">
                                            <span><strong>Author:</strong> profhetprofit</span>
                                            <!-- Simple date format for now -->
                                            <span><strong>Posted:</strong> <br />
<b>Warning</b>:  Undefined property: Thread::$externalCreatedLocal in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
<br />
<b>Deprecated</b>:  htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in <b>/home/platne/serwer55150/public_html/ins.high-five.cc/index.php</b> on line <b>321</b><br />
</span>
                                            <span><strong>Score:</strong> 4</span>
                                            <span><strong>Comments:</strong> 12</span>
                                        </div>
                                    </div>
                                </div>

                                                                                                    <div class="thread-text">
                                        <span class="text-content">
                                            The clicks to my pages have dropped since February, and obviously, that led to a traffic drop. I just noticed that Google, for some reason, is not showing the meta descriptions that we have set. These meta descriptions have worked for us for over ...                                        </span>
                                    </div>
                                
                                <div class="thread-actions">
                                    <select onchange="updateThreadStatus(13575, this.value)">
                                        <option value="">Select Action</option>
                                        <option value="ignore" >🗑️ Ignore</option>
                                        <option value="favourite" >⭐ Favourite</option>
                                        <option value="none">Clear</option>
                                    </select>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13575, 'isIgnored', this.checked)">
                                        Ignored
                                    </label>

                                    <label class="checkbox-label">
                                        <input type="checkbox"  onchange="toggleThreadFlag(13575, 'isFavourite', this.checked)">
                                        Favourite
                                    </label>
                                    
                                    <a href="thread.php?id=13575" class="btn-primary" style="margin-left:auto; text-decoration:none; padding: 5px 15px; background: #667eea; color: white; border-radius: 4px;">View Comments</a>
                                </div>
                            </div>
                                                            </div>
            </section>

             <!-- Pagination Bottom -->
             <section class="pagination">
                                    <button class="btn-secondary" disabled>Previous</button>
                                
                <span>Page 1 of 544</span>
                
                                    <a href="?page=2" class="btn-secondary">Next</a>
                            </section>

        </div>
    </body>
</html>
