Skip to content

Instantly share code, notes, and snippets.

View horta's full-sized avatar

Danilo Horta horta

  • PhysicsX
  • London, UK
View GitHub Profile
@horta
horta / # rust - 2018-12-08_13-39-51.txt
Created December 8, 2018 17:52
rust on "Red Hat Enterprise Linux Server release 7.4 (Maipo)" - Homebrew build logs
Homebrew build logs for rust on "Red Hat Enterprise Linux Server release 7.4 (Maipo)"
Build date: 2018-12-08 13:39:51
@horta
horta / # gcc - 2018-03-16_16-14-02.txt
Created March 16, 2018 16:25
gcc on "Red Hat Enterprise Linux Server release 7.3 (Maipo)" - Homebrew build logs
Homebrew build logs for gcc on "Red Hat Enterprise Linux Server release 7.3 (Maipo)"
Build date: 2018-03-16 16:14:02
# initialization file (not found)
@echo off
:: Configuration
set VERSION=0.1.8
set FILE=progressbar-%VERSION%.zip
set DIR=progressbar-%VERSION%
set URL=https://github.com/limix/progressbar/archive/%VERSION%.zip
:: Ancient Windows don't support TLS 1.1 and 1.2, so we fall back to insecure download.
set Version=
@horta
horta / install-zlib.bat
Last active April 28, 2021 03:12
ZLIB installer for Windows.
:: Attention!
:: Please, refer to the https://github.com/horta/zlib.install repository
:: for an up-to-date version of this installer.
@horta
horta / install-zstd.bat
Last active January 15, 2018 16:55
Zstandard installer for Windows.
@echo off
:: Configuration
set VERSION=1.3.2
set FILE=zstd-%VERSION%.zip
set DIR=zstd-%VERSION%
set URL=https://github.com/facebook/zstd/archive/v%VERSION%.zip
echo [0/5] Library(zstd==%VERSION%)
@horta
horta / install-zstd
Last active January 15, 2018 16:47
Zstandard installer for Linux and macOS.
#!/bin/bash
VERSION=1.3.1
FILE=zstd-$VERSION.tar.gz
DIR=zstd-$VERSION
URL=https://github.com/facebook/zstd/archive/v$VERSION.tar.gz
rm /tmp/zstd.XXXX.log >/dev/null 2>&1 || true
logfile=$(mktemp /tmp/zstd.XXXX.log)