Skip to content

Instantly share code, notes, and snippets.

View nyanloutre's full-sized avatar
🚅
Tchoo tchoo

Paul TREHIOU nyanloutre

🚅
Tchoo tchoo
  • Aperture Science
  • Strasbourg, France
View GitHub Profile
running build_ext
Traceback (most recent call last):
File "nix_run_setup", line 8, in <module>
exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\\r\\n', '\\n'), __file__, 'exec'))
File "setup.py", line 12, in <module>
package_dir={'': 'src'},
File "/nix/store/r9asxjad4m81h4dmkhxlmqmk7p7xwbdf-python3.7-bootstrapped-pip-18.1/lib/python3.7/site-packages/setuptools/__init__.py", line 143, in setup
return distutils.core.setup(**attrs)
File "/nix/store/5di2wpc5h7faqidsikgb94rwdbwy2y3l-python3-3.7.2/lib/python3.7/distutils/core.py", line 148, in setup
dist.run_commands()
''
<?php
$config = array();
${concatStrings (
mapAttrsToList (name: value:
"$config['${name}'] = " +
(if isInt value then
"${toString value}"
else if isString value then
"'${value}'"
@nyanloutre
nyanloutre / Makefile
Last active November 29, 2017 01:42
Wine flatpak runtime
all:
flatpak-builder --force-clean --repo=repo --arch=i386 app-dir org.winehq.Sdk.json
interfaces {
ethernet eth0 {
address dhcp
description Internet
duplex auto
hw-id 00:19:21:3a:12:39
smp_affinity auto
speed auto
}
ethernet eth1 {

Keybase proof

I hereby claim:

  • I am nyanloutre on github.
  • I am nyanloutre (https://keybase.io/nyanloutre) on keybase.
  • I have a public key whose fingerprint is A3F3 5A51 24D4 7C31 95FF 07B7 F85D 9368 6A3A 9063

To claim this, I am signing this object:

0x719DE009AA856b553df248556Df1784164c730fF

Keybase proof

I hereby claim:

  • I am nyanloutre on github.
  • I am nyanloutre (https://keybase.io/nyanloutre) on keybase.
  • I have a public key whose fingerprint is 5364 FF54 FFEA 3B7D C206 6A8A 8BD8 94DA 4B0C E338

To claim this, I am signing this object:

FROM debian:jessie
ARG VERSION=0.12.1
ARG SHA256HASH=34de171ac1b48b0780d68f3844c9fd2e8bfe6a7780b55e1f012067c2440ebd8a
RUN apt-get update && \
apt-get install -y wget ca-certificates && \
apt-get clean && \
wget https://www.bitcoinunlimited.info/downloads/bitcoinUnlimited-${VERSION}-linux64.tar.gz && \
@nyanloutre
nyanloutre / Dockerfile
Created November 22, 2016 11:27
Bitcore Docker image
FROM node:4
RUN apt-get update && \
apt-get install libzmq3-dev build-essential libkrb5-dev -y && \
apt-get clean && \
npm install -g bitcore && \
bitcore create mynode && \
cd mynode && \
bitcore install bitcore-wallet-service && \
bitcore install insight-api && \