The above heading with badges aligned with the horizontal rule is made with this code:
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 python3 | |
import argparse | |
import json | |
import os | |
import re | |
from scipy.stats import ttest_ind_from_stats | |
from subprocess import DEVNULL, Popen | |
import sys |
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
//! Lorem ipsum. | |
#![deny(missing_docs)] | |
use rustix::fd::{AsFd, AsRawFd, BorrowedFd, IntoFd, IntoRawFd, OwnedFd, RawFd}; | |
use rustix::fs::{cwd, fcntl_dupfd_cloexec, fcntl_getfl, fstat, openat, Mode, OFlags, Stat}; | |
use rustix::io::OwnedFd as RustixFd; | |
use rustix::io::{poll, read, write, Errno, PollFd, PollFlags}; | |
use rustix::path::Arg; | |
use rustix::termios::{ |
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 | |
add_user() { | |
getent passwd "$1" >>"$BUILDROOT/etc/passwd" | |
getent shadow "$1" >>"$BUILDROOT/etc/shadow" | |
getent group "$(id -Gn "$1")" >>"$BUILDROOT/etc/group" | |
} | |
build() { | |
add_systemd_unit cryptsetup-pre.target |
I hereby claim:
- I am tavianator on github.
- I am tavianator (https://keybase.io/tavianator) on keybase.
- I have a public key whose fingerprint is 76F5 CE72 4EDE CE11 1DE3 5E27 938E 1B24 4D3D B9E1
To claim this, I am signing this object:
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
partymix_ui.py: partymix.ui | |
pyuic4 partymix.ui >partymix_ui.py |
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
Apologies for the gcc-based test case! But clang chokes on linking the same .s file, so I suspect it's not a gcc-specific bug. | |
$ arm-linux-androideabi-g++ -std=c++11 -fpic -O3 -flto -Ipath/to/boost -c foo.cpp | |
$ arm-linux-androideabi-g++ -shared foo.o -lc++_shared -o foo.so -save-temps | |
/tmp/ndk-arm/bin/../lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/bin/ld: error: /tmp/ndk-arm/bin/../lib/gcc/arm-linux-androideabi/4.9.x/libgcc.a(pr-support.o): multiple definition of '__gnu_unwind_frame' | |
/tmp/ndk-arm/bin/../lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/bin/ld: /tmp/ndk-arm/bin/../lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/libunwind.a(Unwind-EHABI.o): previous definition here | |
/tmp/ndk-arm/bin/../lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/bin/ld: error: /tmp/ndk-arm/bin/../lib/gcc/arm-linux-androideabi/4.9.x/libgcc.a(pr-support.o): multiple definition of '_Unwind_GetRegionStart' | |
/tmp/ndk-arm/bin/../lib/gcc/ |
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
/**************************************************************************** | |
* Copyright (C) 2015 Tavian Barnes <[email protected]> * | |
* * | |
* Permission to use, copy, modify, and/or distribute this software for any * | |
* purpose with or without fee is hereby granted. * | |
* * | |
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * | |
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * | |
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * | |
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * |
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
From ef19df89a9ee7be2d9c092bcc24cd80a79d35499 Mon Sep 17 00:00:00 2001 | |
From: Tavian Barnes <[email protected]> | |
Date: Wed, 7 Jan 2015 16:32:51 -0500 | |
Subject: [PATCH 1/1] Don't trust the bytesConsumed() value from | |
SSLEngine.unwrap(). | |
Android 5.0 always returns 0 instead of the actual number of bytes. | |
Compute it from the byte buffer positions instead. | |
https://code.google.com/p/android/issues/detail?id=93740 |
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
slp-test.c:8:17: note: ===vect_slp_analyze_bb=== | |
slp-test.c:8:17: note: === vect_analyze_data_refs === | |
slp-test.c:8:17: note: got vectype for stmt: _4 = x0_3(D)->z; | |
vector(2) double | |
slp-test.c:8:17: note: got vectype for stmt: _7 = n_6(D)->z; | |
vector(2) double | |
slp-test.c:8:17: note: got vectype for stmt: _9 = x0_3(D)->x; | |
vector(2) double | |
slp-test.c:8:17: note: got vectype for stmt: _10 = n_6(D)->x; | |
vector(2) double |
NewerOlder