Skip to content

Instantly share code, notes, and snippets.

View alexreg's full-sized avatar

Alexander Regueiro alexreg

View GitHub Profile
checking package version... 2021-12-17
loading default site script ./config.site
checking CFLAGS... not set by user so using default -O3 -fomit-frame-pointer
checking build system type... arm-apple-darwin21.6.0
checking host system type... arm-apple-darwin21.6.0
checking target system type... arm-apple-darwin21.6.0
checking for non-Intel CPU... no
checking for gcc... clang
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
2022-03-17 21:17:00.8|Trace|DiskProviderBase|Deleting file: /Users/alex/.config/Prowlarr/logs/prowlarr.debug.txt
2022-03-17 21:17:00.8|Trace|DiskProviderBase|Deleting file: /Users/alex/.config/Prowlarr/logs/prowlarr.txt
2022-03-17 21:17:00.8|Trace|CommandQueueManager|Updating command status
2022-03-17 21:17:00.8|Trace|EventAggregator|Publishing CommandUpdatedEvent
2022-03-17 21:17:00.8|Trace|EventAggregator|CommandUpdatedEvent -> CommandController
2022-03-17 21:17:00.8|Trace|EventAggregator|CommandUpdatedEvent <- CommandController
2022-03-17 21:17:00.8|Trace|EventAggregator|Publishing CommandExecutedEvent
2022-03-17 21:17:00.8|Trace|EventAggregator|CommandExecutedEvent -> TaskManager
2022-03-17 21:17:00.8|Trace|EventAggregator|CommandExecutedEvent <- TaskManager
2022-03-17 21:17:00.8|Trace|EventAggregator|CommandExecutedEvent -> TaskController
for dir in doc; do gmake -C $dir prepare_local || exit $?; done
gmake[1]: Entering directory '/Users/alex/Software/koma-script-code/doc'
for dir in english ngerman; do gmake -C $dir prepare_local || exit $?; done
gmake[2]: Entering directory '/Users/alex/Software/koma-script-code/doc/english'
Makefile:52: warning: overriding recipe for target 'maintainclean_local'
/Users/alex/Software/koma-script-code/doc/Makefile.guide:173: warning: ignoring old recipe for target 'maintainclean_local'
gmake[2]: Nothing to be done for 'prepare_local'.
gmake[2]: Leaving directory '/Users/alex/Software/koma-script-code/doc/english'
gmake[2]: Entering directory '/Users/alex/Software/koma-script-code/doc/ngerman'
gmake[2]: Nothing to be done for 'prepare_local'.
error[E0119]: conflicting implementations of trait `de::BorshDeserialize` for type `std::boxed::Box<_>`
--> crates/borsh/src/iter.rs:36:1
|
36 | / impl<T: FromCanonicalIterator<A>, A> BorshDeserialize for T
37 | | where
38 | | T: IntoCanonicalIterator<Item = A>,
39 | | A: BorshDeserialize,
... |
48 | | }
49 | | }
use std::{
io::{Result, Write},
iter::{ExactSizeIterator, FromIterator, IntoIterator},
};
use super::{de::BorshDeserialize, ser::BorshSerialize};
/// Conversion into an `Iterator` with a canonical ordering of items.
pub trait IntoCanonicalIterator: IntoIterator {
// Note: no default impl because we cannot assume that `into_iter` yields canonical ordering.
@alexreg
alexreg / # vcflib - 2021-12-26_22-54-06.txt
Created December 26, 2021 22:56
vcflib (brewsci/bio/vcflib) on macOS 12 - Homebrew build logs
Homebrew build logs for brewsci/bio/vcflib on macOS 12
Build date: 2021-12-26 22:54:06
2021-07-18 16:37:19 +0100
mvn
clean
install
-P
clone-test-resources
Picked up _JAVA_OPTIONS: -Duser.home=/Library/Caches/Homebrew/java_cache
[INFO] Scanning for projects...
\begin{filecontents*}{\jobname.bib}
@book{author00,
title = {{A Title}},
publisher = {Alpha},
year = {2008},
editor = {Author, A},
address = {London}
}
@book{buthor00,
title = {{B Title}},
class Pattern(Generic[AnyStr]):
flags: int
groupindex: Mapping[str, int]
groups: int
pattern: AnyStr
def search(self, string: AnyStr, pos: int = ..., endpos: int = ...) -> Optional[Match[AnyStr]]: ...
def match(self, string: AnyStr, pos: int = ..., endpos: int = ...) -> Optional[Match[AnyStr]]: ...
# New in Python 3.4
def fullmatch(self, string: AnyStr, pos: int = ..., endpos: int = ...) -> Optional[Match[AnyStr]]: ...
@alexreg
alexreg / a
Created February 4, 2021 20:58
% The code in this file is based on <https://tex.stackexchange.com/a/349521/303>.
% ----
\RequirePackage{etoolbox}
\RequirePackage{iftex}
% Check if we are generating a PDF using XeTeX.
\ifboolexpr{test {\ifnumgreater{\value{pdftype}}{0}} and bool {XeTeX}}{
\RequirePackage{atbegshi}
}{}