Skip to content

Instantly share code, notes, and snippets.

View icecrime's full-sized avatar

Arnaud Porterie icecrime

View GitHub Profile
$ project/make.sh binary
# WARNING! I don't seem to be running in the Docker container.
# The result of this command might be an incorrect build, and will not be
# officially supported.
#
# Try this instead: make all
#
bundles/1.4.1-dev already exists. Removing.
@icecrime
icecrime / generator.sh
Last active August 29, 2015 14:11
Friday pop quizz - December 11th
#!/bin/sh
if [ $(go env GOARCH) == "amd64" ]; then
sed -i .bak "s/\(const n = \)4/\12/" $1
fi
@icecrime
icecrime / libpack.patch
Created December 6, 2014 03:49
libpack fix for networking extensions
diff --git a/vendor/src/github.com/docker/libpack/tree.go b/vendor/src/github.com/docker/libpack/tree.go
index 89d8a18..3b236c1 100644
--- a/vendor/src/github.com/docker/libpack/tree.go
+++ b/vendor/src/github.com/docker/libpack/tree.go
@@ -16,6 +16,7 @@ func treeDel(repo *git.Repository, tree *git.Tree, key string) (*git.Tree, error
key = TreePath(key)
base, leaf := path.Split(key)
+ root := tree
if tree != nil {
@icecrime
icecrime / Dockerfile
Created December 3, 2014 02:55
Directory special bit issue
FROM busybox
RUN mkdir test_dir
RUN chmod 4755 test_dir
RUN [ $(ls -ld /test_dir | awk '{print $1}') = 'drwsr-xr-x' ]
ADD ./data/ /
RUN [ $(ls -ld /test_dir | awk '{print $1}') = 'drwsr-xr-x' ]
@icecrime
icecrime / gist:c82ba2ffe7193275ff02
Last active August 29, 2015 14:09
Windows Docker integration-cli output
# WARNING! I don't seem to be running in the Docker container.
# The result of this command might be an incorrect build, and will not be
# officially supported.
#
# Try this instead: make all
#
bundles/1.3.1-dev already exists. Removing.
---> Making bundle: binary (in bundles/1.3.1-dev/binary)
@icecrime
icecrime / Main.hs
Created July 10, 2014 11:29
Haskell Digits-Recognizer Dojo
import Data.Char
import Data.List.Split
import qualified Data.Vector as V
import Data.Ord
import qualified Data.Text as T
import qualified Data.Text.IO as T.IO
import qualified Data.Text.Read as T.Read
type Pixels = V.Vector Int
@icecrime
icecrime / gist:67399480c9a10b48fadc
Last active November 7, 2023 08:38
An experiment with Golang reflection and channels
package main
import (
"reflect"
"strings"
)
func makeChannel(t reflect.Type, chanDir reflect.ChanDir, buffer int) reflect.Value {
ctype := reflect.ChanOf(chanDir, t)
return reflect.MakeChan(ctype, buffer)
@icecrime
icecrime / gist:9705220
Last active August 29, 2015 13:57
Go interfaces and type assertions compared to Python's Abstract Base Classes
#!/usr/bin/env python
import abc
### Go equivalent
#
# type Lock interface {
# Lock()
# Unlock()