Personal website on github pages
With VS Code Live Server:
- Install "Live Server" extension
- Right-click
index.html→ "Open with Live Server"
With npm:
npx live-serverWith Python:
python -m http.server 8000Then open http://localhost:8000
Runnable concept projects live in pages/skillset/concepts/. Each folder has a
run.sh; the Maven projects all ship with JUnit 5 tests. Needs a JDK (and Maven
for the Maven projects).
Maven projects (folders with a pom.xml) — run the tests:
cd pages/skillset/concepts/089-memory-mapped-file
mvn test # or: ./run.shSingle-file projects (folders with Main.java) — compile and run the demo:
cd pages/skillset/concepts/015-polymorphism-dynamic-dispatch
./run.sh # runs: javac Main.java && java Main- Licensed under the MIT License
- © 2026 Allan Pereira Abrahão
- allan8tech@gmail.com