Ad-blocking with dnsmasq on Ubuntu configuration
Install dnsmasq:
sudo apt update
sudo apt install dnsmasq
import java.lang.StringBuilder; | |
import hudson.model.TaskListener; | |
import java.lang.reflect.Field; | |
class Logger { | |
public enum Level { | |
WTF(55), CRITICAL(50), ERROR(40), WARNING(30), INFO(20), DEBUG(10), NOSET(0); | |
private final int level; |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
Just python 3.6.X deploy and install for UBUNTU 16.04 or greater | |
Can be run in python 2 and 3 | |
Research, linux_py36 Started by Aaron Giovannini (agiovannini) | |
This file was created at 12/junio/2017 |
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm