Editing
Digital Rights and Privacy
(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 Privacy Score' (Evaluating an app's ethics):''' <syntaxhighlight lang="python"> def calculate_app_ethics(e2ee, data_selling, opt_out_possible, clear_tos): """ Score: 0 (Malicious) to 10 (Ethical) """ score = 0 if e2ee: score += 4 if not data_selling: score += 3 if opt_out_possible: score += 2 if clear_tos: score += 1 return { "Privacy Score": f"{score}/10", "Verdict": "Safe" if score >= 8 else "Use with Caution" if score >= 5 else "Unsafe" } # App: Signal (E2EE: Yes, Sell: No, Opt: Yes, ToS: Clear) print(f"Signal: {calculate_app_ethics(True, False, True, True)}") # App: Generic Social Media (E2EE: No, Sell: Yes, Opt: No, ToS: 50 pages) print(f"FreeApp: {calculate_app_ethics(False, True, False, False)}") </syntaxhighlight> ; Rights Landmarks : '''The Snowden Revelations (2013)''' β When Edward Snowden leaked documents proving that governments were mass-surveilling the private data of millions of innocent citizens without a warrant. : '''The 'Right to Repair'''' β A digital right movement that argues you should have the right to fix the electronics you own, rather than being forced to buy a new one or use an official store. : '''Tor Browser''' β A tool that uses "Onion Routing" to allow people to browse the internet anonymously, often used by journalists and activists in dangerous countries. : '''Digital ID''' β The controversial push to have a single, government-verified "Digital Identity" for the whole internet. </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