Skip to content

Instantly share code, notes, and snippets.

View Xenosb's full-sized avatar

Bruno Vunderl Xenosb

  • The Qt Company
  • Berlin, Germany
  • 11:52 (UTC +02:00)
View GitHub Profile

Keybase proof

I hereby claim:

  • I am xenosb on github.
  • I am xenosb (https://keybase.io/xenosb) on keybase.
  • I have a public key ASDBot2QIOVhNsftSkBUnldQSlfApIl7kinJ1xUpPyGMPAo

To claim this, I am signing this object:

#main
.entry-content
.entry-single-event3
.container
.col-md-9
p asdfasdfasdfasdf
.col-md-3
.event-details-event3
h3 event details
ul
@Xenosb
Xenosb / install-cmake-3.13.4.sh
Created February 5, 2020 16:43
Install Cmake 3.12.1
#!/usr/bin/env bash
# Run as root
# Download packages
wget http://de.archive.ubuntu.com/ubuntu/pool/main/c/cmake/cmake-data_3.13.4-1_all.deb
wget http://de.archive.ubuntu.com/ubuntu/pool/main/c/cmake/cmake_3.13.4-1_amd64.deb
# Install packges
dpkg -i cmake-data_3.13.4-1_all.deb
@Xenosb
Xenosb / update-cmake
Last active March 25, 2020 15:45
Update newer cmake on Ubuntu 18.04
#!/usr/bin/env bash
# Run as root
VERSION="3.13.4-1"
# Download packages
wget "http://archive.ubuntu.com/ubuntu/pool/main/c/cmake/cmake-data_${VERSION}_all.deb"
wget "http://archive.ubuntu.com/ubuntu/pool/main/c/cmake/cmake_${VERSION}_amd64.deb"
# Install packges