Skip to content

Instantly share code, notes, and snippets.

View gdetrez's full-sized avatar
🏠
Working from home

Grégoire Détrez gdetrez

🏠
Working from home
  • Gothenburg, Sweden
View GitHub Profile

Keybase proof

I hereby claim:

  • I am gdetrez on github.
  • I am gregoire (https://keybase.io/gregoire) on keybase.
  • I have a public key whose fingerprint is C6DA 50D9 2B6A BE73 513B 0B30 B971 AFBB 606C 3402

To claim this, I am signing this object:

@gdetrez
gdetrez / igf.ipynb
Last active August 29, 2015 14:24
iGF Demo
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
def sum(xs):
def aux(xs):
try:
x = next(xs)
return x + aux(xs)
except StopIteration:
return 0
return aux(iter(xs))
@gdetrez
gdetrez / README.md
Last active January 12, 2022 16:34
podman log

Podman log

This is the output of podman system service --log-level=debug -t=0 while running the following docker-compose commands:

docker-compose up -d
docker-compose exec ubuntu ls

Issue: containers/podman#11081