About Us
About Us
About Us
Cyber literacy as a human right
Cyber Nation is a non-profit organization. Our mission is to democratize access to cybersecurity training and tools that inspire digital confidence and eliminate cyber fear worldwide. We have partnered with NBA star and global philanthropist, Pascal Siakim to create Unbreakable, a cyber learning and notification platform that will educate and empower up to 1.3B young people ages 9-24 globally, to protect them from cyber attacks and online scams
Cyber literacy as a human right
Cyber Nation is a non-profit organization. Our mission is to democratize access to cybersecurity training and tools that inspire digital confidence and eliminate cyber fear worldwide. We have partnered with NBA star and global philanthropist, Pascal Siakim to create Unbreakable, a cyber learning and notification platform that will educate and empower up to 1.3B young people ages 9-24 globally, to protect them from cyber attacks and online scams
Cyber literacy as a human right
Cyber Nation is a non-profit organization. Our mission is to democratize access to cybersecurity training and tools that inspire digital confidence and eliminate cyber fear worldwide. We have partnered with NBA star and global philanthropist, Pascal Siakim to create Unbreakable, a cyber learning and notification platform that will educate and empower up to 1.3B young people ages 9-24 globally, to protect them from cyber attacks and online scams
from PIL import Image, ImageDraw, ImageFont
import random
# Create a blank image
width, height = 800, 600
image = Image.new('RGB', (width, height), (20, 20, 20)) # Dark background
draw = ImageDraw.Draw(image)
# Load a font (adjust path for your system)
try:
font = ImageFont.truetype("arial.ttf", 20)
except IOError:
font = ImageFont.load_default()
# Add lines to represent a network
for i in range(0, width, 80):
draw.line((i, 0, i, height), fill=(0, 255, 150), width=1)
for j in range(0, height, 80):
draw.line((0, j, width, j), fill=(0, 255, 150), width=1)
# Add some security symbols and text
security_texts = ["ENCRYPTION", "DATA PROTECTION", "FIREWALL", "AUTHENTICATION"]
for _ in range(10):
# Random position
x, y = random.randint(0, width - 100), random.randint(0, height - 50)
# Draw lock icon (simple rectangle with a circle as a lock)
draw.rectangle((x, y, x + 50, y + 50), outline="green", width=2)
draw.ellipse((x + 15, y - 10, x + 35, y + 10), outline="green", width=2)
# Add text
text = random.choice(security_texts)
draw.text((x, y + 60), text, fill=(0, 255, 150), font=font)
# Save or show the image
image.show()
image.save("security_image.png")
from PIL import Image, ImageDraw, ImageFont
import random
# Create a blank image
width, height = 800, 600
image = Image.new('RGB', (width, height), (20, 20, 20)) # Dark background
draw = ImageDraw.Draw(image)
# Load a font (adjust path for your system)
try:
font = ImageFont.truetype("arial.ttf", 20)
except IOError:
font = ImageFont.load_default()
# Add lines to represent a network
for i in range(0, width, 80):
draw.line((i, 0, i, height), fill=(0, 255, 150), width=1)
for j in range(0, height, 80):
draw.line((0, j, width, j), fill=(0, 255, 150), width=1)
# Add some security symbols and text
security_texts = ["ENCRYPTION", "DATA PROTECTION", "FIREWALL", "AUTHENTICATION"]
for _ in range(10):
# Random position
x, y = random.randint(0, width - 100), random.randint(0, height - 50)
# Draw lock icon (simple rectangle with a circle as a lock)
draw.rectangle((x, y, x + 50, y + 50), outline="green", width=2)
draw.ellipse((x + 15, y - 10, x + 35, y + 10), outline="green", width=2)
# Add text
text = random.choice(security_texts)
draw.text((x, y + 60), text, fill=(0, 255, 150), font=font)
# Save or show the image
image.show()
image.save("security_image.png")
What’s Unbreakable?
• Cyber Drills:
Learn how to spot scams, protect your accounts, and tackle online threats with confidence.
• Defense Playbook:
We give you straightforward ways to safeguard your data, build strong passwords,
and identify phishing attacks before they get to you.
• Unbreaks Community:
Join a squad that’s ready to share tips, take on challenges, and learn from the best.
Why Unbreakable?
In basketball, staying one step ahead of your opponent is the key to success. It’s the same in the digital world — it’s all about preparation and making smart moves.
What’s Unbreakable?
Cyber Drills:
Learn how to spot scams, protect your accounts, and tackle online threats with confidence.
Defense Playbook:
We give you straightforward ways to safeguard your data, build strong passwords, and identify phishing attacks before they get to you.
Unbreaks Community:
Join a squad that’s ready to share tips, take on challenges, and learn from the best.
Why Unbreakable?
In basketball, staying one step ahead of your opponent is the key to success. It’s the same in the digital world — it’s all about preparation and making smart moves.
What’s Unbreakable?
• Cyber Drills:
Learn how to spot scams, protect your accounts, and tackle online threats with confidence.
• Defense Playbook:
We give you straightforward ways to safeguard your data, build strong passwords,
and identify phishing attacks before they get to you.
• Unbreaks Community:
Join a squad that’s ready to share tips, take on challenges, and learn from the best.
Why Unbreakable?
In basketball, staying one step ahead of your opponent is the key to success. It’s the same in the digital world — it’s all about preparation and making smart moves.
Pascal Siakam is a Cameroonian professional basketball player. He played college basketball at New Mexico State before being drafted 27th overall by the Toronto Raptors in 2016. Siakam won an NBA championship with the Raptors in 2019 and is a two-time NBA All-Star. In January 2024, he joined the Indiana Pacers, and as usual, he is making things happen on the court.
Claudette McGowan is a Canadian information technology leader with over 20 years of experience in digital transformation and cybersecurity. She has held senior roles at Deloitte, BMO, and TD Bank, and is currently the CEO of Protexxa, a cybersecurity firm. McGowan is also a co-founder of The Firehood, an investment network supporting women in technology.