Skip to content

Instantly share code, notes, and snippets.

Originally by this guy on reddit.

Resources + Tips for ISC2 CC Exam

  1. Primary Study Material:
  • Thor's Udemy course + PDF notes
  • Mike Cert's LinkedIn learning course + ISC CC Last Minute Review Guide PDF notes (10$)
  • Official CC course (free) + official Textbook (20$)
  1. Secondary Study Material:
  • Udemy- ISC2 Certified in Cybersecurity (CC) Practice Exam | Paulo Carreira Andree Miranda
@bramadityaw
bramadityaw / artisan
Created August 12, 2025 08:33
Bash script to find artisan command inside a Laravel project
#!/usr/bin/env bash
wd="$PWD"
while [[ ! -e "$wd/artisan" ]]; do
if [[ "$wd" = "/" ]]; then
printf "artisan command not found: searched until $wd\n"
exit 1
fi
wd=${wd%/*}
@bramadityaw
bramadityaw / HOWTO.md
Created February 7, 2025 07:07
Enable japanese input in Lubuntu

Install the following packages.

sudo apt install language-pack-ja fcitx-bin fcitx-mozc

Log out, then log back in.

There should be a keyboard icon in the bottom right. Right click that icon and 'Configure.'