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 | |
# Download | |
wget https://download.qt.io/official_releases/qt/6.4/6.4.1/single/qt-everywhere-src-6.4.1.tar.xz | |
# For some reason, -debug-and-release is not working | |
# So we will compile both versions and copy all the | |
# debug files into our release directory | |
# Unzip our file |
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
ssize_t csv_to_buf(const char *line, uint16_t *buf, size_t len) | |
{ | |
int i = 0; | |
ssize_t buf_len = 0; | |
if (line == NULL || !(strlen(line))) { | |
log_err("invalid line buffer, len = %lu\n", strlen(line)); | |
return -1; | |
} |
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
#!/usr/bin/env bash | |
# install docker | |
# https://docs.docker.com/engine/installation/linux/ubuntulinux/ | |
# install docker-compose | |
# https://docs.docker.com/compose/install/ | |
# Make sure you have backports, add this to /etc/apt/source.list | |
# jesse-backports |