This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"highway" = 'primary' OR "highway" = 'primary_link' OR | |
"highway" = 'trunk' OR "highway" = 'trunk_link' OR | |
"highway" = 'motorway' OR "highway" = 'motorway_link' OR | |
"highway" = 'secondary' OR "highway" = 'secondary_link' OR | |
"highway" = 'tertiary' OR "highway" = 'tertiary_link' OR | |
"highway" = 'residential' OR "highway" = 'unclassified' | |
https://wiki.openstreetmap.org/wiki/Routing#Routing_considerations |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=aruco-git | |
pkgver=2.0.19.5675 | |
pkgrel=1 | |
pkgdesc="Augmented reality library based on OpenCV" | |
arch=('i686' 'x86_64') | |
url="https://www.uco.es/investiga/grupos/ava/node/26" | |
license=('BSD') | |
depends=(opencv) | |
makedepends=(cmake) | |
source=("git+https://github.com/opentrack/aruco.git#commit=567503cf3a1feed334b6eaf95dbcbcdc39952feb") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var exists = struct{}{} | |
type int64Set struct { | |
m map[int64]struct{} | |
} | |
type stringSet struct { | |
m map[string]struct{} | |
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=opentrack-aruco-git | |
pkgver=r44.2adf990 | |
pkgrel=1 | |
pkgdesc="Augmented reality library based on OpenCV" | |
arch=('i686' 'x86_64') | |
url="https://www.uco.es/investiga/grupos/ava/node/26" | |
license=('BSD') | |
depends=(opencv) | |
makedepends=(cmake) | |
source=("git+https://github.com/opentrack/aruco.git#commit=2adf990b93742593a06df699ed32c20a9796b434") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Maxime Morel <[email protected]> | |
pkgname=opentrack-git | |
pkgver=r4730 | |
pkgrel=1 | |
pkgdesc="An application dedicated to tracking user's head movements and relaying the information to games and flight simulation software" | |
arch=('i686' 'x86_64') | |
url="https://github.com/opentrack/opentrack/" | |
license=('GPL3') | |
depends=('qt5-base' 'opencv') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Fabrice aneche <[email protected]> | |
pkgname=s2geometry-git | |
pkgver=r136 | |
pkgrel=1 | |
pkgdesc="Computational geometry and spatial indexing on the sphere" | |
arch=('i686' 'x86_64') | |
url="https://s2geometry.io/" | |
license=('APACHE2') | |
depends=('openssl-1.0' 'gflags' 'google-glog' 'python') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#find ./ -name '*.jpg' -exec bash -c '[ ! -f "/home/akh/GIS/tex/${0//jpg/}dds" ]' {} \; -exec bash -c 'convert "$0" /home/akh/GIS/tex/"${0%.jpg}.dds"' {} \; -ls | |
find ./ -name '*.jpg' -exec bash -c '[ ! -f "/home/akh/GIS/tex/${0//jpg/}dds" ]' {} \; -print | xargs parallel convert {} /home/akh/GIS/tex/{.}.dds |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $ | |
# Maintainer: Felix Yan <[email protected]> | |
# Contributor: Andrea Scarpino <[email protected]> | |
pkgname=qt5-multimedia | |
_qtver=5.11.1 | |
pkgver=${_qtver/-/} | |
pkgrel=1 | |
arch=('x86_64' 'armv7h') | |
url='http://qt-project.org/' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd $HOME | |
# clean up previous installations | |
docker system prune -af | |
sudo rm -rf /data/minikube .minikube .kube /root/.minikube /root/.kube /var/lib/kubelet /var/lib/kubeadm.yaml /etc/kubernetes /var/lib/minikube | |
export CHANGE_MINIKUBE_NONE_USER=true | |
sudo -E minikube start --vm-driver=none | |
minikube dashboard |