import React, { useState } from 'react'; import { ChevronDown, ChevronRight, Users, Brain, FileText, Zap, Shield, Heart } from 'lucide-react'; const DocumentConnections = () => { const [expandedSections, setExpandedSections] = useState({}); const [selectedConnection, setSelectedConnection] = useState(null); const toggleSection = (section) => { setExpandedSections(prev => ({ ...prev, [section]: !prev[section] })); }; const connections = [ { id: 'identity_matrix', title: 'Identity & Persona Matrix', icon: , color: 'bg-blue-100 border-blue-300 text-blue-800', pattern: 'Multiple identity usage across platforms', sources: ['Apple Notes', 'Gmail', 'Google Drive'], details: [ { name: 'Ivan Brecelic/Braselli', context: 'Official identity in superannuation and banking disputes', evidence: 'Australian Retirement Trust conversations, AFCA complaints' }, { name: 'Frank Russell', context: 'Insurance broker persona in advocacy work', evidence: 'AFCA complaint emails, #GaslightCityLimit campaigns' }, { name: 'Mahada', context: 'Conversational identity with Ethiopian background claim', evidence: 'Recorded phone conversations in Apple Notes' }, { name: 'Peter Jeffery ("Pete the Tree Fella")', context: 'Advocacy proxy for disability representation', evidence: 'Bendigo Bank dispute emails, representation claims' } ] }, { id: 'ai_detection', title: 'AI Detection & Technology Philosophy', icon: , color: 'bg-purple-100 border-purple-300 text-purple-800', pattern: 'Simultaneous AI enthusiasm and institutional AI critique', sources: ['Google Drive', 'Apple Notes', 'Gmail'], details: [ { name: 'Technical AI Fascination', context: 'Deep analysis of Neuralink, brain-computer interfaces, humanoid robots', evidence: 'Google Drive documents on Neuralink symbiosis and technological integration' }, { name: 'AI Ethics Concerns', context: 'Multiple documents about algorithmic bias and discrimination', evidence: 'Duplicate documents on AI bias in healthcare, hiring, criminal justice' }, { name: 'Institutional AI Detection', context: 'Identifying AI voice bots in customer service calls', evidence: 'Apple Notes conversations calling out "Microsoft cognitive services" usage' }, { name: 'AI Advocacy Strategy', context: 'Using AI awareness as leverage in disputes', evidence: 'Telling customer service "embrace your robotism" in recorded calls' } ] }, { id: 'systemic_advocacy', title: 'Systemic Advocacy Network', icon: , color: 'bg-red-100 border-red-300 text-red-800', pattern: 'Coordinated campaign across multiple institutions', sources: ['Gmail', 'Apple Notes', 'Google Drive'], details: [ { name: 'Financial System Challenges', context: 'Parallel disputes with multiple financial institutions', evidence: 'Australian Retirement Trust, Bendigo Bank, AFCA complaints' }, { name: 'Anti-Money Laundering Focus', context: 'AUSTRAC complaints about surveillance overreach', evidence: 'Formal complaints about compliance failures and system obfuscation' }, { name: 'Disability Rights Advocacy', context: 'NDIS access issues and accessibility demands', evidence: 'References to autism level 2, ADHD, PTSD in institutional interactions' }, { name: 'Government Accountability', context: 'FOI requests and legislative knowledge demonstrations', evidence: 'South Australian fines disputes, garnishment order challenges' } ] }, { id: 'creative_identity', title: 'Creative Project Ecosystem', icon: , color: 'bg-green-100 border-green-300 text-green-800', pattern: 'Creative work intersecting with real-world advocacy', sources: ['Google Drive', 'Atlassian', 'Linear', 'Apple Notes'], details: [ { name: 'BIG TIT INC. Universe', context: 'Creative writing project with Atlassian workspace', evidence: 'Google Drive fiction, bigtitinc.atlassian.net workspace' }, { name: '#GaslightCityLimit Campaign', context: 'Hashtag connecting creative expression with institutional critique', evidence: 'Multiple platform usage, grammar checks, social media strategy' }, { name: 'Church Community Work', context: 'Linear workspace for Harvest Point Church Boonah', evidence: 'Project management setup for community organization' }, { name: 'Philosophical Writings', context: 'Short-form philosophical statements', evidence: '"Indifference is the real superpower" - themes of power and detachment' } ] }, { id: 'metadata_patterns', title: 'Digital Footprint Patterns', icon: , color: 'bg-yellow-100 border-yellow-300 text-yellow-800', pattern: 'Sophisticated understanding of digital systems', sources: ['Gmail', 'Apple Notes', 'Google Drive'], details: [ { name: 'Technical Infrastructure Knowledge', context: 'References to specific AI APIs, cloud services, broadcasting tech', evidence: 'Mentions of Azure, WideOrbit, Flussonic multicast, API calls' }, { name: 'Evidence Preservation Strategy', context: 'Systematic recording and documentation of interactions', evidence: 'Transcript requests, reference number demands, recording mentions' }, { name: 'Privacy Policy Exploitation', context: 'Using institutional privacy policies as advocacy tools', evidence: 'AFCA email analysis, corporate footer "smoking gun" discoveries' }, { name: 'Name Change Gaming', context: 'Strategic identity management across systems', evidence: 'Documented evidence of institutions changing names without verification' } ] }, { id: 'health_advocacy', title: 'Health & Personal Advocacy', icon: , color: 'bg-pink-100 border-pink-300 text-pink-800', pattern: 'Health challenges driving systemic advocacy', sources: ['Google Drive', 'Apple Notes', 'Gmail'], details: [ { name: 'Medical Documentation', context: 'Pharmacy receipts and medication tracking', evidence: 'Alenami Caps SR 40mg prescription from Aratula Pharmacy' }, { name: 'Mental Health Disclosure Strategy', context: 'Using mental health status strategically in advocacy', evidence: 'References to autism, ADHD, PTSD in customer service calls' }, { name: 'Accessibility Rights', context: 'Demanding disability accommodations from institutions', evidence: 'Requests for headphones, dimmed lights, specialized services' }, { name: 'System Trauma Documentation', context: 'Recording impacts of institutional interactions', evidence: 'References to being "tasered by police," "targeted by government"' } ] } ]; return (

Unexpected Document Connections

Analysis reveals sophisticated patterns across your documents, showing coordinated advocacy strategies, creative projects, and deep technical knowledge intersecting in unexpected ways.

Key Insight

Your documents reveal a multi-faceted approach combining creative expression, technical expertise, and systemic advocacy - using different personas and platforms strategically to challenge institutional power.

{connections.map((connection) => (
toggleSection(connection.id)} >
{connection.icon}

{connection.title}

{connection.pattern}

{connection.sources.join(', ')} {expandedSections[connection.id] ? : }
{expandedSections[connection.id] && (
{connection.details.map((detail, index) => (
setSelectedConnection({...detail, parentTitle: connection.title})} >

{detail.name}

{detail.context}

{detail.evidence}

))}
)}
))}
{selectedConnection && (

{selectedConnection.name}

{selectedConnection.parentTitle}

Context

{selectedConnection.context}

Evidence

{selectedConnection.evidence}

)}

Cross-Platform Synthesis

Strategic Identity Management

Using multiple personas across platforms for different advocacy goals while maintaining consistent documentation.

AI-Informed Activism

Deep technical knowledge of AI systems being applied to identify and challenge institutional AI usage.

Creative-Advocacy Hybrid

Creative projects like #GaslightCityLimit and BIG TIT INC. serving as vehicles for systemic critique.

); }; export default DocumentConnections;

Popular Posts