This file contains 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
#!/bin/bash | |
export GOVERSION=1.15.3 | |
export SINGULARITYVERSION=3.6.4 | |
sudo apt-get update && sudo apt-get install -y \ | |
build-essential \ | |
uuid-dev \ | |
libgpgme-dev \ | |
squashfs-tools \ | |
libseccomp-dev \ |
This file contains 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
#!/bin/bash | |
docker exec sharelatex tlmgr option repository ftp://tug.org/historic/systems/texlive/2024/tlnet-final | |
docker exec sharelatex tlmgr update --self --verify-repo=none | |
docker exec sharelatex tlmgr install scheme-full --verify-repo=none | |
docker exec sharelatex wget http://tug.org/fonts/getnonfreefonts/install-getnonfreefonts | |
docker exec sharelatex texlua install-getnonfreefonts | |
docker exec sharelatex getnonfreefonts --sys -a | |
docker exec sharelatex apt-get update | |
docker exec sharelatex apt-get install python3-pygments -y | |
docker exec sharelatex tlmgr update --all --verify-repo=none |
This file contains 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
MT chrM | |
GL000191.1 chr1_gl000191_random | |
GL000192.1 chr1_gl000192_random | |
GL000193.1 chr4_gl000193_random | |
GL000194.1 chr4_gl000194_random | |
GL000195.1 chr7_gl000195_random | |
GL000196.1 chr8_gl000196_random | |
GL000197.1 chr8_gl000197_random | |
GL000198.1 chr9_gl000198_random | |
GL000199.1 chr9_gl000199_random |
This file contains 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
#include <ModuleSerialCore.h> | |
#include <ModuleSerialGprs.h> | |
#include <ModuleSerialGps.h> | |
#define SIM_APN "web.vodafone.de" | |
#define SIM_APN_USERNAME "" | |
#define SIM_APN_PASSWORD "" | |
String MLO_USERNAME = "Organisation"; | |
String MLO_TID = "tid"; |