Editing
Digital Media Culture
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'The Viral Spread' (The K-Factor):''' <syntaxhighlight lang="python"> def calculate_virality(initial_views, share_rate, generations): """ K-Factor: The number of new users each existing user brings. If K > 1, it is 'Viral'. """ total_reach = initial_views current_reach = initial_views for gen in range(generations): # Every person shares with 'share_rate' people new_reach = current_reach * share_rate total_reach += new_reach current_reach = new_reach print(f"Gen {gen+1}: New viewers = {int(new_reach):,}") return int(total_reach) # A video with 100 views. Each person shares it with 2 people. print(f"Total Viral Reach: {calculate_virality(100, 2.1, 5):,}") # This exponential growth is how a single person # can 'reach the world' in 24 hours. </syntaxhighlight> ; Digital Culture Landmarks : '''The First Meme (Dancing Baby)''' β A 3D animation from 1996 that proved "Viral" content could exist before social media. : '''YouTube (2005)''' β The platform that turned every human into a potential "TV Station." : '''The 'Selfie' (2013 Word of the Year)''' β The symbol of the "Individual-centric" digital culture. : '''TikTok''' β The shift from "Social" (who you follow) to "Interest" (what you like) algorithmic curation. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;">
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information