Skip to content

Instantly share code, notes, and snippets.

View bmegli's full-sized avatar

Bartosz Meglicki bmegli

  • Poland
View GitHub Profile
@bmegli
bmegli / gpd-win2-with-ubuntu-20-04-MATE.md
Last active February 12, 2024 22:30
GPD WIN2 with Ubuntu 20.04 MATE

Tested with Ubuntu MATE 20.04 LTS Daily Build (21.03.2020)

  1. Download image
  2. Create bootable USB with Startup Disk Creator
  3. Boot GPD Win2 with Del to enter BIOS
  4. Navigate to Save & Exit and select your USB device
  5. Install & Reboot
  6. Clone and apply UMPC hardware configuration for Ubuntu
@bmegli
bmegli / doxygen-with-travis-ci.md
Created May 29, 2018 21:54
Doxygen with Travis CI to gh-pages

Setup github project so that after any change to master branch doxygen documentation is generated and pushed to gh-pages by Travis CI

  1. Add clean gh-pages branch to your repository
git checkout --orphan gh-pages
git rm -rf .
echo "my gh-pages branch" > README.md
git add .
git commit -a -m "clean gh-pages branch"
git push origin gh-pages