Raspberry PI (cli):
$ DST_HOST=nc_machine_addr
$ SDSIZE=`sudo blockdev --getsize64 /dev/mmcblk0`;sudo pv -tpreb /dev/mmcblk0 -s $SDSIZE | nc $DST_HOST 19000
$ DST_HOST=nc_machine_addr
$ SDSIZE=`sudo blockdev --getsize64 /dev/mmcblk0`;sudo pv -tpreb /dev/mmcblk0 -s $SDSIZE | nc $DST_HOST 19000
pip freeze:
# -*- coding: utf-8 -*-
'''
@author: Ricardo Cosme
'''
for file in /proc/*/status ; do awk '/VmSwap|Name/{printf $2 " " $3}END{ print ""}' $file; done | sort -k 2 -n -r | less |
import confluent_kafka | |
#import json | |
#import msgpack | |
c = confluent_kafka.Consumer({'bootstrap.servers': 'kafka', 'group.id': 'PyCharm_consumer', | |
'default.topic.config': {'auto.offset.reset': 'latest'}}) | |
c.subscribe(['ping']) | |
running = True | |
i = 0 |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
# Reflects the requests from HTTP methods GET, POST, PUT, and DELETE | |
# Written by Nathan Hamiel (2010) | |
from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler | |
from optparse import OptionParser | |
class RequestHandler(BaseHTTPRequestHandler): | |
def do_GET(self): |
DUMP | |
// pod-name name of the postgres pod | |
// postgres-user database user that is able to access the database | |
// database-name name of the database | |
kubectl exec [pod-name] -- bash -c "pg_dump -U [postgres-user] [database-name]" > database.sql | |
RESTORE | |
// pod-name name of the postgres pod | |
// postgres-user database user that is able to access the database | |
// database-name name of the database |
import socket | |
from threading import Thread | |
class Proxy(Thread): | |
""" used to proxy single udp connection | |
""" | |
BUFFER_SIZE = 4096 | |
def __init__(self, listening_address, forward_address): | |
print " Server started on", listening_address | |
Thread.__init__(self) |
kubectl get --all-namespaces rs -o json|jq -r '.items[] | select(.spec.replicas | contains(0)) | "kubectl delete rs --namespace=\(.metadata.namespace) \(.metadata.name)"' |
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"os" | |
"strings" | |
"bufio" | |
b58 "github.com/jbenet/go-base58" |