↓ Swipe down to explore ↓

🧑‍💻 Personal Info

🎓 Education

Bachelor of Computer Science (Co-op)
Specialization: Internet & Security / Cyber Security
Carleton University, Ottawa, ON
Sept. 2022 – May 2026 (Expected)

💼 Experience

IT01 Technical Analyst – RCMP
Ottawa, ON | Sept. 2024 – Present

Pharmacy Technician – Walmart Pharmacy
Ottawa, ON | Mar. 2021 – Dec. 2024

Freelance Custom PC Builder
Dec. 2019 – Present

🛡 RCMP (2024–Now)
IT01 Technical Analyst — supported 200+ apps, security enforcement, ticketing systems.
💊 Walmart (2021–2024)
Pharmacy Technician — Kroll, Covaxon, vaccine data, staff training.
🖥️ PC Builder (2019–Now)
Custom PCs — built high-performance rigs, cooling, compatibility checks.

💻 Technical Skills

🌐 Projects

✅ Portfolio Website – arinouri.ca

✅ Terminal Cybersecurity Game

✅ Bionic Reading App

✅ Music Playlist App

🛡 Cybersecurity Tips

Tip 1: Validate Input

Prevent SQL injection and XSS by validating user inputs.

const safeInput = sanitize(userInput);
db.query("SELECT * FROM users WHERE name = ?", [safeInput]);

Tip 2: Secure Password Storage

Hash passwords before storing them:

bcrypt.genSalt(10, (err, salt) => {
bcrypt.hash(password, salt, (err, hash) => {
// Store safely
});
});

Tip 3: Use HTTPS

Always use secure protocols:

const https = require('https');
https.createServer(opts, (req, res) => {
  res.end("Secure!");
}).listen(443);

📲 Cybersecurity Tools (Demos)

Password Strength Checker

Password strength: None

Weather App

🧠 Interests