// 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.

> based in melbourne   ·   > open to opportunities   ·   > always learning

A bit about my work

$ whoami

// quick facts about me
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
};

Latest from the blog

update

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.

update

Started a new reading thread on IoT anomaly detection

Picked up Chandola's survey today. Going to map references over the next week.

note

vim trick: ci" is criminally underrated

Change everything inside the next pair of quotes. Small thing, big quality of life.

note

One-liner: find the biggest files in a directory

du -ah . | sort -rh | head -20 — dependable.

read the full feed →