Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
# Evals report
*Report built at 2021-11-22 20:34:22 UTC*
Built for evals:
* [1724445](https://hydra.nixos.org/eval/1724445)
* * *

Keybase proof

I hereby claim:

  • I am arkivm on github.
  • I am arkivm (https://keybase.io/arkivm) on keybase.
  • I have a public key ASD6zVmmiXdRxPEdPYSJqYkt1Wc_g9wT-85HP43_oinvLQo

To claim this, I am signing this object:

#!/usr/bin/env bash
# --slave /usr/bin/$1 $1 /usr/bin/$1-\${version} \\
function register_clang_version {
local version=$1
local priority=$2
update-alternatives \
--install /usr/bin/llvm-config llvm-config /usr/bin/llvm-config-${version} ${priority} \
@arkivm
arkivm / gist:a0c081b307681c88fea6
Last active September 5, 2015 21:12 — forked from crizCraig/gist:2816295
Download images from Google Image search using Python
import json
import os
import time
import requests
from PIL import Image
from StringIO import StringIO
from requests.exceptions import ConnectionError
def go(query, path):
"""Download full size images from Google image search.
#!/bin/bash
# Invoke from the directory where the pdf files are
# http://stackoverflow.com/questions/965053/extract-filename-and-extension-in-bash
PRINTER_NAME="lp"
if [ $# -lt 1 ];then
echo "No input files";
exit -1;
fi
@arkivm
arkivm / gitconfig
Created May 19, 2015 11:57
gitconfig
[push]
default = matching
[color]
ui = auto
[color "branch"]
current = yellow bold
local = green bold
remote = cyan bold