I hereby claim:
- I am ksophocleous on github.
- I am ksophocleous (https://keybase.io/ksophocleous) on keybase.
- I have a public key whose fingerprint is B186 D47A 55A7 38FB 63F4 7BE6 7FDA 3B20 3423 E4C5
To claim this, I am signing this object:
| diff --git a/CMakeLists.txt b/CMakeLists.txt | |
| index 0fe939d..26e3b7e 100644 | |
| --- a/CMakeLists.txt | |
| +++ b/CMakeLists.txt | |
| @@ -7,12 +7,35 @@ set(VERSION "1.2.11") | |
| option(ASM686 "Enable building i686 assembly implementation") | |
| option(AMD64 "Enable building amd64 assembly implementation") | |
| +option(BUILD_EXAMPLES "Enable building example binaries" ON) | |
| + |
| #!/usr/bin/env bash | |
| dumpbin /nologo /exports ${LIBNAME}.dll > exports.txt | |
| echo "EXPORTS" > exports.def | |
| tail -n +17 exports.txt | awk '{ $1=""; $2=""; $3=""; print $0 }' | sed -r 's/\s*(.*?)\s*$/\1/' | sed '/^$/d' >> exports.def | |
| lib /def:exports.def ${LIBNAME}.lib | |
| rm -f exports.txt exports.def |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| DEST=/etc/pki/ca-trust/extracted | |
| # OpenSSL PEM bundle that includes trust flags | |
| # (BEGIN TRUSTED CERTIFICATE) | |
| /usr/bin/p11-kit extract --format=openssl-bundle --filter=certificates --overwrite $DEST/openssl/ca-bundle.trust.crt | |
| /usr/bin/p11-kit extract --format=pem-bundle --filter=ca-anchors --overwrite --purpose server-auth $DEST/pem/tls-ca-bundle.pem | |
| /usr/bin/p11-kit extract --format=pem-bundle --filter=ca-anchors --overwrite --purpose email $DEST/pem/email-ca-bundle.pem | |
| /usr/bin/p11-kit extract --format=pem-bundle --filter=ca-anchors --overwrite --purpose code-signing $DEST/pem/objsign-ca-bundle.pem |
| diff -Naur gtk-sharp-2.12.10/glib/glue/list.c gtk-sharp-2.12.10-mine/glib/glue/list.c | |
| --- gtk-sharp-2.12.10/glib/glue/list.c 2009-01-07 16:54:06.000000000 +0000 | |
| +++ gtk-sharp-2.12.10-mine/glib/glue/list.c 2015-03-23 23:33:56.470499598 +0000 | |
| @@ -20,7 +20,7 @@ | |
| */ | |
| -#include <glib/glist.h> | |
| +#include <glib.h> |
| #!/bin/sh | |
| set -e | |
| sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF | |
| echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list | |
| sudo apt-get update && sudo apt-get upgrade -y | |
| sudo apt-get install -y \ | |
| cmake build-essential libtool pkg-config automake git autotools-dev automake autoconf libtool g++ autopoint make \ |
| #!/bin/bash | |
| set -e | |
| cd $HOME | |
| apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF | |
| echo "deb http://download.mono-project.com/repo/debian wheezy main" > /etc/apt/sources.list.d/mono-xamarin.list | |
| apt-get update |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| config.vm.box = "kostas" | |
| config.vm.box_url = "https://kostas.io/kostas.box" | |
| config.ssh.username = "kostas" |
I hereby claim:
To claim this, I am signing this object:
| #include <iostream> | |
| #include <chrono> | |
| int main(int argc, char *argv[]) | |
| { | |
| auto tp = std::chrono::system_clock::now(); | |
| auto dur = tp.time_since_epoch(); | |
| auto seconds = std::chrono::duration_cast<std::chrono::seconds>(dur).count(); | |