// Hello, world
I'm Bibek Bhandari
IT graduate from Swinburne University, currently exploring ICT research, building software, and writing about the things I learn along the way.
// what i do
A bit about my work
Web Development
Building responsive, accessible web apps with modern JavaScript frameworks and clean, maintainable backend services.
explore my projects → cybersecurity · hire me🛡 Cybersecurity focus
Studying CompTIA Security+ & Cisco CCNA, running a home SOC lab, and grinding through CTFs. Open to junior security roles.
view ~/security → free tools🔎 Cyberscan toolkit
Privacy-first cybersecurity tools — password breach check (k-anonymity), IP info, HIBP, security headers, Wayback, CVE search. All in your browser.
try the tools → researchICT Research
Currently studying ICT research methods — exploring cybersecurity, networks, and applied machine learning.
go to ~/research → writingWriting & Notes
I post regularly — long-form writing, study updates, and quick brain-dump notes.
read the blog → personalGarden
Books I've read outside the field, places I've visited, speeches that stayed with me, and poems I keep returning to.
visit ~/garden →// terminal
$ whoami
const bibek = {
name: 'Bibek Bhandari',
degree: 'B. of IT — Swinburne University',
currently: 'studying ICT research',
interests: ['web dev', 'security', 'AI/ML', 'systems'],
learning: 'always',
coffee: true
};
// recent feed
Latest from the blog
2026.05.05
Shipped my new portfolio site
Wrote it all in plain HTML/CSS/JS, then ported to Astro. Felt good to skip a build step for once — and good again when the build step came back.
2026.05.04
Started a new reading thread on IoT anomaly detection
Picked up Chandola's survey today. Going to map references over the next week.
2026.04.30
vim trick: ci" is criminally underrated
Change everything inside the next pair of quotes. Small thing, big quality of life.
2026.04.21
One-liner: find the biggest files in a directory
du -ah . | sort -rh | head -20 — dependable.