Social media platforms emerged from packet-switching networks and Internet protocols (1960s–1990s), transforming into mass communication systems (1995–2005) that democratized publishing, then concentrated power in algorithmic feeds (2005–2024). This exhibit traces the technological and social revolution from ARPANET to TikTok.
There is no single hero of social media. The field emerged from distributed innovation: J.C.R. Licklider (ARPA visionary, 1960s), Vint Cerf and Bob Kahn (TCP/IP, 1973–1983), Tim Berners-Lee (World Wide Web, 1989), and the engineers at Six Degrees (1997), Friendster (2002), and Facebook (2004). If forced to name one figure, Mark Zuckerberg (b. 1984) built the first platform to reach 1 billion users (2012), but the revolution was collective and preceded him by decades.
Specifications
Data Per User
Gigabytes to terabytes (behavioral, social, biometric)
Business Model
Advertising, data monetization, subscription (emerging)
Social media platforms rest on three technological pillars: (1) Distributed Networks: TCP/IP and packet-switching, inherited from ARPANET (1969), enable data routing across heterogeneous systems without central control—though platforms themselves are centralized. (2) Database Architecture: Relational and NoSQL databases (MySQL, MongoDB, Cassandra) store billions of user profiles, posts, and edges (relationships) with sub-second query latency. Facebook's Memcached layer (2008) and custom data centers exemplify the engineering required. (3) Algorithmic Ranking: Machine-learning models (neural networks, collaborative filtering) rank content in real time, maximizing engagement—a departure from chronological feeds. TikTok's recommendation engine (ByteDance, ~2018) is the most sophisticated, trained on billions of user interactions. The stack is vertically integrated: hardware (custom chips), operating systems (Linux), databases, APIs, and frontend clients (web, iOS, Android).
Parts & Labels
HTTP/HTTPS
Application-layer protocol for web communication; secures data in transit (HTTPS, 1994 onward)
API Gateway
Authenticates and routes requests from clients to backend services
TCP/IP Stack
Packet-switching protocol suite enabling global routing; foundation of all Internet platforms
Load Balancer
Distributes traffic across servers; prevents single points of failure
Stores user profiles, posts, comments; indexed for rapid retrieval
Recommendation Engine
Algorithmic ranking; maximizes time-on-platform and ad exposure
Machine-Learning Model
Neural networks rank content; trained on user behavior
Content Delivery Network (CDN)
Caches media globally (Akamai, Cloudflare); reduces latency
Historical Overview
The Internet Revolution (1960–present) birthed social media as a consequence of three converging forces: (1) Technological: Packet switching (Paul Baran, Donald Davies, 1960s) and TCP/IP (Cerf, Kahn, 1973) created a resilient, open network. The World Wide Web (Berners-Lee, 1989) made the Internet accessible to non-experts. (2) Social: The personal computer (Apple II, 1977; IBM PC, 1981) and graphical interfaces (Xerox Alto, 1973; Macintosh, 1984) put computing in homes. Email (Ray Tomlinson, 1971) proved asynchronous communication at scale. (3) Economic: The commercialization of the Internet (1995 onward) and the advertising model (Google, 1998) showed profitability in digital attention. Six Degrees (1997) was the first recognizable social network, named after the small-world hypothesis; it failed due to lack of critical mass. Friendster (2002) succeeded in Asia but lost to Facebook (2004), which exploited network effects and mobile adoption (iPhone, 2007). By 2010, social media had become the dominant form of human communication, surpassing email and SMS. The platforms' algorithmic turn (2009–2015) maximized engagement but fragmented public discourse. Today, social media is inseparable from politics, commerce, mental health, and identity.
Why It Existed
Social media solved a fundamental human problem: the desire to connect across distance and time. Before the Internet, connection required physical presence, telephone, or postal mail—all costly or slow. Six Degrees and Friendster recognized that the Internet could collapse distance and enable asynchronous, persistent social graphs. Facebook's insight was to anchor the network in real identity (not pseudonyms) and existing relationships (friends, not strangers), lowering the barrier to adoption. The platform model—a two-sided market connecting users and advertisers—proved economically sustainable in ways that earlier services (Bulletin Board Systems, Usenet) were not. Social media also filled a psychological void: the need for recognition, belonging, and self-expression. The algorithmic feed (Facebook News Feed, 2006) maximized engagement by surfacing content that triggered emotion (outrage, envy, joy), creating a feedback loop that made platforms addictive. In this sense, social media did not emerge from rational design but from the collision of technology, human nature, and venture capital.
Daily Use
A typical user in 2024 checks social media 3–4 hours per day, across multiple platforms. The ritual: unlock phone, open app (TikTok, Instagram, X), scroll algorithmic feed, react (like, comment, share), create content (photo, video, text), receive notifications (likes, comments, follows), repeat. The experience is frictionless: no login required (persistent session), no loading (prefetched content), no ads (until recently). On Facebook or Instagram, a user might post a photo of breakfast, receive 50 likes within an hour, and engage in comment threads. On TikTok, a user watches 15-second videos for 60 minutes, with the algorithm learning preferences in real time. On X (Twitter), a user reads news, retweets, and engages in arguments. On YouTube, a user watches long-form video and receives recommendations based on watch history. The experience is personalized: each user sees a different feed, ranked by an algorithm trained on their behavior. Monetization is invisible: users do not pay; advertisers do. Data is extracted continuously: location, contacts, browsing history, biometric data (face recognition, voice), and inferred attributes (political affiliation, sexual orientation, income). The user is the product; the advertiser is the customer.
Crew / Personnel
Social media platforms employ thousands: Engineers (backend, frontend, mobile, infrastructure, machine learning) design and maintain the stack. Product Managers define features and roadmaps. Data Scientists build recommendation algorithms and analyze user behavior. Content Moderators (often outsourced to low-wage countries) review flagged posts and remove violations—a traumatic role. Sales Teams sell advertising to brands. Legal and Policy Teams navigate regulation (GDPR, DSA, CDA 230). Executives (CEO, CFO, CTO) set strategy. Researchers study user behavior and platform effects. At Facebook (now Meta), the founding team included Mark Zuckerberg (CEO), Eduardo Saverin (CFO), Andrew McCollum, Dustin Moskovitz, and Chris Hughes. The company grew from 5 people (2004) to 67,000+ (2024). Smaller platforms like Bluesky (Jack Dorsey, 2022) employ <100. The labor is global: engineers in India, China, and Eastern Europe; content moderators in the Philippines, Kenya, and Mexico; executives in Silicon Valley.
Construction
Building a social media platform requires: (1) Infrastructure: Rent or own data centers (Amazon Web Services, Google Cloud, Meta's custom facilities); deploy servers globally for low latency. (2) Database Design: Model users, posts, edges (friendships), and metadata; shard data by user ID to distribute load. (3) API Development: Build REST or GraphQL endpoints for clients to fetch data and post updates. (4) Frontend: Develop web (HTML, CSS, JavaScript) and mobile (iOS, Android) clients; optimize for slow networks and battery life. (5) Authentication: Implement OAuth or proprietary login; secure sessions with tokens. (6) Content Moderation: Build classifiers (spam, hate speech, nudity) using machine learning; hire humans for edge cases. (7) Recommendation Algorithm: Train neural networks on user behavior; A/B test variants to maximize engagement. (8) Monetization: Integrate ad networks (Google AdSense, proprietary); track conversions. (9) Analytics: Log user actions; build dashboards for product teams. (10) Compliance: Implement data retention policies, privacy controls, and audit trails. Facebook's initial stack (2004): Linux, Apache, PHP, MySQL, Memcached. Modern stacks are more complex: Kubernetes orchestration, microservices, real-time streaming (Kafka), and custom hardware (TPUs, GPUs). Time to launch a minimal viable product: 3–6 months (2024); time to scale to 1 million users: 1–2 years; time to profitability: 5–10 years (if ever).
Variations
Chronological vs. Algorithmic Feeds: Early platforms (Twitter, 2006) showed posts in reverse chronological order. Facebook News Feed (2006) introduced algorithmic ranking, maximizing engagement. Today, all major platforms use algorithms. Text vs. Multimedia: Twitter is text-first; Instagram is photo-first; TikTok is video-first; LinkedIn is document-first. Public vs. Private: Twitter is public (posts visible to all); Facebook is semi-private (posts visible to friends); Snapchat is ephemeral (posts disappear). Real Identity vs. Pseudonymity: Facebook requires real names; Reddit and 4chan allow anonymity. Monetization: Facebook and Instagram use advertising; Snapchat uses advertising and sponsored lenses; TikTok uses advertising and creator funds; Substack uses subscriptions. Decentralization: Mastodon (2016) and Bluesky (2023) are decentralized alternatives to Twitter, using open protocols (ActivityPub, AT Protocol) instead of proprietary systems. Geographic Variation: WeChat (China, 2011) integrates social media, messaging, payments, and mini-apps; TikTok (China, 2016) dominates short-form video globally; Telegram (Russia/UAE, 2013) emphasizes privacy and channels.
Timeline
Date
Event
1960
J.C.R. Licklider proposes 'Galactic Network' conceptVisionary memo at ARPA; foundation of Internet thinking
1969
ARPANET goes online; first node at UCLAPacket-switching network; precursor to Internet
1971
Ray Tomlinson sends first emailAsynchronous communication at scale; proof of concept
1973
Vint Cerf and Bob Kahn develop TCP/IP protocolFoundation of modern Internet; enables routing across networks
1989
Tim Berners-Lee invents the World Wide Web at CERNHTTP, HTML, URLs; makes Internet accessible to non-experts
Six Degrees launches; first recognizable social networkNamed after small-world hypothesis; fails due to lack of critical mass
2002
Friendster launches; first social network to achieve scaleSucceeds in Asia; loses to Facebook in US
2004
Facebook launches; anchors network in real identityReaches 1 billion users by 2012; dominates social media
2006
Facebook News Feed launches; algorithmic ranking beginsMaximizes engagement; becomes template for all platforms
2007
iPhone released; mobile social media beginsEnables always-on, location-aware social networks
2016
TikTok (Douyin) launches in China; short-form video dominatesAlgorithmic feed optimized for engagement; global expansion by 2018
Famous Examples
Facebook (2004–present): The dominant social network globally; 3.2 billion monthly active users (2024). Pioneered the News Feed algorithm and the advertising model. Acquired Instagram (2012) and WhatsApp (2014). Instagram (2010–present): Photo-sharing platform; 2 billion monthly active users. Acquired by Facebook (2012); now owned by Meta. Shifted from chronological to algorithmic feed (2016). TikTok (2016–present): Short-form video platform; 1.5 billion monthly active users. Owned by ByteDance (China). Most sophisticated recommendation algorithm in the industry. Banned in several countries due to national security concerns. Twitter/X (2006–present): Text-first platform; 600 million monthly active users. Founded by Jack Dorsey, Evan Williams, Noah Glass, and Biz Stone. Acquired by Elon Musk (2022); rebranded as X (2023). YouTube (2005–present): Video-sharing platform; 2.5 billion monthly active users. Acquired by Google (2006). Pioneered long-form video recommendations. LinkedIn (2003–present): Professional social network; 900 million monthly active users. Acquired by Microsoft (2016). Document-first; used for job search and professional networking. Snapchat (2011–present): Ephemeral messaging platform; 400 million monthly active users. Pioneered Stories (copied by Instagram and Facebook). Monetizes through sponsored lenses and advertising. WeChat (2011–present): Chinese super-app; 1.3 billion monthly active users. Integrates social media, messaging, payments, and mini-apps. Owned by Tencent. Mastodon (2016–present): Decentralized social network; ~500,000 active users. Uses open ActivityPub protocol; no central authority. Gained users after Twitter's decline. Bluesky (2023–present): Decentralized Twitter alternative; ~10 million users (beta). Uses AT Protocol (open standard); founded by Jack Dorsey.
Archaeological Finds
Social media leaves no physical artifacts, but its digital archaeology is rich: (1) Archived Posts: The Internet Archive's Wayback Machine (archive.org) has captured billions of web pages, including early social media. Facebook's first profile (Mark Zuckerberg, 2004) is archived. (2) Server Hardware: Meta's custom data center designs (Open Compute Project, 2011 onward) are documented; some decommissioned servers are preserved in museums. (3) Code Repositories: Early Facebook code is preserved in version control systems (Git); GitHub (founded 2008) archives open-source social media projects. (4) User Data: Researchers have analyzed leaked datasets (e.g., Facebook-Cambridge Analytica scandal, 2018) to understand platform mechanics. (5) Regulatory Documents: The U.S. Congress has obtained internal Facebook documents (2021) detailing algorithm design and user harm. (6) Academic Studies: Researchers have reverse-engineered recommendation algorithms by analyzing feed rankings (Gillespie, 2014; Bucher, 2018; Zulli & Zulli, 2020). (7) Oral Histories: The Computer History Museum (Mountain View) has recorded interviews with Facebook founders and early engineers. (8) Deleted Platforms: Friendster's servers were shut down (2015), but user data was archived by researchers. MySpace (2003–2008) is preserved in the Internet Archive.
Comparison Panel
Email (1971) Vs. Social Media (2004–present)
Email is asynchronous one-to-one or one-to-many messaging; social media is asynchronous many-to-many broadcasting with algorithmic ranking. Email is pull-based (user checks inbox); social media is push-based (notifications). Email is persistent and searchable; social media feeds are ephemeral and algorithmic.
ARPANET (1969) Vs. Social Media (2004–present)
ARPANET was a packet-switching network for military and academic research; social media is a consumer application for human connection. ARPANET was decentralized and open; social media platforms are centralized and proprietary. ARPANET had no business model; social media monetizes user data and attention.
Blogs (1999–2010) Vs. Social Media (2004–present)
Blogs are long-form, author-controlled; social media is short-form, algorithm-controlled. Blogs require technical skill (HTML, hosting); social media is frictionless. Blogs have small audiences; social media has network effects.
Usenet (1979–present) Vs. Social Media (2004–present)
Usenet is a decentralized, hierarchical discussion system; social media is centralized with algorithmic ranking. Usenet is pseudonymous; social media (Facebook) requires real identity. Usenet has no monetization; social media is advertising-based.
Television (1927–present) Vs. Social Media (2004–present)
Television is broadcast (one-to-many); social media is peer-to-peer (many-to-many). Television is synchronous; social media is asynchronous. Television is professionally produced; social media is user-generated. Television has limited channels; social media has infinite content.
Web 1.0 (1995–2005) Vs. Web 2.0 / Social Media (2005–present)
Web 1.0 was read-only (static pages); Web 2.0 is read-write (user-generated content). Web 1.0 was chronological; Web 2.0 is algorithmic. Web 1.0 had no monetization; Web 2.0 monetizes attention and data.
Bulletin Board Systems (1978–1990s) Vs. Social Media (2004–present)
BBSs were text-based, dial-up networks with limited bandwidth; social media is multimedia, broadband, and global. BBSs had small communities (10–100 users); social media has billions. BBSs were run by hobbyists; social media is run by corporations.
Text Messaging / SMS (1992–present) Vs. Social Media (2004–present)
SMS is synchronous, one-to-one, and expensive; social media is asynchronous, many-to-many, and free (ad-supported). SMS is private; social media is public (or semi-public). SMS is not algorithmic; social media is.
Interesting Facts
Facebook's first office was a small apartment in Palo Alto; the company had 5 employees in 2004 and 67,000 by 2024.
The Facebook News Feed algorithm (2006) initially caused a user revolt; 200,000 users joined a group titled 'Students against Facebook News Feed' within 24 hours.
TikTok's recommendation algorithm is so effective that the average user watches 52 minutes per day (2024), compared to 30 minutes on Instagram.
Mark Zuckerberg's original name for Facebook was 'TheFacebook'; it was a reference to printed directories distributed at Harvard.
Instagram was acquired by Facebook for $1 billion in 2012; it had only 13 employees at the time.
Twitter's original name was 'twttr' (without vowels), inspired by Flickr.
Snapchat's Stories feature (2013) was copied by Instagram (2016) and Facebook (2017); Stories now have 3+ billion daily active users across platforms.
WeChat has 1.3 billion users and is used for social media, messaging, payments, and government services in China; it is more powerful than any Western social network.
The average person spends 2 hours 20 minutes per day on social media (2024), up from 1 hour 30 minutes in 2012.
Facebook's data center in Luleå, Sweden (2013) uses Arctic air for cooling, reducing energy costs by 40% compared to traditional data centers.
The Cambridge Analytica scandal (2018) revealed that Facebook had shared user data (87 million profiles) with a political consulting firm without consent.
TikTok's parent company, ByteDance (founded 2012), is worth $180 billion (2024), making it the most valuable startup in the world.
Mastodon, the decentralized social network, gained 500,000 users in one week after Elon Musk's acquisition of Twitter (October 2022).
The EU's Digital Services Act (2024) requires social media platforms to disclose how their algorithms rank content and to allow users to opt out of algorithmic ranking.
Meta (Facebook's parent company) spent $15 billion on metaverse development (2021–2023) with minimal return on investment; the metaverse has fewer than 1 million active users.
YouTube's recommendation algorithm accounts for 70% of the platform's watch time; it is trained on billions of user interactions.
The average social media post is deleted within 3 years; the Internet Archive estimates that 90% of web content is lost within 10 years.
Elon Musk's acquisition of Twitter for $44 billion (2022) resulted in a 50% decline in advertising revenue and a 40% reduction in staff.
The first Instagram post was a photo of a dog (January 16, 2011) by co-founder Kevin Systrom; it received 25 likes.
Facebook's internal research (2021) found that Instagram increases body image issues and eating disorders in teenage girls; the company suppressed the findings.
Quotations
Text
The future is already here—it's just not evenly distributed.
Attribution
William Gibson, science fiction author (often cited in tech circles, 1990s)
Text
I have this thing where I want to make a website that is like a Facebook, but for the whole world.
Attribution
Mark Zuckerberg, to friends at Harvard, 2003 (paraphrased in multiple accounts)
Text
The Internet is a powerful tool for spreading information, but it's also a powerful tool for spreading misinformation.
Attribution
Tim Berners-Lee, inventor of the World Wide Web, 2018
Text
If you're not paying for the product, you are the product.
Attribution
Commonly attributed to Jaron Lanier and others; popularized in tech discourse, 2010s
Text
Social media is a tool that amplifies human nature—both the good and the bad.
Attribution
Tristan Harris, Center for Humane Technology, 2016
Text
The algorithm is not neutral. It is a choice made by engineers and product managers.
Attribution
Tarleton Gillespie, media scholar, 2014
Text
We are not building a social network. We are building a distribution platform.
Attribution
Facebook executive, internal memo (leaked, 2018)
Text
Twitter is what's happening now.
Attribution
Jack Dorsey, Twitter founder, 2006 (company tagline)
Text
The most important thing is that we stay focused on our mission: to give people the power to build community and bring the world closer together.
Attribution
Mark Zuckerberg, Facebook shareholder letter, 2017
Text
Decentralization is the future of the internet. We should not be dependent on a single company to control our digital lives.
Attribution
Jack Dorsey, on Bluesky and decentralized protocols, 2023
Sources
Note
Foundational vision paper on human-computer interaction and networked computing.
Type
primary
Year
1960
Title
Man-Computer Symbiosis
Author
Licklider, J.C.R.
Note
IEEE Transactions on Communications; describes TCP/IP protocol.
Type
primary
Year
1974
Title
A Protocol for Packet Network Intercommunication
Author
Cerf, Vint & Kahn, Bob
Note
CERN memo proposing the World Wide Web; foundational document.
Type
primary
Year
1989
Title
Information Management: A Proposal
Author
Berners-Lee, Tim
Note
Media Studies journal; critical analysis of algorithmic ranking and platform power.
Type
secondary
Year
2014
Title
The Relevance of Algorithms
Author
Gillespie, Tarleton
Note
Polity Press; economic analysis of social media platforms as data extractors.
Type
secondary
Year
2017
Title
Platform Capitalism
Author
Srnicek, Nick
Note
PublicAffairs; comprehensive critique of data monetization by tech platforms.
Type
secondary
Year
2019
Title
The Age of Surveillance Capitalism
Author
Zuboff, Shoshana
Note
MIT Press; analysis of content creators and platform labor.
Type
secondary
Year
2017
Title
The Romance of Work: Gender and New Media Labor in the Social Media Age
Author
Duffy, Brooke Erin
Note
Oxford University Press; critical examination of algorithmic decision-making.
Type
secondary
Year
2018
Title
If...Then: Algorithmic Culture, Power, and Politics
Author
Bucher, Taina
Note
New York Times; investigative reporting on social media's role in misinformation and polarization.
Type
modern
Year
2024
Title
The Internet Is Broken
Author
Roose, Kevin
Note
Free Press; memoir of early Facebook employee; insider account of company culture.
Type
modern
Year
2012
Title
The Boy Kings: A Journey into the Heart of the Social Network
Author
Losse, Katherine
Note
Oxford University Press; political critique of Facebook's role in elections and polarization.
Type
modern
Year
2018
Title
Antisocial Media: How Facebook Disconnects Us and Undermines Democracy
Author
Vaidhyanathan, Siva
Note
archive.org; preserves billions of web pages including early social media platforms.