Skip to content

Instantly share code, notes, and snippets.

View maurorappa's full-sized avatar

maurorappa maurorappa

  • zerolatency
  • Asso
View GitHub Profile
# script to edit the OVF Vm descriptor file, in this case change the memory size unit and remove the "System" part in the xml
# this was need to be able to import the OVF Vm from Virtualbox to Vsphere
import lxml.etree as et
import sys
import os
file_name = sys.argv[1]
try:
@maurorappa
maurorappa / cleanup.sh
Last active October 13, 2017 10:09
VM disk cleanup script to minize its size
###
# Script which helps to minimize the final image size
###
# Set default value of the input variables
CI_STEP=${CI_STEP:-null}
EXPORT_TYPE=${EXPORT_TYPE:-null}
# Use sudo if not root
CMD="bash"
@maurorappa
maurorappa / testinfra_generic_script.py
Created November 30, 2017 16:22
Testinfra generic validation script
# scenario: you have a container which has a programming environment (node,python,java) and you want to run Testinfra (or Molecule) to verify is set up properly
# This script will copy the test code in the container, run it and compare its output
# invocation:
# INTERPRETER=node TEST_PROGRAM=test.js EXPECTED_OUTPUT="Hello World" testinfra -v --connection docker --hosts=nodejs
# or
# INTERPRETER=/tools-copy/java/bin/java TEST_PROGRAM=HelloWorld.java EXPECTED_OUTPUT="Hello, World" testinfra -v --connection docker --hosts=maven
import os
import pytest
import testinfra
@maurorappa
maurorappa / docker-cleanup.go
Created December 20, 2017 16:40
Docker cleanup tool for old versions
package main
import (
"flag"
"fmt"
"os"
"github.com/docker/docker/api/types"
"github.com/docker/docker/client"
"golang.org/x/net/context"
)
@maurorappa
maurorappa / monitor.go
Created February 20, 2018 20:55
utility to check an output file and stop the program when the desired size is reached
// This utility allows you to run a command which produce a file and interrup it when a certain size is reached
package main
import(
"flag"
"fmt"
"log"
"os"
"os/exec"
"time"
@maurorappa
maurorappa / memhog.go
Last active March 31, 2019 20:51
Memory test containter, it ramps up memory usage as you want
/*
====================================
Build it as standalone binary :
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o memhog memhog.g
====================================
Build its container :
FROM scratch
@maurorappa
maurorappa / qrize.go
Created October 10, 2018 22:09
encode file as QRcode image
package main
import (
"flag"
"fmt"
b64 "encoding/base64"
"github.com/skip2/go-qrcode"
"math"
"os"
//"strconv"
@maurorappa
maurorappa / deqrize.go
Created October 10, 2018 22:11
decode file from a series of QR code images
package main
import (
"flag"
b64 "encoding/base64"
"fmt"
"github.com/clsung/grcode"
//"github.com/maruel/natural"
"io/ioutil"
"os"
@maurorappa
maurorappa / gist:a126c1577f6e28e177d208cfc1bb1b34
Created December 29, 2018 19:44
Basic parallel execution in Go
package main
import (
"fmt"
"log"
"os"
//"io/ioutil"
"runtime/pprof"
)
func main() {
@maurorappa
maurorappa / gist:4f91da3331795b8dd7b089607fd7244d
Last active February 25, 2019 22:49
Prometheus CSV storage
package main
import (
"bufio"
"bytes"
"compress/zlib"
"flag"
"fmt"
"github.com/gogo/protobuf/proto"
"github.com/golang/snappy"