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
$ brew install --debug --cask dotnet-sdk | |
/opt/homebrew/Library/Homebrew/shims/shared/curl --disable --cookie /dev/null --globoff --show-error --user-agent Homebrew/3.6.20-167-g7a5f614\ \(Macintosh\;\ arm64\ Mac\ OS\ X\ 12.6.1\)\ curl/7.79.1 --header Accept-Language:\ en --max-time 5 --retry 3 --fail https://formulae.brew.sh/api/cask-source/dotnet-sdk.rb | |
/opt/homebrew/Library/Homebrew/shims/shared/curl --disable --cookie /dev/null --globoff --show-error --user-agent Homebrew/3.6.20-167-g7a5f614\ \(Macintosh\;\ arm64\ Mac\ OS\ X\ 12.6.1\)\ curl/7.79.1 --header Accept-Language:\ en --fail --progress-bar --silent --max-time 5 --retry 3 --location --remote-time --output /Users/aho/Library/Caches/Homebrew/api/cask.json --time-cond /Users/aho/Library/Caches/Homebrew/api/cask.json --compressed --silent https://formulae.brew.sh/api/cask.json | |
/opt/homebrew/Library/Homebrew/shims/shared/curl --disable --cookie /dev/null --globoff --show-error --user-agent Homebrew/3.6.20-167-g7a5f614\ \(Macintosh\;\ arm64\ Mac\ OS\ X\ 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
$ brew install --debug --cask dotnet-sdk | |
/opt/homebrew/Library/Homebrew/shims/shared/curl --disable --cookie /dev/null --globoff --show-error --user-agent Homebrew/3.6.20-167-g7a5f614\ \(Macintosh\;\ arm64\ Mac\ OS\ X\ 12.6.1\)\ curl/7.79.1 --header Accept-Language:\ en --max-time 5 --retry 3 --fail https://formulae.brew.sh/api/cask-source/dotnet-sdk.rb | |
/opt/homebrew/Library/Homebrew/shims/shared/curl --disable --cookie /dev/null --globoff --show-error --user-agent Homebrew/3.6.20-167-g7a5f614\ \(Macintosh\;\ arm64\ Mac\ OS\ X\ 12.6.1\)\ curl/7.79.1 --header Accept-Language:\ en --fail --progress-bar --silent --max-time 5 --retry 3 --location --remote-time --output /Users/aho/Library/Caches/Homebrew/api/cask.json --time-cond /Users/aho/Library/Caches/Homebrew/api/cask.json --compressed --silent https://formulae.brew.sh/api/cask.json | |
/opt/homebrew/Library/Homebrew/shims/shared/curl --disable --cookie /dev/null --globoff --show-error --user-agent Homebrew/3.6.20-167-g7a5f614\ \(Macintosh\;\ arm64\ Mac\ OS\ X\ 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
Homebrew build logs for bzt on macOS 12 | |
Build date: 2022-01-24 23:37:20 |
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
Homebrew build logs for sc-im on Ubuntu 18.04.5 LTS | |
Build date: 2021-05-27 14:37:02 |
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
Homebrew build logs for yaws on Ubuntu 18.04.5 LTS | |
Build date: 2021-05-24 10:05:03 |
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 | |
tapdir=$HOMEBREW_REPOSITORY/Library/Taps | |
tmpd=$(mktemp -d) | |
trap 'rm -fr "$tmpd" "${tapdir}"/test/homebrew-tap[0-9]*' EXIT | |
# Set up taps for testing | |
# Tap with Formula | |
[[ -d "${tapdir}"/gromgit/homebrew-dev ]] || brew tap gromgit/dev | |
# Tap with HomebrewFormula | |
[[ -d "${tapdir}"/mikosa/homebrew-awsp ]] || brew tap mikosa/awsp https://github.com/mikosa/aws-permission |
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
// Original src: https://github.com/pyca/bcrypt/blob/master/src/_csrc/bcrypt.c | |
#include <stdio.h> | |
#include <string.h> | |
#include <sys/types.h> | |
// Maps to character set "./ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" | |
static const u_int8_t index_64[128] = { | |
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, | |
255, 255, 255, 255, 255, 255, 255, 255, 255, 255, |
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 <stdio.h> | |
#include <stdlib.h> | |
#include <assert.h> | |
#include "PackedArray.h" | |
/* | |
PackedArray serialization test | |
BUILD: | |
1. Grab PackedArray.[ch] from https://github.com/gpakosz/PackedArray, drop them in this dir |
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
// OBJECTIVE: Find the smallest ASCII-only password length guaranteed to | |
// trigger KDF collisions for AES-256 | |
// TEST 1 (binary ASCII): Find the smallest N for which: | |
// 2^7 + 2^14 + 2^21 + ... + 2^(7*N) > 2^256 | |
// TEST 2 (printable ASCII): Find the smallest N for which: | |
// 95^1 + 95^2 + 95^3 + ... + 95^N > 2^256 | |
// TEST 3 (alphanumeric ASCII): Find the smallest N for which: | |
// 62^1 + 62^2 + 62^3 + ... + 62^N > 2^256 | |
// COMPILE: | |
// gcc -o test-keyspace test-keyspace.c -lgmp |
NewerOlder